ETH Price: $3,478.97 (+1.63%)
Gas: 13 Gwei

Token

Ragdollz Reborn (RAGZ)
 

Overview

Max Total Supply

3,000 RAGZ

Holders

421

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 RAGZ
0xc761a7a1fe7bd916baa9e38e3a5a219bef93cb17
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:
Ragdollz

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/Ragdollz.sol



pragma solidity >=0.8.13 <0.9.0;









contract Ragdollz is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
    string public uri;
    string public uriSuffix = ".json";
    uint256 public pricePublic = 0.025 ether;

    uint256 public maxSupply = 6000;
    uint256 public maxMintAmountPerTx = 10;
    uint256 public maxLimitPerWallet = 1000;
    bool public publicMinting = false;

    address private mintClaimPass;

    mapping (address => uint256) public addressBalance;
    mapping (address => uint256) public premintBalance;
    address private A1; 
    address private A2; 
    address private A3; 


// ================== Variables End =======================  

// ================== Constructor Start =======================

    constructor(
        string memory _uri, address mintPass, address add1, address add2, address add3
    ) ERC721A("Ragdollz Reborn", "RAGZ")  {
        seturi(_uri);
        setPasswordMinting(mintPass);
        A1 = add1;
        A2 = add2;
        A3 = add3;
    }

// ================== Constructor End =======================

// ================== Modifiers Start =======================

// ================== Modifiers End ========================

// ================== Mint Functions Start =======================
 
    function CollectReserves(uint256 amount) public onlyOwner nonReentrant {
        require(totalSupply() + amount <= maxSupply, 'Max Supply Exceeded.');
        _safeMint(msg.sender, amount);
    }

    function HolderClaim(address password, uint256 _mintAmount) public nonReentrant {
        require(premintBalance[msg.sender] < 1, 'Already minted via PreMint please wait and use publicminting');

        uint256 supply = totalSupply();

        require(password == mintClaimPass, 'Incorrect password');

        uint256 amtToMint = _mintAmount; //set minting to 1 for 1
        // Normal requirements 
        require(amtToMint > 0, 'Invalid mint amount!');
        require(supply + amtToMint <= maxSupply, 'Max supply exceeded!');

        premintBalance[msg.sender] += amtToMint;
        // Mint
        _safeMint(_msgSender(), amtToMint);

    }

    function Mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Public sale not active!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(msg.value >= pricePublic * _mintAmount, 'Insufficient funds!');
        require(addressBalance[msg.sender] < maxLimitPerWallet, 'Too many NFTs minted to wallet.');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }  

    function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
        _safeMint(_receiver, _mintAmount);
    }


// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

// uri
    function seturi(string memory _uri) public onlyOwner {
        uri = _uri;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

// max per tx
    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

// max per wallet
    function setMaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
        maxLimitPerWallet = _maxLimitPerWallet;
    }

// price

    function setCostPublic(uint256 _cost) public onlyOwner {
        pricePublic = _cost;
    }  

// supply limit
    function setSupplyLimit(uint256 _supplyLimit) public onlyOwner {
        maxSupply = _supplyLimit;
    }

// set mintingallowed
    function setPublicMinting(bool setActive) public onlyOwner {
        publicMinting = setActive;
    }

// set mintingallowed
    function setPasswordMinting(address _password) public onlyOwner {
        mintClaimPass = _password;
    }


// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
     function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        require(_balance > 0);
        _withdraw(A1, (_balance * 75) / 1000);
        _withdraw(A2, (_balance * 75) / 1000);
        _withdraw(A3, (_balance * 75) / 1000);
        _withdraw(owner(), address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }


// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================

    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256[] memory a = new uint256[](balanceOf(owner)); 
            uint256 end = _nextTokenId();
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            for (uint256 i; i < end; i++) {
                TokenOwnership memory ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    a[tokenIdsIdx++] = i;
                }
            }
            return a;    
        }
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,"Ragdollz%20Reborn_", _tokenId.toString(), uriSuffix))
            : '';
    }

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

