ETH Price: $2,557.90 (-17.74%)
 

Overview

Max Total Supply

789 YSM

Holders

224

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 YSM
0xaac8fc6115f24574c2f8541867de68b84b7d54a5
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:
YashimaVerse

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-28
*/

//SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/SignedMath.sol
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: ERC721A/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();

    /**
     * `_sequentialUpTo()` must be greater than `_startTokenId()`.
     */
    error SequentialUpToTooSmall();

    /**
     * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`.
     */
    error SequentialMintExceedsLimit();

    /**
     * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`.
     */
    error SpotMintTokenIdTooSmall();

    /**
     * Cannot mint over a token that already exists.
     */
    error TokenAlreadyExists();

    /**
     * The feature is not compatible with spot mints.
     */
    error NotCompatibleWithSpotMints();

    // =============================================================
    //                            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/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()`.
 *
 * The `_sequentialUpTo()` function can be overriden to enable spot mints
 * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`.
 *
 * 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;

    // The amount of tokens minted above `_sequentialUpTo()`.
    // We call these spot mints (i.e. non-sequential mints).
    uint256 private _spotMinted;

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

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

        if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector);
    }

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

    /**
     * @dev Returns the starting token ID for sequential mints.
     *
     * Override this function to change the starting token ID for sequential mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the maximum token ID (inclusive) for sequential mints.
     *
     * Override this function to return a value less than 2**256 - 1,
     * but greater than `_startTokenId()`, to enable spot (non-sequential) mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _sequentialUpTo() internal view virtual returns (uint256) {
        return type(uint256).max;
    }

    /**
     * @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 result) {
        // Counter underflow is impossible as `_burnCounter` cannot be incremented
        // more than `_currentIndex + _spotMinted - _startTokenId()` times.
        unchecked {
            // With spot minting, the intermediate `result` can be temporarily negative,
            // and the computation must be unchecked.
            result = _currentIndex - _burnCounter - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

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

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

    /**
     * @dev Returns the total number of tokens that are spot-minted.
     */
    function _totalSpotMinted() internal view virtual returns (uint256) {
        return _spotMinted;
    }

    // =============================================================
    //                    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.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * @dev Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];

            if (tokenId > _sequentialUpTo()) {
                if (_packedOwnershipExists(packed)) return packed;
                _revert(OwnerQueryForNonexistentToken.selector);
            }

            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]);

            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

    /**
     * @dev Returns whether `packed` represents a token that exists.
     */
    function _packedOwnershipExists(uint256 packed) private pure returns (bool result) {
        assembly {
            // The following is equivalent to `owner != address(0) && burned == false`.
            // Symbolically tested.
            result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_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);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

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

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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)
            );

            if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            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.selector);
                    }
                } while (index < end);
                // This prevents reentrancy to `_safeMint`.
                // It does not prevent reentrancy to `_safeMintSpot`.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    /**
     * @dev Mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mintSpot(address to, uint256 tokenId) internal virtual {
        if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector);
        uint256 prevOwnershipPacked = _packedOwnerships[tokenId];
        if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector);

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

        // Overflows are incredibly unrealistic.
        // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1.
        // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `true` (as `quantity == 1`).
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked)
            );

            // Updates:
            // - `balance += 1`.
            // - `numberMinted += 1`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1;

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            assembly {
                // 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`.
                    tokenId // `tokenId`.
                )
            }

            ++_spotMinted;
        }

        _afterTokenTransfers(address(0), to, tokenId, 1);
    }

    /**
     * @dev Safely mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * See {_mintSpot}.
     *
     * Emits a {Transfer} event.
     */
    function _safeMintSpot(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mintSpot(to, tokenId);

        unchecked {
            if (to.code.length != 0) {
                uint256 currentSpotMinted = _spotMinted;
                if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) {
                    _revert(TransferToNonERC721ReceiverImplementer.selector);
                }
                // This prevents reentrancy to `_safeMintSpot`.
                // It does not prevent reentrancy to `_safeMint`.
                if (_spotMinted != currentSpotMinted) revert();
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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 + _spotMinted` 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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.24;


contract YashimaVerse is ERC721A, Ownable {
    using Strings for uint256;

    bool public paused = true;

    string public baseURI = "ipfs://bafybeigvjfyoysknyo7cebuklg44bzp7l3fqgeueqmbuh4eswwmtfeagr4/";
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public freeClaimed;

    uint256 public publicPrice = 0.0022 ether;
    uint256 public maxMintPerTx = 50;
    uint256 public maxSupply = 5000;
    uint256 public freeAllowance = 1;

    constructor()
        ERC721A("Yashima Verse", "YSM")
        Ownable(msg.sender)
    {}

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    
    function mint(uint256 quantity) external payable {
        uint256 freeQuantityAvailable = freeAllowance - freeClaimed[msg.sender];

        require(!paused, "The contract is paused!");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        require(publicClaimed[msg.sender] + quantity <= maxMintPerTx, "You can't mint this amount");
        if (freeClaimed[msg.sender] < freeAllowance)
            {
                if(freeQuantityAvailable < quantity)
                    {
                        require(msg.value >= publicPrice * (quantity - (freeQuantityAvailable)), "Insufficient Funds!");
                        freeClaimed[msg.sender] = freeAllowance;
                    }
                else 
                    {
                        require(msg.value >= 0, "Insufficient Funds!");
                        freeClaimed[msg.sender] += quantity;
                    }
            }
        else
            require(msg.value >= publicPrice * quantity, "Insufficient Funds!");

        _safeMint(msg.sender, quantity);
        publicClaimed[msg.sender] += quantity;
    }

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

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

    function setMaxMintPerTx(uint256 _newState) external onlyOwner {
        maxMintPerTx = _newState;
    }

    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicPrice = _newPublicCost;
    }

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setFreeAllowance(uint256 _newFreeAllowance) external onlyOwner{
        freeAllowance = _newFreeAllowance;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    
    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }

    function airDropBatch(address[] memory _addresses, uint256[] memory _quantities) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            _safeMint(_addresses[i], _quantities[i]);
        }
    }

    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,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }

    function withdraw() public onlyOwner {
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","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":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"}],"name":"airDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaimed","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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeAllowance","type":"uint256"}],"name":"setFreeAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600960146101000a81548160ff0219169083151502179055506040518060800160405280604381526020016139b860439139600a90816100469190610502565b506607d0e36a818000600d556032600e55611388600f55600160105534801561006d575f80fd5b50336040518060400160405280600d81526020017f59617368696d61205665727365000000000000000000000000000000000000008152506040518060400160405280600381526020017f59534d000000000000000000000000000000000000000000000000000000000081525081600290816100ea9190610502565b5080600390816100fa9190610502565b506101096101ce60201b60201c565b5f8190555061011c6101ce60201b60201c565b61012a6101d660201b60201c565b10156101475761014663fed8210f60e01b6101fd60201b60201c565b5b50505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101b9575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101b09190610610565b60405180910390fd5b6101c88161020560201b60201c565b50610629565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b805f5260045ffd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061034357607f821691505b602082108103610356576103556102ff565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261037d565b6103c2868361037d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104066104016103fc846103da565b6103e3565b6103da565b9050919050565b5f819050919050565b61041f836103ec565b61043361042b8261040d565b848454610389565b825550505050565b5f90565b61044761043b565b610452818484610416565b505050565b5b818110156104755761046a5f8261043f565b600181019050610458565b5050565b601f8211156104ba5761048b8161035c565b6104948461036e565b810160208510156104a3578190505b6104b76104af8561036e565b830182610457565b50505b505050565b5f82821c905092915050565b5f6104da5f19846008026104bf565b1980831691505092915050565b5f6104f283836104cb565b9150826002028217905092915050565b61050b826102c8565b67ffffffffffffffff811115610524576105236102d2565b5b61052e825461032c565b610539828285610479565b5f60209050601f83116001811461056a575f8415610558578287015190505b61056285826104e7565b8655506105c9565b601f1984166105788661035c565b5f5b8281101561059f5784890151825560018201915060208501945060208101905061057a565b868310156105bc57848901516105b8601f8916826104cb565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105fa826105d1565b9050919050565b61060a816105f0565b82525050565b5f6020820190506106235f830184610601565b92915050565b613382806106365f395ff3fe608060405260043610610203575f3560e01c806370a0823111610117578063aed380151161009f578063d5abeb011161006e578063d5abeb01146106f1578063de7fcb1d1461071b578063e985e9c514610745578063e9eb6a7e14610781578063f2fde38b146107ab57610203565b8063aed3801514610635578063b5b1cd7c1461065d578063b88d4fde14610699578063c87b56dd146106b557610203565b806395d89b41116100e657806395d89b41146105755780639ec571d51461059f578063a0712d68146105c7578063a22cb465146105e3578063a945bf801461060b57610203565b806370a08231146104d1578063715018a61461050d5780638da5cb5b146105235780638fede9991461054d57610203565b80633ccfd60b1161019a5780635c975abb116101695780635c975abb146103dd578063616cdb1e1461040757806361c0b6a01461042f5780636352211e1461046b5780636c0360eb146104a757610203565b80633ccfd60b1461035b57806342842e0e1461037157806344a0d68a1461038d57806355f804b3146103b557610203565b806316c38b3c116101d657806316c38b3c146102c557806318160ddd146102ed57806323b872dd146103175780632c1154101461033357610203565b806301ffc9a71461020757806306fdde0314610243578063081812fc1461026d578063095ea7b3146102a9575b5f80fd5b348015610212575f80fd5b5061022d600480360381019061022891906122e9565b6107d3565b60405161023a919061232e565b60405180910390f35b34801561024e575f80fd5b50610257610864565b60405161026491906123b7565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e919061240a565b6108f4565b6040516102a09190612474565b60405180910390f35b6102c360048036038101906102be91906124b7565b61094d565b005b3480156102d0575f80fd5b506102eb60048036038101906102e6919061251f565b61095d565b005b3480156102f8575f80fd5b50610301610982565b60405161030e9190612559565b60405180910390f35b610331600480360381019061032c9190612572565b6109cd565b005b34801561033e575f80fd5b506103596004803603810190610354919061240a565b610c78565b005b348015610366575f80fd5b5061036f610c8a565b005b61038b60048036038101906103869190612572565b610d0d565b005b348015610398575f80fd5b506103b360048036038101906103ae919061240a565b610d2c565b005b3480156103c0575f80fd5b506103db60048036038101906103d691906126ee565b610d3e565b005b3480156103e8575f80fd5b506103f1610d59565b6040516103fe919061232e565b60405180910390f35b348015610412575f80fd5b5061042d6004803603810190610428919061240a565b610d6c565b005b34801561043a575f80fd5b5061045560048036038101906104509190612735565b610d7e565b6040516104629190612559565b60405180910390f35b348015610476575f80fd5b50610491600480360381019061048c919061240a565b610d93565b60405161049e9190612474565b60405180910390f35b3480156104b2575f80fd5b506104bb610da4565b6040516104c891906123b7565b60405180910390f35b3480156104dc575f80fd5b506104f760048036038101906104f29190612735565b610e30565b6040516105049190612559565b60405180910390f35b348015610518575f80fd5b50610521610ec4565b005b34801561052e575f80fd5b50610537610ed7565b6040516105449190612474565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e91906128e4565b610eff565b005b348015610580575f80fd5b50610589610f62565b60405161059691906123b7565b60405180910390f35b3480156105aa575f80fd5b506105c560048036038101906105c0919061240a565b610ff2565b005b6105e160048036038101906105dc919061240a565b611004565b005b3480156105ee575f80fd5b506106096004803603810190610604919061295a565b6113d2565b005b348015610616575f80fd5b5061061f6114d8565b60405161062c9190612559565b60405180910390f35b348015610640575f80fd5b5061065b60048036038101906106569190612998565b6114de565b005b348015610668575f80fd5b50610683600480360381019061067e9190612735565b6114f4565b6040516106909190612559565b60405180910390f35b6106b360048036038101906106ae9190612a74565b611509565b005b3480156106c0575f80fd5b506106db60048036038101906106d6919061240a565b61155a565b6040516106e891906123b7565b60405180910390f35b3480156106fc575f80fd5b506107056115fe565b6040516107129190612559565b60405180910390f35b348015610726575f80fd5b5061072f611604565b60405161073c9190612559565b60405180910390f35b348015610750575f80fd5b5061076b60048036038101906107669190612af4565b61160a565b604051610778919061232e565b60405180910390f35b34801561078c575f80fd5b50610795611698565b6040516107a29190612559565b60405180910390f35b3480156107b6575f80fd5b506107d160048036038101906107cc9190612735565b61169e565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087390612b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461089f90612b5f565b80156108ea5780601f106108c1576101008083540402835291602001916108ea565b820191905f5260205f20905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b5f6108fe82611722565b6109135761091263cf4700e460e01b6117c5565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610959828260016117cd565b5050565b6109656118f7565b80600960146101000a81548160ff02191690831515021790555050565b5f61098b61197e565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6109bd611986565b146109ca57600854810190505b90565b5f6109d7826119ad565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4c57610a4b63a114810060e01b6117c5565b5b5f80610a5784611abc565b91509150610a6d8187610a68611adf565b611ae6565b610a9857610a8286610a7d611adf565b61160a565b610a9757610a966359c896be60e01b6117c5565b5b5b610aa58686866001611b29565b8015610aaf575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b7785610b53888887611b2f565b7c020000000000000000000000000000000000000000000000000000000017611b56565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610bf3575f6001850190505f60045f8381526020019081526020015f205403610bf1575f548114610bf0578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610c6257610c6163ea553b3460e01b6117c5565b5b610c6f8787876001611b80565b50505050505050565b610c806118f7565b8060108190555050565b610c926118f7565b5f610c9b610ed7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cbe90612bbc565b5f6040518083038185875af1925050503d805f8114610cf8576040519150601f19603f3d011682016040523d82523d5f602084013e610cfd565b606091505b5050905080610d0a575f80fd5b50565b610d2783838360405180602001604052805f815250611509565b505050565b610d346118f7565b80600d8190555050565b610d466118f7565b80600a9081610d559190612d6d565b5050565b600960149054906101000a900460ff1681565b610d746118f7565b80600e8190555050565b600c602052805f5260405f205f915090505481565b5f610d9d826119ad565b9050919050565b600a8054610db190612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddd90612b5f565b8015610e285780601f10610dff57610100808354040283529160200191610e28565b820191905f5260205f20905b815481529060010190602001808311610e0b57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e7557610e74638f4eb60460e01b6117c5565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610ecc6118f7565b610ed55f611b86565b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f076118f7565b5f5b8251811015610f5d57610f50838281518110610f2857610f27612e3c565b5b6020026020010151838381518110610f4357610f42612e3c565b5b6020026020010151611c49565b8080600101915050610f09565b505050565b606060038054610f7190612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90612b5f565b8015610fe85780601f10610fbf57610100808354040283529160200191610fe8565b820191905f5260205f20905b815481529060010190602001808311610fcb57829003601f168201915b5050505050905090565b610ffa6118f7565b80600f8190555050565b5f600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546010546110509190612e96565b9050600960149054906101000a900460ff16156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990612f13565b60405180910390fd5b5f821180156110c55750600f54826110b8610982565b6110c29190612f31565b11155b611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90612fae565b60405180910390fd5b600e5482600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111509190612f31565b1115611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890613016565b60405180910390fd5b601054600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561132057818110156112845780826111ec9190612e96565b600d546111f99190613034565b34101561123b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611232906130bf565b60405180910390fd5b601054600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061131b565b5f3410156112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906130bf565b60405180910390fd5b81600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113139190612f31565b925050819055505b611371565b81600d5461132e9190613034565b341015611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906130bf565b60405180910390fd5b5b61137b3383611c49565b81600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113c79190612f31565b925050819055505050565b8060075f6113de611adf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611487611adf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114cc919061232e565b60405180910390a35050565b600d5481565b6114e66118f7565b6114f08183611c49565b5050565b600b602052805f5260405f205f915090505481565b6115148484846109cd565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146115545761153e84848484611c66565b6115535761155263d1a57ed660e01b6117c5565b5b5b50505050565b606061156582611722565b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b9061314d565b60405180910390fd5b5f6115ad611d90565b90505f8151116115cb5760405180602001604052805f8152506115f6565b806115d584611e20565b6040516020016115e69291906131ef565b6040516020818303038152906040525b915050919050565b600f5481565b600e5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60105481565b6116a66118f7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611716575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161170d9190612474565b60405180910390fd5b61171f81611b86565b50565b5f8161172c61197e565b116117bf57611739611986565b8211156117615761175a60045f8481526020019081526020015f2054611eea565b90506117c0565b5f548210156117be575f5b5f60045f8581526020019081526020015f20549150810361179857826117919061321d565b925061176c565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f6117d783610d93565b905081801561181957508073ffffffffffffffffffffffffffffffffffffffff16611800611adf565b73ffffffffffffffffffffffffffffffffffffffff1614155b156118455761182f8161182a611adf565b61160a565b6118445761184363cfb3b94260e01b6117c5565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6118ff611f2a565b73ffffffffffffffffffffffffffffffffffffffff1661191d610ed7565b73ffffffffffffffffffffffffffffffffffffffff161461197c57611940611f2a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119739190612474565b60405180910390fd5b565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f816119b761197e565b11611aa65760045f8381526020019081526020015f205490506119d8611986565b8211156119fd576119e881611eea565b611ab7576119fc63df2d9b4260e01b6117c5565b5b5f8103611a7e575f548210611a1d57611a1c63df2d9b4260e01b6117c5565b5b5b60045f836001900393508381526020019081526020015f205490505f810315611a79575f7c010000000000000000000000000000000000000000000000000000000082160315611ab757611a7863df2d9b4260e01b6117c5565b5b611a1e565b5f7c010000000000000000000000000000000000000000000000000000000082160315611ab7575b611ab663df2d9b4260e01b6117c5565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611b45868684611f31565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c62828260405180602001604052805f815250611f39565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8b611adf565b8786866040518563ffffffff1660e01b8152600401611cad9493929190613296565b6020604051808303815f875af1925050508015611ce857506040513d601f19601f82011682018060405250810190611ce591906132f4565b60015b611d3d573d805f8114611d16576040519150601f19603f3d011682016040523d82523d5f602084013e611d1b565b606091505b505f815103611d3557611d3463d1a57ed660e01b6117c5565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d9f90612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611dcb90612b5f565b8015611e165780601f10611ded57610100808354040283529160200191611e16565b820191905f5260205f20905b815481529060010190602001808311611df957829003601f168201915b5050505050905090565b60605f6001611e2e84611faf565b0190505f8167ffffffffffffffff811115611e4c57611e4b6125ca565b5b6040519080825280601f01601f191660200182016040528015611e7e5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611edf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ed457611ed361331f565b5b0494505f8503611e8b575b819350505050919050565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f33905090565b5f9392505050565b611f438383612100565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611faa575f805490505f83820390505b611f7f5f868380600101945086611c66565b611f9457611f9363d1a57ed660e01b6117c5565b5b818110611f6d57815f5414611fa7575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061200b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120015761200061331f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612048576d04ee2d6d415b85acef8100000000838161203e5761203d61331f565b5b0492506020810190505b662386f26fc10000831061207757662386f26fc10000838161206d5761206c61331f565b5b0492506010810190505b6305f5e10083106120a0576305f5e10083816120965761209561331f565b5b0492506008810190505b61271083106120c55761271083816120bb576120ba61331f565b5b0492506004810190505b606483106120e857606483816120de576120dd61331f565b5b0492506002810190505b600a83106120f7576001810190505b80915050919050565b5f805490505f820361211d5761211c63b562e8dd60e01b6117c5565b5b6121295f848385611b29565b612147836121385f865f611b2f565b61214185612274565b17611b56565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f81036121f8576121f7632e07630060e01b6117c5565b5b5f83830190505f83905061220a611986565b600183031115612225576122246381647e3a60e01b6117c5565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a481816001019150810361222657815f8190555050505061226f5f848385611b80565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122c881612294565b81146122d2575f80fd5b50565b5f813590506122e3816122bf565b92915050565b5f602082840312156122fe576122fd61228c565b5b5f61230b848285016122d5565b91505092915050565b5f8115159050919050565b61232881612314565b82525050565b5f6020820190506123415f83018461231f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61238982612347565b6123938185612351565b93506123a3818560208601612361565b6123ac8161236f565b840191505092915050565b5f6020820190508181035f8301526123cf818461237f565b905092915050565b5f819050919050565b6123e9816123d7565b81146123f3575f80fd5b50565b5f81359050612404816123e0565b92915050565b5f6020828403121561241f5761241e61228c565b5b5f61242c848285016123f6565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61245e82612435565b9050919050565b61246e81612454565b82525050565b5f6020820190506124875f830184612465565b92915050565b61249681612454565b81146124a0575f80fd5b50565b5f813590506124b18161248d565b92915050565b5f80604083850312156124cd576124cc61228c565b5b5f6124da858286016124a3565b92505060206124eb858286016123f6565b9150509250929050565b6124fe81612314565b8114612508575f80fd5b50565b5f81359050612519816124f5565b92915050565b5f602082840312156125345761253361228c565b5b5f6125418482850161250b565b91505092915050565b612553816123d7565b82525050565b5f60208201905061256c5f83018461254a565b92915050565b5f805f606084860312156125895761258861228c565b5b5f612596868287016124a3565b93505060206125a7868287016124a3565b92505060406125b8868287016123f6565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6126008261236f565b810181811067ffffffffffffffff8211171561261f5761261e6125ca565b5b80604052505050565b5f612631612283565b905061263d82826125f7565b919050565b5f67ffffffffffffffff82111561265c5761265b6125ca565b5b6126658261236f565b9050602081019050919050565b828183375f83830152505050565b5f61269261268d84612642565b612628565b9050828152602081018484840111156126ae576126ad6125c6565b5b6126b9848285612672565b509392505050565b5f82601f8301126126d5576126d46125c2565b5b81356126e5848260208601612680565b91505092915050565b5f602082840312156127035761270261228c565b5b5f82013567ffffffffffffffff8111156127205761271f612290565b5b61272c848285016126c1565b91505092915050565b5f6020828403121561274a5761274961228c565b5b5f612757848285016124a3565b91505092915050565b5f67ffffffffffffffff82111561277a576127796125ca565b5b602082029050602081019050919050565b5f80fd5b5f6127a161279c84612760565b612628565b905080838252602082019050602084028301858111156127c4576127c361278b565b5b835b818110156127ed57806127d988826124a3565b8452602084019350506020810190506127c6565b5050509392505050565b5f82601f83011261280b5761280a6125c2565b5b813561281b84826020860161278f565b91505092915050565b5f67ffffffffffffffff82111561283e5761283d6125ca565b5b602082029050602081019050919050565b5f61286161285c84612824565b612628565b905080838252602082019050602084028301858111156128845761288361278b565b5b835b818110156128ad578061289988826123f6565b845260208401935050602081019050612886565b5050509392505050565b5f82601f8301126128cb576128ca6125c2565b5b81356128db84826020860161284f565b91505092915050565b5f80604083850312156128fa576128f961228c565b5b5f83013567ffffffffffffffff81111561291757612916612290565b5b612923858286016127f7565b925050602083013567ffffffffffffffff81111561294457612943612290565b5b612950858286016128b7565b9150509250929050565b5f80604083850312156129705761296f61228c565b5b5f61297d858286016124a3565b925050602061298e8582860161250b565b9150509250929050565b5f80604083850312156129ae576129ad61228c565b5b5f6129bb858286016123f6565b92505060206129cc858286016124a3565b9150509250929050565b5f67ffffffffffffffff8211156129f0576129ef6125ca565b5b6129f98261236f565b9050602081019050919050565b5f612a18612a13846129d6565b612628565b905082815260208101848484011115612a3457612a336125c6565b5b612a3f848285612672565b509392505050565b5f82601f830112612a5b57612a5a6125c2565b5b8135612a6b848260208601612a06565b91505092915050565b5f805f8060808587031215612a8c57612a8b61228c565b5b5f612a99878288016124a3565b9450506020612aaa878288016124a3565b9350506040612abb878288016123f6565b925050606085013567ffffffffffffffff811115612adc57612adb612290565b5b612ae887828801612a47565b91505092959194509250565b5f8060408385031215612b0a57612b0961228c565b5b5f612b17858286016124a3565b9250506020612b28858286016124a3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b7657607f821691505b602082108103612b8957612b88612b32565b5b50919050565b5f81905092915050565b50565b5f612ba75f83612b8f565b9150612bb282612b99565b5f82019050919050565b5f612bc682612b9c565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bf1565b612c368683612bf1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c71612c6c612c67846123d7565b612c4e565b6123d7565b9050919050565b5f819050919050565b612c8a83612c57565b612c9e612c9682612c78565b848454612bfd565b825550505050565b5f90565b612cb2612ca6565b612cbd818484612c81565b505050565b5b81811015612ce057612cd55f82612caa565b600181019050612cc3565b5050565b601f821115612d2557612cf681612bd0565b612cff84612be2565b81016020851015612d0e578190505b612d22612d1a85612be2565b830182612cc2565b50505b505050565b5f82821c905092915050565b5f612d455f1984600802612d2a565b1980831691505092915050565b5f612d5d8383612d36565b9150826002028217905092915050565b612d7682612347565b67ffffffffffffffff811115612d8f57612d8e6125ca565b5b612d998254612b5f565b612da4828285612ce4565b5f60209050601f831160018114612dd5575f8415612dc3578287015190505b612dcd8582612d52565b865550612e34565b601f198416612de386612bd0565b5f5b82811015612e0a57848901518255600182019150602085019450602081019050612de5565b86831015612e275784890151612e23601f891682612d36565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612ea0826123d7565b9150612eab836123d7565b9250828203905081811115612ec357612ec2612e69565b5b92915050565b7f54686520636f6e747261637420697320706175736564210000000000000000005f82015250565b5f612efd601783612351565b9150612f0882612ec9565b602082019050919050565b5f6020820190508181035f830152612f2a81612ef1565b9050919050565b5f612f3b826123d7565b9150612f46836123d7565b9250828201905080821115612f5e57612f5d612e69565b5b92915050565b7f496e76616c696420616d6f756e742100000000000000000000000000000000005f82015250565b5f612f98600f83612351565b9150612fa382612f64565b602082019050919050565b5f6020820190508181035f830152612fc581612f8c565b9050919050565b7f596f752063616e2774206d696e74207468697320616d6f756e740000000000005f82015250565b5f613000601a83612351565b915061300b82612fcc565b602082019050919050565b5f6020820190508181035f83015261302d81612ff4565b9050919050565b5f61303e826123d7565b9150613049836123d7565b9250828202613057816123d7565b9150828204841483151761306e5761306d612e69565b5b5092915050565b7f496e73756666696369656e742046756e647321000000000000000000000000005f82015250565b5f6130a9601383612351565b91506130b482613075565b602082019050919050565b5f6020820190508181035f8301526130d68161309d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613137602f83612351565b9150613142826130dd565b604082019050919050565b5f6020820190508181035f8301526131648161312b565b9050919050565b5f81905092915050565b5f61317f82612347565b613189818561316b565b9350613199818560208601612361565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6131d960058361316b565b91506131e4826131a5565b600582019050919050565b5f6131fa8285613175565b91506132068284613175565b9150613211826131cd565b91508190509392505050565b5f613227826123d7565b91505f820361323957613238612e69565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61326882613244565b613272818561324e565b9350613282818560208601612361565b61328b8161236f565b840191505092915050565b5f6080820190506132a95f830187612465565b6132b66020830186612465565b6132c3604083018561254a565b81810360608301526132d5818461325e565b905095945050505050565b5f815190506132ee816122bf565b92915050565b5f602082840312156133095761330861228c565b5b5f613316848285016132e0565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220f566d0e608cbd10a8c31fe008ab656f6a44305d6db17ea5e2d224ae80528e7dd64736f6c63430008190033697066733a2f2f6261667962656967766a66796f79736b6e796f37636562756b6c673434627a70376c33667167657565716d62756834657377776d746665616772342f

Deployed Bytecode

0x608060405260043610610203575f3560e01c806370a0823111610117578063aed380151161009f578063d5abeb011161006e578063d5abeb01146106f1578063de7fcb1d1461071b578063e985e9c514610745578063e9eb6a7e14610781578063f2fde38b146107ab57610203565b8063aed3801514610635578063b5b1cd7c1461065d578063b88d4fde14610699578063c87b56dd146106b557610203565b806395d89b41116100e657806395d89b41146105755780639ec571d51461059f578063a0712d68146105c7578063a22cb465146105e3578063a945bf801461060b57610203565b806370a08231146104d1578063715018a61461050d5780638da5cb5b146105235780638fede9991461054d57610203565b80633ccfd60b1161019a5780635c975abb116101695780635c975abb146103dd578063616cdb1e1461040757806361c0b6a01461042f5780636352211e1461046b5780636c0360eb146104a757610203565b80633ccfd60b1461035b57806342842e0e1461037157806344a0d68a1461038d57806355f804b3146103b557610203565b806316c38b3c116101d657806316c38b3c146102c557806318160ddd146102ed57806323b872dd146103175780632c1154101461033357610203565b806301ffc9a71461020757806306fdde0314610243578063081812fc1461026d578063095ea7b3146102a9575b5f80fd5b348015610212575f80fd5b5061022d600480360381019061022891906122e9565b6107d3565b60405161023a919061232e565b60405180910390f35b34801561024e575f80fd5b50610257610864565b60405161026491906123b7565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e919061240a565b6108f4565b6040516102a09190612474565b60405180910390f35b6102c360048036038101906102be91906124b7565b61094d565b005b3480156102d0575f80fd5b506102eb60048036038101906102e6919061251f565b61095d565b005b3480156102f8575f80fd5b50610301610982565b60405161030e9190612559565b60405180910390f35b610331600480360381019061032c9190612572565b6109cd565b005b34801561033e575f80fd5b506103596004803603810190610354919061240a565b610c78565b005b348015610366575f80fd5b5061036f610c8a565b005b61038b60048036038101906103869190612572565b610d0d565b005b348015610398575f80fd5b506103b360048036038101906103ae919061240a565b610d2c565b005b3480156103c0575f80fd5b506103db60048036038101906103d691906126ee565b610d3e565b005b3480156103e8575f80fd5b506103f1610d59565b6040516103fe919061232e565b60405180910390f35b348015610412575f80fd5b5061042d6004803603810190610428919061240a565b610d6c565b005b34801561043a575f80fd5b5061045560048036038101906104509190612735565b610d7e565b6040516104629190612559565b60405180910390f35b348015610476575f80fd5b50610491600480360381019061048c919061240a565b610d93565b60405161049e9190612474565b60405180910390f35b3480156104b2575f80fd5b506104bb610da4565b6040516104c891906123b7565b60405180910390f35b3480156104dc575f80fd5b506104f760048036038101906104f29190612735565b610e30565b6040516105049190612559565b60405180910390f35b348015610518575f80fd5b50610521610ec4565b005b34801561052e575f80fd5b50610537610ed7565b6040516105449190612474565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e91906128e4565b610eff565b005b348015610580575f80fd5b50610589610f62565b60405161059691906123b7565b60405180910390f35b3480156105aa575f80fd5b506105c560048036038101906105c0919061240a565b610ff2565b005b6105e160048036038101906105dc919061240a565b611004565b005b3480156105ee575f80fd5b506106096004803603810190610604919061295a565b6113d2565b005b348015610616575f80fd5b5061061f6114d8565b60405161062c9190612559565b60405180910390f35b348015610640575f80fd5b5061065b60048036038101906106569190612998565b6114de565b005b348015610668575f80fd5b50610683600480360381019061067e9190612735565b6114f4565b6040516106909190612559565b60405180910390f35b6106b360048036038101906106ae9190612a74565b611509565b005b3480156106c0575f80fd5b506106db60048036038101906106d6919061240a565b61155a565b6040516106e891906123b7565b60405180910390f35b3480156106fc575f80fd5b506107056115fe565b6040516107129190612559565b60405180910390f35b348015610726575f80fd5b5061072f611604565b60405161073c9190612559565b60405180910390f35b348015610750575f80fd5b5061076b60048036038101906107669190612af4565b61160a565b604051610778919061232e565b60405180910390f35b34801561078c575f80fd5b50610795611698565b6040516107a29190612559565b60405180910390f35b3480156107b6575f80fd5b506107d160048036038101906107cc9190612735565b61169e565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087390612b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461089f90612b5f565b80156108ea5780601f106108c1576101008083540402835291602001916108ea565b820191905f5260205f20905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b5f6108fe82611722565b6109135761091263cf4700e460e01b6117c5565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610959828260016117cd565b5050565b6109656118f7565b80600960146101000a81548160ff02191690831515021790555050565b5f61098b61197e565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6109bd611986565b146109ca57600854810190505b90565b5f6109d7826119ad565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4c57610a4b63a114810060e01b6117c5565b5b5f80610a5784611abc565b91509150610a6d8187610a68611adf565b611ae6565b610a9857610a8286610a7d611adf565b61160a565b610a9757610a966359c896be60e01b6117c5565b5b5b610aa58686866001611b29565b8015610aaf575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b7785610b53888887611b2f565b7c020000000000000000000000000000000000000000000000000000000017611b56565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610bf3575f6001850190505f60045f8381526020019081526020015f205403610bf1575f548114610bf0578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610c6257610c6163ea553b3460e01b6117c5565b5b610c6f8787876001611b80565b50505050505050565b610c806118f7565b8060108190555050565b610c926118f7565b5f610c9b610ed7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cbe90612bbc565b5f6040518083038185875af1925050503d805f8114610cf8576040519150601f19603f3d011682016040523d82523d5f602084013e610cfd565b606091505b5050905080610d0a575f80fd5b50565b610d2783838360405180602001604052805f815250611509565b505050565b610d346118f7565b80600d8190555050565b610d466118f7565b80600a9081610d559190612d6d565b5050565b600960149054906101000a900460ff1681565b610d746118f7565b80600e8190555050565b600c602052805f5260405f205f915090505481565b5f610d9d826119ad565b9050919050565b600a8054610db190612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddd90612b5f565b8015610e285780601f10610dff57610100808354040283529160200191610e28565b820191905f5260205f20905b815481529060010190602001808311610e0b57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e7557610e74638f4eb60460e01b6117c5565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610ecc6118f7565b610ed55f611b86565b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f076118f7565b5f5b8251811015610f5d57610f50838281518110610f2857610f27612e3c565b5b6020026020010151838381518110610f4357610f42612e3c565b5b6020026020010151611c49565b8080600101915050610f09565b505050565b606060038054610f7190612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90612b5f565b8015610fe85780601f10610fbf57610100808354040283529160200191610fe8565b820191905f5260205f20905b815481529060010190602001808311610fcb57829003601f168201915b5050505050905090565b610ffa6118f7565b80600f8190555050565b5f600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546010546110509190612e96565b9050600960149054906101000a900460ff16156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990612f13565b60405180910390fd5b5f821180156110c55750600f54826110b8610982565b6110c29190612f31565b11155b611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90612fae565b60405180910390fd5b600e5482600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111509190612f31565b1115611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890613016565b60405180910390fd5b601054600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561132057818110156112845780826111ec9190612e96565b600d546111f99190613034565b34101561123b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611232906130bf565b60405180910390fd5b601054600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061131b565b5f3410156112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906130bf565b60405180910390fd5b81600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113139190612f31565b925050819055505b611371565b81600d5461132e9190613034565b341015611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906130bf565b60405180910390fd5b5b61137b3383611c49565b81600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113c79190612f31565b925050819055505050565b8060075f6113de611adf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611487611adf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114cc919061232e565b60405180910390a35050565b600d5481565b6114e66118f7565b6114f08183611c49565b5050565b600b602052805f5260405f205f915090505481565b6115148484846109cd565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146115545761153e84848484611c66565b6115535761155263d1a57ed660e01b6117c5565b5b5b50505050565b606061156582611722565b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b9061314d565b60405180910390fd5b5f6115ad611d90565b90505f8151116115cb5760405180602001604052805f8152506115f6565b806115d584611e20565b6040516020016115e69291906131ef565b6040516020818303038152906040525b915050919050565b600f5481565b600e5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60105481565b6116a66118f7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611716575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161170d9190612474565b60405180910390fd5b61171f81611b86565b50565b5f8161172c61197e565b116117bf57611739611986565b8211156117615761175a60045f8481526020019081526020015f2054611eea565b90506117c0565b5f548210156117be575f5b5f60045f8581526020019081526020015f20549150810361179857826117919061321d565b925061176c565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f6117d783610d93565b905081801561181957508073ffffffffffffffffffffffffffffffffffffffff16611800611adf565b73ffffffffffffffffffffffffffffffffffffffff1614155b156118455761182f8161182a611adf565b61160a565b6118445761184363cfb3b94260e01b6117c5565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6118ff611f2a565b73ffffffffffffffffffffffffffffffffffffffff1661191d610ed7565b73ffffffffffffffffffffffffffffffffffffffff161461197c57611940611f2a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119739190612474565b60405180910390fd5b565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f816119b761197e565b11611aa65760045f8381526020019081526020015f205490506119d8611986565b8211156119fd576119e881611eea565b611ab7576119fc63df2d9b4260e01b6117c5565b5b5f8103611a7e575f548210611a1d57611a1c63df2d9b4260e01b6117c5565b5b5b60045f836001900393508381526020019081526020015f205490505f810315611a79575f7c010000000000000000000000000000000000000000000000000000000082160315611ab757611a7863df2d9b4260e01b6117c5565b5b611a1e565b5f7c010000000000000000000000000000000000000000000000000000000082160315611ab7575b611ab663df2d9b4260e01b6117c5565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611b45868684611f31565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c62828260405180602001604052805f815250611f39565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8b611adf565b8786866040518563ffffffff1660e01b8152600401611cad9493929190613296565b6020604051808303815f875af1925050508015611ce857506040513d601f19601f82011682018060405250810190611ce591906132f4565b60015b611d3d573d805f8114611d16576040519150601f19603f3d011682016040523d82523d5f602084013e611d1b565b606091505b505f815103611d3557611d3463d1a57ed660e01b6117c5565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d9f90612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611dcb90612b5f565b8015611e165780601f10611ded57610100808354040283529160200191611e16565b820191905f5260205f20905b815481529060010190602001808311611df957829003601f168201915b5050505050905090565b60605f6001611e2e84611faf565b0190505f8167ffffffffffffffff811115611e4c57611e4b6125ca565b5b6040519080825280601f01601f191660200182016040528015611e7e5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611edf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ed457611ed361331f565b5b0494505f8503611e8b575b819350505050919050565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f33905090565b5f9392505050565b611f438383612100565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611faa575f805490505f83820390505b611f7f5f868380600101945086611c66565b611f9457611f9363d1a57ed660e01b6117c5565b5b818110611f6d57815f5414611fa7575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061200b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120015761200061331f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612048576d04ee2d6d415b85acef8100000000838161203e5761203d61331f565b5b0492506020810190505b662386f26fc10000831061207757662386f26fc10000838161206d5761206c61331f565b5b0492506010810190505b6305f5e10083106120a0576305f5e10083816120965761209561331f565b5b0492506008810190505b61271083106120c55761271083816120bb576120ba61331f565b5b0492506004810190505b606483106120e857606483816120de576120dd61331f565b5b0492506002810190505b600a83106120f7576001810190505b80915050919050565b5f805490505f820361211d5761211c63b562e8dd60e01b6117c5565b5b6121295f848385611b29565b612147836121385f865f611b2f565b61214185612274565b17611b56565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f81036121f8576121f7632e07630060e01b6117c5565b5b5f83830190505f83905061220a611986565b600183031115612225576122246381647e3a60e01b6117c5565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a481816001019150810361222657815f8190555050505061226f5f848385611b80565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122c881612294565b81146122d2575f80fd5b50565b5f813590506122e3816122bf565b92915050565b5f602082840312156122fe576122fd61228c565b5b5f61230b848285016122d5565b91505092915050565b5f8115159050919050565b61232881612314565b82525050565b5f6020820190506123415f83018461231f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61238982612347565b6123938185612351565b93506123a3818560208601612361565b6123ac8161236f565b840191505092915050565b5f6020820190508181035f8301526123cf818461237f565b905092915050565b5f819050919050565b6123e9816123d7565b81146123f3575f80fd5b50565b5f81359050612404816123e0565b92915050565b5f6020828403121561241f5761241e61228c565b5b5f61242c848285016123f6565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61245e82612435565b9050919050565b61246e81612454565b82525050565b5f6020820190506124875f830184612465565b92915050565b61249681612454565b81146124a0575f80fd5b50565b5f813590506124b18161248d565b92915050565b5f80604083850312156124cd576124cc61228c565b5b5f6124da858286016124a3565b92505060206124eb858286016123f6565b9150509250929050565b6124fe81612314565b8114612508575f80fd5b50565b5f81359050612519816124f5565b92915050565b5f602082840312156125345761253361228c565b5b5f6125418482850161250b565b91505092915050565b612553816123d7565b82525050565b5f60208201905061256c5f83018461254a565b92915050565b5f805f606084860312156125895761258861228c565b5b5f612596868287016124a3565b93505060206125a7868287016124a3565b92505060406125b8868287016123f6565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6126008261236f565b810181811067ffffffffffffffff8211171561261f5761261e6125ca565b5b80604052505050565b5f612631612283565b905061263d82826125f7565b919050565b5f67ffffffffffffffff82111561265c5761265b6125ca565b5b6126658261236f565b9050602081019050919050565b828183375f83830152505050565b5f61269261268d84612642565b612628565b9050828152602081018484840111156126ae576126ad6125c6565b5b6126b9848285612672565b509392505050565b5f82601f8301126126d5576126d46125c2565b5b81356126e5848260208601612680565b91505092915050565b5f602082840312156127035761270261228c565b5b5f82013567ffffffffffffffff8111156127205761271f612290565b5b61272c848285016126c1565b91505092915050565b5f6020828403121561274a5761274961228c565b5b5f612757848285016124a3565b91505092915050565b5f67ffffffffffffffff82111561277a576127796125ca565b5b602082029050602081019050919050565b5f80fd5b5f6127a161279c84612760565b612628565b905080838252602082019050602084028301858111156127c4576127c361278b565b5b835b818110156127ed57806127d988826124a3565b8452602084019350506020810190506127c6565b5050509392505050565b5f82601f83011261280b5761280a6125c2565b5b813561281b84826020860161278f565b91505092915050565b5f67ffffffffffffffff82111561283e5761283d6125ca565b5b602082029050602081019050919050565b5f61286161285c84612824565b612628565b905080838252602082019050602084028301858111156128845761288361278b565b5b835b818110156128ad578061289988826123f6565b845260208401935050602081019050612886565b5050509392505050565b5f82601f8301126128cb576128ca6125c2565b5b81356128db84826020860161284f565b91505092915050565b5f80604083850312156128fa576128f961228c565b5b5f83013567ffffffffffffffff81111561291757612916612290565b5b612923858286016127f7565b925050602083013567ffffffffffffffff81111561294457612943612290565b5b612950858286016128b7565b9150509250929050565b5f80604083850312156129705761296f61228c565b5b5f61297d858286016124a3565b925050602061298e8582860161250b565b9150509250929050565b5f80604083850312156129ae576129ad61228c565b5b5f6129bb858286016123f6565b92505060206129cc858286016124a3565b9150509250929050565b5f67ffffffffffffffff8211156129f0576129ef6125ca565b5b6129f98261236f565b9050602081019050919050565b5f612a18612a13846129d6565b612628565b905082815260208101848484011115612a3457612a336125c6565b5b612a3f848285612672565b509392505050565b5f82601f830112612a5b57612a5a6125c2565b5b8135612a6b848260208601612a06565b91505092915050565b5f805f8060808587031215612a8c57612a8b61228c565b5b5f612a99878288016124a3565b9450506020612aaa878288016124a3565b9350506040612abb878288016123f6565b925050606085013567ffffffffffffffff811115612adc57612adb612290565b5b612ae887828801612a47565b91505092959194509250565b5f8060408385031215612b0a57612b0961228c565b5b5f612b17858286016124a3565b9250506020612b28858286016124a3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b7657607f821691505b602082108103612b8957612b88612b32565b5b50919050565b5f81905092915050565b50565b5f612ba75f83612b8f565b9150612bb282612b99565b5f82019050919050565b5f612bc682612b9c565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bf1565b612c368683612bf1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c71612c6c612c67846123d7565b612c4e565b6123d7565b9050919050565b5f819050919050565b612c8a83612c57565b612c9e612c9682612c78565b848454612bfd565b825550505050565b5f90565b612cb2612ca6565b612cbd818484612c81565b505050565b5b81811015612ce057612cd55f82612caa565b600181019050612cc3565b5050565b601f821115612d2557612cf681612bd0565b612cff84612be2565b81016020851015612d0e578190505b612d22612d1a85612be2565b830182612cc2565b50505b505050565b5f82821c905092915050565b5f612d455f1984600802612d2a565b1980831691505092915050565b5f612d5d8383612d36565b9150826002028217905092915050565b612d7682612347565b67ffffffffffffffff811115612d8f57612d8e6125ca565b5b612d998254612b5f565b612da4828285612ce4565b5f60209050601f831160018114612dd5575f8415612dc3578287015190505b612dcd8582612d52565b865550612e34565b601f198416612de386612bd0565b5f5b82811015612e0a57848901518255600182019150602085019450602081019050612de5565b86831015612e275784890151612e23601f891682612d36565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612ea0826123d7565b9150612eab836123d7565b9250828203905081811115612ec357612ec2612e69565b5b92915050565b7f54686520636f6e747261637420697320706175736564210000000000000000005f82015250565b5f612efd601783612351565b9150612f0882612ec9565b602082019050919050565b5f6020820190508181035f830152612f2a81612ef1565b9050919050565b5f612f3b826123d7565b9150612f46836123d7565b9250828201905080821115612f5e57612f5d612e69565b5b92915050565b7f496e76616c696420616d6f756e742100000000000000000000000000000000005f82015250565b5f612f98600f83612351565b9150612fa382612f64565b602082019050919050565b5f6020820190508181035f830152612fc581612f8c565b9050919050565b7f596f752063616e2774206d696e74207468697320616d6f756e740000000000005f82015250565b5f613000601a83612351565b915061300b82612fcc565b602082019050919050565b5f6020820190508181035f83015261302d81612ff4565b9050919050565b5f61303e826123d7565b9150613049836123d7565b9250828202613057816123d7565b9150828204841483151761306e5761306d612e69565b5b5092915050565b7f496e73756666696369656e742046756e647321000000000000000000000000005f82015250565b5f6130a9601383612351565b91506130b482613075565b602082019050919050565b5f6020820190508181035f8301526130d68161309d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613137602f83612351565b9150613142826130dd565b604082019050919050565b5f6020820190508181035f8301526131648161312b565b9050919050565b5f81905092915050565b5f61317f82612347565b613189818561316b565b9350613199818560208601612361565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6131d960058361316b565b91506131e4826131a5565b600582019050919050565b5f6131fa8285613175565b91506132068284613175565b9150613211826131cd565b91508190509392505050565b5f613227826123d7565b91505f820361323957613238612e69565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61326882613244565b613272818561324e565b9350613282818560208601612361565b61328b8161236f565b840191505092915050565b5f6080820190506132a95f830187612465565b6132b66020830186612465565b6132c3604083018561254a565b81810360608301526132d5818461325e565b905095945050505050565b5f815190506132ee816122bf565b92915050565b5f602082840312156133095761330861228c565b5b5f613316848285016132e0565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220f566d0e608cbd10a8c31fe008ab656f6a44305d6db17ea5e2d224ae80528e7dd64736f6c63430008190033

Deployed Bytecode Sourcemap

85106:4101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44823:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45725:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52965:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52682:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87439:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40927:573;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57237:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87532:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88792:412;;;;;;;;;;;;;:::i;:::-;;60856:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87324:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87663:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85189:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87210:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85378:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47127:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85223:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42651:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23421:103;;;;;;;;;;;;;:::i;:::-;;22746:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87909:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45901:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87107:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85767:1153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53532:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85433:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87781:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85323:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61647:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88150:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85520:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85481:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53923:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85558:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23679:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44823:639;44908:4;45247:10;45232:25;;:11;:25;;;;:102;;;;45324:10;45309:25;;:11;:25;;;;45232:102;:179;;;;45401:10;45386:25;;:11;:25;;;;45232:179;45212:199;;44823:639;;;:::o;45725:100::-;45779:13;45812:5;45805:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45725:100;:::o;52965:227::-;53041:7;53066:16;53074:7;53066;:16::i;:::-;53061:73;;53084:50;53092:41;;;53084:7;:50::i;:::-;53061:73;53154:15;:24;53170:7;53154:24;;;;;;;;;;;:30;;;;;;;;;;;;53147:37;;52965:227;;;:::o;52682:124::-;52771:27;52780:2;52784:7;52793:4;52771:8;:27::i;:::-;52682:124;;:::o;87439:85::-;22632:13;:11;:13::i;:::-;87510:6:::1;87501;;:15;;;;;;;;;;;;;;;;;;87439:85:::0;:::o;40927:573::-;40988:14;41386:15;:13;:15::i;:::-;41371:12;;41355:13;;:28;:46;41346:55;;41441:17;41420;:15;:17::i;:::-;:38;41416:65;;41470:11;;41460:21;;;;41416:65;40927:573;:::o;57237:3523::-;57379:27;57409;57428:7;57409:18;:27::i;:::-;57379:57;;36869:14;57580:4;57564:22;;:41;57541:66;;57665:4;57624:45;;57640:19;57624:45;;;57620:95;;57671:44;57679:35;;;57671:7;:44::i;:::-;57620:95;57729:27;57758:23;57785:35;57812:7;57785:26;:35::i;:::-;57728:92;;;;57920:68;57945:15;57962:4;57968:19;:17;:19::i;:::-;57920:24;:68::i;:::-;57915:189;;58008:43;58025:4;58031:19;:17;:19::i;:::-;58008:16;:43::i;:::-;58003:101;;58053:51;58061:42;;;58053:7;:51::i;:::-;58003:101;57915:189;58117:43;58139:4;58145:2;58149:7;58158:1;58117:21;:43::i;:::-;58253:15;58250:160;;;58393:1;58372:19;58365:30;58250:160;58790:18;:24;58809:4;58790:24;;;;;;;;;;;;;;;;58788:26;;;;;;;;;;;;58859:18;:22;58878:2;58859:22;;;;;;;;;;;;;;;;58857:24;;;;;;;;;;;59181:146;59218:2;59267:45;59282:4;59288:2;59292:19;59267:14;:45::i;:::-;36467:8;59239:73;59181:18;:146::i;:::-;59152:17;:26;59170:7;59152:26;;;;;;;;;;;:175;;;;59498:1;36467:8;59447:19;:47;:52;59443:627;;59520:19;59552:1;59542:7;:11;59520:33;;59709:1;59675:17;:30;59693:11;59675:30;;;;;;;;;;;;:35;59671:384;;59813:13;;59798:11;:28;59794:242;;59993:19;59960:17;:30;59978:11;59960:30;;;;;;;;;;;:52;;;;59794:242;59671:384;59501:569;59443:627;60183:16;36869:14;60218:2;60202:20;;:39;60183:58;;60582:7;60546:8;60512:4;60454:25;60399:1;60342;60319:299;60655:1;60643:8;:13;60639:58;;60658:39;60666:30;;;60658:7;:39::i;:::-;60639:58;60710:42;60731:4;60737:2;60741:7;60750:1;60710:20;:42::i;:::-;57368:3392;;;;57237:3523;;;:::o;87532:123::-;22632:13;:11;:13::i;:::-;87630:17:::1;87614:13;:33;;;;87532:123:::0;:::o;88792:412::-;22632:13;:11;:13::i;:::-;89016:7:::1;89037;:5;:7::i;:::-;89029:21;;89058;89029:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89015:69;;;89103:2;89095:11;;;::::0;::::1;;88829:375;88792:412::o:0;60856:193::-;61002:39;61019:4;61025:2;61029:7;61002:39;;;;;;;;;;;;:16;:39::i;:::-;60856:193;;;:::o;87324:107::-;22632:13;:11;:13::i;:::-;87409:14:::1;87395:11;:28;;;;87324:107:::0;:::o;87663:106::-;22632:13;:11;:13::i;:::-;87750:11:::1;87740:7;:21;;;;;;:::i;:::-;;87663:106:::0;:::o;85189:25::-;;;;;;;;;;;;;:::o;87210:106::-;22632:13;:11;:13::i;:::-;87299:9:::1;87284:12;:24;;;;87210:106:::0;:::o;85378:46::-;;;;;;;;;;;;;;;;;:::o;47127:152::-;47199:7;47242:27;47261:7;47242:18;:27::i;:::-;47219:52;;47127:152;;;:::o;85223:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42651:242::-;42723:7;42764:1;42747:19;;:5;:19;;;42743:69;;42768:44;42776:35;;;42768:7;:44::i;:::-;42743:69;35411:13;42830:18;:25;42849:5;42830:25;;;;;;;;;;;;;;;;:55;42823:62;;42651:242;;;:::o;23421:103::-;22632:13;:11;:13::i;:::-;23486:30:::1;23513:1;23486:18;:30::i;:::-;23421:103::o:0;22746:87::-;22792:7;22819:6;;;;;;;;;;;22812:13;;22746:87;:::o;87909:233::-;22632:13;:11;:13::i;:::-;88025:9:::1;88020:115;88044:10;:17;88040:1;:21;88020:115;;;88083:40;88093:10;88104:1;88093:13;;;;;;;;:::i;:::-;;;;;;;;88108:11;88120:1;88108:14;;;;;;;;:::i;:::-;;;;;;;;88083:9;:40::i;:::-;88063:3;;;;;;;88020:115;;;;87909:233:::0;;:::o;45901:104::-;45957:13;45990:7;45983:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45901:104;:::o;87107:95::-;22632:13;:11;:13::i;:::-;87187:7:::1;87175:9;:19;;;;87107:95:::0;:::o;85767:1153::-;85827:29;85875:11;:23;85887:10;85875:23;;;;;;;;;;;;;;;;85859:13;;:39;;;;:::i;:::-;85827:71;;85920:6;;;;;;;;;;;85919:7;85911:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;85984:1;85973:8;:12;:53;;;;;86017:9;;86005:8;85989:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;85973:53;85965:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;86105:12;;86093:8;86065:13;:25;86079:10;86065:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:52;;86057:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;86189:13;;86163:11;:23;86175:10;86163:23;;;;;;;;;;;;;;;;:39;86159:661;;;86263:8;86239:21;:32;86236:474;;;86369:21;86357:8;:34;;;;:::i;:::-;86342:11;;:50;;;;:::i;:::-;86329:9;:63;;86321:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;86469:13;;86443:11;:23;86455:10;86443:23;;;;;;;;;;;;;;;:39;;;;86236:474;;;86599:1;86586:9;:14;;86578:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;86678:8;86651:11;:23;86663:10;86651:23;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;86236:474;86159:661;;;86788:8;86774:11;;:22;;;;:::i;:::-;86761:9;:35;;86753:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;86159:661;86833:31;86843:10;86855:8;86833:9;:31::i;:::-;86904:8;86875:13;:25;86889:10;86875:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;85816:1104;85767:1153;:::o;53532:234::-;53679:8;53627:18;:39;53646:19;:17;:19::i;:::-;53627:39;;;;;;;;;;;;;;;:49;53667:8;53627:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53739:8;53703:55;;53718:19;:17;:19::i;:::-;53703:55;;;53749:8;53703:55;;;;;;:::i;:::-;;;;;;;;53532:234;;:::o;85433:41::-;;;;:::o;87781:120::-;22632:13;:11;:13::i;:::-;87864:29:::1;87874:8;87884;87864:9;:29::i;:::-;87781:120:::0;;:::o;85323:48::-;;;;;;;;;;;;;;;;;:::o;61647:416::-;61822:31;61835:4;61841:2;61845:7;61822:12;:31::i;:::-;61886:1;61868:2;:14;;;:19;61864:192;;61907:56;61938:4;61944:2;61948:7;61957:5;61907:30;:56::i;:::-;61902:154;;61984:56;61992:47;;;61984:7;:56::i;:::-;61902:154;61864:192;61647:416;;;;:::o;88150:634::-;88268:13;88321:16;88329:7;88321;:16::i;:::-;88299:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;88423:28;88454:10;:8;:10::i;:::-;88423:41;;88526:1;88501:14;88495:28;:32;:281;;;;;;;;;;;;;;;;;88619:14;88660:18;:7;:16;:18::i;:::-;88576:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88495:281;88475:301;;;88150:634;;;:::o;85520:31::-;;;;:::o;85481:32::-;;;;:::o;53923:164::-;54020:4;54044:18;:25;54063:5;54044:25;;;;;;;;;;;;;;;:35;54070:8;54044:35;;;;;;;;;;;;;;;;;;;;;;;;;54037:42;;53923:164;;;;:::o;85558:32::-;;;;:::o;23679:220::-;22632:13;:11;:13::i;:::-;23784:1:::1;23764:22;;:8;:22;;::::0;23760:93:::1;;23838:1;23810:31;;;;;;;;;;;:::i;:::-;;;;;;;;23760:93;23863:28;23882:8;23863:18;:28::i;:::-;23679:220:::0;:::o;54345:475::-;54410:11;54457:7;54438:15;:13;:15::i;:::-;:26;54434:379;;54495:17;:15;:17::i;:::-;54485:7;:27;54481:90;;;54521:50;54544:17;:26;54562:7;54544:26;;;;;;;;;;;;54521:22;:50::i;:::-;54514:57;;;;54481:90;54602:13;;54592:7;:23;54588:214;;;54636:14;54669:60;54717:1;54686:17;:26;54704:7;54686:26;;;;;;;;;;;;54677:35;;;54676:42;54669:60;;54720:9;;;;:::i;:::-;;;54669:60;;;54785:1;36187:8;54757:6;:24;:29;54748:38;;54617:185;54588:214;54434:379;54345:475;;;;:::o;84854:165::-;84955:13;84949:4;84942:27;84996:4;84990;84983:18;76269:474;76398:13;76414:16;76422:7;76414;:16::i;:::-;76398:32;;76447:13;:45;;;;;76487:5;76464:28;;:19;:17;:19::i;:::-;:28;;;;76447:45;76443:201;;;76512:44;76529:5;76536:19;:17;:19::i;:::-;76512:16;:44::i;:::-;76507:137;;76577:51;76585:42;;;76577:7;:51::i;:::-;76507:137;76443:201;76689:2;76656:15;:24;76672:7;76656:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;76727:7;76723:2;76707:28;;76716:5;76707:28;;;;;;;;;;;;76387:356;76269:474;;;:::o;22911:166::-;22982:12;:10;:12::i;:::-;22971:23;;:7;:5;:7::i;:::-;:23;;;22967:103;;23045:12;:10;:12::i;:::-;23018:40;;;;;;;;;;;:::i;:::-;;;;;;;;22967:103;22911:166::o;39975:92::-;40031:7;40058:1;40051:8;;39975:92;:::o;40425:110::-;40483:7;40510:17;40503:24;;40425:110;:::o;48612:2213::-;48679:14;48729:7;48710:15;:13;:15::i;:::-;:26;48706:2054;;48762:17;:26;48780:7;48762:26;;;;;;;;;;;;48753:35;;48819:17;:15;:17::i;:::-;48809:7;:27;48805:183;;;48861:30;48884:6;48861:22;:30::i;:::-;48893:13;48857:49;48925:47;48933:38;;;48925:7;:47::i;:::-;48805:183;49099:1;49089:6;:11;49085:1292;;49136:13;;49125:7;:24;49121:77;;49151:47;49159:38;;;49151:7;:47::i;:::-;49121:77;49755:607;49833:17;:28;49851:9;;;;;;;49833:28;;;;;;;;;;;;49824:37;;49921:1;49911:6;:11;49907:25;49924:8;49907:25;49987:1;36187:8;49959:6;:24;:29;49955:48;49990:13;49955:48;50295:47;50303:38;;;50295:7;:47::i;:::-;49755:607;;;49085:1292;50732:1;36187:8;50704:6;:24;:29;50700:48;50735:13;50700:48;48706:2054;50770:47;50778:38;;;50770:7;:47::i;:::-;48612:2213;;;;:::o;56132:485::-;56234:27;56263:23;56304:38;56345:15;:24;56361:7;56345:24;;;;;;;;;;;56304:65;;56522:18;56499:41;;56579:19;56573:26;56554:45;;56484:126;56132:485;;;:::o;82835:105::-;82895:7;82922:10;82915:17;;82835:105;:::o;55360:659::-;55509:11;55674:16;55667:5;55663:28;55654:37;;55834:16;55823:9;55819:32;55806:45;;55984:15;55973:9;55970:30;55962:5;55951:9;55948:20;55945:56;55935:66;;55360:659;;;;;:::o;62725:159::-;;;;;:::o;82144:311::-;82279:7;82299:16;36591:3;82325:19;:41;;82299:68;;36591:3;82393:31;82404:4;82410:2;82414:9;82393:10;:31::i;:::-;82385:40;;:62;;82378:69;;;82144:311;;;;;:::o;51373:450::-;51453:14;51621:16;51614:5;51610:28;51601:37;;51798:5;51784:11;51759:23;51755:41;51752:52;51745:5;51742:63;51732:73;;51373:450;;;;:::o;63549:158::-;;;;;:::o;24059:191::-;24133:16;24152:6;;;;;;;;;;;24133:25;;24178:8;24169:6;;:17;;;;;;;;;;;;;;;;;;24233:8;24202:40;;24223:8;24202:40;;;;;;;;;;;;24122:128;24059:191;:::o;71463:112::-;71540:27;71550:2;71554:8;71540:27;;;;;;;;;;;;:9;:27::i;:::-;71463:112;;:::o;64147:691::-;64310:4;64356:2;64331:45;;;64377:19;:17;:19::i;:::-;64398:4;64404:7;64413:5;64331:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64327:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64631:1;64614:6;:13;:18;64610:115;;64653:56;64661:47;;;64653:7;:56::i;:::-;64610:115;64797:6;64791:13;64782:6;64778:2;64774:15;64767:38;64327:504;64500:54;;;64490:64;;;:6;:64;;;;64483:71;;;64147:691;;;;;;:::o;86928:108::-;86988:13;87021:7;87014:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86928:108;:::o;17525:718::-;17581:13;17632:14;17669:1;17649:17;17660:5;17649:10;:17::i;:::-;:21;17632:38;;17685:20;17719:6;17708:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17685:41;;17741:11;17870:6;17866:2;17862:15;17854:6;17850:28;17843:35;;17907:290;17914:4;17907:290;;;17939:5;;;;;;;;18081:10;18076:2;18069:5;18065:14;18060:32;18055:3;18047:46;18139:2;18130:11;;;;;;:::i;:::-;;;;;18173:1;18164:5;:10;17907:290;18160:21;17907:290;18218:6;18211:13;;;;;17525:718;;;:::o;54916:335::-;54986:11;55216:15;55208:6;55204:28;55185:16;55177:6;55173:29;55170:63;55160:73;;54916:335;;;:::o;20755:98::-;20808:7;20835:10;20828:17;;20755:98;:::o;81845:147::-;81982:6;81845:147;;;;;:::o;70592:787::-;70723:19;70729:2;70733:8;70723:5;:19::i;:::-;70802:1;70784:2;:14;;;:19;70780:581;;70824:11;70838:13;;70824:27;;70870:13;70892:8;70886:3;:14;70870:30;;70919:242;70950:62;70989:1;70993:2;70997:7;;;;;;71006:5;70950:30;:62::i;:::-;70945:176;;71041:56;71049:47;;;71041:7;:56::i;:::-;70945:176;71156:3;71148:5;:11;70919:242;;71332:3;71315:13;;:20;71311:34;;71337:8;;;71311:34;70805:556;;70780:581;70592:787;;;:::o;13929:948::-;13982:7;14002:14;14019:1;14002:18;;14069:8;14060:5;:17;14056:106;;14107:8;14098:17;;;;;;:::i;:::-;;;;;14144:2;14134:12;;;;14056:106;14189:8;14180:5;:17;14176:106;;14227:8;14218:17;;;;;;:::i;:::-;;;;;14264:2;14254:12;;;;14176:106;14309:8;14300:5;:17;14296:106;;14347:8;14338:17;;;;;;:::i;:::-;;;;;14384:2;14374:12;;;;14296:106;14429:7;14420:5;:16;14416:103;;14466:7;14457:16;;;;;;:::i;:::-;;;;;14502:1;14492:11;;;;14416:103;14546:7;14537:5;:16;14533:103;;14583:7;14574:16;;;;;;:::i;:::-;;;;;14619:1;14609:11;;;;14533:103;14663:7;14654:5;:16;14650:103;;14700:7;14691:16;;;;;;:::i;:::-;;;;;14736:1;14726:11;;;;14650:103;14780:7;14771:5;:16;14767:68;;14818:1;14808:11;;;;14767:68;14863:6;14856:13;;;13929:948;;;:::o;65300:2399::-;65373:20;65396:13;;65373:36;;65436:1;65424:8;:13;65420:53;;65439:34;65447:25;;;65439:7;:34::i;:::-;65420:53;65486:61;65516:1;65520:2;65524:12;65538:8;65486:21;:61::i;:::-;66020:139;66057:2;66111:33;66134:1;66138:2;66142:1;66111:14;:33::i;:::-;66078:30;66099:8;66078:20;:30::i;:::-;:66;66020:18;:139::i;:::-;65986:17;:31;66004:12;65986:31;;;;;;;;;;;:173;;;;66446:1;35549:2;66416:1;:26;;66415:32;66403:8;:45;66377:18;:22;66396:2;66377:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66559:16;36869:14;66594:2;66578:20;;:39;66559:58;;66650:1;66638:8;:13;66634:54;;66653:35;66661:26;;;66653:7;:35::i;:::-;66634:54;66705:11;66734:8;66719:12;:23;66705:37;;66757:15;66775:12;66757:30;;66818:17;:15;:17::i;:::-;66814:1;66808:3;:7;:27;66804:77;;;66837:44;66845:35;;;66837:7;:44::i;:::-;66804:77;66898:676;67317:7;67273:8;67228:1;67162:25;67099:1;67034;67003:358;67569:3;67556:9;;;;;;:16;66898:676;;67606:3;67590:13;:19;;;;65735:1886;;;67631:60;67660:1;67664:2;67668:12;67682:8;67631:20;:60::i;:::-;65362:2337;65300:2399;;:::o;51925:324::-;51995:14;52228:1;52218:8;52215:15;52189:24;52185:46;52175:56;;51925:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:116::-;4853:21;4868:5;4853:21;:::i;:::-;4846:5;4843:32;4833:60;;4889:1;4886;4879:12;4833:60;4783:116;:::o;4905:133::-;4948:5;4986:6;4973:20;4964:29;;5002:30;5026:5;5002:30;:::i;:::-;4905:133;;;;:::o;5044:323::-;5100:6;5149:2;5137:9;5128:7;5124:23;5120:32;5117:119;;;5155:79;;:::i;:::-;5117:119;5275:1;5300:50;5342:7;5333:6;5322:9;5318:22;5300:50;:::i;:::-;5290:60;;5246:114;5044:323;;;;:::o;5373:118::-;5460:24;5478:5;5460:24;:::i;:::-;5455:3;5448:37;5373:118;;:::o;5497:222::-;5590:4;5628:2;5617:9;5613:18;5605:26;;5641:71;5709:1;5698:9;5694:17;5685:6;5641:71;:::i;:::-;5497:222;;;;:::o;5725:619::-;5802:6;5810;5818;5867:2;5855:9;5846:7;5842:23;5838:32;5835:119;;;5873:79;;:::i;:::-;5835:119;5993:1;6018:53;6063:7;6054:6;6043:9;6039:22;6018:53;:::i;:::-;6008:63;;5964:117;6120:2;6146:53;6191:7;6182:6;6171:9;6167:22;6146:53;:::i;:::-;6136:63;;6091:118;6248:2;6274:53;6319:7;6310:6;6299:9;6295:22;6274:53;:::i;:::-;6264:63;;6219:118;5725:619;;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:148::-;7616:6;7611:3;7606;7593:30;7657:1;7648:6;7643:3;7639:16;7632:27;7518:148;;;:::o;7672:425::-;7750:5;7775:66;7791:49;7833:6;7791:49;:::i;:::-;7775:66;:::i;:::-;7766:75;;7864:6;7857:5;7850:21;7902:4;7895:5;7891:16;7940:3;7931:6;7926:3;7922:16;7919:25;7916:112;;;7947:79;;:::i;:::-;7916:112;8037:54;8084:6;8079:3;8074;8037:54;:::i;:::-;7756:341;7672:425;;;;;:::o;8117:340::-;8173:5;8222:3;8215:4;8207:6;8203:17;8199:27;8189:122;;8230:79;;:::i;:::-;8189:122;8347:6;8334:20;8372:79;8447:3;8439:6;8432:4;8424:6;8420:17;8372:79;:::i;:::-;8363:88;;8179:278;8117:340;;;;:::o;8463:509::-;8532:6;8581:2;8569:9;8560:7;8556:23;8552:32;8549:119;;;8587:79;;:::i;:::-;8549:119;8735:1;8724:9;8720:17;8707:31;8765:18;8757:6;8754:30;8751:117;;;8787:79;;:::i;:::-;8751:117;8892:63;8947:7;8938:6;8927:9;8923:22;8892:63;:::i;:::-;8882:73;;8678:287;8463:509;;;;:::o;8978:329::-;9037:6;9086:2;9074:9;9065:7;9061:23;9057:32;9054:119;;;9092:79;;:::i;:::-;9054:119;9212:1;9237:53;9282:7;9273:6;9262:9;9258:22;9237:53;:::i;:::-;9227:63;;9183:117;8978:329;;;;:::o;9313:311::-;9390:4;9480:18;9472:6;9469:30;9466:56;;;9502:18;;:::i;:::-;9466:56;9552:4;9544:6;9540:17;9532:25;;9612:4;9606;9602:15;9594:23;;9313:311;;;:::o;9630:117::-;9739:1;9736;9729:12;9770:710;9866:5;9891:81;9907:64;9964:6;9907:64;:::i;:::-;9891:81;:::i;:::-;9882:90;;9992:5;10021:6;10014:5;10007:21;10055:4;10048:5;10044:16;10037:23;;10108:4;10100:6;10096:17;10088:6;10084:30;10137:3;10129:6;10126:15;10123:122;;;10156:79;;:::i;:::-;10123:122;10271:6;10254:220;10288:6;10283:3;10280:15;10254:220;;;10363:3;10392:37;10425:3;10413:10;10392:37;:::i;:::-;10387:3;10380:50;10459:4;10454:3;10450:14;10443:21;;10330:144;10314:4;10309:3;10305:14;10298:21;;10254:220;;;10258:21;9872:608;;9770:710;;;;;:::o;10503:370::-;10574:5;10623:3;10616:4;10608:6;10604:17;10600:27;10590:122;;10631:79;;:::i;:::-;10590:122;10748:6;10735:20;10773:94;10863:3;10855:6;10848:4;10840:6;10836:17;10773:94;:::i;:::-;10764:103;;10580:293;10503:370;;;;:::o;10879:311::-;10956:4;11046:18;11038:6;11035:30;11032:56;;;11068:18;;:::i;:::-;11032:56;11118:4;11110:6;11106:17;11098:25;;11178:4;11172;11168:15;11160:23;;10879:311;;;:::o;11213:710::-;11309:5;11334:81;11350:64;11407:6;11350:64;:::i;:::-;11334:81;:::i;:::-;11325:90;;11435:5;11464:6;11457:5;11450:21;11498:4;11491:5;11487:16;11480:23;;11551:4;11543:6;11539:17;11531:6;11527:30;11580:3;11572:6;11569:15;11566:122;;;11599:79;;:::i;:::-;11566:122;11714:6;11697:220;11731:6;11726:3;11723:15;11697:220;;;11806:3;11835:37;11868:3;11856:10;11835:37;:::i;:::-;11830:3;11823:50;11902:4;11897:3;11893:14;11886:21;;11773:144;11757:4;11752:3;11748:14;11741:21;;11697:220;;;11701:21;11315:608;;11213:710;;;;;:::o;11946:370::-;12017:5;12066:3;12059:4;12051:6;12047:17;12043:27;12033:122;;12074:79;;:::i;:::-;12033:122;12191:6;12178:20;12216:94;12306:3;12298:6;12291:4;12283:6;12279:17;12216:94;:::i;:::-;12207:103;;12023:293;11946:370;;;;:::o;12322:894::-;12440:6;12448;12497:2;12485:9;12476:7;12472:23;12468:32;12465:119;;;12503:79;;:::i;:::-;12465:119;12651:1;12640:9;12636:17;12623:31;12681:18;12673:6;12670:30;12667:117;;;12703:79;;:::i;:::-;12667:117;12808:78;12878:7;12869:6;12858:9;12854:22;12808:78;:::i;:::-;12798:88;;12594:302;12963:2;12952:9;12948:18;12935:32;12994:18;12986:6;12983:30;12980:117;;;13016:79;;:::i;:::-;12980:117;13121:78;13191:7;13182:6;13171:9;13167:22;13121:78;:::i;:::-;13111:88;;12906:303;12322:894;;;;;:::o;13222:468::-;13287:6;13295;13344:2;13332:9;13323:7;13319:23;13315:32;13312:119;;;13350:79;;:::i;:::-;13312:119;13470:1;13495:53;13540:7;13531:6;13520:9;13516:22;13495:53;:::i;:::-;13485:63;;13441:117;13597:2;13623:50;13665:7;13656:6;13645:9;13641:22;13623:50;:::i;:::-;13613:60;;13568:115;13222:468;;;;;:::o;13696:474::-;13764:6;13772;13821:2;13809:9;13800:7;13796:23;13792:32;13789:119;;;13827:79;;:::i;:::-;13789:119;13947:1;13972:53;14017:7;14008:6;13997:9;13993:22;13972:53;:::i;:::-;13962:63;;13918:117;14074:2;14100:53;14145:7;14136:6;14125:9;14121:22;14100:53;:::i;:::-;14090:63;;14045:118;13696:474;;;;;:::o;14176:307::-;14237:4;14327:18;14319:6;14316:30;14313:56;;;14349:18;;:::i;:::-;14313:56;14387:29;14409:6;14387:29;:::i;:::-;14379:37;;14471:4;14465;14461:15;14453:23;;14176:307;;;:::o;14489:423::-;14566:5;14591:65;14607:48;14648:6;14607:48;:::i;:::-;14591:65;:::i;:::-;14582:74;;14679:6;14672:5;14665:21;14717:4;14710:5;14706:16;14755:3;14746:6;14741:3;14737:16;14734:25;14731:112;;;14762:79;;:::i;:::-;14731:112;14852:54;14899:6;14894:3;14889;14852:54;:::i;:::-;14572:340;14489:423;;;;;:::o;14931:338::-;14986:5;15035:3;15028:4;15020:6;15016:17;15012:27;15002:122;;15043:79;;:::i;:::-;15002:122;15160:6;15147:20;15185:78;15259:3;15251:6;15244:4;15236:6;15232:17;15185:78;:::i;:::-;15176:87;;14992:277;14931:338;;;;:::o;15275:943::-;15370:6;15378;15386;15394;15443:3;15431:9;15422:7;15418:23;15414:33;15411:120;;;15450:79;;:::i;:::-;15411:120;15570:1;15595:53;15640:7;15631:6;15620:9;15616:22;15595:53;:::i;:::-;15585:63;;15541:117;15697:2;15723:53;15768:7;15759:6;15748:9;15744:22;15723:53;:::i;:::-;15713:63;;15668:118;15825:2;15851:53;15896:7;15887:6;15876:9;15872:22;15851:53;:::i;:::-;15841:63;;15796:118;15981:2;15970:9;15966:18;15953:32;16012:18;16004:6;16001:30;15998:117;;;16034:79;;:::i;:::-;15998:117;16139:62;16193:7;16184:6;16173:9;16169:22;16139:62;:::i;:::-;16129:72;;15924:287;15275:943;;;;;;;:::o;16224:474::-;16292:6;16300;16349:2;16337:9;16328:7;16324:23;16320:32;16317:119;;;16355:79;;:::i;:::-;16317:119;16475:1;16500:53;16545:7;16536:6;16525:9;16521:22;16500:53;:::i;:::-;16490:63;;16446:117;16602:2;16628:53;16673:7;16664:6;16653:9;16649:22;16628:53;:::i;:::-;16618:63;;16573:118;16224:474;;;;;:::o;16704:180::-;16752:77;16749:1;16742:88;16849:4;16846:1;16839:15;16873:4;16870:1;16863:15;16890:320;16934:6;16971:1;16965:4;16961:12;16951:22;;17018:1;17012:4;17008:12;17039:18;17029:81;;17095:4;17087:6;17083:17;17073:27;;17029:81;17157:2;17149:6;17146:14;17126:18;17123:38;17120:84;;17176:18;;:::i;:::-;17120:84;16941:269;16890:320;;;:::o;17216:147::-;17317:11;17354:3;17339:18;;17216:147;;;;:::o;17369:114::-;;:::o;17489:398::-;17648:3;17669:83;17750:1;17745:3;17669:83;:::i;:::-;17662:90;;17761:93;17850:3;17761:93;:::i;:::-;17879:1;17874:3;17870:11;17863:18;;17489:398;;;:::o;17893:379::-;18077:3;18099:147;18242:3;18099:147;:::i;:::-;18092:154;;18263:3;18256:10;;17893:379;;;:::o;18278:141::-;18327:4;18350:3;18342:11;;18373:3;18370:1;18363:14;18407:4;18404:1;18394:18;18386:26;;18278:141;;;:::o;18425:93::-;18462:6;18509:2;18504;18497:5;18493:14;18489:23;18479:33;;18425:93;;;:::o;18524:107::-;18568:8;18618:5;18612:4;18608:16;18587:37;;18524:107;;;;:::o;18637:393::-;18706:6;18756:1;18744:10;18740:18;18779:97;18809:66;18798:9;18779:97;:::i;:::-;18897:39;18927:8;18916:9;18897:39;:::i;:::-;18885:51;;18969:4;18965:9;18958:5;18954:21;18945:30;;19018:4;19008:8;19004:19;18997:5;18994:30;18984:40;;18713:317;;18637:393;;;;;:::o;19036:60::-;19064:3;19085:5;19078:12;;19036:60;;;:::o;19102:142::-;19152:9;19185:53;19203:34;19212:24;19230:5;19212:24;:::i;:::-;19203:34;:::i;:::-;19185:53;:::i;:::-;19172:66;;19102:142;;;:::o;19250:75::-;19293:3;19314:5;19307:12;;19250:75;;;:::o;19331:269::-;19441:39;19472:7;19441:39;:::i;:::-;19502:91;19551:41;19575:16;19551:41;:::i;:::-;19543:6;19536:4;19530:11;19502:91;:::i;:::-;19496:4;19489:105;19407:193;19331:269;;;:::o;19606:73::-;19651:3;19606:73;:::o;19685:189::-;19762:32;;:::i;:::-;19803:65;19861:6;19853;19847:4;19803:65;:::i;:::-;19738:136;19685:189;;:::o;19880:186::-;19940:120;19957:3;19950:5;19947:14;19940:120;;;20011:39;20048:1;20041:5;20011:39;:::i;:::-;19984:1;19977:5;19973:13;19964:22;;19940:120;;;19880:186;;:::o;20072:543::-;20173:2;20168:3;20165:11;20162:446;;;20207:38;20239:5;20207:38;:::i;:::-;20291:29;20309:10;20291:29;:::i;:::-;20281:8;20277:44;20474:2;20462:10;20459:18;20456:49;;;20495:8;20480:23;;20456:49;20518:80;20574:22;20592:3;20574:22;:::i;:::-;20564:8;20560:37;20547:11;20518:80;:::i;:::-;20177:431;;20162:446;20072:543;;;:::o;20621:117::-;20675:8;20725:5;20719:4;20715:16;20694:37;;20621:117;;;;:::o;20744:169::-;20788:6;20821:51;20869:1;20865:6;20857:5;20854:1;20850:13;20821:51;:::i;:::-;20817:56;20902:4;20896;20892:15;20882:25;;20795:118;20744:169;;;;:::o;20918:295::-;20994:4;21140:29;21165:3;21159:4;21140:29;:::i;:::-;21132:37;;21202:3;21199:1;21195:11;21189:4;21186:21;21178:29;;20918:295;;;;:::o;21218:1395::-;21335:37;21368:3;21335:37;:::i;:::-;21437:18;21429:6;21426:30;21423:56;;;21459:18;;:::i;:::-;21423:56;21503:38;21535:4;21529:11;21503:38;:::i;:::-;21588:67;21648:6;21640;21634:4;21588:67;:::i;:::-;21682:1;21706:4;21693:17;;21738:2;21730:6;21727:14;21755:1;21750:618;;;;22412:1;22429:6;22426:77;;;22478:9;22473:3;22469:19;22463:26;22454:35;;22426:77;22529:67;22589:6;22582:5;22529:67;:::i;:::-;22523:4;22516:81;22385:222;21720:887;;21750:618;21802:4;21798:9;21790:6;21786:22;21836:37;21868:4;21836:37;:::i;:::-;21895:1;21909:208;21923:7;21920:1;21917:14;21909:208;;;22002:9;21997:3;21993:19;21987:26;21979:6;21972:42;22053:1;22045:6;22041:14;22031:24;;22100:2;22089:9;22085:18;22072:31;;21946:4;21943:1;21939:12;21934:17;;21909:208;;;22145:6;22136:7;22133:19;22130:179;;;22203:9;22198:3;22194:19;22188:26;22246:48;22288:4;22280:6;22276:17;22265:9;22246:48;:::i;:::-;22238:6;22231:64;22153:156;22130:179;22355:1;22351;22343:6;22339:14;22335:22;22329:4;22322:36;21757:611;;;21720:887;;21310:1303;;;21218:1395;;:::o;22619:180::-;22667:77;22664:1;22657:88;22764:4;22761:1;22754:15;22788:4;22785:1;22778:15;22805:180;22853:77;22850:1;22843:88;22950:4;22947:1;22940:15;22974:4;22971:1;22964:15;22991:194;23031:4;23051:20;23069:1;23051:20;:::i;:::-;23046:25;;23085:20;23103:1;23085:20;:::i;:::-;23080:25;;23129:1;23126;23122:9;23114:17;;23153:1;23147:4;23144:11;23141:37;;;23158:18;;:::i;:::-;23141:37;22991:194;;;;:::o;23191:173::-;23331:25;23327:1;23319:6;23315:14;23308:49;23191:173;:::o;23370:366::-;23512:3;23533:67;23597:2;23592:3;23533:67;:::i;:::-;23526:74;;23609:93;23698:3;23609:93;:::i;:::-;23727:2;23722:3;23718:12;23711:19;;23370:366;;;:::o;23742:419::-;23908:4;23946:2;23935:9;23931:18;23923:26;;23995:9;23989:4;23985:20;23981:1;23970:9;23966:17;23959:47;24023:131;24149:4;24023:131;:::i;:::-;24015:139;;23742:419;;;:::o;24167:191::-;24207:3;24226:20;24244:1;24226:20;:::i;:::-;24221:25;;24260:20;24278:1;24260:20;:::i;:::-;24255:25;;24303:1;24300;24296:9;24289:16;;24324:3;24321:1;24318:10;24315:36;;;24331:18;;:::i;:::-;24315:36;24167:191;;;;:::o;24364:165::-;24504:17;24500:1;24492:6;24488:14;24481:41;24364:165;:::o;24535:366::-;24677:3;24698:67;24762:2;24757:3;24698:67;:::i;:::-;24691:74;;24774:93;24863:3;24774:93;:::i;:::-;24892:2;24887:3;24883:12;24876:19;;24535:366;;;:::o;24907:419::-;25073:4;25111:2;25100:9;25096:18;25088:26;;25160:9;25154:4;25150:20;25146:1;25135:9;25131:17;25124:47;25188:131;25314:4;25188:131;:::i;:::-;25180:139;;24907:419;;;:::o;25332:176::-;25472:28;25468:1;25460:6;25456:14;25449:52;25332:176;:::o;25514:366::-;25656:3;25677:67;25741:2;25736:3;25677:67;:::i;:::-;25670:74;;25753:93;25842:3;25753:93;:::i;:::-;25871:2;25866:3;25862:12;25855:19;;25514:366;;;:::o;25886:419::-;26052:4;26090:2;26079:9;26075:18;26067:26;;26139:9;26133:4;26129:20;26125:1;26114:9;26110:17;26103:47;26167:131;26293:4;26167:131;:::i;:::-;26159:139;;25886:419;;;:::o;26311:410::-;26351:7;26374:20;26392:1;26374:20;:::i;:::-;26369:25;;26408:20;26426:1;26408:20;:::i;:::-;26403:25;;26463:1;26460;26456:9;26485:30;26503:11;26485:30;:::i;:::-;26474:41;;26664:1;26655:7;26651:15;26648:1;26645:22;26625:1;26618:9;26598:83;26575:139;;26694:18;;:::i;:::-;26575:139;26359:362;26311:410;;;;:::o;26727:169::-;26867:21;26863:1;26855:6;26851:14;26844:45;26727:169;:::o;26902:366::-;27044:3;27065:67;27129:2;27124:3;27065:67;:::i;:::-;27058:74;;27141:93;27230:3;27141:93;:::i;:::-;27259:2;27254:3;27250:12;27243:19;;26902:366;;;:::o;27274:419::-;27440:4;27478:2;27467:9;27463:18;27455:26;;27527:9;27521:4;27517:20;27513:1;27502:9;27498:17;27491:47;27555:131;27681:4;27555:131;:::i;:::-;27547:139;;27274:419;;;:::o;27699:234::-;27839:34;27835:1;27827:6;27823:14;27816:58;27908:17;27903:2;27895:6;27891:15;27884:42;27699:234;:::o;27939:366::-;28081:3;28102:67;28166:2;28161:3;28102:67;:::i;:::-;28095:74;;28178:93;28267:3;28178:93;:::i;:::-;28296:2;28291:3;28287:12;28280:19;;27939:366;;;:::o;28311:419::-;28477:4;28515:2;28504:9;28500:18;28492:26;;28564:9;28558:4;28554:20;28550:1;28539:9;28535:17;28528:47;28592:131;28718:4;28592:131;:::i;:::-;28584:139;;28311:419;;;:::o;28736:148::-;28838:11;28875:3;28860:18;;28736:148;;;;:::o;28890:390::-;28996:3;29024:39;29057:5;29024:39;:::i;:::-;29079:89;29161:6;29156:3;29079:89;:::i;:::-;29072:96;;29177:65;29235:6;29230:3;29223:4;29216:5;29212:16;29177:65;:::i;:::-;29267:6;29262:3;29258:16;29251:23;;29000:280;28890:390;;;;:::o;29286:155::-;29426:7;29422:1;29414:6;29410:14;29403:31;29286:155;:::o;29447:400::-;29607:3;29628:84;29710:1;29705:3;29628:84;:::i;:::-;29621:91;;29721:93;29810:3;29721:93;:::i;:::-;29839:1;29834:3;29830:11;29823:18;;29447:400;;;:::o;29853:701::-;30134:3;30156:95;30247:3;30238:6;30156:95;:::i;:::-;30149:102;;30268:95;30359:3;30350:6;30268:95;:::i;:::-;30261:102;;30380:148;30524:3;30380:148;:::i;:::-;30373:155;;30545:3;30538:10;;29853:701;;;;;:::o;30560:171::-;30599:3;30622:24;30640:5;30622:24;:::i;:::-;30613:33;;30668:4;30661:5;30658:15;30655:41;;30676:18;;:::i;:::-;30655:41;30723:1;30716:5;30712:13;30705:20;;30560:171;;;:::o;30737:98::-;30788:6;30822:5;30816:12;30806:22;;30737:98;;;:::o;30841:168::-;30924:11;30958:6;30953:3;30946:19;30998:4;30993:3;30989:14;30974:29;;30841:168;;;;:::o;31015:373::-;31101:3;31129:38;31161:5;31129:38;:::i;:::-;31183:70;31246:6;31241:3;31183:70;:::i;:::-;31176:77;;31262:65;31320:6;31315:3;31308:4;31301:5;31297:16;31262:65;:::i;:::-;31352:29;31374:6;31352:29;:::i;:::-;31347:3;31343:39;31336:46;;31105:283;31015:373;;;;:::o;31394:640::-;31589:4;31627:3;31616:9;31612:19;31604:27;;31641:71;31709:1;31698:9;31694:17;31685:6;31641:71;:::i;:::-;31722:72;31790:2;31779:9;31775:18;31766:6;31722:72;:::i;:::-;31804;31872:2;31861:9;31857:18;31848:6;31804:72;:::i;:::-;31923:9;31917:4;31913:20;31908:2;31897:9;31893:18;31886:48;31951:76;32022:4;32013:6;31951:76;:::i;:::-;31943:84;;31394:640;;;;;;;:::o;32040:141::-;32096:5;32127:6;32121:13;32112:22;;32143:32;32169:5;32143:32;:::i;:::-;32040:141;;;;:::o;32187:349::-;32256:6;32305:2;32293:9;32284:7;32280:23;32276:32;32273:119;;;32311:79;;:::i;:::-;32273:119;32431:1;32456:63;32511:7;32502:6;32491:9;32487:22;32456:63;:::i;:::-;32446:73;;32402:127;32187:349;;;;:::o;32542:180::-;32590:77;32587:1;32580:88;32687:4;32684:1;32677:15;32711:4;32708:1;32701:15

Swarm Source

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