ETH Price: $3,466.67 (+2.14%)
Gas: 11 Gwei

Token

Oppies (OPPIE)
 

Overview

Max Total Supply

3,333 OPPIE

Holders

1,164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OPPIE
0x00b87c1b8c5f615c514f6d8174ab59633f1c9ed7
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:
Oppies

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/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/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


pragma solidity ^0.8.17;






contract Oppies is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint public constant maxSupply = 3333;
    uint private constant TOKENS_RESERVED = 1;
    uint public price = 0.009 ether;
    uint public wlprice = 0.005 ether;
    uint256 public constant MAX_MINT_PER_TX = 2;
    uint256 public constant MAXMINTWL = 1;


    bool public isSaleActive;
    bool public isWLSaleActive;

    mapping(address => uint256) private _walletMints;
    mapping(address => uint256) private _ALWalletMints;
    mapping(address => uint256) private mintedPerWallet;
    mapping(address => bool) public WL;

    string private baseUri;
    string public baseExtesion = ".json";
    bytes32 public merkleRoot;


    constructor() ERC721A("Oppies", "OPPIE") {
        baseUri = "ipfs://QmPwxbCWjmEX95RubYzB6yMBUjdjhb6xK8x1aRnFtRcn6c/";
        for(uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
            _safeMint(msg.sender, i);
        }
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

     function flipSaleStatee() external onlyOwner {
        isWLSaleActive = !isWLSaleActive;
    }



    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 100 / 100;
        ( bool transferOne, ) = payable(0x1817e9BDA580b6814396309cBB1C919F62Da133F).call{value: balanceOne}("");
        require(transferOne, "Transfer failed.");
    }


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

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

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");

	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : "";
    }

    function mintAllowlist(uint256 tokens, bytes32[] calldata merkleProof) external payable {
        require(isWLSaleActive, "Sale has not started");
        require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not on the allowlist");
        require(totalSupply() + tokens <= maxSupply, "Minting would exceed max supply");
        require(totalSupply() + tokens <= MAXMINTWL, "Allowlist sold out");
        require(tokens > 0, "Must mint at least one Oppie");
        require(_ALWalletMints[_msgSender()] + tokens <= MAX_MINT_PER_TX, "AL limit for this wallet reached");
        require(wlprice * tokens <= msg.value, "Not enough ETH");

        _ALWalletMints[_msgSender()] += tokens;
        _safeMint(_msgSender(), tokens);
    }

    function mint(uint256 tokens) external payable {
        require(isSaleActive, "Sale has not started");
        require(totalSupply() + tokens <= maxSupply, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one Oppie");
        require(_walletMints[_msgSender()] + tokens <= MAX_MINT_PER_TX, "Limit for this wallet reached");
        require(price * tokens <= msg.value, "Not enough ETH");

        _walletMints[_msgSender()] += tokens;
        _safeMint(_msgSender(), tokens);
    }
    
    function allowListed(address _wallet, bytes32[] calldata _proof)
      public
      view
      returns (bool)
    {
      return
          MerkleProof.verify(
              _proof,
              merkleRoot,
              keccak256(abi.encodePacked(_wallet))
          );
    }

    function reserve(uint256 tokens) external onlyOwner {
        require(totalSupply() + tokens <= maxSupply, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one Oppie");
        require(_walletMints[_msgSender()] + tokens <= 100, "Can only reserve 100 tokens");

        _walletMints[_msgSender()] += tokens;
        _safeMint(_msgSender(), tokens);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"MAXMINTWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"allowListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtesion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWLSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintAllowlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052661ff973cafa80006009556611c37937e08000600a556040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506011908162000060919062000997565b503480156200006e57600080fd5b506040518060400160405280600681526020017f4f707069657300000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f505049450000000000000000000000000000000000000000000000000000008152508160029081620000ec919062000997565b508060039081620000fe919062000997565b506200010f6200019f60201b60201c565b6000819055505050620001376200012b620001a860201b60201c565b620001b060201b60201c565b604051806060016040528060368152602001620049d5603691396010908162000161919062000997565b506000600190505b6001811162000198576200018433826200027660201b60201c565b80620001909062000aad565b905062000169565b5062000cd2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002988282604051806020016040528060008152506200029c60201b60201c565b5050565b620002ae83836200034d60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200034857600080549050600083820390505b620002f760008683806001019450866200053460201b60201c565b6200032e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002dc5781600054146200034557600080fd5b50505b505050565b600080549050600082036200038e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003a360008483856200069560201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000432836200041460008660006200069b60201b60201c565b6200042585620006cb60201b60201c565b17620006db60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004d557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000498565b506000820362000511576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200052f60008483856200070660201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005626200070c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000586949392919062000bea565b6020604051808303816000875af1925050508015620005c557506040513d601f19601f82011682018060405250810190620005c2919062000ca0565b60015b62000642573d8060008114620005f8576040519150601f19603f3d011682016040523d82523d6000602084013e620005fd565b606091505b5060008151036200063a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006ba8686846200071460201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079f57607f821691505b602082108103620007b557620007b462000757565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200081f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007e0565b6200082b8683620007e0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000878620008726200086c8462000843565b6200084d565b62000843565b9050919050565b6000819050919050565b620008948362000857565b620008ac620008a3826200087f565b848454620007ed565b825550505050565b600090565b620008c3620008b4565b620008d081848462000889565b505050565b5b81811015620008f857620008ec600082620008b9565b600181019050620008d6565b5050565b601f82111562000947576200091181620007bb565b6200091c84620007d0565b810160208510156200092c578190505b620009446200093b85620007d0565b830182620008d5565b50505b505050565b600082821c905092915050565b60006200096c600019846008026200094c565b1980831691505092915050565b600062000987838362000959565b9150826002028217905092915050565b620009a2826200071d565b67ffffffffffffffff811115620009be57620009bd62000728565b5b620009ca825462000786565b620009d7828285620008fc565b600060209050601f83116001811462000a0f5760008415620009fa578287015190505b62000a06858262000979565b86555062000a76565b601f19841662000a1f86620007bb565b60005b8281101562000a495784890151825560018201915060208501945060208101905062000a22565b8683101562000a69578489015162000a65601f89168262000959565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aba8262000843565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000aef5762000aee62000a7e565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b278262000afa565b9050919050565b62000b398162000b1a565b82525050565b62000b4a8162000843565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b8c57808201518184015260208101905062000b6f565b60008484015250505050565b6000601f19601f8301169050919050565b600062000bb68262000b50565b62000bc2818562000b5b565b935062000bd481856020860162000b6c565b62000bdf8162000b98565b840191505092915050565b600060808201905062000c01600083018762000b2e565b62000c10602083018662000b2e565b62000c1f604083018562000b3f565b818103606083015262000c33818462000ba9565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c7a8162000c43565b811462000c8657600080fd5b50565b60008151905062000c9a8162000c6f565b92915050565b60006020828403121562000cb95762000cb862000c3e565b5b600062000cc98482850162000c89565b91505092915050565b613cf38062000ce26000396000f3fe60806040526004361061021a5760003560e01c8063853828b611610123578063a22cb465116100ab578063d6960ffb1161006f578063d6960ffb1461073c578063dc544ca714610767578063e985e9c514610792578063f2fde38b146107cf578063f9d1d437146107f85761021a565b8063a22cb46514610678578063b88d4fde146106a1578063bf8aa13c146106bd578063c87b56dd146106d4578063d5abeb01146107115761021a565b806391b7f5ed116100f257806391b7f5ed146105b457806395d89b41146105dd578063a035b1fe14610608578063a0712d6814610633578063a0bcfc7f1461064f5761021a565b8063853828b614610517578063877816c0146105215780638da5cb5b1461055e5780638ecad721146105895761021a565b80633671f8cf116101a65780636352211e116101755780636352211e1461043457806370a0823114610471578063715018a6146104ae5780637cb64759146104c5578063819b25ba146104ee5761021a565b80633671f8cf146103a65780633c0be253146103c257806342842e0e146103ed578063564566a8146104095761021a565b806318160ddd116101ed57806318160ddd146102e057806323b872dd1461030b578063247155ff146103275780632eb4a7ab1461036457806334918dfd1461038f5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612873565b610823565b60405161025391906128bb565b60405180910390f35b34801561026857600080fd5b506102716108b5565b60405161027e9190612966565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906129be565b610947565b6040516102bb9190612a2c565b60405180910390f35b6102de60048036038101906102d99190612a73565b6109c6565b005b3480156102ec57600080fd5b506102f5610b0a565b6040516103029190612ac2565b60405180910390f35b61032560048036038101906103209190612add565b610b21565b005b34801561033357600080fd5b5061034e60048036038101906103499190612b95565b610e43565b60405161035b91906128bb565b60405180910390f35b34801561037057600080fd5b50610379610ec2565b6040516103869190612c0e565b60405180910390f35b34801561039b57600080fd5b506103a4610ec8565b005b6103c060048036038101906103bb9190612c29565b610efc565b005b3480156103ce57600080fd5b506103d7611246565b6040516103e491906128bb565b60405180910390f35b61040760048036038101906104029190612add565b611259565b005b34801561041557600080fd5b5061041e611279565b60405161042b91906128bb565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906129be565b61128c565b6040516104689190612a2c565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612c89565b61129e565b6040516104a59190612ac2565b60405180910390f35b3480156104ba57600080fd5b506104c3611356565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190612ce2565b61136a565b005b3480156104fa57600080fd5b50610515600480360381019061051091906129be565b61137c565b005b61051f611524565b005b34801561052d57600080fd5b5061054860048036038101906105439190612c89565b611612565b60405161055591906128bb565b60405180910390f35b34801561056a57600080fd5b50610573611632565b6040516105809190612a2c565b60405180910390f35b34801561059557600080fd5b5061059e61165c565b6040516105ab9190612ac2565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d691906129be565b611661565b005b3480156105e957600080fd5b506105f2611673565b6040516105ff9190612966565b60405180910390f35b34801561061457600080fd5b5061061d611705565b60405161062a9190612ac2565b60405180910390f35b61064d600480360381019061064891906129be565b61170b565b005b34801561065b57600080fd5b5061067660048036038101906106719190612e3f565b61194a565b005b34801561068457600080fd5b5061069f600480360381019061069a9190612eb4565b611965565b005b6106bb60048036038101906106b69190612f95565b611a70565b005b3480156106c957600080fd5b506106d2611ae3565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906129be565b611b17565b6040516107089190612966565b60405180910390f35b34801561071d57600080fd5b50610726611bbe565b6040516107339190612ac2565b60405180910390f35b34801561074857600080fd5b50610751611bc4565b60405161075e9190612966565b60405180910390f35b34801561077357600080fd5b5061077c611c52565b6040516107899190612ac2565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190613018565b611c58565b6040516107c691906128bb565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612c89565b611cec565b005b34801561080457600080fd5b5061080d611d6f565b60405161081a9190612ac2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108c490613087565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090613087565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905090565b600061095282611d74565b610988576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d18261128c565b90508073ffffffffffffffffffffffffffffffffffffffff166109f2611dd3565b73ffffffffffffffffffffffffffffffffffffffff1614610a5557610a1e81610a19611dd3565b611c58565b610a54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b14611ddb565b6001546000540303905090565b6000610b2c82611de4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9f84611eb0565b91509150610bb58187610bb0611dd3565b611ed7565b610c0157610bca86610bc5611dd3565b611c58565b610c00576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c67576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c748686866001611f1b565b8015610c7f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4d85610d29888887611f21565b7c020000000000000000000000000000000000000000000000000000000017611f49565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dd35760006001850190506000600460008381526020019081526020016000205403610dd1576000548114610dd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3b8686866001611f74565b505050505050565b6000610eb9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125486604051602001610e9e9190613100565b60405160208183030381529060405280519060200120611f7a565b90509392505050565b60125481565b610ed0611f91565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff16610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613167565b60405180910390fd5b610fbf828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125433604051602001610fa49190613100565b60405160208183030381529060405280519060200120611f7a565b610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff5906131d3565b60405180910390fd5b610d058361100a610b0a565b6110149190613222565b1115611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906132a2565b60405180910390fd5b600183611060610b0a565b61106a9190613222565b11156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a29061330e565b60405180910390fd5b600083116110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061337a565b60405180910390fd5b600283600d60006110fd61200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111429190613222565b1115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a906133e6565b60405180910390fd5b3483600a546111929190613406565b11156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90613494565b60405180910390fd5b82600d60006111e061200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112299190613222565b9250508190555061124161123b61200f565b84612017565b505050565b600b60019054906101000a900460ff1681565b61127483838360405180602001604052806000815250611a70565b505050565b600b60009054906101000a900460ff1681565b600061129782611de4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611305576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61135e611f91565b6113686000612035565b565b611372611f91565b8060128190555050565b611384611f91565b610d0581611390610b0a565b61139a9190613222565b11156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906132a2565b60405180910390fd5b6000811161141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061337a565b60405180910390fd5b606481600c600061142d61200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114729190613222565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613500565b60405180910390fd5b80600c60006114c061200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115099190613222565b9250508190555061152161151b61200f565b82612017565b50565b61152c611f91565b60004790506000606480836115419190613406565b61154b919061354f565b90506000731817e9bda580b6814396309cbb1c919f62da133f73ffffffffffffffffffffffffffffffffffffffff1682604051611587906135b1565b60006040518083038185875af1925050503d80600081146115c4576040519150601f19603f3d011682016040523d82523d6000602084013e6115c9565b606091505b505090508061160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613612565b60405180910390fd5b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600281565b611669611f91565b8060098190555050565b60606003805461168290613087565b80601f01602080910402602001604051908101604052809291908181526020018280546116ae90613087565b80156116fb5780601f106116d0576101008083540402835291602001916116fb565b820191906000526020600020905b8154815290600101906020018083116116de57829003601f168201915b5050505050905090565b60095481565b600b60009054906101000a900460ff1661175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190613167565b60405180910390fd5b610d0581611766610b0a565b6117709190613222565b11156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a8906132a2565b60405180910390fd5b600081116117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb9061337a565b60405180910390fd5b600281600c600061180361200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118489190613222565b1115611889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118809061367e565b60405180910390fd5b34816009546118989190613406565b11156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613494565b60405180910390fd5b80600c60006118e661200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192f9190613222565b9250508190555061194761194161200f565b82612017565b50565b611952611f91565b8060109081611961919061384a565b5050565b8060076000611972611dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a1f611dd3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6491906128bb565b60405180910390a35050565b611a7b848484610b21565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611add57611aa6848484846120fb565b611adc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611aeb611f91565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6060611b2282611d74565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b589061398e565b60405180910390fd5b6000611b6b61224b565b90506000815111611b8b5760405180602001604052806000815250611bb6565b80611b95846122dd565b604051602001611ba6929190613a36565b6040516020818303038152906040525b915050919050565b610d0581565b60118054611bd190613087565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfd90613087565b8015611c4a5780601f10611c1f57610100808354040283529160200191611c4a565b820191906000526020600020905b815481529060010190602001808311611c2d57829003601f168201915b505050505081565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf4611f91565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90613ad7565b60405180910390fd5b611d6c81612035565b50565b600181565b600081611d7f611ddb565b11158015611d8e575060005482105b8015611dcc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611df3611ddb565b11611e7957600054811015611e785760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e76575b60008103611e6c576004600083600190039350838152602001908152602001600020549050611e42565b8092505050611eab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f388686846123ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082611f8785846123b4565b1490509392505050565b611f9961200f565b73ffffffffffffffffffffffffffffffffffffffff16611fb7611632565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613b43565b60405180910390fd5b565b600033905090565b61203182826040518060200160405280600081525061240a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612121611dd3565b8786866040518563ffffffff1660e01b81526004016121439493929190613bb8565b6020604051808303816000875af192505050801561217f57506040513d601f19601f8201168201806040525081019061217c9190613c19565b60015b6121f8573d80600081146121af576040519150601f19603f3d011682016040523d82523d6000602084013e6121b4565b606091505b5060008151036121f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461225a90613087565b80601f016020809104026020016040519081016040528092919081815260200182805461228690613087565b80156122d35780601f106122a8576101008083540402835291602001916122d3565b820191906000526020600020905b8154815290600101906020018083116122b657829003601f168201915b5050505050905090565b6060600060016122ec846124a7565b01905060008167ffffffffffffffff81111561230b5761230a612d14565b5b6040519080825280601f01601f19166020018201604052801561233d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156123a0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161239457612393613520565b5b0494506000850361234b575b819350505050919050565b60009392505050565b60008082905060005b84518110156123ff576123ea828683815181106123dd576123dc613c46565b5b60200260200101516125fa565b915080806123f790613c75565b9150506123bd565b508091505092915050565b6124148383612625565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124a257600080549050600083820390505b61245460008683806001019450866120fb565b61248a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061244157816000541461249f57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612505577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124fb576124fa613520565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612542576d04ee2d6d415b85acef8100000000838161253857612537613520565b5b0492506020810190505b662386f26fc10000831061257157662386f26fc10000838161256757612566613520565b5b0492506010810190505b6305f5e100831061259a576305f5e10083816125905761258f613520565b5b0492506008810190505b61271083106125bf5761271083816125b5576125b4613520565b5b0492506004810190505b606483106125e257606483816125d8576125d7613520565b5b0492506002810190505b600a83106125f1576001810190505b80915050919050565b60008183106126125761260d82846127e0565b61261d565b61261c83836127e0565b5b905092915050565b60008054905060008203612665576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126726000848385611f1b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126e9836126da6000866000611f21565b6126e3856127f7565b17611f49565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461278a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061274f565b50600082036127c5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127db6000848385611f74565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128508161281b565b811461285b57600080fd5b50565b60008135905061286d81612847565b92915050565b60006020828403121561288957612888612811565b5b60006128978482850161285e565b91505092915050565b60008115159050919050565b6128b5816128a0565b82525050565b60006020820190506128d060008301846128ac565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129105780820151818401526020810190506128f5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612938826128d6565b61294281856128e1565b93506129528185602086016128f2565b61295b8161291c565b840191505092915050565b60006020820190508181036000830152612980818461292d565b905092915050565b6000819050919050565b61299b81612988565b81146129a657600080fd5b50565b6000813590506129b881612992565b92915050565b6000602082840312156129d4576129d3612811565b5b60006129e2848285016129a9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a16826129eb565b9050919050565b612a2681612a0b565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b612a5081612a0b565b8114612a5b57600080fd5b50565b600081359050612a6d81612a47565b92915050565b60008060408385031215612a8a57612a89612811565b5b6000612a9885828601612a5e565b9250506020612aa9858286016129a9565b9150509250929050565b612abc81612988565b82525050565b6000602082019050612ad76000830184612ab3565b92915050565b600080600060608486031215612af657612af5612811565b5b6000612b0486828701612a5e565b9350506020612b1586828701612a5e565b9250506040612b26868287016129a9565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b5557612b54612b30565b5b8235905067ffffffffffffffff811115612b7257612b71612b35565b5b602083019150836020820283011115612b8e57612b8d612b3a565b5b9250929050565b600080600060408486031215612bae57612bad612811565b5b6000612bbc86828701612a5e565b935050602084013567ffffffffffffffff811115612bdd57612bdc612816565b5b612be986828701612b3f565b92509250509250925092565b6000819050919050565b612c0881612bf5565b82525050565b6000602082019050612c236000830184612bff565b92915050565b600080600060408486031215612c4257612c41612811565b5b6000612c50868287016129a9565b935050602084013567ffffffffffffffff811115612c7157612c70612816565b5b612c7d86828701612b3f565b92509250509250925092565b600060208284031215612c9f57612c9e612811565b5b6000612cad84828501612a5e565b91505092915050565b612cbf81612bf5565b8114612cca57600080fd5b50565b600081359050612cdc81612cb6565b92915050565b600060208284031215612cf857612cf7612811565b5b6000612d0684828501612ccd565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4c8261291c565b810181811067ffffffffffffffff82111715612d6b57612d6a612d14565b5b80604052505050565b6000612d7e612807565b9050612d8a8282612d43565b919050565b600067ffffffffffffffff821115612daa57612da9612d14565b5b612db38261291c565b9050602081019050919050565b82818337600083830152505050565b6000612de2612ddd84612d8f565b612d74565b905082815260208101848484011115612dfe57612dfd612d0f565b5b612e09848285612dc0565b509392505050565b600082601f830112612e2657612e25612b30565b5b8135612e36848260208601612dcf565b91505092915050565b600060208284031215612e5557612e54612811565b5b600082013567ffffffffffffffff811115612e7357612e72612816565b5b612e7f84828501612e11565b91505092915050565b612e91816128a0565b8114612e9c57600080fd5b50565b600081359050612eae81612e88565b92915050565b60008060408385031215612ecb57612eca612811565b5b6000612ed985828601612a5e565b9250506020612eea85828601612e9f565b9150509250929050565b600067ffffffffffffffff821115612f0f57612f0e612d14565b5b612f188261291c565b9050602081019050919050565b6000612f38612f3384612ef4565b612d74565b905082815260208101848484011115612f5457612f53612d0f565b5b612f5f848285612dc0565b509392505050565b600082601f830112612f7c57612f7b612b30565b5b8135612f8c848260208601612f25565b91505092915050565b60008060008060808587031215612faf57612fae612811565b5b6000612fbd87828801612a5e565b9450506020612fce87828801612a5e565b9350506040612fdf878288016129a9565b925050606085013567ffffffffffffffff81111561300057612fff612816565b5b61300c87828801612f67565b91505092959194509250565b6000806040838503121561302f5761302e612811565b5b600061303d85828601612a5e565b925050602061304e85828601612a5e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061309f57607f821691505b6020821081036130b2576130b1613058565b5b50919050565b60008160601b9050919050565b60006130d0826130b8565b9050919050565b60006130e2826130c5565b9050919050565b6130fa6130f582612a0b565b6130d7565b82525050565b600061310c82846130e9565b60148201915081905092915050565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b60006131516014836128e1565b915061315c8261311b565b602082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b7f4e6f74206f6e2074686520616c6c6f776c697374000000000000000000000000600082015250565b60006131bd6014836128e1565b91506131c882613187565b602082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061322d82612988565b915061323883612988565b92508282019050808211156132505761324f6131f3565b5b92915050565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b600061328c601f836128e1565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f416c6c6f776c69737420736f6c64206f75740000000000000000000000000000600082015250565b60006132f86012836128e1565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e65204f7070696500000000600082015250565b6000613364601c836128e1565b915061336f8261332e565b602082019050919050565b6000602082019050818103600083015261339381613357565b9050919050565b7f414c206c696d697420666f7220746869732077616c6c65742072656163686564600082015250565b60006133d06020836128e1565b91506133db8261339a565b602082019050919050565b600060208201905081810360008301526133ff816133c3565b9050919050565b600061341182612988565b915061341c83612988565b925082820261342a81612988565b91508282048414831517613441576134406131f3565b5b5092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b600061347e600e836128e1565b915061348982613448565b602082019050919050565b600060208201905081810360008301526134ad81613471565b9050919050565b7f43616e206f6e6c7920726573657276652031303020746f6b656e730000000000600082015250565b60006134ea601b836128e1565b91506134f5826134b4565b602082019050919050565b60006020820190508181036000830152613519816134dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061355a82612988565b915061356583612988565b92508261357557613574613520565b5b828204905092915050565b600081905092915050565b50565b600061359b600083613580565b91506135a68261358b565b600082019050919050565b60006135bc8261358e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135fc6010836128e1565b9150613607826135c6565b602082019050919050565b6000602082019050818103600083015261362b816135ef565b9050919050565b7f4c696d697420666f7220746869732077616c6c65742072656163686564000000600082015250565b6000613668601d836128e1565b915061367382613632565b602082019050919050565b600060208201905081810360008301526136978161365b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136c3565b61370a86836136c3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061374761374261373d84612988565b613722565b612988565b9050919050565b6000819050919050565b6137618361372c565b61377561376d8261374e565b8484546136d0565b825550505050565b600090565b61378a61377d565b613795818484613758565b505050565b5b818110156137b9576137ae600082613782565b60018101905061379b565b5050565b601f8211156137fe576137cf8161369e565b6137d8846136b3565b810160208510156137e7578190505b6137fb6137f3856136b3565b83018261379a565b50505b505050565b600082821c905092915050565b600061382160001984600802613803565b1980831691505092915050565b600061383a8383613810565b9150826002028217905092915050565b613853826128d6565b67ffffffffffffffff81111561386c5761386b612d14565b5b6138768254613087565b6138818282856137bd565b600060209050601f8311600181146138b457600084156138a2578287015190505b6138ac858261382e565b865550613914565b601f1984166138c28661369e565b60005b828110156138ea578489015182556001820191506020850194506020810190506138c5565b868310156139075784890151613903601f891682613810565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006139786021836128e1565b91506139838261391c565b604082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b600081905092915050565b60006139c4826128d6565b6139ce81856139ae565b93506139de8185602086016128f2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a206005836139ae565b9150613a2b826139ea565b600582019050919050565b6000613a4282856139b9565b9150613a4e82846139b9565b9150613a5982613a13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ac16026836128e1565b9150613acc82613a65565b604082019050919050565b60006020820190508181036000830152613af081613ab4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b2d6020836128e1565b9150613b3882613af7565b602082019050919050565b60006020820190508181036000830152613b5c81613b20565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8a82613b63565b613b948185613b6e565b9350613ba48185602086016128f2565b613bad8161291c565b840191505092915050565b6000608082019050613bcd6000830187612a1d565b613bda6020830186612a1d565b613be76040830185612ab3565b8181036060830152613bf98184613b7f565b905095945050505050565b600081519050613c1381612847565b92915050565b600060208284031215613c2f57613c2e612811565b5b6000613c3d84828501613c04565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c8082612988565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cb257613cb16131f3565b5b60018201905091905056fea2646970667358221220467f234e25fe83609c6009c20e110bdac4a75196e7777fa3ca40c005590ef19e64736f6c63430008110033697066733a2f2f516d5077786243576a6d45583935527562597a4236794d42556a646a686236784b38783161526e467452636e36632f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063853828b611610123578063a22cb465116100ab578063d6960ffb1161006f578063d6960ffb1461073c578063dc544ca714610767578063e985e9c514610792578063f2fde38b146107cf578063f9d1d437146107f85761021a565b8063a22cb46514610678578063b88d4fde146106a1578063bf8aa13c146106bd578063c87b56dd146106d4578063d5abeb01146107115761021a565b806391b7f5ed116100f257806391b7f5ed146105b457806395d89b41146105dd578063a035b1fe14610608578063a0712d6814610633578063a0bcfc7f1461064f5761021a565b8063853828b614610517578063877816c0146105215780638da5cb5b1461055e5780638ecad721146105895761021a565b80633671f8cf116101a65780636352211e116101755780636352211e1461043457806370a0823114610471578063715018a6146104ae5780637cb64759146104c5578063819b25ba146104ee5761021a565b80633671f8cf146103a65780633c0be253146103c257806342842e0e146103ed578063564566a8146104095761021a565b806318160ddd116101ed57806318160ddd146102e057806323b872dd1461030b578063247155ff146103275780632eb4a7ab1461036457806334918dfd1461038f5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612873565b610823565b60405161025391906128bb565b60405180910390f35b34801561026857600080fd5b506102716108b5565b60405161027e9190612966565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906129be565b610947565b6040516102bb9190612a2c565b60405180910390f35b6102de60048036038101906102d99190612a73565b6109c6565b005b3480156102ec57600080fd5b506102f5610b0a565b6040516103029190612ac2565b60405180910390f35b61032560048036038101906103209190612add565b610b21565b005b34801561033357600080fd5b5061034e60048036038101906103499190612b95565b610e43565b60405161035b91906128bb565b60405180910390f35b34801561037057600080fd5b50610379610ec2565b6040516103869190612c0e565b60405180910390f35b34801561039b57600080fd5b506103a4610ec8565b005b6103c060048036038101906103bb9190612c29565b610efc565b005b3480156103ce57600080fd5b506103d7611246565b6040516103e491906128bb565b60405180910390f35b61040760048036038101906104029190612add565b611259565b005b34801561041557600080fd5b5061041e611279565b60405161042b91906128bb565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906129be565b61128c565b6040516104689190612a2c565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612c89565b61129e565b6040516104a59190612ac2565b60405180910390f35b3480156104ba57600080fd5b506104c3611356565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190612ce2565b61136a565b005b3480156104fa57600080fd5b50610515600480360381019061051091906129be565b61137c565b005b61051f611524565b005b34801561052d57600080fd5b5061054860048036038101906105439190612c89565b611612565b60405161055591906128bb565b60405180910390f35b34801561056a57600080fd5b50610573611632565b6040516105809190612a2c565b60405180910390f35b34801561059557600080fd5b5061059e61165c565b6040516105ab9190612ac2565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d691906129be565b611661565b005b3480156105e957600080fd5b506105f2611673565b6040516105ff9190612966565b60405180910390f35b34801561061457600080fd5b5061061d611705565b60405161062a9190612ac2565b60405180910390f35b61064d600480360381019061064891906129be565b61170b565b005b34801561065b57600080fd5b5061067660048036038101906106719190612e3f565b61194a565b005b34801561068457600080fd5b5061069f600480360381019061069a9190612eb4565b611965565b005b6106bb60048036038101906106b69190612f95565b611a70565b005b3480156106c957600080fd5b506106d2611ae3565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906129be565b611b17565b6040516107089190612966565b60405180910390f35b34801561071d57600080fd5b50610726611bbe565b6040516107339190612ac2565b60405180910390f35b34801561074857600080fd5b50610751611bc4565b60405161075e9190612966565b60405180910390f35b34801561077357600080fd5b5061077c611c52565b6040516107899190612ac2565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190613018565b611c58565b6040516107c691906128bb565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612c89565b611cec565b005b34801561080457600080fd5b5061080d611d6f565b60405161081a9190612ac2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108c490613087565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090613087565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905090565b600061095282611d74565b610988576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d18261128c565b90508073ffffffffffffffffffffffffffffffffffffffff166109f2611dd3565b73ffffffffffffffffffffffffffffffffffffffff1614610a5557610a1e81610a19611dd3565b611c58565b610a54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b14611ddb565b6001546000540303905090565b6000610b2c82611de4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9f84611eb0565b91509150610bb58187610bb0611dd3565b611ed7565b610c0157610bca86610bc5611dd3565b611c58565b610c00576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c67576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c748686866001611f1b565b8015610c7f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4d85610d29888887611f21565b7c020000000000000000000000000000000000000000000000000000000017611f49565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dd35760006001850190506000600460008381526020019081526020016000205403610dd1576000548114610dd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3b8686866001611f74565b505050505050565b6000610eb9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125486604051602001610e9e9190613100565b60405160208183030381529060405280519060200120611f7a565b90509392505050565b60125481565b610ed0611f91565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff16610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613167565b60405180910390fd5b610fbf828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125433604051602001610fa49190613100565b60405160208183030381529060405280519060200120611f7a565b610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff5906131d3565b60405180910390fd5b610d058361100a610b0a565b6110149190613222565b1115611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906132a2565b60405180910390fd5b600183611060610b0a565b61106a9190613222565b11156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a29061330e565b60405180910390fd5b600083116110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061337a565b60405180910390fd5b600283600d60006110fd61200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111429190613222565b1115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a906133e6565b60405180910390fd5b3483600a546111929190613406565b11156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90613494565b60405180910390fd5b82600d60006111e061200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112299190613222565b9250508190555061124161123b61200f565b84612017565b505050565b600b60019054906101000a900460ff1681565b61127483838360405180602001604052806000815250611a70565b505050565b600b60009054906101000a900460ff1681565b600061129782611de4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611305576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61135e611f91565b6113686000612035565b565b611372611f91565b8060128190555050565b611384611f91565b610d0581611390610b0a565b61139a9190613222565b11156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906132a2565b60405180910390fd5b6000811161141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061337a565b60405180910390fd5b606481600c600061142d61200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114729190613222565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613500565b60405180910390fd5b80600c60006114c061200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115099190613222565b9250508190555061152161151b61200f565b82612017565b50565b61152c611f91565b60004790506000606480836115419190613406565b61154b919061354f565b90506000731817e9bda580b6814396309cbb1c919f62da133f73ffffffffffffffffffffffffffffffffffffffff1682604051611587906135b1565b60006040518083038185875af1925050503d80600081146115c4576040519150601f19603f3d011682016040523d82523d6000602084013e6115c9565b606091505b505090508061160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613612565b60405180910390fd5b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600281565b611669611f91565b8060098190555050565b60606003805461168290613087565b80601f01602080910402602001604051908101604052809291908181526020018280546116ae90613087565b80156116fb5780601f106116d0576101008083540402835291602001916116fb565b820191906000526020600020905b8154815290600101906020018083116116de57829003601f168201915b5050505050905090565b60095481565b600b60009054906101000a900460ff1661175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190613167565b60405180910390fd5b610d0581611766610b0a565b6117709190613222565b11156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a8906132a2565b60405180910390fd5b600081116117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb9061337a565b60405180910390fd5b600281600c600061180361200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118489190613222565b1115611889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118809061367e565b60405180910390fd5b34816009546118989190613406565b11156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613494565b60405180910390fd5b80600c60006118e661200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192f9190613222565b9250508190555061194761194161200f565b82612017565b50565b611952611f91565b8060109081611961919061384a565b5050565b8060076000611972611dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a1f611dd3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6491906128bb565b60405180910390a35050565b611a7b848484610b21565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611add57611aa6848484846120fb565b611adc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611aeb611f91565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6060611b2282611d74565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b589061398e565b60405180910390fd5b6000611b6b61224b565b90506000815111611b8b5760405180602001604052806000815250611bb6565b80611b95846122dd565b604051602001611ba6929190613a36565b6040516020818303038152906040525b915050919050565b610d0581565b60118054611bd190613087565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfd90613087565b8015611c4a5780601f10611c1f57610100808354040283529160200191611c4a565b820191906000526020600020905b815481529060010190602001808311611c2d57829003601f168201915b505050505081565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf4611f91565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90613ad7565b60405180910390fd5b611d6c81612035565b50565b600181565b600081611d7f611ddb565b11158015611d8e575060005482105b8015611dcc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611df3611ddb565b11611e7957600054811015611e785760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e76575b60008103611e6c576004600083600190039350838152602001908152602001600020549050611e42565b8092505050611eab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f388686846123ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082611f8785846123b4565b1490509392505050565b611f9961200f565b73ffffffffffffffffffffffffffffffffffffffff16611fb7611632565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613b43565b60405180910390fd5b565b600033905090565b61203182826040518060200160405280600081525061240a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612121611dd3565b8786866040518563ffffffff1660e01b81526004016121439493929190613bb8565b6020604051808303816000875af192505050801561217f57506040513d601f19601f8201168201806040525081019061217c9190613c19565b60015b6121f8573d80600081146121af576040519150601f19603f3d011682016040523d82523d6000602084013e6121b4565b606091505b5060008151036121f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461225a90613087565b80601f016020809104026020016040519081016040528092919081815260200182805461228690613087565b80156122d35780601f106122a8576101008083540402835291602001916122d3565b820191906000526020600020905b8154815290600101906020018083116122b657829003601f168201915b5050505050905090565b6060600060016122ec846124a7565b01905060008167ffffffffffffffff81111561230b5761230a612d14565b5b6040519080825280601f01601f19166020018201604052801561233d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156123a0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161239457612393613520565b5b0494506000850361234b575b819350505050919050565b60009392505050565b60008082905060005b84518110156123ff576123ea828683815181106123dd576123dc613c46565b5b60200260200101516125fa565b915080806123f790613c75565b9150506123bd565b508091505092915050565b6124148383612625565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124a257600080549050600083820390505b61245460008683806001019450866120fb565b61248a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061244157816000541461249f57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612505577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124fb576124fa613520565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612542576d04ee2d6d415b85acef8100000000838161253857612537613520565b5b0492506020810190505b662386f26fc10000831061257157662386f26fc10000838161256757612566613520565b5b0492506010810190505b6305f5e100831061259a576305f5e10083816125905761258f613520565b5b0492506008810190505b61271083106125bf5761271083816125b5576125b4613520565b5b0492506004810190505b606483106125e257606483816125d8576125d7613520565b5b0492506002810190505b600a83106125f1576001810190505b80915050919050565b60008183106126125761260d82846127e0565b61261d565b61261c83836127e0565b5b905092915050565b60008054905060008203612665576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126726000848385611f1b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126e9836126da6000866000611f21565b6126e3856127f7565b17611f49565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461278a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061274f565b50600082036127c5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127db6000848385611f74565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128508161281b565b811461285b57600080fd5b50565b60008135905061286d81612847565b92915050565b60006020828403121561288957612888612811565b5b60006128978482850161285e565b91505092915050565b60008115159050919050565b6128b5816128a0565b82525050565b60006020820190506128d060008301846128ac565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129105780820151818401526020810190506128f5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612938826128d6565b61294281856128e1565b93506129528185602086016128f2565b61295b8161291c565b840191505092915050565b60006020820190508181036000830152612980818461292d565b905092915050565b6000819050919050565b61299b81612988565b81146129a657600080fd5b50565b6000813590506129b881612992565b92915050565b6000602082840312156129d4576129d3612811565b5b60006129e2848285016129a9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a16826129eb565b9050919050565b612a2681612a0b565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b612a5081612a0b565b8114612a5b57600080fd5b50565b600081359050612a6d81612a47565b92915050565b60008060408385031215612a8a57612a89612811565b5b6000612a9885828601612a5e565b9250506020612aa9858286016129a9565b9150509250929050565b612abc81612988565b82525050565b6000602082019050612ad76000830184612ab3565b92915050565b600080600060608486031215612af657612af5612811565b5b6000612b0486828701612a5e565b9350506020612b1586828701612a5e565b9250506040612b26868287016129a9565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b5557612b54612b30565b5b8235905067ffffffffffffffff811115612b7257612b71612b35565b5b602083019150836020820283011115612b8e57612b8d612b3a565b5b9250929050565b600080600060408486031215612bae57612bad612811565b5b6000612bbc86828701612a5e565b935050602084013567ffffffffffffffff811115612bdd57612bdc612816565b5b612be986828701612b3f565b92509250509250925092565b6000819050919050565b612c0881612bf5565b82525050565b6000602082019050612c236000830184612bff565b92915050565b600080600060408486031215612c4257612c41612811565b5b6000612c50868287016129a9565b935050602084013567ffffffffffffffff811115612c7157612c70612816565b5b612c7d86828701612b3f565b92509250509250925092565b600060208284031215612c9f57612c9e612811565b5b6000612cad84828501612a5e565b91505092915050565b612cbf81612bf5565b8114612cca57600080fd5b50565b600081359050612cdc81612cb6565b92915050565b600060208284031215612cf857612cf7612811565b5b6000612d0684828501612ccd565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4c8261291c565b810181811067ffffffffffffffff82111715612d6b57612d6a612d14565b5b80604052505050565b6000612d7e612807565b9050612d8a8282612d43565b919050565b600067ffffffffffffffff821115612daa57612da9612d14565b5b612db38261291c565b9050602081019050919050565b82818337600083830152505050565b6000612de2612ddd84612d8f565b612d74565b905082815260208101848484011115612dfe57612dfd612d0f565b5b612e09848285612dc0565b509392505050565b600082601f830112612e2657612e25612b30565b5b8135612e36848260208601612dcf565b91505092915050565b600060208284031215612e5557612e54612811565b5b600082013567ffffffffffffffff811115612e7357612e72612816565b5b612e7f84828501612e11565b91505092915050565b612e91816128a0565b8114612e9c57600080fd5b50565b600081359050612eae81612e88565b92915050565b60008060408385031215612ecb57612eca612811565b5b6000612ed985828601612a5e565b9250506020612eea85828601612e9f565b9150509250929050565b600067ffffffffffffffff821115612f0f57612f0e612d14565b5b612f188261291c565b9050602081019050919050565b6000612f38612f3384612ef4565b612d74565b905082815260208101848484011115612f5457612f53612d0f565b5b612f5f848285612dc0565b509392505050565b600082601f830112612f7c57612f7b612b30565b5b8135612f8c848260208601612f25565b91505092915050565b60008060008060808587031215612faf57612fae612811565b5b6000612fbd87828801612a5e565b9450506020612fce87828801612a5e565b9350506040612fdf878288016129a9565b925050606085013567ffffffffffffffff81111561300057612fff612816565b5b61300c87828801612f67565b91505092959194509250565b6000806040838503121561302f5761302e612811565b5b600061303d85828601612a5e565b925050602061304e85828601612a5e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061309f57607f821691505b6020821081036130b2576130b1613058565b5b50919050565b60008160601b9050919050565b60006130d0826130b8565b9050919050565b60006130e2826130c5565b9050919050565b6130fa6130f582612a0b565b6130d7565b82525050565b600061310c82846130e9565b60148201915081905092915050565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b60006131516014836128e1565b915061315c8261311b565b602082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b7f4e6f74206f6e2074686520616c6c6f776c697374000000000000000000000000600082015250565b60006131bd6014836128e1565b91506131c882613187565b602082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061322d82612988565b915061323883612988565b92508282019050808211156132505761324f6131f3565b5b92915050565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b600061328c601f836128e1565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f416c6c6f776c69737420736f6c64206f75740000000000000000000000000000600082015250565b60006132f86012836128e1565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e65204f7070696500000000600082015250565b6000613364601c836128e1565b915061336f8261332e565b602082019050919050565b6000602082019050818103600083015261339381613357565b9050919050565b7f414c206c696d697420666f7220746869732077616c6c65742072656163686564600082015250565b60006133d06020836128e1565b91506133db8261339a565b602082019050919050565b600060208201905081810360008301526133ff816133c3565b9050919050565b600061341182612988565b915061341c83612988565b925082820261342a81612988565b91508282048414831517613441576134406131f3565b5b5092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b600061347e600e836128e1565b915061348982613448565b602082019050919050565b600060208201905081810360008301526134ad81613471565b9050919050565b7f43616e206f6e6c7920726573657276652031303020746f6b656e730000000000600082015250565b60006134ea601b836128e1565b91506134f5826134b4565b602082019050919050565b60006020820190508181036000830152613519816134dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061355a82612988565b915061356583612988565b92508261357557613574613520565b5b828204905092915050565b600081905092915050565b50565b600061359b600083613580565b91506135a68261358b565b600082019050919050565b60006135bc8261358e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135fc6010836128e1565b9150613607826135c6565b602082019050919050565b6000602082019050818103600083015261362b816135ef565b9050919050565b7f4c696d697420666f7220746869732077616c6c65742072656163686564000000600082015250565b6000613668601d836128e1565b915061367382613632565b602082019050919050565b600060208201905081810360008301526136978161365b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136c3565b61370a86836136c3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061374761374261373d84612988565b613722565b612988565b9050919050565b6000819050919050565b6137618361372c565b61377561376d8261374e565b8484546136d0565b825550505050565b600090565b61378a61377d565b613795818484613758565b505050565b5b818110156137b9576137ae600082613782565b60018101905061379b565b5050565b601f8211156137fe576137cf8161369e565b6137d8846136b3565b810160208510156137e7578190505b6137fb6137f3856136b3565b83018261379a565b50505b505050565b600082821c905092915050565b600061382160001984600802613803565b1980831691505092915050565b600061383a8383613810565b9150826002028217905092915050565b613853826128d6565b67ffffffffffffffff81111561386c5761386b612d14565b5b6138768254613087565b6138818282856137bd565b600060209050601f8311600181146138b457600084156138a2578287015190505b6138ac858261382e565b865550613914565b601f1984166138c28661369e565b60005b828110156138ea578489015182556001820191506020850194506020810190506138c5565b868310156139075784890151613903601f891682613810565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006139786021836128e1565b91506139838261391c565b604082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b600081905092915050565b60006139c4826128d6565b6139ce81856139ae565b93506139de8185602086016128f2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a206005836139ae565b9150613a2b826139ea565b600582019050919050565b6000613a4282856139b9565b9150613a4e82846139b9565b9150613a5982613a13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ac16026836128e1565b9150613acc82613a65565b604082019050919050565b60006020820190508181036000830152613af081613ab4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b2d6020836128e1565b9150613b3882613af7565b602082019050919050565b60006020820190508181036000830152613b5c81613b20565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8a82613b63565b613b948185613b6e565b9350613ba48185602086016128f2565b613bad8161291c565b840191505092915050565b6000608082019050613bcd6000830187612a1d565b613bda6020830186612a1d565b613be76040830185612ab3565b8181036060830152613bf98184613b7f565b905095945050505050565b600081519050613c1381612847565b92915050565b600060208284031215613c2f57613c2e612811565b5b6000613c3d84828501613c04565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c8082612988565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cb257613cb16131f3565b5b60018201905091905056fea2646970667358221220467f234e25fe83609c6009c20e110bdac4a75196e7777fa3ca40c005590ef19e64736f6c63430008110033

Deployed Bytecode Sourcemap

86900:4462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53798:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54700:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61191:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60624:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50451:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64830:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90666:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87629:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87906:91;;;;;;;;;;;;;:::i;:::-;;89337:783;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87309:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67751:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87278:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56093:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51635:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34577:103;;;;;;;;;;;;;:::i;:::-;;88650:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90961:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88316:324;;;:::i;:::-;;87514:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33929:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87180:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88222:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54876:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87102:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90128:526;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88114:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61749:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68542:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88006:96;;;;;;;;;;;;;:::i;:::-;;88985:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87010:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87586:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87140:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62140:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34835:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87230:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53798:639;53883:4;54222:10;54207:25;;:11;:25;;;;:102;;;;54299:10;54284:25;;:11;:25;;;;54207:102;:179;;;;54376:10;54361:25;;:11;:25;;;;54207:179;54187:199;;53798:639;;;:::o;54700:100::-;54754:13;54787:5;54780:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54700:100;:::o;61191:218::-;61267:7;61292:16;61300:7;61292;:16::i;:::-;61287:64;;61317:34;;;;;;;;;;;;;;61287:64;61371:15;:24;61387:7;61371:24;;;;;;;;;;;:30;;;;;;;;;;;;61364:37;;61191:218;;;:::o;60624:408::-;60713:13;60729:16;60737:7;60729;:16::i;:::-;60713:32;;60785:5;60762:28;;:19;:17;:19::i;:::-;:28;;;60758:175;;60810:44;60827:5;60834:19;:17;:19::i;:::-;60810:16;:44::i;:::-;60805:128;;60882:35;;;;;;;;;;;;;;60805:128;60758:175;60978:2;60945:15;:24;60961:7;60945:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;61016:7;61012:2;60996:28;;61005:5;60996:28;;;;;;;;;;;;60702:330;60624:408;;:::o;50451:323::-;50512:7;50740:15;:13;:15::i;:::-;50725:12;;50709:13;;:28;:46;50702:53;;50451:323;:::o;64830:2825::-;64972:27;65002;65021:7;65002:18;:27::i;:::-;64972:57;;65087:4;65046:45;;65062:19;65046:45;;;65042:86;;65100:28;;;;;;;;;;;;;;65042:86;65142:27;65171:23;65198:35;65225:7;65198:26;:35::i;:::-;65141:92;;;;65333:68;65358:15;65375:4;65381:19;:17;:19::i;:::-;65333:24;:68::i;:::-;65328:180;;65421:43;65438:4;65444:19;:17;:19::i;:::-;65421:16;:43::i;:::-;65416:92;;65473:35;;;;;;;;;;;;;;65416:92;65328:180;65539:1;65525:16;;:2;:16;;;65521:52;;65550:23;;;;;;;;;;;;;;65521:52;65586:43;65608:4;65614:2;65618:7;65627:1;65586:21;:43::i;:::-;65722:15;65719:160;;;65862:1;65841:19;65834:30;65719:160;66259:18;:24;66278:4;66259:24;;;;;;;;;;;;;;;;66257:26;;;;;;;;;;;;66328:18;:22;66347:2;66328:22;;;;;;;;;;;;;;;;66326:24;;;;;;;;;;;66650:146;66687:2;66736:45;66751:4;66757:2;66761:19;66736:14;:45::i;:::-;46850:8;66708:73;66650:18;:146::i;:::-;66621:17;:26;66639:7;66621:26;;;;;;;;;;;:175;;;;66967:1;46850:8;66916:19;:47;:52;66912:627;;66989:19;67021:1;67011:7;:11;66989:33;;67178:1;67144:17;:30;67162:11;67144:30;;;;;;;;;;;;:35;67140:384;;67282:13;;67267:11;:28;67263:242;;67462:19;67429:17;:30;67447:11;67429:30;;;;;;;;;;;:52;;;;67263:242;67140:384;66970:569;66912:627;67586:7;67582:2;67567:27;;67576:4;67567:27;;;;;;;;;;;;67605:42;67626:4;67632:2;67636:7;67645:1;67605:20;:42::i;:::-;64961:2694;;;64830:2825;;;:::o;90666:287::-;90773:4;90811:134;90846:6;;90811:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90869:10;;90923:7;90906:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;90896:36;;;;;;90811:18;:134::i;:::-;90793:152;;90666:287;;;;;:::o;87629:25::-;;;;:::o;87906:91::-;33815:13;:11;:13::i;:::-;87977:12:::1;;;;;;;;;;;87976:13;87961:12;;:28;;;;;;;;;;;;;;;;;;87906:91::o:0;89337:783::-;89444:14;;;;;;;;;;;89436:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;89502:84;89521:11;;89502:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89534:10;;89573;89556:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;89546:39;;;;;;89502:18;:84::i;:::-;89494:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;87043:4;89646:6;89630:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;89622:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;87266:1;89736:6;89720:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;89712:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;89806:1;89797:6;:10;89789:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;87222:1;89890:6;89859:14;:28;89874:12;:10;:12::i;:::-;89859:28;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:56;;89851:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;89991:9;89981:6;89971:7;;:16;;;;:::i;:::-;:29;;89963:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;90064:6;90032:14;:28;90047:12;:10;:12::i;:::-;90032:28;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;90081:31;90091:12;:10;:12::i;:::-;90105:6;90081:9;:31::i;:::-;89337:783;;;:::o;87309:26::-;;;;;;;;;;;;;:::o;67751:193::-;67897:39;67914:4;67920:2;67924:7;67897:39;;;;;;;;;;;;:16;:39::i;:::-;67751:193;;;:::o;87278:24::-;;;;;;;;;;;;;:::o;56093:152::-;56165:7;56208:27;56227:7;56208:18;:27::i;:::-;56185:52;;56093:152;;;:::o;51635:233::-;51707:7;51748:1;51731:19;;:5;:19;;;51727:60;;51759:28;;;;;;;;;;;;;;51727:60;45794:13;51805:18;:25;51824:5;51805:25;;;;;;;;;;;;;;;;:55;51798:62;;51635:233;;;:::o;34577:103::-;33815:13;:11;:13::i;:::-;34642:30:::1;34669:1;34642:18;:30::i;:::-;34577:103::o:0;88650:106::-;33815:13;:11;:13::i;:::-;88737:11:::1;88724:10;:24;;;;88650:106:::0;:::o;90961:396::-;33815:13;:11;:13::i;:::-;87043:4:::1;91048:6;91032:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;91024:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;91131:1;91122:6;:10;91114:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;91223:3;91213:6;91184:12;:26;91197:12;:10;:12::i;:::-;91184:26;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:42;;91176:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;91301:6;91271:12;:26;91284:12;:10;:12::i;:::-;91271:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;91318:31;91328:12;:10;:12::i;:::-;91342:6;91318:9;:31::i;:::-;90961:396:::0;:::o;88316:324::-;33815:13;:11;:13::i;:::-;88377:15:::1;88395:21;88377:39;;88427:18;88464:3;88458::::0;88448:7:::1;:13;;;;:::i;:::-;:19;;;;:::i;:::-;88427:40;;88480:16;88510:42;88502:56;;88566:10;88502:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88478:103;;;88600:11;88592:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;88366:274;;;88316:324::o:0;87514:34::-;;;;;;;;;;;;;;;;;;;;;;:::o;33929:87::-;33975:7;34002:6;;;;;;;;;;;33995:13;;33929:87;:::o;87180:43::-;87222:1;87180:43;:::o;88222:86::-;33815:13;:11;:13::i;:::-;88294:6:::1;88286:5;:14;;;;88222:86:::0;:::o;54876:104::-;54932:13;54965:7;54958:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54876:104;:::o;87102:31::-;;;;:::o;90128:526::-;90194:12;;;;;;;;;;;90186:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;87043:4;90266:6;90250:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;90242:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;90349:1;90340:6;:10;90332:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;87222:1;90431:6;90402:12;:26;90415:12;:10;:12::i;:::-;90402:26;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:54;;90394:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;90527:9;90517:6;90509:5;;:14;;;;:::i;:::-;:27;;90501:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;90598:6;90568:12;:26;90581:12;:10;:12::i;:::-;90568:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;90615:31;90625:12;:10;:12::i;:::-;90639:6;90615:9;:31::i;:::-;90128:526;:::o;88114:100::-;33815:13;:11;:13::i;:::-;88198:8:::1;88188:7;:18;;;;;;:::i;:::-;;88114:100:::0;:::o;61749:234::-;61896:8;61844:18;:39;61863:19;:17;:19::i;:::-;61844:39;;;;;;;;;;;;;;;:49;61884:8;61844:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;61956:8;61920:55;;61935:19;:17;:19::i;:::-;61920:55;;;61966:8;61920:55;;;;;;:::i;:::-;;;;;;;;61749:234;;:::o;68542:407::-;68717:31;68730:4;68736:2;68740:7;68717:12;:31::i;:::-;68781:1;68763:2;:14;;;:19;68759:183;;68802:56;68833:4;68839:2;68843:7;68852:5;68802:30;:56::i;:::-;68797:145;;68886:40;;;;;;;;;;;;;;68797:145;68759:183;68542:407;;;;:::o;88006:96::-;33815:13;:11;:13::i;:::-;88080:14:::1;;;;;;;;;;;88079:15;88062:14;;:32;;;;;;;;;;;;;;;;;;88006:96::o:0;88985:344::-;89058:13;89092:16;89100:7;89092;:16::i;:::-;89084:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;89156:28;89187:10;:8;:10::i;:::-;89156:41;;89243:1;89218:14;89212:28;:32;:109;;;;;;;;;;;;;;;;;89271:14;89287:18;:7;:16;:18::i;:::-;89254:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89212:109;89205:116;;;88985:344;;;:::o;87010:37::-;87043:4;87010:37;:::o;87586:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87140:33::-;;;;:::o;62140:164::-;62237:4;62261:18;:25;62280:5;62261:25;;;;;;;;;;;;;;;:35;62287:8;62261:35;;;;;;;;;;;;;;;;;;;;;;;;;62254:42;;62140:164;;;;:::o;34835:201::-;33815:13;:11;:13::i;:::-;34944:1:::1;34924:22;;:8;:22;;::::0;34916:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35000:28;35019:8;35000:18;:28::i;:::-;34835:201:::0;:::o;87230:37::-;87266:1;87230:37;:::o;62562:282::-;62627:4;62683:7;62664:15;:13;:15::i;:::-;:26;;:66;;;;;62717:13;;62707:7;:23;62664:66;:153;;;;;62816:1;46570:8;62768:17;:26;62786:7;62768:26;;;;;;;;;;;;:44;:49;62664:153;62644:173;;62562:282;;;:::o;84870:105::-;84930:7;84957:10;84950:17;;84870:105;:::o;88880:93::-;88937:7;88964:1;88957:8;;88880:93;:::o;57248:1275::-;57315:7;57335:12;57350:7;57335:22;;57418:4;57399:15;:13;:15::i;:::-;:23;57395:1061;;57452:13;;57445:4;:20;57441:1015;;;57490:14;57507:17;:23;57525:4;57507:23;;;;;;;;;;;;57490:40;;57624:1;46570:8;57596:6;:24;:29;57592:845;;58261:113;58278:1;58268:6;:11;58261:113;;58321:17;:25;58339:6;;;;;;;58321:25;;;;;;;;;;;;58312:34;;58261:113;;;58407:6;58400:13;;;;;;57592:845;57467:989;57441:1015;57395:1061;58484:31;;;;;;;;;;;;;;57248:1275;;;;:::o;63725:485::-;63827:27;63856:23;63897:38;63938:15;:24;63954:7;63938:24;;;;;;;;;;;63897:65;;64115:18;64092:41;;64172:19;64166:26;64147:45;;64077:126;63725:485;;;:::o;62953:659::-;63102:11;63267:16;63260:5;63256:28;63247:37;;63427:16;63416:9;63412:32;63399:45;;63577:15;63566:9;63563:30;63555:5;63544:9;63541:20;63538:56;63528:66;;62953:659;;;;;:::o;69611:159::-;;;;;:::o;84179:311::-;84314:7;84334:16;46974:3;84360:19;:41;;84334:68;;46974:3;84428:31;84439:4;84445:2;84449:9;84428:10;:31::i;:::-;84420:40;;:62;;84413:69;;;84179:311;;;;;:::o;59071:450::-;59151:14;59319:16;59312:5;59308:28;59299:37;;59496:5;59482:11;59457:23;59453:41;59450:52;59443:5;59440:63;59430:73;;59071:450;;;;:::o;70435:158::-;;;;;:::o;1222:190::-;1347:4;1400;1371:25;1384:5;1391:4;1371:12;:25::i;:::-;:33;1364:40;;1222:190;;;;;:::o;34094:132::-;34169:12;:10;:12::i;:::-;34158:23;;:7;:5;:7::i;:::-;:23;;;34150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34094:132::o;32480:98::-;32533:7;32560:10;32553:17;;32480:98;:::o;78702:112::-;78779:27;78789:2;78793:8;78779:27;;;;;;;;;;;;:9;:27::i;:::-;78702:112;;:::o;35196:191::-;35270:16;35289:6;;;;;;;;;;;35270:25;;35315:8;35306:6;;:17;;;;;;;;;;;;;;;;;;35370:8;35339:40;;35360:8;35339:40;;;;;;;;;;;;35259:128;35196:191;:::o;71033:716::-;71196:4;71242:2;71217:45;;;71263:19;:17;:19::i;:::-;71284:4;71290:7;71299:5;71217:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;71213:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71517:1;71500:6;:13;:18;71496:235;;71546:40;;;;;;;;;;;;;;71496:235;71689:6;71683:13;71674:6;71670:2;71666:15;71659:38;71213:529;71386:54;;;71376:64;;;:6;:64;;;;71369:71;;;71033:716;;;;;;:::o;88764:108::-;88824:13;88857:7;88850:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88764:108;:::o;22866:716::-;22922:13;22973:14;23010:1;22990:17;23001:5;22990:10;:17::i;:::-;:21;22973:38;;23026:20;23060:6;23049:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23026:41;;23082:11;23211:6;23207:2;23203:15;23195:6;23191:28;23184:35;;23248:288;23255:4;23248:288;;;23280:5;;;;;;;;23422:8;23417:2;23410:5;23406:14;23401:30;23396:3;23388:44;23478:2;23469:11;;;;;;:::i;:::-;;;;;23512:1;23503:5;:10;23248:288;23499:21;23248:288;23557:6;23550:13;;;;;22866:716;;;:::o;83880:147::-;84017:6;83880:147;;;;;:::o;2089:296::-;2172:7;2192:20;2215:4;2192:27;;2235:9;2230:118;2254:5;:12;2250:1;:16;2230:118;;;2303:33;2313:12;2327:5;2333:1;2327:8;;;;;;;;:::i;:::-;;;;;;;;2303:9;:33::i;:::-;2288:48;;2268:3;;;;;:::i;:::-;;;;2230:118;;;;2365:12;2358:19;;;2089:296;;;;:::o;77929:689::-;78060:19;78066:2;78070:8;78060:5;:19::i;:::-;78139:1;78121:2;:14;;;:19;78117:483;;78161:11;78175:13;;78161:27;;78207:13;78229:8;78223:3;:14;78207:30;;78256:233;78287:62;78326:1;78330:2;78334:7;;;;;;78343:5;78287:30;:62::i;:::-;78282:167;;78385:40;;;;;;;;;;;;;;78282:167;78484:3;78476:5;:11;78256:233;;78571:3;78554:13;;:20;78550:34;;78576:8;;;78550:34;78142:458;;78117:483;77929:689;;;:::o;19732:922::-;19785:7;19805:14;19822:1;19805:18;;19872:6;19863:5;:15;19859:102;;19908:6;19899:15;;;;;;:::i;:::-;;;;;19943:2;19933:12;;;;19859:102;19988:6;19979:5;:15;19975:102;;20024:6;20015:15;;;;;;:::i;:::-;;;;;20059:2;20049:12;;;;19975:102;20104:6;20095:5;:15;20091:102;;20140:6;20131:15;;;;;;:::i;:::-;;;;;20175:2;20165:12;;;;20091:102;20220:5;20211;:14;20207:99;;20255:5;20246:14;;;;;;:::i;:::-;;;;;20289:1;20279:11;;;;20207:99;20333:5;20324;:14;20320:99;;20368:5;20359:14;;;;;;:::i;:::-;;;;;20402:1;20392:11;;;;20320:99;20446:5;20437;:14;20433:99;;20481:5;20472:14;;;;;;:::i;:::-;;;;;20515:1;20505:11;;;;20433:99;20559:5;20550;:14;20546:66;;20595:1;20585:11;;;;20546:66;20640:6;20633:13;;;19732:922;;;:::o;9129:149::-;9192:7;9223:1;9219;:5;:51;;9250:20;9265:1;9268;9250:14;:20::i;:::-;9219:51;;;9227:20;9242:1;9245;9227:14;:20::i;:::-;9219:51;9212:58;;9129:149;;;;:::o;72211:2966::-;72284:20;72307:13;;72284:36;;72347:1;72335:8;:13;72331:44;;72357:18;;;;;;;;;;;;;;72331:44;72388:61;72418:1;72422:2;72426:12;72440:8;72388:21;:61::i;:::-;72932:1;45932:2;72902:1;:26;;72901:32;72889:8;:45;72863:18;:22;72882:2;72863:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;73211:139;73248:2;73302:33;73325:1;73329:2;73333:1;73302:14;:33::i;:::-;73269:30;73290:8;73269:20;:30::i;:::-;:66;73211:18;:139::i;:::-;73177:17;:31;73195:12;73177:31;;;;;;;;;;;:173;;;;73367:16;73398:11;73427:8;73412:12;:23;73398:37;;73948:16;73944:2;73940:25;73928:37;;74320:12;74280:8;74239:1;74177:25;74118:1;74057;74030:335;74691:1;74677:12;74673:20;74631:346;74732:3;74723:7;74720:16;74631:346;;74950:7;74940:8;74937:1;74910:25;74907:1;74904;74899:59;74785:1;74776:7;74772:15;74761:26;;74631:346;;;74635:77;75022:1;75010:8;:13;75006:45;;75032:19;;;;;;;;;;;;;;75006:45;75084:3;75068:13;:19;;;;72637:2462;;75109:60;75138:1;75142:2;75146:12;75160:8;75109:20;:60::i;:::-;72273:2904;72211:2966;;:::o;9286:268::-;9354:13;9461:1;9455:4;9448:15;9490:1;9484:4;9477:15;9531:4;9525;9515:21;9506:30;;9286:268;;;;:::o;59623:324::-;59693:14;59926:1;59916:8;59913:15;59887:24;59883:46;59873:56;;59623:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6253:568;6326:8;6336:6;6386:3;6379:4;6371:6;6367:17;6363:27;6353:122;;6394:79;;:::i;:::-;6353:122;6507:6;6494:20;6484:30;;6537:18;6529:6;6526:30;6523:117;;;6559:79;;:::i;:::-;6523:117;6673:4;6665:6;6661:17;6649:29;;6727:3;6719:4;6711:6;6707:17;6697:8;6693:32;6690:41;6687:128;;;6734:79;;:::i;:::-;6687:128;6253:568;;;;;:::o;6827:704::-;6922:6;6930;6938;6987:2;6975:9;6966:7;6962:23;6958:32;6955:119;;;6993:79;;:::i;:::-;6955:119;7113:1;7138:53;7183:7;7174:6;7163:9;7159:22;7138:53;:::i;:::-;7128:63;;7084:117;7268:2;7257:9;7253:18;7240:32;7299:18;7291:6;7288:30;7285:117;;;7321:79;;:::i;:::-;7285:117;7434:80;7506:7;7497:6;7486:9;7482:22;7434:80;:::i;:::-;7416:98;;;;7211:313;6827:704;;;;;:::o;7537:77::-;7574:7;7603:5;7592:16;;7537:77;;;:::o;7620:118::-;7707:24;7725:5;7707:24;:::i;:::-;7702:3;7695:37;7620:118;;:::o;7744:222::-;7837:4;7875:2;7864:9;7860:18;7852:26;;7888:71;7956:1;7945:9;7941:17;7932:6;7888:71;:::i;:::-;7744:222;;;;:::o;7972:704::-;8067:6;8075;8083;8132:2;8120:9;8111:7;8107:23;8103:32;8100:119;;;8138:79;;:::i;:::-;8100:119;8258:1;8283:53;8328:7;8319:6;8308:9;8304:22;8283:53;:::i;:::-;8273:63;;8229:117;8413:2;8402:9;8398:18;8385:32;8444:18;8436:6;8433:30;8430:117;;;8466:79;;:::i;:::-;8430:117;8579:80;8651:7;8642:6;8631:9;8627:22;8579:80;:::i;:::-;8561:98;;;;8356:313;7972:704;;;;;:::o;8682:329::-;8741:6;8790:2;8778:9;8769:7;8765:23;8761:32;8758:119;;;8796:79;;:::i;:::-;8758:119;8916:1;8941:53;8986:7;8977:6;8966:9;8962:22;8941:53;:::i;:::-;8931:63;;8887:117;8682:329;;;;:::o;9017:122::-;9090:24;9108:5;9090:24;:::i;:::-;9083:5;9080:35;9070:63;;9129:1;9126;9119:12;9070:63;9017:122;:::o;9145:139::-;9191:5;9229:6;9216:20;9207:29;;9245:33;9272:5;9245:33;:::i;:::-;9145:139;;;;:::o;9290:329::-;9349:6;9398:2;9386:9;9377:7;9373:23;9369:32;9366:119;;;9404:79;;:::i;:::-;9366:119;9524:1;9549:53;9594:7;9585:6;9574:9;9570:22;9549:53;:::i;:::-;9539:63;;9495:117;9290:329;;;;:::o;9625:117::-;9734:1;9731;9724:12;9748:180;9796:77;9793:1;9786:88;9893:4;9890:1;9883:15;9917:4;9914:1;9907:15;9934:281;10017:27;10039:4;10017:27;:::i;:::-;10009:6;10005:40;10147:6;10135:10;10132:22;10111:18;10099:10;10096:34;10093:62;10090:88;;;10158:18;;:::i;:::-;10090:88;10198:10;10194:2;10187:22;9977:238;9934:281;;:::o;10221:129::-;10255:6;10282:20;;:::i;:::-;10272:30;;10311:33;10339:4;10331:6;10311:33;:::i;:::-;10221:129;;;:::o;10356:308::-;10418:4;10508:18;10500:6;10497:30;10494:56;;;10530:18;;:::i;:::-;10494:56;10568:29;10590:6;10568:29;:::i;:::-;10560:37;;10652:4;10646;10642:15;10634:23;;10356:308;;;:::o;10670:146::-;10767:6;10762:3;10757;10744:30;10808:1;10799:6;10794:3;10790:16;10783:27;10670:146;;;:::o;10822:425::-;10900:5;10925:66;10941:49;10983:6;10941:49;:::i;:::-;10925:66;:::i;:::-;10916:75;;11014:6;11007:5;11000:21;11052:4;11045:5;11041:16;11090:3;11081:6;11076:3;11072:16;11069:25;11066:112;;;11097:79;;:::i;:::-;11066:112;11187:54;11234:6;11229:3;11224;11187:54;:::i;:::-;10906:341;10822:425;;;;;:::o;11267:340::-;11323:5;11372:3;11365:4;11357:6;11353:17;11349:27;11339:122;;11380:79;;:::i;:::-;11339:122;11497:6;11484:20;11522:79;11597:3;11589:6;11582:4;11574:6;11570:17;11522:79;:::i;:::-;11513:88;;11329:278;11267:340;;;;:::o;11613:509::-;11682:6;11731:2;11719:9;11710:7;11706:23;11702:32;11699:119;;;11737:79;;:::i;:::-;11699:119;11885:1;11874:9;11870:17;11857:31;11915:18;11907:6;11904:30;11901:117;;;11937:79;;:::i;:::-;11901:117;12042:63;12097:7;12088:6;12077:9;12073:22;12042:63;:::i;:::-;12032:73;;11828:287;11613:509;;;;:::o;12128:116::-;12198:21;12213:5;12198:21;:::i;:::-;12191:5;12188:32;12178:60;;12234:1;12231;12224:12;12178:60;12128:116;:::o;12250:133::-;12293:5;12331:6;12318:20;12309:29;;12347:30;12371:5;12347:30;:::i;:::-;12250:133;;;;:::o;12389:468::-;12454:6;12462;12511:2;12499:9;12490:7;12486:23;12482:32;12479:119;;;12517:79;;:::i;:::-;12479:119;12637:1;12662:53;12707:7;12698:6;12687:9;12683:22;12662:53;:::i;:::-;12652:63;;12608:117;12764:2;12790:50;12832:7;12823:6;12812:9;12808:22;12790:50;:::i;:::-;12780:60;;12735:115;12389:468;;;;;:::o;12863:307::-;12924:4;13014:18;13006:6;13003:30;13000:56;;;13036:18;;:::i;:::-;13000:56;13074:29;13096:6;13074:29;:::i;:::-;13066:37;;13158:4;13152;13148:15;13140:23;;12863:307;;;:::o;13176:423::-;13253:5;13278:65;13294:48;13335:6;13294:48;:::i;:::-;13278:65;:::i;:::-;13269:74;;13366:6;13359:5;13352:21;13404:4;13397:5;13393:16;13442:3;13433:6;13428:3;13424:16;13421:25;13418:112;;;13449:79;;:::i;:::-;13418:112;13539:54;13586:6;13581:3;13576;13539:54;:::i;:::-;13259:340;13176:423;;;;;:::o;13618:338::-;13673:5;13722:3;13715:4;13707:6;13703:17;13699:27;13689:122;;13730:79;;:::i;:::-;13689:122;13847:6;13834:20;13872:78;13946:3;13938:6;13931:4;13923:6;13919:17;13872:78;:::i;:::-;13863:87;;13679:277;13618:338;;;;:::o;13962:943::-;14057:6;14065;14073;14081;14130:3;14118:9;14109:7;14105:23;14101:33;14098:120;;;14137:79;;:::i;:::-;14098:120;14257:1;14282:53;14327:7;14318:6;14307:9;14303:22;14282:53;:::i;:::-;14272:63;;14228:117;14384:2;14410:53;14455:7;14446:6;14435:9;14431:22;14410:53;:::i;:::-;14400:63;;14355:118;14512:2;14538:53;14583:7;14574:6;14563:9;14559:22;14538:53;:::i;:::-;14528:63;;14483:118;14668:2;14657:9;14653:18;14640:32;14699:18;14691:6;14688:30;14685:117;;;14721:79;;:::i;:::-;14685:117;14826:62;14880:7;14871:6;14860:9;14856:22;14826:62;:::i;:::-;14816:72;;14611:287;13962:943;;;;;;;:::o;14911:474::-;14979:6;14987;15036:2;15024:9;15015:7;15011:23;15007:32;15004:119;;;15042:79;;:::i;:::-;15004:119;15162:1;15187:53;15232:7;15223:6;15212:9;15208:22;15187:53;:::i;:::-;15177:63;;15133:117;15289:2;15315:53;15360:7;15351:6;15340:9;15336:22;15315:53;:::i;:::-;15305:63;;15260:118;14911:474;;;;;:::o;15391:180::-;15439:77;15436:1;15429:88;15536:4;15533:1;15526:15;15560:4;15557:1;15550:15;15577:320;15621:6;15658:1;15652:4;15648:12;15638:22;;15705:1;15699:4;15695:12;15726:18;15716:81;;15782:4;15774:6;15770:17;15760:27;;15716:81;15844:2;15836:6;15833:14;15813:18;15810:38;15807:84;;15863:18;;:::i;:::-;15807:84;15628:269;15577:320;;;:::o;15903:94::-;15936:8;15984:5;15980:2;15976:14;15955:35;;15903:94;;;:::o;16003:::-;16042:7;16071:20;16085:5;16071:20;:::i;:::-;16060:31;;16003:94;;;:::o;16103:100::-;16142:7;16171:26;16191:5;16171:26;:::i;:::-;16160:37;;16103:100;;;:::o;16209:157::-;16314:45;16334:24;16352:5;16334:24;:::i;:::-;16314:45;:::i;:::-;16309:3;16302:58;16209:157;;:::o;16372:256::-;16484:3;16499:75;16570:3;16561:6;16499:75;:::i;:::-;16599:2;16594:3;16590:12;16583:19;;16619:3;16612:10;;16372:256;;;;:::o;16634:170::-;16774:22;16770:1;16762:6;16758:14;16751:46;16634:170;:::o;16810:366::-;16952:3;16973:67;17037:2;17032:3;16973:67;:::i;:::-;16966:74;;17049:93;17138:3;17049:93;:::i;:::-;17167:2;17162:3;17158:12;17151:19;;16810:366;;;:::o;17182:419::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17182:419;;;:::o;17607:170::-;17747:22;17743:1;17735:6;17731:14;17724:46;17607:170;:::o;17783:366::-;17925:3;17946:67;18010:2;18005:3;17946:67;:::i;:::-;17939:74;;18022:93;18111:3;18022:93;:::i;:::-;18140:2;18135:3;18131:12;18124:19;;17783:366;;;:::o;18155:419::-;18321:4;18359:2;18348:9;18344:18;18336:26;;18408:9;18402:4;18398:20;18394:1;18383:9;18379:17;18372:47;18436:131;18562:4;18436:131;:::i;:::-;18428:139;;18155:419;;;:::o;18580:180::-;18628:77;18625:1;18618:88;18725:4;18722:1;18715:15;18749:4;18746:1;18739:15;18766:191;18806:3;18825:20;18843:1;18825:20;:::i;:::-;18820:25;;18859:20;18877:1;18859:20;:::i;:::-;18854:25;;18902:1;18899;18895:9;18888:16;;18923:3;18920:1;18917:10;18914:36;;;18930:18;;:::i;:::-;18914:36;18766:191;;;;:::o;18963:181::-;19103:33;19099:1;19091:6;19087:14;19080:57;18963:181;:::o;19150:366::-;19292:3;19313:67;19377:2;19372:3;19313:67;:::i;:::-;19306:74;;19389:93;19478:3;19389:93;:::i;:::-;19507:2;19502:3;19498:12;19491:19;;19150:366;;;:::o;19522:419::-;19688:4;19726:2;19715:9;19711:18;19703:26;;19775:9;19769:4;19765:20;19761:1;19750:9;19746:17;19739:47;19803:131;19929:4;19803:131;:::i;:::-;19795:139;;19522:419;;;:::o;19947:168::-;20087:20;20083:1;20075:6;20071:14;20064:44;19947:168;:::o;20121:366::-;20263:3;20284:67;20348:2;20343:3;20284:67;:::i;:::-;20277:74;;20360:93;20449:3;20360:93;:::i;:::-;20478:2;20473:3;20469:12;20462:19;;20121:366;;;:::o;20493:419::-;20659:4;20697:2;20686:9;20682:18;20674:26;;20746:9;20740:4;20736:20;20732:1;20721:9;20717:17;20710:47;20774:131;20900:4;20774:131;:::i;:::-;20766:139;;20493:419;;;:::o;20918:178::-;21058:30;21054:1;21046:6;21042:14;21035:54;20918:178;:::o;21102:366::-;21244:3;21265:67;21329:2;21324:3;21265:67;:::i;:::-;21258:74;;21341:93;21430:3;21341:93;:::i;:::-;21459:2;21454:3;21450:12;21443:19;;21102:366;;;:::o;21474:419::-;21640:4;21678:2;21667:9;21663:18;21655:26;;21727:9;21721:4;21717:20;21713:1;21702:9;21698:17;21691:47;21755:131;21881:4;21755:131;:::i;:::-;21747:139;;21474:419;;;:::o;21899:182::-;22039:34;22035:1;22027:6;22023:14;22016:58;21899:182;:::o;22087:366::-;22229:3;22250:67;22314:2;22309:3;22250:67;:::i;:::-;22243:74;;22326:93;22415:3;22326:93;:::i;:::-;22444:2;22439:3;22435:12;22428:19;;22087:366;;;:::o;22459:419::-;22625:4;22663:2;22652:9;22648:18;22640:26;;22712:9;22706:4;22702:20;22698:1;22687:9;22683:17;22676:47;22740:131;22866:4;22740:131;:::i;:::-;22732:139;;22459:419;;;:::o;22884:410::-;22924:7;22947:20;22965:1;22947:20;:::i;:::-;22942:25;;22981:20;22999:1;22981:20;:::i;:::-;22976:25;;23036:1;23033;23029:9;23058:30;23076:11;23058:30;:::i;:::-;23047:41;;23237:1;23228:7;23224:15;23221:1;23218:22;23198:1;23191:9;23171:83;23148:139;;23267:18;;:::i;:::-;23148:139;22932:362;22884:410;;;;:::o;23300:164::-;23440:16;23436:1;23428:6;23424:14;23417:40;23300:164;:::o;23470:366::-;23612:3;23633:67;23697:2;23692:3;23633:67;:::i;:::-;23626:74;;23709:93;23798:3;23709:93;:::i;:::-;23827:2;23822:3;23818:12;23811:19;;23470:366;;;:::o;23842:419::-;24008:4;24046:2;24035:9;24031:18;24023:26;;24095:9;24089:4;24085:20;24081:1;24070:9;24066:17;24059:47;24123:131;24249:4;24123:131;:::i;:::-;24115:139;;23842:419;;;:::o;24267:177::-;24407:29;24403:1;24395:6;24391:14;24384:53;24267:177;:::o;24450:366::-;24592:3;24613:67;24677:2;24672:3;24613:67;:::i;:::-;24606:74;;24689:93;24778:3;24689:93;:::i;:::-;24807:2;24802:3;24798:12;24791:19;;24450:366;;;:::o;24822:419::-;24988:4;25026:2;25015:9;25011:18;25003:26;;25075:9;25069:4;25065:20;25061:1;25050:9;25046:17;25039:47;25103:131;25229:4;25103:131;:::i;:::-;25095:139;;24822:419;;;:::o;25247:180::-;25295:77;25292:1;25285:88;25392:4;25389:1;25382:15;25416:4;25413:1;25406:15;25433:185;25473:1;25490:20;25508:1;25490:20;:::i;:::-;25485:25;;25524:20;25542:1;25524:20;:::i;:::-;25519:25;;25563:1;25553:35;;25568:18;;:::i;:::-;25553:35;25610:1;25607;25603:9;25598:14;;25433:185;;;;:::o;25624:147::-;25725:11;25762:3;25747:18;;25624:147;;;;:::o;25777:114::-;;:::o;25897:398::-;26056:3;26077:83;26158:1;26153:3;26077:83;:::i;:::-;26070:90;;26169:93;26258:3;26169:93;:::i;:::-;26287:1;26282:3;26278:11;26271:18;;25897:398;;;:::o;26301:379::-;26485:3;26507:147;26650:3;26507:147;:::i;:::-;26500:154;;26671:3;26664:10;;26301:379;;;:::o;26686:166::-;26826:18;26822:1;26814:6;26810:14;26803:42;26686:166;:::o;26858:366::-;27000:3;27021:67;27085:2;27080:3;27021:67;:::i;:::-;27014:74;;27097:93;27186:3;27097:93;:::i;:::-;27215:2;27210:3;27206:12;27199:19;;26858:366;;;:::o;27230:419::-;27396:4;27434:2;27423:9;27419:18;27411:26;;27483:9;27477:4;27473:20;27469:1;27458:9;27454:17;27447:47;27511:131;27637:4;27511:131;:::i;:::-;27503:139;;27230:419;;;:::o;27655:179::-;27795:31;27791:1;27783:6;27779:14;27772:55;27655:179;:::o;27840:366::-;27982:3;28003:67;28067:2;28062:3;28003:67;:::i;:::-;27996:74;;28079:93;28168:3;28079:93;:::i;:::-;28197:2;28192:3;28188:12;28181:19;;27840:366;;;:::o;28212:419::-;28378:4;28416:2;28405:9;28401:18;28393:26;;28465:9;28459:4;28455:20;28451:1;28440:9;28436:17;28429:47;28493:131;28619:4;28493:131;:::i;:::-;28485:139;;28212:419;;;:::o;28637:141::-;28686:4;28709:3;28701:11;;28732:3;28729:1;28722:14;28766:4;28763:1;28753:18;28745:26;;28637:141;;;:::o;28784:93::-;28821:6;28868:2;28863;28856:5;28852:14;28848:23;28838:33;;28784:93;;;:::o;28883:107::-;28927:8;28977:5;28971:4;28967:16;28946:37;;28883:107;;;;:::o;28996:393::-;29065:6;29115:1;29103:10;29099:18;29138:97;29168:66;29157:9;29138:97;:::i;:::-;29256:39;29286:8;29275:9;29256:39;:::i;:::-;29244:51;;29328:4;29324:9;29317:5;29313:21;29304:30;;29377:4;29367:8;29363:19;29356:5;29353:30;29343:40;;29072:317;;28996:393;;;;;:::o;29395:60::-;29423:3;29444:5;29437:12;;29395:60;;;:::o;29461:142::-;29511:9;29544:53;29562:34;29571:24;29589:5;29571:24;:::i;:::-;29562:34;:::i;:::-;29544:53;:::i;:::-;29531:66;;29461:142;;;:::o;29609:75::-;29652:3;29673:5;29666:12;;29609:75;;;:::o;29690:269::-;29800:39;29831:7;29800:39;:::i;:::-;29861:91;29910:41;29934:16;29910:41;:::i;:::-;29902:6;29895:4;29889:11;29861:91;:::i;:::-;29855:4;29848:105;29766:193;29690:269;;;:::o;29965:73::-;30010:3;29965:73;:::o;30044:189::-;30121:32;;:::i;:::-;30162:65;30220:6;30212;30206:4;30162:65;:::i;:::-;30097:136;30044:189;;:::o;30239:186::-;30299:120;30316:3;30309:5;30306:14;30299:120;;;30370:39;30407:1;30400:5;30370:39;:::i;:::-;30343:1;30336:5;30332:13;30323:22;;30299:120;;;30239:186;;:::o;30431:543::-;30532:2;30527:3;30524:11;30521:446;;;30566:38;30598:5;30566:38;:::i;:::-;30650:29;30668:10;30650:29;:::i;:::-;30640:8;30636:44;30833:2;30821:10;30818:18;30815:49;;;30854:8;30839:23;;30815:49;30877:80;30933:22;30951:3;30933:22;:::i;:::-;30923:8;30919:37;30906:11;30877:80;:::i;:::-;30536:431;;30521:446;30431:543;;;:::o;30980:117::-;31034:8;31084:5;31078:4;31074:16;31053:37;;30980:117;;;;:::o;31103:169::-;31147:6;31180:51;31228:1;31224:6;31216:5;31213:1;31209:13;31180:51;:::i;:::-;31176:56;31261:4;31255;31251:15;31241:25;;31154:118;31103:169;;;;:::o;31277:295::-;31353:4;31499:29;31524:3;31518:4;31499:29;:::i;:::-;31491:37;;31561:3;31558:1;31554:11;31548:4;31545:21;31537:29;;31277:295;;;;:::o;31577:1395::-;31694:37;31727:3;31694:37;:::i;:::-;31796:18;31788:6;31785:30;31782:56;;;31818:18;;:::i;:::-;31782:56;31862:38;31894:4;31888:11;31862:38;:::i;:::-;31947:67;32007:6;31999;31993:4;31947:67;:::i;:::-;32041:1;32065:4;32052:17;;32097:2;32089:6;32086:14;32114:1;32109:618;;;;32771:1;32788:6;32785:77;;;32837:9;32832:3;32828:19;32822:26;32813:35;;32785:77;32888:67;32948:6;32941:5;32888:67;:::i;:::-;32882:4;32875:81;32744:222;32079:887;;32109:618;32161:4;32157:9;32149:6;32145:22;32195:37;32227:4;32195:37;:::i;:::-;32254:1;32268:208;32282:7;32279:1;32276:14;32268:208;;;32361:9;32356:3;32352:19;32346:26;32338:6;32331:42;32412:1;32404:6;32400:14;32390:24;;32459:2;32448:9;32444:18;32431:31;;32305:4;32302:1;32298:12;32293:17;;32268:208;;;32504:6;32495:7;32492:19;32489:179;;;32562:9;32557:3;32553:19;32547:26;32605:48;32647:4;32639:6;32635:17;32624:9;32605:48;:::i;:::-;32597:6;32590:64;32512:156;32489:179;32714:1;32710;32702:6;32698:14;32694:22;32688:4;32681:36;32116:611;;;32079:887;;31669:1303;;;31577:1395;;:::o;32978:220::-;33118:34;33114:1;33106:6;33102:14;33095:58;33187:3;33182:2;33174:6;33170:15;33163:28;32978:220;:::o;33204:366::-;33346:3;33367:67;33431:2;33426:3;33367:67;:::i;:::-;33360:74;;33443:93;33532:3;33443:93;:::i;:::-;33561:2;33556:3;33552:12;33545:19;;33204:366;;;:::o;33576:419::-;33742:4;33780:2;33769:9;33765:18;33757:26;;33829:9;33823:4;33819:20;33815:1;33804:9;33800:17;33793:47;33857:131;33983:4;33857:131;:::i;:::-;33849:139;;33576:419;;;:::o;34001:148::-;34103:11;34140:3;34125:18;;34001:148;;;;:::o;34155:390::-;34261:3;34289:39;34322:5;34289:39;:::i;:::-;34344:89;34426:6;34421:3;34344:89;:::i;:::-;34337:96;;34442:65;34500:6;34495:3;34488:4;34481:5;34477:16;34442:65;:::i;:::-;34532:6;34527:3;34523:16;34516:23;;34265:280;34155:390;;;;:::o;34551:155::-;34691:7;34687:1;34679:6;34675:14;34668:31;34551:155;:::o;34712:400::-;34872:3;34893:84;34975:1;34970:3;34893:84;:::i;:::-;34886:91;;34986:93;35075:3;34986:93;:::i;:::-;35104:1;35099:3;35095:11;35088:18;;34712:400;;;:::o;35118:701::-;35399:3;35421:95;35512:3;35503:6;35421:95;:::i;:::-;35414:102;;35533:95;35624:3;35615:6;35533:95;:::i;:::-;35526:102;;35645:148;35789:3;35645:148;:::i;:::-;35638:155;;35810:3;35803:10;;35118:701;;;;;:::o;35825:225::-;35965:34;35961:1;35953:6;35949:14;35942:58;36034:8;36029:2;36021:6;36017:15;36010:33;35825:225;:::o;36056:366::-;36198:3;36219:67;36283:2;36278:3;36219:67;:::i;:::-;36212:74;;36295:93;36384:3;36295:93;:::i;:::-;36413:2;36408:3;36404:12;36397:19;;36056:366;;;:::o;36428:419::-;36594:4;36632:2;36621:9;36617:18;36609:26;;36681:9;36675:4;36671:20;36667:1;36656:9;36652:17;36645:47;36709:131;36835:4;36709:131;:::i;:::-;36701:139;;36428:419;;;:::o;36853:182::-;36993:34;36989:1;36981:6;36977:14;36970:58;36853:182;:::o;37041:366::-;37183:3;37204:67;37268:2;37263:3;37204:67;:::i;:::-;37197:74;;37280:93;37369:3;37280:93;:::i;:::-;37398:2;37393:3;37389:12;37382:19;;37041:366;;;:::o;37413:419::-;37579:4;37617:2;37606:9;37602:18;37594:26;;37666:9;37660:4;37656:20;37652:1;37641:9;37637:17;37630:47;37694:131;37820:4;37694:131;:::i;:::-;37686:139;;37413:419;;;:::o;37838:98::-;37889:6;37923:5;37917:12;37907:22;;37838:98;;;:::o;37942:168::-;38025:11;38059:6;38054:3;38047:19;38099:4;38094:3;38090:14;38075:29;;37942:168;;;;:::o;38116:373::-;38202:3;38230:38;38262:5;38230:38;:::i;:::-;38284:70;38347:6;38342:3;38284:70;:::i;:::-;38277:77;;38363:65;38421:6;38416:3;38409:4;38402:5;38398:16;38363:65;:::i;:::-;38453:29;38475:6;38453:29;:::i;:::-;38448:3;38444:39;38437:46;;38206:283;38116:373;;;;:::o;38495:640::-;38690:4;38728:3;38717:9;38713:19;38705:27;;38742:71;38810:1;38799:9;38795:17;38786:6;38742:71;:::i;:::-;38823:72;38891:2;38880:9;38876:18;38867:6;38823:72;:::i;:::-;38905;38973:2;38962:9;38958:18;38949:6;38905:72;:::i;:::-;39024:9;39018:4;39014:20;39009:2;38998:9;38994:18;38987:48;39052:76;39123:4;39114:6;39052:76;:::i;:::-;39044:84;;38495:640;;;;;;;:::o;39141:141::-;39197:5;39228:6;39222:13;39213:22;;39244:32;39270:5;39244:32;:::i;:::-;39141:141;;;;:::o;39288:349::-;39357:6;39406:2;39394:9;39385:7;39381:23;39377:32;39374:119;;;39412:79;;:::i;:::-;39374:119;39532:1;39557:63;39612:7;39603:6;39592:9;39588:22;39557:63;:::i;:::-;39547:73;;39503:127;39288:349;;;;:::o;39643:180::-;39691:77;39688:1;39681:88;39788:4;39785:1;39778:15;39812:4;39809:1;39802:15;39829:233;39868:3;39891:24;39909:5;39891:24;:::i;:::-;39882:33;;39937:66;39930:5;39927:77;39924:103;;40007:18;;:::i;:::-;39924:103;40054:1;40047:5;40043:13;40036:20;;39829:233;;;:::o

Swarm Source

ipfs://467f234e25fe83609c6009c20e110bdac4a75196e7777fa3ca40c005590ef19e
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.