// ================== Read Functions End =======================  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"mintPass","type":"address"},{"internalType":"address","name":"add1","type":"address"},{"internalType":"address","name":"add2","type":"address"},{"internalType":"address","name":"add3","type":"address"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CollectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"password","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"HolderClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"premintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setMaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_password","type":"address"}],"name":"setPasswordMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setActive","type":"bool"}],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200049c565b506658d15e17628000600c55611770600d55600a600e556103e8600f556000601060006101000a81548160ff0219169083151502179055503480156200009657600080fd5b5060405162004664380380620046648339818101604052810190620000bc91906200074e565b6040518060400160405280600f81526020017f526167646f6c6c7a205265626f726e00000000000000000000000000000000008152506040518060400160405280600481526020017f5241475a000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001409291906200049c565b508060039080519060200190620001599291906200049c565b506200016a6200028a60201b60201c565b600081905550505062000192620001866200029360201b60201c565b6200029b60201b60201c565b6001600981905550620001ab856200036160201b60201c565b620001bc846200038d60201b60201c565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620008dc565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000371620003e160201b60201c565b80600a9080519060200190620003899291906200049c565b5050565b6200039d620003e160201b60201c565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620003f16200029360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004176200047260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004679062000856565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004aa90620008a7565b90600052602060002090601f016020900481019282620004ce57600085556200051a565b82601f10620004e957805160ff19168380011785556200051a565b828001600101855582156200051a579182015b8281111562000519578251825591602001919060010190620004fc565b5b5090506200052991906200052d565b5090565b5b80821115620005485760008160009055506001016200052e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005b5826200056a565b810181811067ffffffffffffffff82111715620005d757620005d66200057b565b5b80604052505050565b6000620005ec6200054c565b9050620005fa8282620005aa565b919050565b600067ffffffffffffffff8211156200061d576200061c6200057b565b5b62000628826200056a565b9050602081019050919050565b60005b838110156200065557808201518184015260208101905062000638565b8381111562000665576000848401525b50505050565b6000620006826200067c84620005ff565b620005e0565b905082815260208101848484011115620006a157620006a062000565565b5b620006ae84828562000635565b509392505050565b600082601f830112620006ce57620006cd62000560565b5b8151620006e08482602086016200066b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071682620006e9565b9050919050565b620007288162000709565b81146200073457600080fd5b50565b60008151905062000748816200071d565b92915050565b600080600080600060a086880312156200076d576200076c62000556565b5b600086015167ffffffffffffffff8111156200078e576200078d6200055b565b5b6200079c88828901620006b6565b9550506020620007af8882890162000737565b9450506040620007c28882890162000737565b9350506060620007d58882890162000737565b9250506080620007e88882890162000737565b9150509295509295909350565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200083e602083620007f5565b91506200084b8262000806565b602082019050919050565b6000602082019050818103600083015262000871816200082f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008c057607f821691505b602082108103620008d657620008d562000878565b5b50919050565b613d7880620008ec6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b071401b116100ab578063e985e9c51161006f578063e985e9c51461082a578063eac989f814610867578063ed42eaf314610892578063f2fde38b146108bb578063f6484980146108e45761023b565b8063b071401b14610740578063b88d4fde14610769578063c87b56dd14610785578063ca0a3346146107c2578063d5abeb01146107ff5761023b565b80638462151c116100f25780638462151c146106595780638da5cb5b1461069657806394354fd0146106c157806395d89b41146106ec578063a22cb465146107175761023b565b80636352211e1461057657806370a08231146105b3578063715018a6146105f057806377292e1a146106075780637871e154146106305761023b565b8063254a4737116101bc5780633fa10135116101805780633fa10135146104b057806342842e0e146104d957806353ac010a146104f55780635503a0e8146105205780635a0b8b231461054b5761023b565b8063254a4737146103e15780632f9a7c581461040a578063361fab25146104335780633ccfd60b1461045c5780633ec4de35146104735761023b565b8063102e766d11610203578063102e766d1461031d57806316ba10e01461034857806318160ddd14610371578063200b50f31461039c57806323b872dd146103c55761023b565b806301ffc9a71461024057806306fdde031461027d57806307883703146102a8578063081812fc146102c4578063095ea7b314610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612b77565b61090d565b6040516102749190612bbf565b60405180910390f35b34801561028957600080fd5b5061029261099f565b60405161029f9190612c73565b60405180910390f35b6102c260048036038101906102bd9190612ccb565b610a31565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612ccb565b610c7b565b6040516102f89190612d39565b60405180910390f35b61031b60048036038101906103169190612d80565b610cfa565b005b34801561032957600080fd5b50610332610e3e565b60405161033f9190612dcf565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612f1f565b610e44565b005b34801561037d57600080fd5b50610386610e66565b6040516103939190612dcf565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612d80565b610e7d565b005b6103df60048036038101906103da9190612f68565b6110b0565b005b3480156103ed57600080fd5b5061040860048036038101906104039190612fe7565b6113d2565b005b34801561041657600080fd5b50610431600480360381019061042c9190612ccb565b6113f7565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612ccb565b611409565b005b34801561046857600080fd5b5061047161141b565b005b34801561047f57600080fd5b5061049a60048036038101906104959190613014565b611518565b6040516104a79190612dcf565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612ccb565b611530565b005b6104f360048036038101906104ee9190612f68565b611542565b005b34801561050157600080fd5b5061050a611562565b6040516105179190612bbf565b60405180910390f35b34801561052c57600080fd5b50610535611575565b6040516105429190612c73565b60405180910390f35b34801561055757600080fd5b50610560611603565b60405161056d9190612dcf565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612ccb565b611609565b6040516105aa9190612d39565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613014565b61161b565b6040516105e79190612dcf565b60405180910390f35b3480156105fc57600080fd5b506106056116d3565b005b34801561061357600080fd5b5061062e60048036038101906106299190613014565b6116e7565b005b34801561063c57600080fd5b5061065760048036038101906106529190613041565b611733565b005b34801561066557600080fd5b50610680600480360381019061067b9190613014565b6117a0565b60405161068d919061313f565b60405180910390f35b3480156106a257600080fd5b506106ab6118e4565b6040516106b89190612d39565b60405180910390f35b3480156106cd57600080fd5b506106d661190e565b6040516106e39190612dcf565b60405180910390f35b3480156106f857600080fd5b50610701611914565b60405161070e9190612c73565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613161565b6119a6565b005b34801561074c57600080fd5b5061076760048036038101906107629190612ccb565b611ab1565b005b610783600480360381019061077e9190613242565b611ac3565b005b34801561079157600080fd5b506107ac60048036038101906107a79190612ccb565b611b36565b6040516107b99190612c73565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190613014565b611be0565b6040516107f69190612dcf565b60405180910390f35b34801561080b57600080fd5b50610814611bf8565b6040516108219190612dcf565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906132c5565b611bfe565b60405161085e9190612bbf565b60405180910390f35b34801561087357600080fd5b5061087c611c92565b6040516108899190612c73565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190612ccb565b611d20565b005b3480156108c757600080fd5b506108e260048036038101906108dd9190613014565b611d9c565b005b3480156108f057600080fd5b5061090b60048036038101906109069190612f1f565b611e1f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109ae90613334565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613334565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b610a39611e41565b6000610a43610e66565b9050601060009054906101000a900460ff16610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906133b1565b60405180910390fd5b600082118015610aa65750600e548211155b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc9061341d565b60405180910390fd5b600d548282610af4919061346c565b1115610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c9061350e565b60405180910390fd5b81600c54610b43919061352e565b341015610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906135d4565b60405180910390fd5b600f54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613640565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c57919061346c565b92505081905550610c6f610c69611e90565b83611e98565b50610c78611eb6565b50565b6000610c8682611ec0565b610cbc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d0582611609565b90508073ffffffffffffffffffffffffffffffffffffffff16610d26611f1f565b73ffffffffffffffffffffffffffffffffffffffff1614610d8957610d5281610d4d611f1f565b611bfe565b610d88576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610e4c611f27565b80600b9080519060200190610e62929190612a19565b5050565b6000610e70611fa5565b6001546000540303905090565b610e85611e41565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe906136d2565b60405180910390fd5b6000610f11610e66565b9050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a9061373e565b60405180910390fd5b600082905060008111610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061341d565b60405180910390fd5b600d548183610ffa919061346c565b111561103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061350e565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108a919061346c565b925050819055506110a261109c611e90565b82611e98565b50506110ac611eb6565b5050565b60006110bb82611fae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611122576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061112e8461207a565b91509150611144818761113f611f1f565b6120a1565b6111905761115986611154611f1f565b611bfe565b61118f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61120386868660016120e5565b801561120e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112dc856112b88888876120eb565b7c020000000000000000000000000000000000000000000000000000000017612113565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611362576000600185019050600060046000838152602001908152602001600020540361136057600054811461135f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ca868686600161213e565b505050505050565b6113da611f27565b80601060006101000a81548160ff02191690831515021790555050565b6113ff611f27565b80600c8190555050565b611411611f27565b80600d8190555050565b611423611f27565b60004790506000811161143557600080fd5b61147a601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8604b8461146b919061352e565b611475919061378d565b612144565b6114bf601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8604b846114b0919061352e565b6114ba919061378d565b612144565b611504601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8604b846114f5919061352e565b6114ff919061378d565b612144565b61151561150f6118e4565b47612144565b50565b60116020528060005260406000206000915090505481565b611538611f27565b80600f8190555050565b61155d83838360405180602001604052806000815250611ac3565b505050565b601060009054906101000a900460ff1681565b600b805461158290613334565b80601f01602080910402602001604051908101604052809291908181526020018280546115ae90613334565b80156115fb5780601f106115d0576101008083540402835291602001916115fb565b820191906000526020600020905b8154815290600101906020018083116115de57829003601f168201915b505050505081565b600f5481565b600061161482611fae565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611682576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116db611f27565b6116e560006121f5565b565b6116ef611f27565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61173b611f27565b600d5482611747610e66565b611751919061346c565b1115611792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117899061350e565b60405180910390fd5b61179c8183611e98565b5050565b606060006117ad8361161b565b67ffffffffffffffff8111156117c6576117c5612df4565b5b6040519080825280602002602001820160405280156117f45781602001602082028036833780820191505090505b50905060006118016122bb565b905060008060005b838110156118d757600061181c826122c4565b905080604001511561182e57506118ca565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461186e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c857818685806001019650815181106118bb576118ba6137be565b5b6020026020010181815250505b505b8080600101915050611809565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461192390613334565b80601f016020809104026020016040519081016040528092919081815260200182805461194f90613334565b801561199c5780601f106119715761010080835404028352916020019161199c565b820191906000526020600020905b81548152906001019060200180831161197f57829003601f168201915b5050505050905090565b80600760006119b3611f1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a60611f1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa59190612bbf565b60405180910390a35050565b611ab9611f27565b80600e8190555050565b611ace8484846110b0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3057611af9848484846122ef565b611b2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b4182611ec0565b611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b779061385f565b60405180910390fd5b6000611b8a61243f565b90506000815111611baa5760405180602001604052806000815250611bd8565b80611bb4846124d1565b600b604051602001611bc89392919061399b565b6040516020818303038152906040525b915050919050565b60126020528060005260406000206000915090505481565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611c9f90613334565b80601f0160208091040260200160405190810160405280929190818152602001828054611ccb90613334565b8015611d185780601f10611ced57610100808354040283529160200191611d18565b820191906000526020600020905b815481529060010190602001808311611cfb57829003601f168201915b505050505081565b611d28611f27565b611d30611e41565b600d5481611d3c610e66565b611d46919061346c565b1115611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613a23565b60405180910390fd5b611d913382611e98565b611d99611eb6565b50565b611da4611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90613ab5565b60405180910390fd5b611e1c816121f5565b50565b611e27611f27565b80600a9080519060200190611e3d929190612a19565b5050565b600260095403611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d90613b21565b60405180910390fd5b6002600981905550565b600033905090565b611eb282826040518060200160405280600081525061259f565b5050565b6001600981905550565b600081611ecb611fa5565b11158015611eda575060005482105b8015611f18575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611f2f611e90565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613b8d565b60405180910390fd5b565b60006001905090565b60008082905080611fbd611fa5565b11612043576000548110156120425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612040575b6000810361203657600460008360019003935083815260200190815260200160002054905061200c565b8092505050612075565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861210286868461263c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161216a90613bde565b60006040518083038185875af1925050503d80600081146121a7576040519150601f19603f3d011682016040523d82523d6000602084013e6121ac565b606091505b50509050806121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790613c3f565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b6122cc612a9f565b6122e86004600084815260200190815260200160002054612645565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612315611f1f565b8786866040518563ffffffff1660e01b81526004016123379493929190613cb4565b6020604051808303816000875af192505050801561237357506040513d601f19601f820116820180604052508101906123709190613d15565b60015b6123ec573d80600081146123a3576040519150601f19603f3d011682016040523d82523d6000602084013e6123a8565b606091505b5060008151036123e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461244e90613334565b80601f016020809104026020016040519081016040528092919081815260200182805461247a90613334565b80156124c75780601f1061249c576101008083540402835291602001916124c7565b820191906000526020600020905b8154815290600101906020018083116124aa57829003601f168201915b5050505050905090565b6060600060016124e0846126fb565b01905060008167ffffffffffffffff8111156124ff576124fe612df4565b5b6040519080825280601f01601f1916602001820160405280156125315781602001600182028036833780820191505090505b509050600082602001820190505b600115612594578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125885761258761375e565b5b0494506000850361253f575b819350505050919050565b6125a9838361284e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461263757600080549050600083820390505b6125e960008683806001019450866122ef565b61261f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125d657816000541461263457600080fd5b50505b505050565b60009392505050565b61264d612a9f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612759577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161274f5761274e61375e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612796576d04ee2d6d415b85acef8100000000838161278c5761278b61375e565b5b0492506020810190505b662386f26fc1000083106127c557662386f26fc1000083816127bb576127ba61375e565b5b0492506010810190505b6305f5e10083106127ee576305f5e10083816127e4576127e361375e565b5b0492506008810190505b61271083106128135761271083816128095761280861375e565b5b0492506004810190505b60648310612836576064838161282c5761282b61375e565b5b0492506002810190505b600a8310612845576001810190505b80915050919050565b6000805490506000820361288e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61289b60008483856120e5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129128361290360008660006120eb565b61290c85612a09565b17612113565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146129b357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612978565b50600082036129ee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612a04600084838561213e565b505050565b60006001821460e11b9050919050565b828054612a2590613334565b90600052602060002090601f016020900481019282612a475760008555612a8e565b82601f10612a6057805160ff1916838001178555612a8e565b82800160010185558215612a8e579182015b82811115612a8d578251825591602001919060010190612a72565b5b509050612a9b9190612aee565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612b07576000816000905550600101612aef565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5481612b1f565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b600060208284031215612b8d57612b8c612b15565b5b6000612b9b84828501612b62565b91505092915050565b60008115159050919050565b612bb981612ba4565b82525050565b6000602082019050612bd46000830184612bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c14578082015181840152602081019050612bf9565b83811115612c23576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4582612bda565b612c4f8185612be5565b9350612c5f818560208601612bf6565b612c6881612c29565b840191505092915050565b60006020820190508181036000830152612c8d8184612c3a565b905092915050565b6000819050919050565b612ca881612c95565b8114612cb357600080fd5b50565b600081359050612cc581612c9f565b92915050565b600060208284031215612ce157612ce0612b15565b5b6000612cef84828501612cb6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2382612cf8565b9050919050565b612d3381612d18565b82525050565b6000602082019050612d4e6000830184612d2a565b92915050565b612d5d81612d18565b8114612d6857600080fd5b50565b600081359050612d7a81612d54565b92915050565b60008060408385031215612d9757612d96612b15565b5b6000612da585828601612d6b565b9250506020612db685828601612cb6565b9150509250929050565b612dc981612c95565b82525050565b6000602082019050612de46000830184612dc0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2c82612c29565b810181811067ffffffffffffffff82111715612e4b57612e4a612df4565b5b80604052505050565b6000612e5e612b0b565b9050612e6a8282612e23565b919050565b600067ffffffffffffffff821115612e8a57612e89612df4565b5b612e9382612c29565b9050602081019050919050565b82818337600083830152505050565b6000612ec2612ebd84612e6f565b612e54565b905082815260208101848484011115612ede57612edd612def565b5b612ee9848285612ea0565b509392505050565b600082601f830112612f0657612f05612dea565b5b8135612f16848260208601612eaf565b91505092915050565b600060208284031215612f3557612f34612b15565b5b600082013567ffffffffffffffff811115612f5357612f52612b1a565b5b612f5f84828501612ef1565b91505092915050565b600080600060608486031215612f8157612f80612b15565b5b6000612f8f86828701612d6b565b9350506020612fa086828701612d6b565b9250506040612fb186828701612cb6565b9150509250925092565b612fc481612ba4565b8114612fcf57600080fd5b50565b600081359050612fe181612fbb565b92915050565b600060208284031215612ffd57612ffc612b15565b5b600061300b84828501612fd2565b91505092915050565b60006020828403121561302a57613029612b15565b5b600061303884828501612d6b565b91505092915050565b6000806040838503121561305857613057612b15565b5b600061306685828601612cb6565b925050602061307785828601612d6b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130b681612c95565b82525050565b60006130c883836130ad565b60208301905092915050565b6000602082019050919050565b60006130ec82613081565b6130f6818561308c565b93506131018361309d565b8060005b8381101561313257815161311988826130bc565b9750613124836130d4565b925050600181019050613105565b5085935050505092915050565b6000602082019050818103600083015261315981846130e1565b905092915050565b6000806040838503121561317857613177612b15565b5b600061318685828601612d6b565b925050602061319785828601612fd2565b9150509250929050565b600067ffffffffffffffff8211156131bc576131bb612df4565b5b6131c582612c29565b9050602081019050919050565b60006131e56131e0846131a1565b612e54565b90508281526020810184848401111561320157613200612def565b5b61320c848285612ea0565b509392505050565b600082601f83011261322957613228612dea565b5b81356132398482602086016131d2565b91505092915050565b6000806000806080858703121561325c5761325b612b15565b5b600061326a87828801612d6b565b945050602061327b87828801612d6b565b935050604061328c87828801612cb6565b925050606085013567ffffffffffffffff8111156132ad576132ac612b1a565b5b6132b987828801613214565b91505092959194509250565b600080604083850312156132dc576132db612b15565b5b60006132ea85828601612d6b565b92505060206132fb85828601612d6b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334c57607f821691505b60208210810361335f5761335e613305565b5b50919050565b7f5075626c69632073616c65206e6f742061637469766521000000000000000000600082015250565b600061339b601783612be5565b91506133a682613365565b602082019050919050565b600060208201905081810360008301526133ca8161338e565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613407601483612be5565b9150613412826133d1565b602082019050919050565b60006020820190508181036000830152613436816133fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347782612c95565b915061348283612c95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b7576134b661343d565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006134f8601483612be5565b9150613503826134c2565b602082019050919050565b60006020820190508181036000830152613527816134eb565b9050919050565b600061353982612c95565b915061354483612c95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357d5761357c61343d565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006135be601383612be5565b91506135c982613588565b602082019050919050565b600060208201905081810360008301526135ed816135b1565b9050919050565b7f546f6f206d616e79204e465473206d696e74656420746f2077616c6c65742e00600082015250565b600061362a601f83612be5565b9150613635826135f4565b602082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f416c7265616479206d696e74656420766961205072654d696e7420706c65617360008201527f65207761697420616e6420757365207075626c69636d696e74696e6700000000602082015250565b60006136bc603c83612be5565b91506136c782613660565b604082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f496e636f72726563742070617373776f72640000000000000000000000000000600082015250565b6000613728601283612be5565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061379882612c95565b91506137a383612c95565b9250826137b3576137b261375e565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613849602f83612be5565b9150613854826137ed565b604082019050919050565b600060208201905081810360008301526138788161383c565b9050919050565b600081905092915050565b600061389582612bda565b61389f818561387f565b93506138af818560208601612bf6565b80840191505092915050565b7f526167646f6c6c7a2532305265626f726e5f0000000000000000000000000000600082015250565b60006138f160128361387f565b91506138fc826138bb565b601282019050919050565b60008190508160005260206000209050919050565b6000815461392981613334565b613933818661387f565b9450600182166000811461394e576001811461395f57613992565b60ff19831686528186019350613992565b61396885613907565b60005b8381101561398a5781548189015260018201915060208101905061396b565b838801955050505b50505092915050565b60006139a7828661388a565b91506139b2826138e4565b91506139be828561388a565b91506139ca828461391c565b9150819050949350505050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000613a0d601483612be5565b9150613a18826139d7565b602082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a9f602683612be5565b9150613aaa82613a43565b604082019050919050565b60006020820190508181036000830152613ace81613a92565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b0b601f83612be5565b9150613b1682613ad5565b602082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b77602083612be5565b9150613b8282613b41565b602082019050919050565b60006020820190508181036000830152613ba681613b6a565b9050919050565b600081905092915050565b50565b6000613bc8600083613bad565b9150613bd382613bb8565b600082019050919050565b6000613be982613bbb565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613c29601083612be5565b9150613c3482613bf3565b602082019050919050565b60006020820190508181036000830152613c5881613c1c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8682613c5f565b613c908185613c6a565b9350613ca0818560208601612bf6565b613ca981612c29565b840191505092915050565b6000608082019050613cc96000830187612d2a565b613cd66020830186612d2a565b613ce36040830185612dc0565b8181036060830152613cf58184613c7b565b905095945050505050565b600081519050613d0f81612b4b565b92915050565b600060208284031215613d2b57613d2a612b15565b5b6000613d3984828501613d00565b9150509291505056fea264697066735822122081ad435b49b5fcb243b8c2fb55802f01b8c9a9ac4d65aa4a348a0868309b980764736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007b369b5c69c10832e24c8f3b8090fef189080710000000000000000000000000679d3a90e1d0a048700f52fb6832a0f1e63ef8ad000000000000000000000000a08e3c71550d73d3afcc74a2ea906bb2a3562f420000000000000000000000004a40ef1da0e73a0df142d06470d7a2cffc677d2f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d625a74515154516e416d6f64674d356264787547564c58687553724b5a6e374a544a586b6934756e6e634d642f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b071401b116100ab578063e985e9c51161006f578063e985e9c51461082a578063eac989f814610867578063ed42eaf314610892578063f2fde38b146108bb578063f6484980146108e45761023b565b8063b071401b14610740578063b88d4fde14610769578063c87b56dd14610785578063ca0a3346146107c2578063d5abeb01146107ff5761023b565b80638462151c116100f25780638462151c146106595780638da5cb5b1461069657806394354fd0146106c157806395d89b41146106ec578063a22cb465146107175761023b565b80636352211e1461057657806370a08231146105b3578063715018a6146105f057806377292e1a146106075780637871e154146106305761023b565b8063254a4737116101bc5780633fa10135116101805780633fa10135146104b057806342842e0e146104d957806353ac010a146104f55780635503a0e8146105205780635a0b8b231461054b5761023b565b8063254a4737146103e15780632f9a7c581461040a578063361fab25146104335780633ccfd60b1461045c5780633ec4de35146104735761023b565b8063102e766d11610203578063102e766d1461031d57806316ba10e01461034857806318160ddd14610371578063200b50f31461039c57806323b872dd146103c55761023b565b806301ffc9a71461024057806306fdde031461027d57806307883703146102a8578063081812fc146102c4578063095ea7b314610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612b77565b61090d565b6040516102749190612bbf565b60405180910390f35b34801561028957600080fd5b5061029261099f565b60405161029f9190612c73565b60405180910390f35b6102c260048036038101906102bd9190612ccb565b610a31565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612ccb565b610c7b565b6040516102f89190612d39565b60405180910390f35b61031b60048036038101906103169190612d80565b610cfa565b005b34801561032957600080fd5b50610332610e3e565b60405161033f9190612dcf565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612f1f565b610e44565b005b34801561037d57600080fd5b50610386610e66565b6040516103939190612dcf565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612d80565b610e7d565b005b6103df60048036038101906103da9190612f68565b6110b0565b005b3480156103ed57600080fd5b5061040860048036038101906104039190612fe7565b6113d2565b005b34801561041657600080fd5b50610431600480360381019061042c9190612ccb565b6113f7565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612ccb565b611409565b005b34801561046857600080fd5b5061047161141b565b005b34801561047f57600080fd5b5061049a60048036038101906104959190613014565b611518565b6040516104a79190612dcf565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612ccb565b611530565b005b6104f360048036038101906104ee9190612f68565b611542565b005b34801561050157600080fd5b5061050a611562565b6040516105179190612bbf565b60405180910390f35b34801561052c57600080fd5b50610535611575565b6040516105429190612c73565b60405180910390f35b34801561055757600080fd5b50610560611603565b60405161056d9190612dcf565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612ccb565b611609565b6040516105aa9190612d39565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613014565b61161b565b6040516105e79190612dcf565b60405180910390f35b3480156105fc57600080fd5b506106056116d3565b005b34801561061357600080fd5b5061062e60048036038101906106299190613014565b6116e7565b005b34801561063c57600080fd5b5061065760048036038101906106529190613041565b611733565b005b34801561066557600080fd5b50610680600480360381019061067b9190613014565b6117a0565b60405161068d919061313f565b60405180910390f35b3480156106a257600080fd5b506106ab6118e4565b6040516106b89190612d39565b60405180910390f35b3480156106cd57600080fd5b506106d661190e565b6040516106e39190612dcf565b60405180910390f35b3480156106f857600080fd5b50610701611914565b60405161070e9190612c73565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613161565b6119a6565b005b34801561074c57600080fd5b5061076760048036038101906107629190612ccb565b611ab1565b005b610783600480360381019061077e9190613242565b611ac3565b005b34801561079157600080fd5b506107ac60048036038101906107a79190612ccb565b611b36565b6040516107b99190612c73565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190613014565b611be0565b6040516107f69190612dcf565b60405180910390f35b34801561080b57600080fd5b50610814611bf8565b6040516108219190612dcf565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906132c5565b611bfe565b60405161085e9190612bbf565b60405180910390f35b34801561087357600080fd5b5061087c611c92565b6040516108899190612c73565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190612ccb565b611d20565b005b3480156108c757600080fd5b506108e260048036038101906108dd9190613014565b611d9c565b005b3480156108f057600080fd5b5061090b60048036038101906109069190612f1f565b611e1f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109ae90613334565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613334565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b610a39611e41565b6000610a43610e66565b9050601060009054906101000a900460ff16610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906133b1565b60405180910390fd5b600082118015610aa65750600e548211155b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc9061341d565b60405180910390fd5b600d548282610af4919061346c565b1115610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c9061350e565b60405180910390fd5b81600c54610b43919061352e565b341015610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906135d4565b60405180910390fd5b600f54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613640565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c57919061346c565b92505081905550610c6f610c69611e90565b83611e98565b50610c78611eb6565b50565b6000610c8682611ec0565b610cbc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d0582611609565b90508073ffffffffffffffffffffffffffffffffffffffff16610d26611f1f565b73ffffffffffffffffffffffffffffffffffffffff1614610d8957610d5281610d4d611f1f565b611bfe565b610d88576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610e4c611f27565b80600b9080519060200190610e62929190612a19565b5050565b6000610e70611fa5565b6001546000540303905090565b610e85611e41565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe906136d2565b60405180910390fd5b6000610f11610e66565b9050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a9061373e565b60405180910390fd5b600082905060008111610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061341d565b60405180910390fd5b600d548183610ffa919061346c565b111561103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061350e565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108a919061346c565b925050819055506110a261109c611e90565b82611e98565b50506110ac611eb6565b5050565b60006110bb82611fae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611122576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061112e8461207a565b91509150611144818761113f611f1f565b6120a1565b6111905761115986611154611f1f565b611bfe565b61118f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61120386868660016120e5565b801561120e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112dc856112b88888876120eb565b7c020000000000000000000000000000000000000000000000000000000017612113565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611362576000600185019050600060046000838152602001908152602001600020540361136057600054811461135f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ca868686600161213e565b505050505050565b6113da611f27565b80601060006101000a81548160ff02191690831515021790555050565b6113ff611f27565b80600c8190555050565b611411611f27565b80600d8190555050565b611423611f27565b60004790506000811161143557600080fd5b61147a601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8604b8461146b919061352e565b611475919061378d565b612144565b6114bf601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8604b846114b0919061352e565b6114ba919061378d565b612144565b611504601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8604b846114f5919061352e565b6114ff919061378d565b612144565b61151561150f6118e4565b47612144565b50565b60116020528060005260406000206000915090505481565b611538611f27565b80600f8190555050565b61155d83838360405180602001604052806000815250611ac3565b505050565b601060009054906101000a900460ff1681565b600b805461158290613334565b80601f01602080910402602001604051908101604052809291908181526020018280546115ae90613334565b80156115fb5780601f106115d0576101008083540402835291602001916115fb565b820191906000526020600020905b8154815290600101906020018083116115de57829003601f168201915b505050505081565b600f5481565b600061161482611fae565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611682576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116db611f27565b6116e560006121f5565b565b6116ef611f27565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61173b611f27565b600d5482611747610e66565b611751919061346c565b1115611792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117899061350e565b60405180910390fd5b61179c8183611e98565b5050565b606060006117ad8361161b565b67ffffffffffffffff8111156117c6576117c5612df4565b5b6040519080825280602002602001820160405280156117f45781602001602082028036833780820191505090505b50905060006118016122bb565b905060008060005b838110156118d757600061181c826122c4565b905080604001511561182e57506118ca565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461186e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c857818685806001019650815181106118bb576118ba6137be565b5b6020026020010181815250505b505b8080600101915050611809565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461192390613334565b80601f016020809104026020016040519081016040528092919081815260200182805461194f90613334565b801561199c5780601f106119715761010080835404028352916020019161199c565b820191906000526020600020905b81548152906001019060200180831161197f57829003601f168201915b5050505050905090565b80600760006119b3611f1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a60611f1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa59190612bbf565b60405180910390a35050565b611ab9611f27565b80600e8190555050565b611ace8484846110b0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3057611af9848484846122ef565b611b2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b4182611ec0565b611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b779061385f565b60405180910390fd5b6000611b8a61243f565b90506000815111611baa5760405180602001604052806000815250611bd8565b80611bb4846124d1565b600b604051602001611bc89392919061399b565b6040516020818303038152906040525b915050919050565b60126020528060005260406000206000915090505481565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611c9f90613334565b80601f0160208091040260200160405190810160405280929190818152602001828054611ccb90613334565b8015611d185780601f10611ced57610100808354040283529160200191611d18565b820191906000526020600020905b815481529060010190602001808311611cfb57829003601f168201915b505050505081565b611d28611f27565b611d30611e41565b600d5481611d3c610e66565b611d46919061346c565b1115611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613a23565b60405180910390fd5b611d913382611e98565b611d99611eb6565b50565b611da4611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90613ab5565b60405180910390fd5b611e1c816121f5565b50565b611e27611f27565b80600a9080519060200190611e3d929190612a19565b5050565b600260095403611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d90613b21565b60405180910390fd5b6002600981905550565b600033905090565b611eb282826040518060200160405280600081525061259f565b5050565b6001600981905550565b600081611ecb611fa5565b11158015611eda575060005482105b8015611f18575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611f2f611e90565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613b8d565b60405180910390fd5b565b60006001905090565b60008082905080611fbd611fa5565b11612043576000548110156120425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612040575b6000810361203657600460008360019003935083815260200190815260200160002054905061200c565b8092505050612075565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861210286868461263c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161216a90613bde565b60006040518083038185875af1925050503d80600081146121a7576040519150601f19603f3d011682016040523d82523d6000602084013e6121ac565b606091505b50509050806121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790613c3f565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b6122cc612a9f565b6122e86004600084815260200190815260200160002054612645565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612315611f1f565b8786866040518563ffffffff1660e01b81526004016123379493929190613cb4565b6020604051808303816000875af192505050801561237357506040513d601f19601f820116820180604052508101906123709190613d15565b60015b6123ec573d80600081146123a3576040519150601f19603f3d011682016040523d82523d6000602084013e6123a8565b606091505b5060008151036123e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461244e90613334565b80601f016020809104026020016040519081016040528092919081815260200182805461247a90613334565b80156124c75780601f1061249c576101008083540402835291602001916124c7565b820191906000526020600020905b8154815290600101906020018083116124aa57829003601f168201915b5050505050905090565b6060600060016124e0846126fb565b01905060008167ffffffffffffffff8111156124ff576124fe612df4565b5b6040519080825280601f01601f1916602001820160405280156125315781602001600182028036833780820191505090505b509050600082602001820190505b600115612594578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125885761258761375e565b5b0494506000850361253f575b819350505050919050565b6125a9838361284e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461263757600080549050600083820390505b6125e960008683806001019450866122ef565b61261f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125d657816000541461263457600080fd5b50505b505050565b60009392505050565b61264d612a9f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612759577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161274f5761274e61375e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612796576d04ee2d6d415b85acef8100000000838161278c5761278b61375e565b5b0492506020810190505b662386f26fc1000083106127c557662386f26fc1000083816127bb576127ba61375e565b5b0492506010810190505b6305f5e10083106127ee576305f5e10083816127e4576127e361375e565b5b0492506008810190505b61271083106128135761271083816128095761280861375e565b5b0492506004810190505b60648310612836576064838161282c5761282b61375e565b5b0492506002810190505b600a8310612845576001810190505b80915050919050565b6000805490506000820361288e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61289b60008483856120e5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129128361290360008660006120eb565b61290c85612a09565b17612113565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146129b357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612978565b50600082036129ee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612a04600084838561213e565b505050565b60006001821460e11b9050919050565b828054612a2590613334565b90600052602060002090601f016020900481019282612a475760008555612a8e565b82601f10612a6057805160ff1916838001178555612a8e565b82800160010185558215612a8e579182015b82811115612a8d578251825591602001919060010190612a72565b5b509050612a9b9190612aee565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612b07576000816000905550600101612aef565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5481612b1f565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b600060208284031215612b8d57612b8c612b15565b5b6000612b9b84828501612b62565b91505092915050565b60008115159050919050565b612bb981612ba4565b82525050565b6000602082019050612bd46000830184612bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c14578082015181840152602081019050612bf9565b83811115612c23576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4582612bda565b612c4f8185612be5565b9350612c5f818560208601612bf6565b612c6881612c29565b840191505092915050565b60006020820190508181036000830152612c8d8184612c3a565b905092915050565b6000819050919050565b612ca881612c95565b8114612cb357600080fd5b50565b600081359050612cc581612c9f565b92915050565b600060208284031215612ce157612ce0612b15565b5b6000612cef84828501612cb6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2382612cf8565b9050919050565b612d3381612d18565b82525050565b6000602082019050612d4e6000830184612d2a565b92915050565b612d5d81612d18565b8114612d6857600080fd5b50565b600081359050612d7a81612d54565b92915050565b60008060408385031215612d9757612d96612b15565b5b6000612da585828601612d6b565b9250506020612db685828601612cb6565b9150509250929050565b612dc981612c95565b82525050565b6000602082019050612de46000830184612dc0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2c82612c29565b810181811067ffffffffffffffff82111715612e4b57612e4a612df4565b5b80604052505050565b6000612e5e612b0b565b9050612e6a8282612e23565b919050565b600067ffffffffffffffff821115612e8a57612e89612df4565b5b612e9382612c29565b9050602081019050919050565b82818337600083830152505050565b6000612ec2612ebd84612e6f565b612e54565b905082815260208101848484011115612ede57612edd612def565b5b612ee9848285612ea0565b509392505050565b600082601f830112612f0657612f05612dea565b5b8135612f16848260208601612eaf565b91505092915050565b600060208284031215612f3557612f34612b15565b5b600082013567ffffffffffffffff811115612f5357612f52612b1a565b5b612f5f84828501612ef1565b91505092915050565b600080600060608486031215612f8157612f80612b15565b5b6000612f8f86828701612d6b565b9350506020612fa086828701612d6b565b9250506040612fb186828701612cb6565b9150509250925092565b612fc481612ba4565b8114612fcf57600080fd5b50565b600081359050612fe181612fbb565b92915050565b600060208284031215612ffd57612ffc612b15565b5b600061300b84828501612fd2565b91505092915050565b60006020828403121561302a57613029612b15565b5b600061303884828501612d6b565b91505092915050565b6000806040838503121561305857613057612b15565b5b600061306685828601612cb6565b925050602061307785828601612d6b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130b681612c95565b82525050565b60006130c883836130ad565b60208301905092915050565b6000602082019050919050565b60006130ec82613081565b6130f6818561308c565b93506131018361309d565b8060005b8381101561313257815161311988826130bc565b9750613124836130d4565b925050600181019050613105565b5085935050505092915050565b6000602082019050818103600083015261315981846130e1565b905092915050565b6000806040838503121561317857613177612b15565b5b600061318685828601612d6b565b925050602061319785828601612fd2565b9150509250929050565b600067ffffffffffffffff8211156131bc576131bb612df4565b5b6131c582612c29565b9050602081019050919050565b60006131e56131e0846131a1565b612e54565b90508281526020810184848401111561320157613200612def565b5b61320c848285612ea0565b509392505050565b600082601f83011261322957613228612dea565b5b81356132398482602086016131d2565b91505092915050565b6000806000806080858703121561325c5761325b612b15565b5b600061326a87828801612d6b565b945050602061327b87828801612d6b565b935050604061328c87828801612cb6565b925050606085013567ffffffffffffffff8111156132ad576132ac612b1a565b5b6132b987828801613214565b91505092959194509250565b600080604083850312156132dc576132db612b15565b5b60006132ea85828601612d6b565b92505060206132fb85828601612d6b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334c57607f821691505b60208210810361335f5761335e613305565b5b50919050565b7f5075626c69632073616c65206e6f742061637469766521000000000000000000600082015250565b600061339b601783612be5565b91506133a682613365565b602082019050919050565b600060208201905081810360008301526133ca8161338e565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613407601483612be5565b9150613412826133d1565b602082019050919050565b60006020820190508181036000830152613436816133fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347782612c95565b915061348283612c95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b7576134b661343d565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006134f8601483612be5565b9150613503826134c2565b602082019050919050565b60006020820190508181036000830152613527816134eb565b9050919050565b600061353982612c95565b915061354483612c95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357d5761357c61343d565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006135be601383612be5565b91506135c982613588565b602082019050919050565b600060208201905081810360008301526135ed816135b1565b9050919050565b7f546f6f206d616e79204e465473206d696e74656420746f2077616c6c65742e00600082015250565b600061362a601f83612be5565b9150613635826135f4565b602082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f416c7265616479206d696e74656420766961205072654d696e7420706c65617360008201527f65207761697420616e6420757365207075626c69636d696e74696e6700000000602082015250565b60006136bc603c83612be5565b91506136c782613660565b604082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f496e636f72726563742070617373776f72640000000000000000000000000000600082015250565b6000613728601283612be5565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061379882612c95565b91506137a383612c95565b9250826137b3576137b261375e565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613849602f83612be5565b9150613854826137ed565b604082019050919050565b600060208201905081810360008301526138788161383c565b9050919050565b600081905092915050565b600061389582612bda565b61389f818561387f565b93506138af818560208601612bf6565b80840191505092915050565b7f526167646f6c6c7a2532305265626f726e5f0000000000000000000000000000600082015250565b60006138f160128361387f565b91506138fc826138bb565b601282019050919050565b60008190508160005260206000209050919050565b6000815461392981613334565b613933818661387f565b9450600182166000811461394e576001811461395f57613992565b60ff19831686528186019350613992565b61396885613907565b60005b8381101561398a5781548189015260018201915060208101905061396b565b838801955050505b50505092915050565b60006139a7828661388a565b91506139b2826138e4565b91506139be828561388a565b91506139ca828461391c565b9150819050949350505050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000613a0d601483612be5565b9150613a18826139d7565b602082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a9f602683612be5565b9150613aaa82613a43565b604082019050919050565b60006020820190508181036000830152613ace81613a92565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b0b601f83612be5565b9150613b1682613ad5565b602082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b77602083612be5565b9150613b8282613b41565b602082019050919050565b60006020820190508181036000830152613ba681613b6a565b9050919050565b600081905092915050565b50565b6000613bc8600083613bad565b9150613bd382613bb8565b600082019050919050565b6000613be982613bbb565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613c29601083612be5565b9150613c3482613bf3565b602082019050919050565b60006020820190508181036000830152613c5881613c1c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8682613c5f565b613c908185613c6a565b9350613ca0818560208601612bf6565b613ca981612c29565b840191505092915050565b6000608082019050613cc96000830187612d2a565b613cd66020830186612d2a565b613ce36040830185612dc0565b8181036060830152613cf58184613c7b565b905095945050505050565b600081519050613d0f81612b4b565b92915050565b600060208284031215613d2b57613d2a612b15565b5b6000613d3984828501613d00565b9150509291505056fea264697066735822122081ad435b49b5fcb243b8c2fb55802f01b8c9a9ac4d65aa4a348a0868309b980764736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007b369b5c69c10832e24c8f3b8090fef189080710000000000000000000000000679d3a90e1d0a048700f52fb6832a0f1e63ef8ad000000000000000000000000a08e3c71550d73d3afcc74a2ea906bb2a3562f420000000000000000000000004a40ef1da0e73a0df142d06470d7a2cffc677d2f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d625a74515154516e416d6f64674d356264787547564c58687553724b5a6e374a544a586b6934756e6e634d642f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmbZtQQTQnAmodgM5bdxuGVLXhuSrKZn7JTJXki4unncMd/
Arg [1] : mintPass (address): 0x7B369b5C69c10832e24c8f3b8090FeF189080710
Arg [2] : add1 (address): 0x679d3a90e1d0A048700F52FB6832A0F1E63ef8Ad
Arg [3] : add2 (address): 0xA08E3c71550D73D3AFCc74a2ea906BB2a3562f42
Arg [4] : add3 (address): 0x4a40Ef1DA0e73A0df142D06470D7a2cfFC677D2f

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000007b369b5c69c10832e24c8f3b8090fef189080710
Arg [2] : 000000000000000000000000679d3a90e1d0a048700f52fb6832a0f1e63ef8ad
Arg [3] : 000000000000000000000000a08e3c71550d73d3afcc74a2ea906bb2a3562f42
Arg [4] : 0000000000000000000000004a40ef1da0e73a0df142d06470d7a2cffc677d2f
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d625a74515154516e416d6f64674d356264787547564c58
Arg [7] : 687553724b5a6e374a544a586b6934756e6e634d642f00000000000000000000


Deployed Bytecode Sourcemap

88349:6663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46252:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47154:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90589:686;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53645:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53078:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88578:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91742:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42905:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89917:664;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57284:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92443:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92186:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92306:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92838:324;;;;;;;;;;;;;:::i;:::-;;88836:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92034:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60205:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88756:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88538;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88710:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48547:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44089:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24085:103;;;;;;;;;;;;;:::i;:::-;;92577:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91285:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93502:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23437:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88665:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47330:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54203:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91871:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60996:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94411:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88893:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88627:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54594:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88514:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89711:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24343:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91652:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46252:639;46337:4;46676:10;46661:25;;:11;:25;;;;:102;;;;46753:10;46738:25;;:11;:25;;;;46661:102;:179;;;;46830:10;46815:25;;:11;:25;;;;46661:179;46641:199;;46252:639;;;:::o;47154:100::-;47208:13;47241:5;47234:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47154:100;:::o;90589:686::-;27247:21;:19;:21::i;:::-;90663:14:::1;90680:13;:11;:13::i;:::-;90663:30;;90745:13;;;;;;;;;;;90737:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;90819:1;90805:11;:15;:52;;;;;90839:18;;90824:11;:33;;90805:52;90797:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;90925:9;;90910:11;90901:6;:20;;;;:::i;:::-;:33;;90893:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;91005:11;90991;;:25;;;;:::i;:::-;90978:9;:38;;90970:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;91088:17;;91059:14;:26;91074:10;91059:26;;;;;;;;;;;;;;;;:46;91051:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;91192:11;91162:14;:26;91177:10;91162:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;91231:36;91241:12;:10;:12::i;:::-;91255:11;91231:9;:36::i;:::-;90652:623;27291:20:::0;:18;:20::i;:::-;90589:686;:::o;53645:218::-;53721:7;53746:16;53754:7;53746;:16::i;:::-;53741:64;;53771:34;;;;;;;;;;;;;;53741:64;53825:15;:24;53841:7;53825:24;;;;;;;;;;;:30;;;;;;;;;;;;53818:37;;53645:218;;;:::o;53078:408::-;53167:13;53183:16;53191:7;53183;:16::i;:::-;53167:32;;53239:5;53216:28;;:19;:17;:19::i;:::-;:28;;;53212:175;;53264:44;53281:5;53288:19;:17;:19::i;:::-;53264:16;:44::i;:::-;53259:128;;53336:35;;;;;;;;;;;;;;53259:128;53212:175;53432:2;53399:15;:24;53415:7;53399:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53470:7;53466:2;53450:28;;53459:5;53450:28;;;;;;;;;;;;53156:330;53078:408;;:::o;88578:40::-;;;;:::o;91742:106::-;23323:13;:11;:13::i;:::-;91830:10:::1;91818:9;:22;;;;;;;;;;;;:::i;:::-;;91742:106:::0;:::o;42905:323::-;42966:7;43194:15;:13;:15::i;:::-;43179:12;;43163:13;;:28;:46;43156:53;;42905:323;:::o;89917:664::-;27247:21;:19;:21::i;:::-;90045:1:::1;90016:14;:26;90031:10;90016:26;;;;;;;;;;;;;;;;:30;90008:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;90124:14;90141:13;:11;:13::i;:::-;90124:30;;90187:13;;;;;;;;;;;90175:25;;:8;:25;;;90167:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;90236:17;90256:11;90236:31;;90356:1;90344:9;:13;90336:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;90423:9;;90410;90401:6;:18;;;;:::i;:::-;:31;;90393:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;90500:9;90470:14;:26;90485:10;90470:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;90537:34;90547:12;:10;:12::i;:::-;90561:9;90537;:34::i;:::-;89997:584;;27291:20:::0;:18;:20::i;:::-;89917:664;;:::o;57284:2825::-;57426:27;57456;57475:7;57456:18;:27::i;:::-;57426:57;;57541:4;57500:45;;57516:19;57500:45;;;57496:86;;57554:28;;;;;;;;;;;;;;57496:86;57596:27;57625:23;57652:35;57679:7;57652:26;:35::i;:::-;57595:92;;;;57787:68;57812:15;57829:4;57835:19;:17;:19::i;:::-;57787:24;:68::i;:::-;57782:180;;57875:43;57892:4;57898:19;:17;:19::i;:::-;57875:16;:43::i;:::-;57870:92;;57927:35;;;;;;;;;;;;;;57870:92;57782:180;57993:1;57979:16;;:2;:16;;;57975:52;;58004:23;;;;;;;;;;;;;;57975:52;58040:43;58062:4;58068:2;58072:7;58081:1;58040:21;:43::i;:::-;58176:15;58173:160;;;58316:1;58295:19;58288:30;58173:160;58713:18;:24;58732:4;58713:24;;;;;;;;;;;;;;;;58711:26;;;;;;;;;;;;58782:18;:22;58801:2;58782:22;;;;;;;;;;;;;;;;58780:24;;;;;;;;;;;59104:146;59141:2;59190:45;59205:4;59211:2;59215:19;59190:14;:45::i;:::-;39304:8;59162:73;59104:18;:146::i;:::-;59075:17;:26;59093:7;59075:26;;;;;;;;;;;:175;;;;59421:1;39304:8;59370:19;:47;:52;59366:627;;59443:19;59475:1;59465:7;:11;59443:33;;59632:1;59598:17;:30;59616:11;59598:30;;;;;;;;;;;;:35;59594:384;;59736:13;;59721:11;:28;59717:242;;59916:19;59883:17;:30;59901:11;59883:30;;;;;;;;;;;:52;;;;59717:242;59594:384;59424:569;59366:627;60040:7;60036:2;60021:27;;60030:4;60021:27;;;;;;;;;;;;60059:42;60080:4;60086:2;60090:7;60099:1;60059:20;:42::i;:::-;57415:2694;;;57284:2825;;;:::o;92443:103::-;23323:13;:11;:13::i;:::-;92529:9:::1;92513:13;;:25;;;;;;;;;;;;;;;;;;92443:103:::0;:::o;92186:93::-;23323:13;:11;:13::i;:::-;92266:5:::1;92252:11;:19;;;;92186:93:::0;:::o;92306:106::-;23323:13;:11;:13::i;:::-;92392:12:::1;92380:9;:24;;;;92306:106:::0;:::o;92838:324::-;23323:13;:11;:13::i;:::-;92886:16:::1;92905:21;92886:40;;92956:1;92945:8;:12;92937:21;;;::::0;::::1;;92969:37;92979:2;;;;;;;;;;;93001:4;92995:2;92984:8;:13;;;;:::i;:::-;92983:22;;;;:::i;:::-;92969:9;:37::i;:::-;93017;93027:2;;;;;;;;;;;93049:4;93043:2;93032:8;:13;;;;:::i;:::-;93031:22;;;;:::i;:::-;93017:9;:37::i;:::-;93065;93075:2;;;;;;;;;;;93097:4;93091:2;93080:8;:13;;;;:::i;:::-;93079:22;;;;:::i;:::-;93065:9;:37::i;:::-;93113:41;93123:7;:5;:7::i;:::-;93132:21;93113:9;:41::i;:::-;92875:287;92838:324::o:0;88836:50::-;;;;;;;;;;;;;;;;;:::o;92034:132::-;23323:13;:11;:13::i;:::-;92140:18:::1;92120:17;:38;;;;92034:132:::0;:::o;60205:193::-;60351:39;60368:4;60374:2;60378:7;60351:39;;;;;;;;;;;;:16;:39::i;:::-;60205:193;;;:::o;88756:33::-;;;;;;;;;;;;;:::o;88538:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88710:39::-;;;;:::o;48547:152::-;48619:7;48662:27;48681:7;48662:18;:27::i;:::-;48639:52;;48547:152;;;:::o;44089:233::-;44161:7;44202:1;44185:19;;:5;:19;;;44181:60;;44213:28;;;;;;;;;;;;;;44181:60;38248:13;44259:18;:25;44278:5;44259:25;;;;;;;;;;;;;;;;:55;44252:62;;44089:233;;;:::o;24085:103::-;23323:13;:11;:13::i;:::-;24150:30:::1;24177:1;24150:18;:30::i;:::-;24085:103::o:0;92577:108::-;23323:13;:11;:13::i;:::-;92668:9:::1;92652:13;;:25;;;;;;;;;;;;;;;;;;92577:108:::0;:::o;91285:210::-;23323:13;:11;:13::i;:::-;91409:9:::1;;91394:11;91378:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;91370:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;91454:33;91464:9;91475:11;91454:9;:33::i;:::-;91285:210:::0;;:::o;93502:792::-;93563:16;93617:18;93652:16;93662:5;93652:9;:16::i;:::-;93638:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93617:52;;93685:11;93699:14;:12;:14::i;:::-;93685:28;;93728:19;93762:25;93807:9;93802:447;93822:3;93818:1;:7;93802:447;;;93851:31;93885:15;93898:1;93885:12;:15::i;:::-;93851:49;;93923:9;:16;;;93919:73;;;93964:8;;;93919:73;94040:1;94014:28;;:9;:14;;;:28;;;94010:111;;94087:9;:14;;;94067:34;;94010:111;94164:5;94143:26;;:17;:26;;;94139:95;;94213:1;94194;94196:13;;;;;;94194:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;94139:95;93832:417;93802:447;93827:3;;;;;;;93802:447;;;;94270:1;94263:8;;;;;;93502:792;;;:::o;23437:87::-;23483:7;23510:6;;;;;;;;;;;23503:13;;23437:87;:::o;88665:38::-;;;;:::o;47330:104::-;47386:13;47419:7;47412:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47330:104;:::o;54203:234::-;54350:8;54298:18;:39;54317:19;:17;:19::i;:::-;54298:39;;;;;;;;;;;;;;;:49;54338:8;54298:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54410:8;54374:55;;54389:19;:17;:19::i;:::-;54374:55;;;54420:8;54374:55;;;;;;:::i;:::-;;;;;;;;54203:234;;:::o;91871:136::-;23323:13;:11;:13::i;:::-;91980:19:::1;91959:18;:40;;;;91871:136:::0;:::o;60996:407::-;61171:31;61184:4;61190:2;61194:7;61171:12;:31::i;:::-;61235:1;61217:2;:14;;;:19;61213:183;;61256:56;61287:4;61293:2;61297:7;61306:5;61256:30;:56::i;:::-;61251:145;;61340:40;;;;;;;;;;;;;;61251:145;61213:183;60996:407;;;;:::o;94411:416::-;94485:13;94519:17;94527:8;94519:7;:17::i;:::-;94511:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;94601:28;94632:10;:8;:10::i;:::-;94601:41;;94691:1;94666:14;94660:28;:32;:159;;;;;;;;;;;;;;;;;94732:14;94769:19;:8;:17;:19::i;:::-;94790:9;94715:85;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94660:159;94653:166;;;94411:416;;;:::o;88893:50::-;;;;;;;;;;;;;;;;;:::o;88627:31::-;;;;:::o;54594:164::-;54691:4;54715:18;:25;54734:5;54715:25;;;;;;;;;;;;;;;:35;54741:8;54715:35;;;;;;;;;;;;;;;;;;;;;;;;;54708:42;;54594:164;;;;:::o;88514:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;89711:198::-;23323:13;:11;:13::i;:::-;27247:21:::1;:19;:21::i;:::-;89827:9:::2;;89817:6;89801:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;89793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89872:29;89882:10;89894:6;89872:9;:29::i;:::-;27291:20:::1;:18;:20::i;:::-;89711:198:::0;:::o;24343:201::-;23323:13;:11;:13::i;:::-;24452:1:::1;24432:22;;:8;:22;;::::0;24424:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24508:28;24527:8;24508:18;:28::i;:::-;24343:201:::0;:::o;91652:82::-;23323:13;:11;:13::i;:::-;91722:4:::1;91716:3;:10;;;;;;;;;;;;:::i;:::-;;91652:82:::0;:::o;27327:293::-;26729:1;27461:7;;:19;27453:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26729:1;27594:7;:18;;;;27327:293::o;21988:98::-;22041:7;22068:10;22061:17;;21988:98;:::o;71156:112::-;71233:27;71243:2;71247:8;71233:27;;;;;;;;;;;;:9;:27::i;:::-;71156:112;;:::o;27628:213::-;26685:1;27811:7;:22;;;;27628:213::o;55016:282::-;55081:4;55137:7;55118:15;:13;:15::i;:::-;:26;;:66;;;;;55171:13;;55161:7;:23;55118:66;:153;;;;;55270:1;39024:8;55222:17;:26;55240:7;55222:26;;;;;;;;;;;;:44;:49;55118:153;55098:173;;55016:282;;;:::o;77324:105::-;77384:7;77411:10;77404:17;;77324:105;:::o;23602:132::-;23677:12;:10;:12::i;:::-;23666:23;;:7;:5;:7::i;:::-;:23;;;23658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23602:132::o;94302:101::-;94367:7;94394:1;94387:8;;94302:101;:::o;49702:1275::-;49769:7;49789:12;49804:7;49789:22;;49872:4;49853:15;:13;:15::i;:::-;:23;49849:1061;;49906:13;;49899:4;:20;49895:1015;;;49944:14;49961:17;:23;49979:4;49961:23;;;;;;;;;;;;49944:40;;50078:1;39024:8;50050:6;:24;:29;50046:845;;50715:113;50732:1;50722:6;:11;50715:113;;50775:17;:25;50793:6;;;;;;;50775:25;;;;;;;;;;;;50766:34;;50715:113;;;50861:6;50854:13;;;;;;50046:845;49921:989;49895:1015;49849:1061;50938:31;;;;;;;;;;;;;;49702:1275;;;;:::o;56179:485::-;56281:27;56310:23;56351:38;56392:15;:24;56408:7;56392:24;;;;;;;;;;;56351:65;;56569:18;56546:41;;56626:19;56620:26;56601:45;;56531:126;56179:485;;;:::o;55407:659::-;55556:11;55721:16;55714:5;55710:28;55701:37;;55881:16;55870:9;55866:32;55853:45;;56031:15;56020:9;56017:30;56009:5;55998:9;55995:20;55992:56;55982:66;;55407:659;;;;;:::o;62065:159::-;;;;;:::o;76633:311::-;76768:7;76788:16;39428:3;76814:19;:41;;76788:68;;39428:3;76882:31;76893:4;76899:2;76903:9;76882:10;:31::i;:::-;76874:40;;:62;;76867:69;;;76633:311;;;;;:::o;51525:450::-;51605:14;51773:16;51766:5;51762:28;51753:37;;51950:5;51936:11;51911:23;51907:41;51904:52;51897:5;51894:63;51884:73;;51525:450;;;;:::o;62889:158::-;;;;;:::o;93170:180::-;93244:12;93262:8;:13;;93283:7;93262:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93243:52;;;93314:7;93306:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;93232:118;93170:180;;:::o;24704:191::-;24778:16;24797:6;;;;;;;;;;;24778:25;;24823:8;24814:6;;:17;;;;;;;;;;;;;;;;;;24878:8;24847:40;;24868:8;24847:40;;;;;;;;;;;;24767:128;24704:191;:::o;42592:103::-;42647:7;42674:13;;42667:20;;42592:103;:::o;49150:161::-;49218:21;;:::i;:::-;49259:44;49278:17;:24;49296:5;49278:24;;;;;;;;;;;;49259:18;:44::i;:::-;49252:51;;49150:161;;;:::o;63487:716::-;63650:4;63696:2;63671:45;;;63717:19;:17;:19::i;:::-;63738:4;63744:7;63753:5;63671:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63667:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63971:1;63954:6;:13;:18;63950:235;;64000:40;;;;;;;;;;;;;;63950:235;64143:6;64137:13;64128:6;64124:2;64120:15;64113:38;63667:529;63840:54;;;63830:64;;;:6;:64;;;;63823:71;;;63487:716;;;;;;:::o;94835:104::-;94895:13;94928:3;94921:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94835:104;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;70383:689::-;70514:19;70520:2;70524:8;70514:5;:19::i;:::-;70593:1;70575:2;:14;;;:19;70571:483;;70615:11;70629:13;;70615:27;;70661:13;70683:8;70677:3;:14;70661:30;;70710:233;70741:62;70780:1;70784:2;70788:7;;;;;;70797:5;70741:30;:62::i;:::-;70736:167;;70839:40;;;;;;;;;;;;;;70736:167;70938:3;70930:5;:11;70710:233;;71025:3;71008:13;;:20;71004:34;;71030:8;;;71004:34;70596:458;;70571:483;70383:689;;;:::o;76334:147::-;76471:6;76334:147;;;;;:::o;51076:366::-;51142:31;;:::i;:::-;51219:6;51186:9;:14;;:41;;;;;;;;;;;38907:3;51272:6;:33;;51238:9;:24;;:68;;;;;;;;;;;51364:1;39024:8;51336:6;:24;:29;;51317:9;:16;;:48;;;;;;;;;;;39428:3;51405:6;:28;;51376:9;:19;;:58;;;;;;;;;;;51076:366;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;64665:2966::-;64738:20;64761:13;;64738:36;;64801:1;64789:8;:13;64785:44;;64811:18;;;;;;;;;;;;;;64785:44;64842:61;64872:1;64876:2;64880:12;64894:8;64842:21;:61::i;:::-;65386:1;38386:2;65356:1;:26;;65355:32;65343:8;:45;65317:18;:22;65336:2;65317:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65665:139;65702:2;65756:33;65779:1;65783:2;65787:1;65756:14;:33::i;:::-;65723:30;65744:8;65723:20;:30::i;:::-;:66;65665:18;:139::i;:::-;65631:17;:31;65649:12;65631:31;;;;;;;;;;;:173;;;;65821:16;65852:11;65881:8;65866:12;:23;65852:37;;66402:16;66398:2;66394:25;66382:37;;66774:12;66734:8;66693:1;66631:25;66572:1;66511;66484:335;67145:1;67131:12;67127:20;67085:346;67186:3;67177:7;67174:16;67085:346;;67404:7;67394:8;67391:1;67364:25;67361:1;67358;67353:59;67239:1;67230:7;67226:15;67215:26;;67085:346;;;67089:77;67476:1;67464:8;:13;67460:45;;67486:19;;;;;;;;;;;;;;67460:45;67538:3;67522:13;:19;;;;65091:2462;;67563:60;67592:1;67596:2;67600:12;67614:8;67563:20;:60::i;:::-;64727:2904;64665:2966;;:::o;52077:324::-;52147:14;52380:1;52370:8;52367:15;52341:24;52337:46;52327:56;;52077:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:116::-;8606:21;8621:5;8606:21;:::i;:::-;8599:5;8596:32;8586:60;;8642:1;8639;8632:12;8586:60;8536:116;:::o;8658:133::-;8701:5;8739:6;8726:20;8717:29;;8755:30;8779:5;8755:30;:::i;:::-;8658:133;;;;:::o;8797:323::-;8853:6;8902:2;8890:9;8881:7;8877:23;8873:32;8870:119;;;8908:79;;:::i;:::-;8870:119;9028:1;9053:50;9095:7;9086:6;9075:9;9071:22;9053:50;:::i;:::-;9043:60;;8999:114;8797:323;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:474::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9712:1;9737:53;9782:7;9773:6;9762:9;9758:22;9737:53;:::i;:::-;9727:63;;9683:117;9839:2;9865:53;9910:7;9901:6;9890:9;9886:22;9865:53;:::i;:::-;9855:63;;9810:118;9461:474;;;;;:::o;9941:114::-;10008:6;10042:5;10036:12;10026:22;;9941:114;;;:::o;10061:184::-;10160:11;10194:6;10189:3;10182:19;10234:4;10229:3;10225:14;10210:29;;10061:184;;;;:::o;10251:132::-;10318:4;10341:3;10333:11;;10371:4;10366:3;10362:14;10354:22;;10251:132;;;:::o;10389:108::-;10466:24;10484:5;10466:24;:::i;:::-;10461:3;10454:37;10389:108;;:::o;10503:179::-;10572:10;10593:46;10635:3;10627:6;10593:46;:::i;:::-;10671:4;10666:3;10662:14;10648:28;;10503:179;;;;:::o;10688:113::-;10758:4;10790;10785:3;10781:14;10773:22;;10688:113;;;:::o;10837:732::-;10956:3;10985:54;11033:5;10985:54;:::i;:::-;11055:86;11134:6;11129:3;11055:86;:::i;:::-;11048:93;;11165:56;11215:5;11165:56;:::i;:::-;11244:7;11275:1;11260:284;11285:6;11282:1;11279:13;11260:284;;;11361:6;11355:13;11388:63;11447:3;11432:13;11388:63;:::i;:::-;11381:70;;11474:60;11527:6;11474:60;:::i;:::-;11464:70;;11320:224;11307:1;11304;11300:9;11295:14;;11260:284;;;11264:14;11560:3;11553:10;;10961:608;;;10837:732;;;;:::o;11575:373::-;11718:4;11756:2;11745:9;11741:18;11733:26;;11805:9;11799:4;11795:20;11791:1;11780:9;11776:17;11769:47;11833:108;11936:4;11927:6;11833:108;:::i;:::-;11825:116;;11575:373;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:173::-;15595:25;15591:1;15583:6;15579:14;15572:49;15455:173;:::o;15634:366::-;15776:3;15797:67;15861:2;15856:3;15797:67;:::i;:::-;15790:74;;15873:93;15962:3;15873:93;:::i;:::-;15991:2;15986:3;15982:12;15975:19;;15634:366;;;:::o;16006:419::-;16172:4;16210:2;16199:9;16195:18;16187:26;;16259:9;16253:4;16249:20;16245:1;16234:9;16230:17;16223:47;16287:131;16413:4;16287:131;:::i;:::-;16279:139;;16006:419;;;:::o;16431:170::-;16571:22;16567:1;16559:6;16555:14;16548:46;16431:170;:::o;16607:366::-;16749:3;16770:67;16834:2;16829:3;16770:67;:::i;:::-;16763:74;;16846:93;16935:3;16846:93;:::i;:::-;16964:2;16959:3;16955:12;16948:19;;16607:366;;;:::o;16979:419::-;17145:4;17183:2;17172:9;17168:18;17160:26;;17232:9;17226:4;17222:20;17218:1;17207:9;17203:17;17196:47;17260:131;17386:4;17260:131;:::i;:::-;17252:139;;16979:419;;;:::o;17404:180::-;17452:77;17449:1;17442:88;17549:4;17546:1;17539:15;17573:4;17570:1;17563:15;17590:305;17630:3;17649:20;17667:1;17649:20;:::i;:::-;17644:25;;17683:20;17701:1;17683:20;:::i;:::-;17678:25;;17837:1;17769:66;17765:74;17762:1;17759:81;17756:107;;;17843:18;;:::i;:::-;17756:107;17887:1;17884;17880:9;17873:16;;17590:305;;;;:::o;17901:170::-;18041:22;18037:1;18029:6;18025:14;18018:46;17901:170;:::o;18077:366::-;18219:3;18240:67;18304:2;18299:3;18240:67;:::i;:::-;18233:74;;18316:93;18405:3;18316:93;:::i;:::-;18434:2;18429:3;18425:12;18418:19;;18077:366;;;:::o;18449:419::-;18615:4;18653:2;18642:9;18638:18;18630:26;;18702:9;18696:4;18692:20;18688:1;18677:9;18673:17;18666:47;18730:131;18856:4;18730:131;:::i;:::-;18722:139;;18449:419;;;:::o;18874:348::-;18914:7;18937:20;18955:1;18937:20;:::i;:::-;18932:25;;18971:20;18989:1;18971:20;:::i;:::-;18966:25;;19159:1;19091:66;19087:74;19084:1;19081:81;19076:1;19069:9;19062:17;19058:105;19055:131;;;19166:18;;:::i;:::-;19055:131;19214:1;19211;19207:9;19196:20;;18874:348;;;;:::o;19228:169::-;19368:21;19364:1;19356:6;19352:14;19345:45;19228:169;:::o;19403:366::-;19545:3;19566:67;19630:2;19625:3;19566:67;:::i;:::-;19559:74;;19642:93;19731:3;19642:93;:::i;:::-;19760:2;19755:3;19751:12;19744:19;;19403:366;;;:::o;19775:419::-;19941:4;19979:2;19968:9;19964:18;19956:26;;20028:9;20022:4;20018:20;20014:1;20003:9;19999:17;19992:47;20056:131;20182:4;20056:131;:::i;:::-;20048:139;;19775:419;;;:::o;20200:181::-;20340:33;20336:1;20328:6;20324:14;20317:57;20200:181;:::o;20387:366::-;20529:3;20550:67;20614:2;20609:3;20550:67;:::i;:::-;20543:74;;20626:93;20715:3;20626:93;:::i;:::-;20744:2;20739:3;20735:12;20728:19;;20387:366;;;:::o;20759:419::-;20925:4;20963:2;20952:9;20948:18;20940:26;;21012:9;21006:4;21002:20;20998:1;20987:9;20983:17;20976:47;21040:131;21166:4;21040:131;:::i;:::-;21032:139;;20759:419;;;:::o;21184:247::-;21324:34;21320:1;21312:6;21308:14;21301:58;21393:30;21388:2;21380:6;21376:15;21369:55;21184:247;:::o;21437:366::-;21579:3;21600:67;21664:2;21659:3;21600:67;:::i;:::-;21593:74;;21676:93;21765:3;21676:93;:::i;:::-;21794:2;21789:3;21785:12;21778:19;;21437:366;;;:::o;21809:419::-;21975:4;22013:2;22002:9;21998:18;21990:26;;22062:9;22056:4;22052:20;22048:1;22037:9;22033:17;22026:47;22090:131;22216:4;22090:131;:::i;:::-;22082:139;;21809:419;;;:::o;22234:168::-;22374:20;22370:1;22362:6;22358:14;22351:44;22234:168;:::o;22408:366::-;22550:3;22571:67;22635:2;22630:3;22571:67;:::i;:::-;22564:74;;22647:93;22736:3;22647:93;:::i;:::-;22765:2;22760:3;22756:12;22749:19;;22408:366;;;:::o;22780:419::-;22946:4;22984:2;22973:9;22969:18;22961:26;;23033:9;23027:4;23023:20;23019:1;23008:9;23004:17;22997:47;23061:131;23187:4;23061:131;:::i;:::-;23053:139;;22780:419;;;:::o;23205:180::-;23253:77;23250:1;23243:88;23350:4;23347:1;23340:15;23374:4;23371:1;23364:15;23391:185;23431:1;23448:20;23466:1;23448:20;:::i;:::-;23443:25;;23482:20;23500:1;23482:20;:::i;:::-;23477:25;;23521:1;23511:35;;23526:18;;:::i;:::-;23511:35;23568:1;23565;23561:9;23556:14;;23391:185;;;;:::o;23582:180::-;23630:77;23627:1;23620:88;23727:4;23724:1;23717:15;23751:4;23748:1;23741:15;23768:234;23908:34;23904:1;23896:6;23892:14;23885:58;23977:17;23972:2;23964:6;23960:15;23953:42;23768:234;:::o;24008:366::-;24150:3;24171:67;24235:2;24230:3;24171:67;:::i;:::-;24164:74;;24247:93;24336:3;24247:93;:::i;:::-;24365:2;24360:3;24356:12;24349:19;;24008:366;;;:::o;24380:419::-;24546:4;24584:2;24573:9;24569:18;24561:26;;24633:9;24627:4;24623:20;24619:1;24608:9;24604:17;24597:47;24661:131;24787:4;24661:131;:::i;:::-;24653:139;;24380:419;;;:::o;24805:148::-;24907:11;24944:3;24929:18;;24805:148;;;;:::o;24959:377::-;25065:3;25093:39;25126:5;25093:39;:::i;:::-;25148:89;25230:6;25225:3;25148:89;:::i;:::-;25141:96;;25246:52;25291:6;25286:3;25279:4;25272:5;25268:16;25246:52;:::i;:::-;25323:6;25318:3;25314:16;25307:23;;25069:267;24959:377;;;;:::o;25342:168::-;25482:20;25478:1;25470:6;25466:14;25459:44;25342:168;:::o;25516:402::-;25676:3;25697:85;25779:2;25774:3;25697:85;:::i;:::-;25690:92;;25791:93;25880:3;25791:93;:::i;:::-;25909:2;25904:3;25900:12;25893:19;;25516:402;;;:::o;25924:141::-;25973:4;25996:3;25988:11;;26019:3;26016:1;26009:14;26053:4;26050:1;26040:18;26032:26;;25924:141;;;:::o;26095:845::-;26198:3;26235:5;26229:12;26264:36;26290:9;26264:36;:::i;:::-;26316:89;26398:6;26393:3;26316:89;:::i;:::-;26309:96;;26436:1;26425:9;26421:17;26452:1;26447:137;;;;26598:1;26593:341;;;;26414:520;;26447:137;26531:4;26527:9;26516;26512:25;26507:3;26500:38;26567:6;26562:3;26558:16;26551:23;;26447:137;;26593:341;26660:38;26692:5;26660:38;:::i;:::-;26720:1;26734:154;26748:6;26745:1;26742:13;26734:154;;;26822:7;26816:14;26812:1;26807:3;26803:11;26796:35;26872:1;26863:7;26859:15;26848:26;;26770:4;26767:1;26763:12;26758:17;;26734:154;;;26917:6;26912:3;26908:16;26901:23;;26600:334;;26414:520;;26202:738;;26095:845;;;;:::o;26946:855::-;27272:3;27294:95;27385:3;27376:6;27294:95;:::i;:::-;27287:102;;27406:148;27550:3;27406:148;:::i;:::-;27399:155;;27571:95;27662:3;27653:6;27571:95;:::i;:::-;27564:102;;27683:92;27771:3;27762:6;27683:92;:::i;:::-;27676:99;;27792:3;27785:10;;26946:855;;;;;;:::o;27807:170::-;27947:22;27943:1;27935:6;27931:14;27924:46;27807:170;:::o;27983:366::-;28125:3;28146:67;28210:2;28205:3;28146:67;:::i;:::-;28139:74;;28222:93;28311:3;28222:93;:::i;:::-;28340:2;28335:3;28331:12;28324:19;;27983:366;;;:::o;28355:419::-;28521:4;28559:2;28548:9;28544:18;28536:26;;28608:9;28602:4;28598:20;28594:1;28583:9;28579:17;28572:47;28636:131;28762:4;28636:131;:::i;:::-;28628:139;;28355:419;;;:::o;28780:225::-;28920:34;28916:1;28908:6;28904:14;28897:58;28989:8;28984:2;28976:6;28972:15;28965:33;28780:225;:::o;29011:366::-;29153:3;29174:67;29238:2;29233:3;29174:67;:::i;:::-;29167:74;;29250:93;29339:3;29250:93;:::i;:::-;29368:2;29363:3;29359:12;29352:19;;29011:366;;;:::o;29383:419::-;29549:4;29587:2;29576:9;29572:18;29564:26;;29636:9;29630:4;29626:20;29622:1;29611:9;29607:17;29600:47;29664:131;29790:4;29664:131;:::i;:::-;29656:139;;29383:419;;;:::o;29808:181::-;29948:33;29944:1;29936:6;29932:14;29925:57;29808:181;:::o;29995:366::-;30137:3;30158:67;30222:2;30217:3;30158:67;:::i;:::-;30151:74;;30234:93;30323:3;30234:93;:::i;:::-;30352:2;30347:3;30343:12;30336:19;;29995:366;;;:::o;30367:419::-;30533:4;30571:2;30560:9;30556:18;30548:26;;30620:9;30614:4;30610:20;30606:1;30595:9;30591:17;30584:47;30648:131;30774:4;30648:131;:::i;:::-;30640:139;;30367:419;;;:::o;30792:182::-;30932:34;30928:1;30920:6;30916:14;30909:58;30792:182;:::o;30980:366::-;31122:3;31143:67;31207:2;31202:3;31143:67;:::i;:::-;31136:74;;31219:93;31308:3;31219:93;:::i;:::-;31337:2;31332:3;31328:12;31321:19;;30980:366;;;:::o;31352:419::-;31518:4;31556:2;31545:9;31541:18;31533:26;;31605:9;31599:4;31595:20;31591:1;31580:9;31576:17;31569:47;31633:131;31759:4;31633:131;:::i;:::-;31625:139;;31352:419;;;:::o;31777:147::-;31878:11;31915:3;31900:18;;31777:147;;;;:::o;31930:114::-;;:::o;32050:398::-;32209:3;32230:83;32311:1;32306:3;32230:83;:::i;:::-;32223:90;;32322:93;32411:3;32322:93;:::i;:::-;32440:1;32435:3;32431:11;32424:18;;32050:398;;;:::o;32454:379::-;32638:3;32660:147;32803:3;32660:147;:::i;:::-;32653:154;;32824:3;32817:10;;32454:379;;;:::o;32839:166::-;32979:18;32975:1;32967:6;32963:14;32956:42;32839:166;:::o;33011:366::-;33153:3;33174:67;33238:2;33233:3;33174:67;:::i;:::-;33167:74;;33250:93;33339:3;33250:93;:::i;:::-;33368:2;33363:3;33359:12;33352:19;;33011:366;;;:::o;33383:419::-;33549:4;33587:2;33576:9;33572:18;33564:26;;33636:9;33630:4;33626:20;33622:1;33611:9;33607:17;33600:47;33664:131;33790:4;33664:131;:::i;:::-;33656:139;;33383:419;;;:::o;33808:98::-;33859:6;33893:5;33887:12;33877:22;;33808:98;;;:::o;33912:168::-;33995:11;34029:6;34024:3;34017:19;34069:4;34064:3;34060:14;34045:29;;33912:168;;;;:::o;34086:360::-;34172:3;34200:38;34232:5;34200:38;:::i;:::-;34254:70;34317:6;34312:3;34254:70;:::i;:::-;34247:77;;34333:52;34378:6;34373:3;34366:4;34359:5;34355:16;34333:52;:::i;:::-;34410:29;34432:6;34410:29;:::i;:::-;34405:3;34401:39;34394:46;;34176:270;34086:360;;;;:::o;34452:640::-;34647:4;34685:3;34674:9;34670:19;34662:27;;34699:71;34767:1;34756:9;34752:17;34743:6;34699:71;:::i;:::-;34780:72;34848:2;34837:9;34833:18;34824:6;34780:72;:::i;:::-;34862;34930:2;34919:9;34915:18;34906:6;34862:72;:::i;:::-;34981:9;34975:4;34971:20;34966:2;34955:9;34951:18;34944:48;35009:76;35080:4;35071:6;35009:76;:::i;:::-;35001:84;;34452:640;;;;;;;:::o;35098:141::-;35154:5;35185:6;35179:13;35170:22;;35201:32;35227:5;35201:32;:::i;:::-;35098:141;;;;:::o;35245:349::-;35314:6;35363:2;35351:9;35342:7;35338:23;35334:32;35331:119;;;35369:79;;:::i;:::-;35331:119;35489:1;35514:63;35569:7;35560:6;35549:9;35545:22;35514:63;:::i;:::-;35504:73;;35460:127;35245:349;;;;:::o

Swarm Source

ipfs://81ad435b49b5fcb243b8c2fb55802f01b8c9a9ac4d65aa4a348a0868309b9807
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.