Token Based Dinos

 

Overview [ERC-721]

Max Total Supply:
0 BSD

Holders:
4,579

Transfers:
-

Contract:
0xfec4e154e59a07f0b3d633debaa4921ebe40adfe0xFEc4e154E59A07F0b3D633dEBaa4921EBE40adFe

Social Profiles:
Not Available, Update ?

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BasedDinos

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 basescan.org on 2024-04-15
*/

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

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

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

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

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

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.20;

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

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


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

pragma solidity ^0.8.20;

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

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


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

pragma solidity ^0.8.20;


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


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

pragma solidity ^0.8.20;


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

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;


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


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

pragma solidity ^0.8.20;



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

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

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


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

pragma solidity ^0.8.20;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


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

pragma solidity ^0.8.20;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

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

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

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

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

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

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

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

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

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

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

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

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

        return _getApproved(tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

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

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

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

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

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

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

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

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

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

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

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

        _tokenApprovals[tokenId] = to;
    }

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

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

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

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


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

pragma solidity ^0.8.20;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        _update(address(0), tokenId, _msgSender());
    }
}

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


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

pragma solidity ^0.8.20;



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

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


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

pragma solidity ^0.8.20;





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

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

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

// File: contract-948339fbda.sol


pragma solidity ^0.8.20;







contract BasedDinos is ERC721, ERC721URIStorage, ERC721Pausable, Ownable, ERC721Burnable, ReentrancyGuard {
    uint256 private _nextTokenId = 1; // Start tokenId from 1
    uint256 public constant MAX_SUPPLY = 6969;
    mapping(address => uint256) public walletMints;
    uint256 public mintedCount = 0;

    constructor()
        ERC721("Based Dinos", "BSD")
        Ownable(msg.sender)
    {
    }

    function _baseURI() internal pure override returns (string memory) {
        return "https://bafybeicywoj3xihgdcxzqnnaex7spcjwm5l4ibystxxnmb3anblb3pthtu.ipfs.w3s.link/";
    }

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

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

    function safeMint(address to, uint256 numberOfTokens) public onlyOwner nonReentrant {
        require(_nextTokenId + numberOfTokens - 1 < MAX_SUPPLY, "Max supply exceeded");
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _nextTokenId++;
            _safeMint(to, tokenId);
            mintedCount++;
        }
    }

    function publicMint(uint256 numberOfTokens) public payable nonReentrant {
        require(walletMints[msg.sender] + numberOfTokens <= 10, "Purchase limit per wallet exceeded");
        require(_nextTokenId + numberOfTokens - 1 < MAX_SUPPLY, "Max supply exceeded");
        
        uint256 totalCost = 0;
        if (walletMints[msg.sender] == 0 && numberOfTokens > 0) {
            totalCost = (numberOfTokens - 1) * 0.001 ether;
        } else {
            totalCost = numberOfTokens * 0.001 ether;
        }

        require(msg.value >= totalCost, "Ether sent is not correct");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _nextTokenId++;
            _safeMint(msg.sender, tokenId);
            walletMints[msg.sender]++;
            mintedCount++;
        }
    }

    function withdraw() public onlyOwner nonReentrant {
        payable(owner()).transfer(address(this).balance);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        string memory baseURI = super.tokenURI(tokenId);
        return string(abi.encodePacked(baseURI, ".json"));
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016009555f600b55348015610018575f80fd5b50336040518060400160405280600b81526020017f42617365642044696e6f730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4253440000000000000000000000000000000000000000000000000000000000815250815f9081610094919061044c565b5080600190816100a4919061044c565b5050505f60075f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610127919061055a565b60405180910390fd5b61013f8161014d60201b60201c565b506001600881905550610573565b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061028d57607f821691505b6020821081036102a05761029f610249565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826102c7565b61030c86836102c7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61035061034b61034684610324565b61032d565b610324565b9050919050565b5f819050919050565b61036983610336565b61037d61037582610357565b8484546102d3565b825550505050565b5f90565b610391610385565b61039c818484610360565b505050565b5b818110156103bf576103b45f82610389565b6001810190506103a2565b5050565b601f821115610404576103d5816102a6565b6103de846102b8565b810160208510156103ed578190505b6104016103f9856102b8565b8301826103a1565b50505b505050565b5f82821c905092915050565b5f6104245f1984600802610409565b1980831691505092915050565b5f61043c8383610415565b9150826002028217905092915050565b61045582610212565b67ffffffffffffffff81111561046e5761046d61021c565b5b6104788254610276565b6104838282856103c3565b5f60209050601f8311600181146104b4575f84156104a2578287015190505b6104ac8582610431565b865550610513565b601f1984166104c2866102a6565b5f5b828110156104e9578489015182556001820191506020850194506020810190506104c4565b868310156105065784890151610502601f891682610415565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105448261051b565b9050919050565b6105548161053a565b82525050565b5f60208201905061056d5f83018461054b565b92915050565b612d56806105805f395ff3fe608060405260043610610180575f3560e01c806370a08231116100d0578063a22cb46511610089578063cf721b1511610063578063cf721b151461050e578063e985e9c514610538578063f0293fd314610574578063f2fde38b146105b057610180565b8063a22cb46514610482578063b88d4fde146104aa578063c87b56dd146104d257610180565b806370a082311461039e578063715018a6146103da5780638456cb59146103f05780638da5cb5b1461040657806395d89b4114610430578063a14481941461045a57610180565b806332cb6b0c1161013d57806342842e0e1161011757806342842e0e146102e857806342966c68146103105780635c975abb146103385780636352211e1461036257610180565b806332cb6b0c146102925780633ccfd60b146102bc5780633f4ba83a146102d257610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b31461022657806323b872dd1461024e5780632db1154414610276575b5f80fd5b34801561018f575f80fd5b506101aa60048036038101906101a59190612263565b6105d8565b6040516101b791906122a8565b60405180910390f35b3480156101cb575f80fd5b506101d46105e9565b6040516101e19190612331565b60405180910390f35b3480156101f5575f80fd5b50610210600480360381019061020b9190612384565b610678565b60405161021d91906123ee565b60405180910390f35b348015610231575f80fd5b5061024c60048036038101906102479190612431565b610693565b005b348015610259575f80fd5b50610274600480360381019061026f919061246f565b6106a9565b005b610290600480360381019061028b9190612384565b6107a8565b005b34801561029d575f80fd5b506102a6610a1a565b6040516102b391906124ce565b60405180910390f35b3480156102c7575f80fd5b506102d0610a20565b005b3480156102dd575f80fd5b506102e6610a85565b005b3480156102f3575f80fd5b5061030e6004803603810190610309919061246f565b610a97565b005b34801561031b575f80fd5b5061033660048036038101906103319190612384565b610ab6565b005b348015610343575f80fd5b5061034c610acc565b60405161035991906122a8565b60405180910390f35b34801561036d575f80fd5b5061038860048036038101906103839190612384565b610ae1565b60405161039591906123ee565b60405180910390f35b3480156103a9575f80fd5b506103c460048036038101906103bf91906124e7565b610af2565b6040516103d191906124ce565b60405180910390f35b3480156103e5575f80fd5b506103ee610ba8565b005b3480156103fb575f80fd5b50610404610bbb565b005b348015610411575f80fd5b5061041a610bcd565b60405161042791906123ee565b60405180910390f35b34801561043b575f80fd5b50610444610bf6565b6040516104519190612331565b60405180910390f35b348015610465575f80fd5b50610480600480360381019061047b9190612431565b610c86565b005b34801561048d575f80fd5b506104a860048036038101906104a3919061253c565b610d52565b005b3480156104b5575f80fd5b506104d060048036038101906104cb91906126a6565b610d68565b005b3480156104dd575f80fd5b506104f860048036038101906104f39190612384565b610d85565b6040516105059190612331565b60405180910390f35b348015610519575f80fd5b50610522610dbb565b60405161052f91906124ce565b60405180910390f35b348015610543575f80fd5b5061055e60048036038101906105599190612726565b610dc1565b60405161056b91906122a8565b60405180910390f35b34801561057f575f80fd5b5061059a600480360381019061059591906124e7565b610e4f565b6040516105a791906124ce565b60405180910390f35b3480156105bb575f80fd5b506105d660048036038101906105d191906124e7565b610e64565b005b5f6105e282610ee8565b9050919050565b60605f80546105f790612791565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612791565b801561066e5780601f106106455761010080835404028352916020019161066e565b820191905f5260205f20905b81548152906001019060200180831161065157829003601f168201915b5050505050905090565b5f61068282610f48565b5061068c82610fce565b9050919050565b6106a582826106a0611007565b61100e565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610719575f6040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161071091906123ee565b60405180910390fd5b5f61072c8383610727611007565b611020565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107a2578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610799939291906127c1565b60405180910390fd5b50505050565b6107b0611035565b600a81600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107fb9190612823565b111561083c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610833906128c6565b60405180910390fd5b611b3960018260095461084f9190612823565b61085991906128e4565b10610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612961565b60405180910390fd5b5f80600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541480156108e557505f82115b156109105766038d7ea4c680006001836108ff91906128e4565b610909919061297f565b9050610926565b66038d7ea4c6800082610923919061297f565b90505b80341015610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090612a0a565b60405180910390fd5b5f5b82811015610a0d575f60095f81548092919061098690612a28565b9190505590506109963382611084565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154809291906109e390612a28565b9190505550600b5f8154809291906109fa90612a28565b919050555050808060010191505061096b565b5050610a176110a1565b50565b611b3981565b610a286110ab565b610a30611035565b610a38610bcd565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610a7a573d5f803e3d5ffd5b50610a836110a1565b565b610a8d6110ab565b610a95611132565b565b610ab183838360405180602001604052805f815250610d68565b505050565b610ac85f82610ac3611007565b611020565b5050565b5f60075f9054906101000a900460ff16905090565b5f610aeb82610f48565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b63575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610b5a91906123ee565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bb06110ab565b610bb95f611193565b565b610bc36110ab565b610bcb611258565b565b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c0590612791565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3190612791565b8015610c7c5780601f10610c5357610100808354040283529160200191610c7c565b820191905f5260205f20905b815481529060010190602001808311610c5f57829003601f168201915b5050505050905090565b610c8e6110ab565b610c96611035565b611b39600182600954610ca99190612823565b610cb391906128e4565b10610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90612961565b60405180910390fd5b5f5b81811015610d45575f60095f815480929190610d1090612a28565b919050559050610d208482611084565b600b5f815480929190610d3290612a28565b9190505550508080600101915050610cf5565b50610d4e6110a1565b5050565b610d64610d5d611007565b83836112ba565b5050565b610d738484846106a9565b610d7f84848484611423565b50505050565b60605f610d91836115d5565b905080604051602001610da49190612af3565b604051602081830303815290604052915050919050565b600b5481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600a602052805f5260405f205f915090505481565b610e6c6110ab565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edc575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ed391906123ee565b60405180910390fd5b610ee581611193565b50565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f415750610f40826116e0565b5b9050919050565b5f80610f53836117c1565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fc557826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401610fbc91906124ce565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61101b83838360016117fa565b505050565b5f61102c8484846119b9565b90509392505050565b60026008540361107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612b5e565b60405180910390fd5b6002600881905550565b61109d828260405180602001604052805f8152506119d6565b5050565b6001600881905550565b6110b3611007565b73ffffffffffffffffffffffffffffffffffffffff166110d1610bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611130576110f4611007565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161112791906123ee565b60405180910390fd5b565b61113a6119f1565b5f60075f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61117c611007565b60405161118991906123ee565b60405180910390a1565b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611260611a31565b600160075f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112a3611007565b6040516112b091906123ee565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132a57816040517f5b08ba1800000000000000000000000000000000000000000000000000000000815260040161132191906123ee565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141691906122a8565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b11156115cf578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611466611007565b8685856040518563ffffffff1660e01b81526004016114889493929190612bce565b6020604051808303815f875af19250505080156114c357506040513d601f19601f820116820180604052508101906114c09190612c2c565b60015b611544573d805f81146114f1576040519150601f19603f3d011682016040523d82523d5f602084013e6114f6565b606091505b505f81510361153c57836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161153391906123ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115cd57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016115c491906123ee565b60405180910390fd5b505b50505050565b60606115e082610f48565b505f60065f8481526020019081526020015f2080546115fe90612791565b80601f016020809104026020016040519081016040528092919081815260200182805461162a90612791565b80156116755780601f1061164c57610100808354040283529160200191611675565b820191905f5260205f20905b81548152906001019060200180831161165857829003601f168201915b505050505090505f611685611a72565b90505f8151036116995781925050506116db565b5f825111156116cd5780826040516020016116b5929190612c57565b604051602081830303815290604052925050506116db565b6116d684611a92565b925050505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117ba57506117b982611af8565b5b9050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061183257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611964575f61184184610f48565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118ab57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156118be57506118bc8184610dc1565b155b1561190057826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016118f791906123ee565b60405180910390fd5b811561196257838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f6119c2611a31565b6119cd848484611b61565b90509392505050565b6119e08383611d6c565b6119ec5f848484611423565b505050565b6119f9610acc565b611a2f576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b611a39610acc565b15611a70576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6060604051806080016040528060528152602001612ccf60529139905090565b6060611a9d82610f48565b505f611aa7611a72565b90505f815111611ac55760405180602001604052805f815250611af0565b80611acf84611e5f565b604051602001611ae0929190612c57565b6040516020818303038152906040525b915050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f80611b6c846117c1565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611bad57611bac818486611f29565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c3857611bec5f855f806117fa565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611cb757600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ddc575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611dd391906123ee565b60405180910390fd5b5f611de883835f611020565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e5a575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401611e5191906123ee565b60405180910390fd5b505050565b60605f6001611e6d84611fec565b0190505f8167ffffffffffffffff811115611e8b57611e8a612582565b5b6040519080825280601f01601f191660200182016040528015611ebd5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611f1e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f1357611f12612c7a565b5b0494505f8503611eca575b819350505050919050565b611f3483838361213d565b611fe7575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fa857806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611f9f91906124ce565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401611fde929190612ca7565b60405180910390fd5b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612048577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161203e5761203d612c7a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612085576d04ee2d6d415b85acef8100000000838161207b5761207a612c7a565b5b0492506020810190505b662386f26fc1000083106120b457662386f26fc1000083816120aa576120a9612c7a565b5b0492506010810190505b6305f5e10083106120dd576305f5e10083816120d3576120d2612c7a565b5b0492506008810190505b61271083106121025761271083816120f8576120f7612c7a565b5b0492506004810190505b60648310612125576064838161211b5761211a612c7a565b5b0492506002810190505b600a8310612134576001810190505b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121f457508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121b557506121b48484610dc1565b5b806121f357508273ffffffffffffffffffffffffffffffffffffffff166121db83610fce565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122428161220e565b811461224c575f80fd5b50565b5f8135905061225d81612239565b92915050565b5f6020828403121561227857612277612206565b5b5f6122858482850161224f565b91505092915050565b5f8115159050919050565b6122a28161228e565b82525050565b5f6020820190506122bb5f830184612299565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612303826122c1565b61230d81856122cb565b935061231d8185602086016122db565b612326816122e9565b840191505092915050565b5f6020820190508181035f83015261234981846122f9565b905092915050565b5f819050919050565b61236381612351565b811461236d575f80fd5b50565b5f8135905061237e8161235a565b92915050565b5f6020828403121561239957612398612206565b5b5f6123a684828501612370565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123d8826123af565b9050919050565b6123e8816123ce565b82525050565b5f6020820190506124015f8301846123df565b92915050565b612410816123ce565b811461241a575f80fd5b50565b5f8135905061242b81612407565b92915050565b5f806040838503121561244757612446612206565b5b5f6124548582860161241d565b925050602061246585828601612370565b9150509250929050565b5f805f6060848603121561248657612485612206565b5b5f6124938682870161241d565b93505060206124a48682870161241d565b92505060406124b586828701612370565b9150509250925092565b6124c881612351565b82525050565b5f6020820190506124e15f8301846124bf565b92915050565b5f602082840312156124fc576124fb612206565b5b5f6125098482850161241d565b91505092915050565b61251b8161228e565b8114612525575f80fd5b50565b5f8135905061253681612512565b92915050565b5f806040838503121561255257612551612206565b5b5f61255f8582860161241d565b925050602061257085828601612528565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6125b8826122e9565b810181811067ffffffffffffffff821117156125d7576125d6612582565b5b80604052505050565b5f6125e96121fd565b90506125f582826125af565b919050565b5f67ffffffffffffffff82111561261457612613612582565b5b61261d826122e9565b9050602081019050919050565b828183375f83830152505050565b5f61264a612645846125fa565b6125e0565b9050828152602081018484840111156126665761266561257e565b5b61267184828561262a565b509392505050565b5f82601f83011261268d5761268c61257a565b5b813561269d848260208601612638565b91505092915050565b5f805f80608085870312156126be576126bd612206565b5b5f6126cb8782880161241d565b94505060206126dc8782880161241d565b93505060406126ed87828801612370565b925050606085013567ffffffffffffffff81111561270e5761270d61220a565b5b61271a87828801612679565b91505092959194509250565b5f806040838503121561273c5761273b612206565b5b5f6127498582860161241d565b925050602061275a8582860161241d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806127a857607f821691505b6020821081036127bb576127ba612764565b5b50919050565b5f6060820190506127d45f8301866123df565b6127e160208301856124bf565b6127ee60408301846123df565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61282d82612351565b915061283883612351565b92508282019050808211156128505761284f6127f6565b5b92915050565b7f5075726368617365206c696d6974207065722077616c6c6574206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f6128b06022836122cb565b91506128bb82612856565b604082019050919050565b5f6020820190508181035f8301526128dd816128a4565b9050919050565b5f6128ee82612351565b91506128f983612351565b9250828203905081811115612911576129106127f6565b5b92915050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f61294b6013836122cb565b915061295682612917565b602082019050919050565b5f6020820190508181035f8301526129788161293f565b9050919050565b5f61298982612351565b915061299483612351565b92508282026129a281612351565b915082820484148315176129b9576129b86127f6565b5b5092915050565b7f45746865722073656e74206973206e6f7420636f7272656374000000000000005f82015250565b5f6129f46019836122cb565b91506129ff826129c0565b602082019050919050565b5f6020820190508181035f830152612a21816129e8565b9050919050565b5f612a3282612351565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a6457612a636127f6565b5b600182019050919050565b5f81905092915050565b5f612a83826122c1565b612a8d8185612a6f565b9350612a9d8185602086016122db565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612add600583612a6f565b9150612ae882612aa9565b600582019050919050565b5f612afe8284612a79565b9150612b0982612ad1565b915081905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612b48601f836122cb565b9150612b5382612b14565b602082019050919050565b5f6020820190508181035f830152612b7581612b3c565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612ba082612b7c565b612baa8185612b86565b9350612bba8185602086016122db565b612bc3816122e9565b840191505092915050565b5f608082019050612be15f8301876123df565b612bee60208301866123df565b612bfb60408301856124bf565b8181036060830152612c0d8184612b96565b905095945050505050565b5f81519050612c2681612239565b92915050565b5f60208284031215612c4157612c40612206565b5b5f612c4e84828501612c18565b91505092915050565b5f612c628285612a79565b9150612c6e8284612a79565b91508190509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050612cba5f8301856123df565b612cc760208301846124bf565b939250505056fe68747470733a2f2f626166796265696379776f6a33786968676463787a716e6e616578377370636a776d356c34696279737478786e6d6233616e626c623370746874752e697066732e7733732e6c696e6b2fa2646970667358221220bb0eba60f543222dad472297ba0dcb315d2fffae64d6ac9c14ba054bcd0aecd964736f6c63430008190033

Deployed Bytecode

0x608060405260043610610180575f3560e01c806370a08231116100d0578063a22cb46511610089578063cf721b1511610063578063cf721b151461050e578063e985e9c514610538578063f0293fd314610574578063f2fde38b146105b057610180565b8063a22cb46514610482578063b88d4fde146104aa578063c87b56dd146104d257610180565b806370a082311461039e578063715018a6146103da5780638456cb59146103f05780638da5cb5b1461040657806395d89b4114610430578063a14481941461045a57610180565b806332cb6b0c1161013d57806342842e0e1161011757806342842e0e146102e857806342966c68146103105780635c975abb146103385780636352211e1461036257610180565b806332cb6b0c146102925780633ccfd60b146102bc5780633f4ba83a146102d257610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b31461022657806323b872dd1461024e5780632db1154414610276575b5f80fd5b34801561018f575f80fd5b506101aa60048036038101906101a59190612263565b6105d8565b6040516101b791906122a8565b60405180910390f35b3480156101cb575f80fd5b506101d46105e9565b6040516101e19190612331565b60405180910390f35b3480156101f5575f80fd5b50610210600480360381019061020b9190612384565b610678565b60405161021d91906123ee565b60405180910390f35b348015610231575f80fd5b5061024c60048036038101906102479190612431565b610693565b005b348015610259575f80fd5b50610274600480360381019061026f919061246f565b6106a9565b005b610290600480360381019061028b9190612384565b6107a8565b005b34801561029d575f80fd5b506102a6610a1a565b6040516102b391906124ce565b60405180910390f35b3480156102c7575f80fd5b506102d0610a20565b005b3480156102dd575f80fd5b506102e6610a85565b005b3480156102f3575f80fd5b5061030e6004803603810190610309919061246f565b610a97565b005b34801561031b575f80fd5b5061033660048036038101906103319190612384565b610ab6565b005b348015610343575f80fd5b5061034c610acc565b60405161035991906122a8565b60405180910390f35b34801561036d575f80fd5b5061038860048036038101906103839190612384565b610ae1565b60405161039591906123ee565b60405180910390f35b3480156103a9575f80fd5b506103c460048036038101906103bf91906124e7565b610af2565b6040516103d191906124ce565b60405180910390f35b3480156103e5575f80fd5b506103ee610ba8565b005b3480156103fb575f80fd5b50610404610bbb565b005b348015610411575f80fd5b5061041a610bcd565b60405161042791906123ee565b60405180910390f35b34801561043b575f80fd5b50610444610bf6565b6040516104519190612331565b60405180910390f35b348015610465575f80fd5b50610480600480360381019061047b9190612431565b610c86565b005b34801561048d575f80fd5b506104a860048036038101906104a3919061253c565b610d52565b005b3480156104b5575f80fd5b506104d060048036038101906104cb91906126a6565b610d68565b005b3480156104dd575f80fd5b506104f860048036038101906104f39190612384565b610d85565b6040516105059190612331565b60405180910390f35b348015610519575f80fd5b50610522610dbb565b60405161052f91906124ce565b60405180910390f35b348015610543575f80fd5b5061055e60048036038101906105599190612726565b610dc1565b60405161056b91906122a8565b60405180910390f35b34801561057f575f80fd5b5061059a600480360381019061059591906124e7565b610e4f565b6040516105a791906124ce565b60405180910390f35b3480156105bb575f80fd5b506105d660048036038101906105d191906124e7565b610e64565b005b5f6105e282610ee8565b9050919050565b60605f80546105f790612791565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612791565b801561066e5780601f106106455761010080835404028352916020019161066e565b820191905f5260205f20905b81548152906001019060200180831161065157829003601f168201915b5050505050905090565b5f61068282610f48565b5061068c82610fce565b9050919050565b6106a582826106a0611007565b61100e565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610719575f6040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161071091906123ee565b60405180910390fd5b5f61072c8383610727611007565b611020565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107a2578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610799939291906127c1565b60405180910390fd5b50505050565b6107b0611035565b600a81600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107fb9190612823565b111561083c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610833906128c6565b60405180910390fd5b611b3960018260095461084f9190612823565b61085991906128e4565b10610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612961565b60405180910390fd5b5f80600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541480156108e557505f82115b156109105766038d7ea4c680006001836108ff91906128e4565b610909919061297f565b9050610926565b66038d7ea4c6800082610923919061297f565b90505b80341015610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090612a0a565b60405180910390fd5b5f5b82811015610a0d575f60095f81548092919061098690612a28565b9190505590506109963382611084565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154809291906109e390612a28565b9190505550600b5f8154809291906109fa90612a28565b919050555050808060010191505061096b565b5050610a176110a1565b50565b611b3981565b610a286110ab565b610a30611035565b610a38610bcd565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610a7a573d5f803e3d5ffd5b50610a836110a1565b565b610a8d6110ab565b610a95611132565b565b610ab183838360405180602001604052805f815250610d68565b505050565b610ac85f82610ac3611007565b611020565b5050565b5f60075f9054906101000a900460ff16905090565b5f610aeb82610f48565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b63575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610b5a91906123ee565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bb06110ab565b610bb95f611193565b565b610bc36110ab565b610bcb611258565b565b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c0590612791565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3190612791565b8015610c7c5780601f10610c5357610100808354040283529160200191610c7c565b820191905f5260205f20905b815481529060010190602001808311610c5f57829003601f168201915b5050505050905090565b610c8e6110ab565b610c96611035565b611b39600182600954610ca99190612823565b610cb391906128e4565b10610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90612961565b60405180910390fd5b5f5b81811015610d45575f60095f815480929190610d1090612a28565b919050559050610d208482611084565b600b5f815480929190610d3290612a28565b9190505550508080600101915050610cf5565b50610d4e6110a1565b5050565b610d64610d5d611007565b83836112ba565b5050565b610d738484846106a9565b610d7f84848484611423565b50505050565b60605f610d91836115d5565b905080604051602001610da49190612af3565b604051602081830303815290604052915050919050565b600b5481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600a602052805f5260405f205f915090505481565b610e6c6110ab565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edc575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ed391906123ee565b60405180910390fd5b610ee581611193565b50565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f415750610f40826116e0565b5b9050919050565b5f80610f53836117c1565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fc557826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401610fbc91906124ce565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61101b83838360016117fa565b505050565b5f61102c8484846119b9565b90509392505050565b60026008540361107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612b5e565b60405180910390fd5b6002600881905550565b61109d828260405180602001604052805f8152506119d6565b5050565b6001600881905550565b6110b3611007565b73ffffffffffffffffffffffffffffffffffffffff166110d1610bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611130576110f4611007565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161112791906123ee565b60405180910390fd5b565b61113a6119f1565b5f60075f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61117c611007565b60405161118991906123ee565b60405180910390a1565b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611260611a31565b600160075f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112a3611007565b6040516112b091906123ee565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132a57816040517f5b08ba1800000000000000000000000000000000000000000000000000000000815260040161132191906123ee565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141691906122a8565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b11156115cf578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611466611007565b8685856040518563ffffffff1660e01b81526004016114889493929190612bce565b6020604051808303815f875af19250505080156114c357506040513d601f19601f820116820180604052508101906114c09190612c2c565b60015b611544573d805f81146114f1576040519150601f19603f3d011682016040523d82523d5f602084013e6114f6565b606091505b505f81510361153c57836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161153391906123ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115cd57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016115c491906123ee565b60405180910390fd5b505b50505050565b60606115e082610f48565b505f60065f8481526020019081526020015f2080546115fe90612791565b80601f016020809104026020016040519081016040528092919081815260200182805461162a90612791565b80156116755780601f1061164c57610100808354040283529160200191611675565b820191905f5260205f20905b81548152906001019060200180831161165857829003601f168201915b505050505090505f611685611a72565b90505f8151036116995781925050506116db565b5f825111156116cd5780826040516020016116b5929190612c57565b604051602081830303815290604052925050506116db565b6116d684611a92565b925050505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117ba57506117b982611af8565b5b9050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061183257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611964575f61184184610f48565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118ab57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156118be57506118bc8184610dc1565b155b1561190057826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016118f791906123ee565b60405180910390fd5b811561196257838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f6119c2611a31565b6119cd848484611b61565b90509392505050565b6119e08383611d6c565b6119ec5f848484611423565b505050565b6119f9610acc565b611a2f576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b611a39610acc565b15611a70576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6060604051806080016040528060528152602001612ccf60529139905090565b6060611a9d82610f48565b505f611aa7611a72565b90505f815111611ac55760405180602001604052805f815250611af0565b80611acf84611e5f565b604051602001611ae0929190612c57565b6040516020818303038152906040525b915050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f80611b6c846117c1565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611bad57611bac818486611f29565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c3857611bec5f855f806117fa565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611cb757600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ddc575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611dd391906123ee565b60405180910390fd5b5f611de883835f611020565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e5a575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401611e5191906123ee565b60405180910390fd5b505050565b60605f6001611e6d84611fec565b0190505f8167ffffffffffffffff811115611e8b57611e8a612582565b5b6040519080825280601f01601f191660200182016040528015611ebd5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611f1e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f1357611f12612c7a565b5b0494505f8503611eca575b819350505050919050565b611f3483838361213d565b611fe7575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fa857806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611f9f91906124ce565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401611fde929190612ca7565b60405180910390fd5b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612048577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161203e5761203d612c7a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612085576d04ee2d6d415b85acef8100000000838161207b5761207a612c7a565b5b0492506020810190505b662386f26fc1000083106120b457662386f26fc1000083816120aa576120a9612c7a565b5b0492506010810190505b6305f5e10083106120dd576305f5e10083816120d3576120d2612c7a565b5b0492506008810190505b61271083106121025761271083816120f8576120f7612c7a565b5b0492506004810190505b60648310612125576064838161211b5761211a612c7a565b5b0492506002810190505b600a8310612134576001810190505b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121f457508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121b557506121b48484610dc1565b5b806121f357508273ffffffffffffffffffffffffffffffffffffffff166121db83610fce565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122428161220e565b811461224c575f80fd5b50565b5f8135905061225d81612239565b92915050565b5f6020828403121561227857612277612206565b5b5f6122858482850161224f565b91505092915050565b5f8115159050919050565b6122a28161228e565b82525050565b5f6020820190506122bb5f830184612299565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612303826122c1565b61230d81856122cb565b935061231d8185602086016122db565b612326816122e9565b840191505092915050565b5f6020820190508181035f83015261234981846122f9565b905092915050565b5f819050919050565b61236381612351565b811461236d575f80fd5b50565b5f8135905061237e8161235a565b92915050565b5f6020828403121561239957612398612206565b5b5f6123a684828501612370565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123d8826123af565b9050919050565b6123e8816123ce565b82525050565b5f6020820190506124015f8301846123df565b92915050565b612410816123ce565b811461241a575f80fd5b50565b5f8135905061242b81612407565b92915050565b5f806040838503121561244757612446612206565b5b5f6124548582860161241d565b925050602061246585828601612370565b9150509250929050565b5f805f6060848603121561248657612485612206565b5b5f6124938682870161241d565b93505060206124a48682870161241d565b92505060406124b586828701612370565b9150509250925092565b6124c881612351565b82525050565b5f6020820190506124e15f8301846124bf565b92915050565b5f602082840312156124fc576124fb612206565b5b5f6125098482850161241d565b91505092915050565b61251b8161228e565b8114612525575f80fd5b50565b5f8135905061253681612512565b92915050565b5f806040838503121561255257612551612206565b5b5f61255f8582860161241d565b925050602061257085828601612528565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6125b8826122e9565b810181811067ffffffffffffffff821117156125d7576125d6612582565b5b80604052505050565b5f6125e96121fd565b90506125f582826125af565b919050565b5f67ffffffffffffffff82111561261457612613612582565b5b61261d826122e9565b9050602081019050919050565b828183375f83830152505050565b5f61264a612645846125fa565b6125e0565b9050828152602081018484840111156126665761266561257e565b5b61267184828561262a565b509392505050565b5f82601f83011261268d5761268c61257a565b5b813561269d848260208601612638565b91505092915050565b5f805f80608085870312156126be576126bd612206565b5b5f6126cb8782880161241d565b94505060206126dc8782880161241d565b93505060406126ed87828801612370565b925050606085013567ffffffffffffffff81111561270e5761270d61220a565b5b61271a87828801612679565b91505092959194509250565b5f806040838503121561273c5761273b612206565b5b5f6127498582860161241d565b925050602061275a8582860161241d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806127a857607f821691505b6020821081036127bb576127ba612764565b5b50919050565b5f6060820190506127d45f8301866123df565b6127e160208301856124bf565b6127ee60408301846123df565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61282d82612351565b915061283883612351565b92508282019050808211156128505761284f6127f6565b5b92915050565b7f5075726368617365206c696d6974207065722077616c6c6574206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f6128b06022836122cb565b91506128bb82612856565b604082019050919050565b5f6020820190508181035f8301526128dd816128a4565b9050919050565b5f6128ee82612351565b91506128f983612351565b9250828203905081811115612911576129106127f6565b5b92915050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f61294b6013836122cb565b915061295682612917565b602082019050919050565b5f6020820190508181035f8301526129788161293f565b9050919050565b5f61298982612351565b915061299483612351565b92508282026129a281612351565b915082820484148315176129b9576129b86127f6565b5b5092915050565b7f45746865722073656e74206973206e6f7420636f7272656374000000000000005f82015250565b5f6129f46019836122cb565b91506129ff826129c0565b602082019050919050565b5f6020820190508181035f830152612a21816129e8565b9050919050565b5f612a3282612351565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a6457612a636127f6565b5b600182019050919050565b5f81905092915050565b5f612a83826122c1565b612a8d8185612a6f565b9350612a9d8185602086016122db565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612add600583612a6f565b9150612ae882612aa9565b600582019050919050565b5f612afe8284612a79565b9150612b0982612ad1565b915081905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612b48601f836122cb565b9150612b5382612b14565b602082019050919050565b5f6020820190508181035f830152612b7581612b3c565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612ba082612b7c565b612baa8185612b86565b9350612bba8185602086016122db565b612bc3816122e9565b840191505092915050565b5f608082019050612be15f8301876123df565b612bee60208301866123df565b612bfb60408301856124bf565b8181036060830152612c0d8184612b96565b905095945050505050565b5f81519050612c2681612239565b92915050565b5f60208284031215612c4157612c40612206565b5b5f612c4e84828501612c18565b91505092915050565b5f612c628285612a79565b9150612c6e8284612a79565b91508190509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050612cba5f8301856123df565b612cc760208301846124bf565b939250505056fe68747470733a2f2f626166796265696379776f6a33786968676463787a716e6e616578377370636a776d356c34696279737478786e6d6233616e626c623370746874752e697066732e7733732e6c696e6b2fa2646970667358221220bb0eba60f543222dad472297ba0dcb315d2fffae64d6ac9c14ba054bcd0aecd964736f6c63430008190033

Deployed ByteCode Sourcemap

69155:2789:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71511:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49140:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50312:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50131:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50981:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70268:829;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69331:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71105:117;;;;;;;;;;;;;:::i;:::-;;69827:65;;;;;;;;;;;;;:::i;:::-;;51640:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65429:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36097:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48953:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48678:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33361:103;;;;;;;;;;;;;:::i;:::-;;69758:61;;;;;;;;;;;;;:::i;:::-;;32686:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49300:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69900:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50542:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51845:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71230:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69432:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50759:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69379:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33619:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71511:212;71650:4;71679:36;71703:11;71679:23;:36::i;:::-;71672:43;;71511:212;;;:::o;49140:91::-;49185:13;49218:5;49211:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49140:91;:::o;50312:158::-;50379:7;50399:22;50413:7;50399:13;:22::i;:::-;;50441:21;50454:7;50441:12;:21::i;:::-;50434:28;;50312:158;;;:::o;50131:115::-;50203:35;50212:2;50216:7;50225:12;:10;:12::i;:::-;50203:8;:35::i;:::-;50131:115;;:::o;50981:588::-;51090:1;51076:16;;:2;:16;;;51072:89;;51146:1;51116:33;;;;;;;;;;;:::i;:::-;;;;;;;;51072:89;51382:21;51406:34;51414:2;51418:7;51427:12;:10;:12::i;:::-;51406:7;:34::i;:::-;51382:58;;51472:4;51455:21;;:13;:21;;;51451:111;;51521:4;51527:7;51536:13;51500:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;51451:111;51061:508;50981:588;;;:::o;70268:829::-;2345:21;:19;:21::i;:::-;70403:2:::1;70385:14;70359:11;:23;70371:10;70359:23;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:46;;70351:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;69368:4;70495:1;70478:14;70463:12;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:46;70455:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;70554:17;70617:1:::0;70590:11:::1;:23;70602:10;70590:23;;;;;;;;;;;;;;;;:28;:50;;;;;70639:1;70622:14;:18;70590:50;70586:202;;;70692:11;70687:1;70670:14;:18;;;;:::i;:::-;70669:34;;;;:::i;:::-;70657:46;;70586:202;;;70765:11;70748:14;:28;;;;:::i;:::-;70736:40;;70586:202;70821:9;70808;:22;;70800:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;70878:9;70873:217;70897:14;70893:1;:18;70873:217;;;70933:15;70951:12;;:14;;;;;;;;;:::i;:::-;;;;;70933:32;;70980:30;70990:10;71002:7;70980:9;:30::i;:::-;71025:11;:23;71037:10;71025:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;71065:11;;:13;;;;;;;;;:::i;:::-;;;;;;70918:172;70913:3;;;;;;;70873:217;;;;70340:757;2389:20:::0;:18;:20::i;:::-;70268:829;:::o;69331:41::-;69368:4;69331:41;:::o;71105:117::-;32572:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;71174:7:::2;:5;:7::i;:::-;71166:25;;:48;71192:21;71166:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;2389:20:::1;:18;:20::i;:::-;71105:117::o:0;69827:65::-;32572:13;:11;:13::i;:::-;69874:10:::1;:8;:10::i;:::-;69827:65::o:0;51640:134::-;51727:39;51744:4;51750:2;51754:7;51727:39;;;;;;;;;;;;:16;:39::i;:::-;51640:134;;;:::o;65429:318::-;65697:42;65713:1;65717:7;65726:12;:10;:12::i;:::-;65697:7;:42::i;:::-;;65429:318;:::o;36097:86::-;36144:4;36168:7;;;;;;;;;;;36161:14;;36097:86;:::o;48953:120::-;49016:7;49043:22;49057:7;49043:13;:22::i;:::-;49036:29;;48953:120;;;:::o;48678:213::-;48741:7;48782:1;48765:19;;:5;:19;;;48761:89;;48835:1;48808:30;;;;;;;;;;;:::i;:::-;;;;;;;;48761:89;48867:9;:16;48877:5;48867:16;;;;;;;;;;;;;;;;48860:23;;48678:213;;;:::o;33361:103::-;32572:13;:11;:13::i;:::-;33426:30:::1;33453:1;33426:18;:30::i;:::-;33361:103::o:0;69758:61::-;32572:13;:11;:13::i;:::-;69803:8:::1;:6;:8::i;:::-;69758:61::o:0;32686:87::-;32732:7;32759:6;;;;;;;;;;;32752:13;;32686:87;:::o;49300:95::-;49347:13;49380:7;49373:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49300:95;:::o;69900:360::-;32572:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;69368:4:::2;70035:1;70018:14;70003:12;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:46;69995:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;70089:9;70084:169;70108:14;70104:1;:18;70084:169;;;70144:15;70162:12;;:14;;;;;;;;;:::i;:::-;;;;;70144:32;;70191:22;70201:2;70205:7;70191:9;:22::i;:::-;70228:11;;:13;;;;;;;;;:::i;:::-;;;;;;70129:124;70124:3;;;;;;;70084:169;;;;2389:20:::1;:18;:20::i;:::-;69900:360:::0;;:::o;50542:146::-;50628:52;50647:12;:10;:12::i;:::-;50661:8;50671;50628:18;:52::i;:::-;50542:146;;:::o;51845:211::-;51959:31;51972:4;51978:2;51982:7;51959:12;:31::i;:::-;52001:47;52024:4;52030:2;52034:7;52043:4;52001:22;:47::i;:::-;51845:211;;;;:::o;71230:273::-;71357:13;71388:21;71412:23;71427:7;71412:14;:23::i;:::-;71388:47;;71477:7;71460:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;71446:49;;;71230:273;;;:::o;69432:30::-;;;;:::o;50759:155::-;50847:4;50871:18;:25;50890:5;50871:25;;;;;;;;;;;;;;;:35;50897:8;50871:35;;;;;;;;;;;;;;;;;;;;;;;;;50864:42;;50759:155;;;;:::o;69379:46::-;;;;;;;;;;;;;;;;;:::o;33619:220::-;32572:13;:11;:13::i;:::-;33724:1:::1;33704:22;;:8;:22;;::::0;33700:93:::1;;33778:1;33750:31;;;;;;;;;;;:::i;:::-;;;;;;;;33700:93;33803:28;33822:8;33803:18;:28::i;:::-;33619:220:::0;:::o;67885:209::-;67987:4;67700:10;67693:18;;68011:35;;;:11;:35;;;;:75;;;;68050:36;68074:11;68050:23;:36::i;:::-;68011:75;68004:82;;67885:209;;;:::o;63287:247::-;63350:7;63370:13;63386:17;63395:7;63386:8;:17::i;:::-;63370:33;;63435:1;63418:19;;:5;:19;;;63414:90;;63484:7;63461:31;;;;;;;;;;;:::i;:::-;;;;;;;;63414:90;63521:5;63514:12;;;63287:247;;;:::o;52818:129::-;52888:7;52915:15;:24;52931:7;52915:24;;;;;;;;;;;;;;;;;;;;;52908:31;;52818:129;;;:::o;30695:98::-;30748:7;30775:10;30768:17;;30695:98;:::o;61519:122::-;61600:33;61609:2;61613:7;61622:4;61628;61600:8;:33::i;:::-;61519:122;;;:::o;71731:210::-;71869:7;71901:32;71915:2;71919:7;71928:4;71901:13;:32::i;:::-;71894:39;;71731:210;;;;;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;57638:102::-;57706:26;57716:2;57720:7;57706:26;;;;;;;;;;;;:9;:26::i;:::-;57638:102;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;32851:166::-;32922:12;:10;:12::i;:::-;32911:23;;:7;:5;:7::i;:::-;:23;;;32907:103;;32985:12;:10;:12::i;:::-;32958:40;;;;;;;;;;;:::i;:::-;;;;;;;;32907:103;32851:166::o;36998:120::-;35961:16;:14;:16::i;:::-;37067:5:::1;37057:7;;:15;;;;;;;;;;;;;;;;;;37088:22;37097:12;:10;:12::i;:::-;37088:22;;;;;;:::i;:::-;;;;;;;;36998:120::o:0;33999:191::-;34073:16;34092:6;;;;;;;;;;;34073:25;;34118:8;34109:6;;:17;;;;;;;;;;;;;;;;;;34173:8;34142:40;;34163:8;34142:40;;;;;;;;;;;;34062:128;33999:191;:::o;36739:118::-;35702:19;:17;:19::i;:::-;36809:4:::1;36799:7;;:14;;;;;;;;;;;;;;;;;;36829:20;36836:12;:10;:12::i;:::-;36829:20;;;;;;:::i;:::-;;;;;;;;36739:118::o:0;62726:318::-;62854:1;62834:22;;:8;:22;;;62830:93;;62902:8;62880:31;;;;;;;;;;;:::i;:::-;;;;;;;;62830:93;62971:8;62933:18;:25;62952:5;62933:25;;;;;;;;;;;;;;;:35;62959:8;62933:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;63017:8;62995:41;;63010:5;62995:41;;;63027:8;62995:41;;;;;;:::i;:::-;;;;;;;;62726:318;;;:::o;64084:799::-;64218:1;64201:2;:14;;;:18;64197:679;;;64256:2;64240:36;;;64277:12;:10;:12::i;:::-;64291:4;64297:7;64306:4;64240:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64236:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64571:1;64554:6;:13;:18;64550:300;;64626:2;64604:25;;;;;;;;;;;:::i;:::-;;;;;;;;64550:300;64800:6;64794:13;64785:6;64781:2;64777:15;64770:38;64236:629;64369:41;;;64359:51;;;:6;:51;;;;64355:132;;64464:2;64442:25;;;;;;;;;;;:::i;:::-;;;;;;;;64355:132;64312:190;64197:679;64084:799;;;;:::o;68165:609::-;68238:13;68264:22;68278:7;68264:13;:22::i;:::-;;68299:23;68325:10;:19;68336:7;68325:19;;;;;;;;;;;68299:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68355:18;68376:10;:8;:10::i;:::-;68355:31;;68484:1;68468:4;68462:18;:23;68458:72;;68509:9;68502:16;;;;;;68458:72;68657:1;68637:9;68631:23;:27;68627:97;;;68696:4;68702:9;68682:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68675:37;;;;;;68627:97;68743:23;68758:7;68743:14;:23::i;:::-;68736:30;;;;68165:609;;;;:::o;48309:305::-;48411:4;48463:25;48448:40;;;:11;:40;;;;:105;;;;48520:33;48505:48;;;:11;:48;;;;48448:105;:158;;;;48570:36;48594:11;48570:23;:36::i;:::-;48448:158;48428:178;;48309:305;;;:::o;52580:117::-;52646:7;52673;:16;52681:7;52673:16;;;;;;;;;;;;;;;;;;;;;52666:23;;52580:117;;;:::o;61829:678::-;61991:9;:31;;;;62020:1;62004:18;;:4;:18;;;;61991:31;61987:471;;;62039:13;62055:22;62069:7;62055:13;:22::i;:::-;62039:38;;62224:1;62208:18;;:4;:18;;;;:35;;;;;62239:4;62230:13;;:5;:13;;;;62208:35;:69;;;;;62248:29;62265:5;62272:4;62248:16;:29::i;:::-;62247:30;62208:69;62204:144;;;62327:4;62305:27;;;;;;;;;;;:::i;:::-;;;;;;;;62204:144;62368:9;62364:83;;;62423:7;62419:2;62403:28;;62412:5;62403:28;;;;;;;;;;;;62364:83;62024:434;61987:471;62497:2;62470:15;:24;62486:7;62470:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;61829:678;;;;:::o;66859:210::-;67002:7;35702:19;:17;:19::i;:::-;67029:32:::1;67043:2;67047:7;67056:4;67029:13;:32::i;:::-;67022:39;;66859:210:::0;;;;;:::o;57967:185::-;58062:18;58068:2;58072:7;58062:5;:18::i;:::-;58091:53;58122:1;58126:2;58130:7;58139:4;58091:22;:53::i;:::-;57967:185;;;:::o;36465:130::-;36529:8;:6;:8::i;:::-;36524:64;;36561:15;;;;;;;;;;;;;;36524:64;36465:130::o;36256:132::-;36322:8;:6;:8::i;:::-;36318:63;;;36354:15;;;;;;;;;;;;;;36318:63;36256:132::o;69573:177::-;69625:13;69651:91;;;;;;;;;;;;;;;;;;;69573:177;:::o;49466:260::-;49530:13;49556:22;49570:7;49556:13;:22::i;:::-;;49591:21;49615:10;:8;:10::i;:::-;49591:34;;49667:1;49649:7;49643:21;:25;:75;;;;;;;;;;;;;;;;;49685:7;49694:18;:7;:16;:18::i;:::-;49671:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49643:75;49636:82;;;49466:260;;;:::o;40069:148::-;40145:4;40184:25;40169:40;;;:11;:40;;;;40162:47;;40069:148;;;:::o;55780:824::-;55866:7;55886:12;55901:17;55910:7;55901:8;:17::i;:::-;55886:32;;55997:1;55981:18;;:4;:18;;;55977:88;;56016:37;56033:4;56039;56045:7;56016:16;:37::i;:::-;55977:88;56128:1;56112:18;;:4;:18;;;56108:263;;56230:48;56247:1;56251:7;56268:1;56272:5;56230:8;:48::i;:::-;56343:1;56324:9;:15;56334:4;56324:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;56108:263;56401:1;56387:16;;:2;:16;;;56383:111;;56466:1;56449:9;:13;56459:2;56449:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;56383:111;56525:2;56506:7;:16;56514:7;56506:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56564:7;56560:2;56545:27;;56554:4;56545:27;;;;;;;;;;;;56592:4;56585:11;;;55780:824;;;;;:::o;56940:335::-;57022:1;57008:16;;:2;:16;;;57004:89;;57078:1;57048:33;;;;;;;;;;;:::i;:::-;;;;;;;;57004:89;57103:21;57127:32;57135:2;57139:7;57156:1;57127:7;:32::i;:::-;57103:56;;57199:1;57174:27;;:13;:27;;;57170:98;;57253:1;57225:31;;;;;;;;;;;:::i;:::-;;;;;;;;57170:98;56993:282;56940:335;;:::o;27465:718::-;27521:13;27572:14;27609:1;27589:17;27600:5;27589:10;:17::i;:::-;:21;27572:38;;27625:20;27659:6;27648:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27625:41;;27681:11;27810:6;27806:2;27802:15;27794:6;27790:28;27783:35;;27847:290;27854:4;27847:290;;;27879:5;;;;;;;;28021:10;28016:2;28009:5;28005:14;28000:32;27995:3;27987:46;28079:2;28070:11;;;;;;:::i;:::-;;;;;28113:1;28104:5;:10;27847:290;28100:21;27847:290;28158:6;28151:13;;;;;27465:718;;;:::o;53987:376::-;54100:38;54114:5;54121:7;54130;54100:13;:38::i;:::-;54095:261;;54176:1;54159:19;;:5;:19;;;54155:190;;54229:7;54206:31;;;;;;;;;;;:::i;:::-;;;;;;;;54155:190;54312:7;54321;54285:44;;;;;;;;;;;;:::i;:::-;;;;;;;;54095:261;53987:376;;;:::o;23869:948::-;23922:7;23942:14;23959:1;23942:18;;24009:8;24000:5;:17;23996:106;;24047:8;24038:17;;;;;;:::i;:::-;;;;;24084:2;24074:12;;;;23996:106;24129:8;24120:5;:17;24116:106;;24167:8;24158:17;;;;;;:::i;:::-;;;;;24204:2;24194:12;;;;24116:106;24249:8;24240:5;:17;24236:106;;24287:8;24278:17;;;;;;:::i;:::-;;;;;24324:2;24314:12;;;;24236:106;24369:7;24360:5;:16;24356:103;;24406:7;24397:16;;;;;;:::i;:::-;;;;;24442:1;24432:11;;;;24356:103;24486:7;24477:5;:16;24473:103;;24523:7;24514:16;;;;;;:::i;:::-;;;;;24559:1;24549:11;;;;24473:103;24603:7;24594:5;:16;24590:103;;24640:7;24631:16;;;;;;:::i;:::-;;;;;24676:1;24666:11;;;;24590:103;24720:7;24711:5;:16;24707:68;;24758:1;24748:11;;;;24707:68;24803:6;24796:13;;;23869:948;;;:::o;53267:276::-;53370:4;53426:1;53407:21;;:7;:21;;;;:128;;;;;53455:7;53446:16;;:5;:16;;;:52;;;;53466:32;53483:5;53490:7;53466:16;:32::i;:::-;53446:52;:88;;;;53527:7;53502:32;;:21;53515:7;53502:12;:21::i;:::-;:32;;;53446:88;53407:128;53387:148;;53267:276;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518: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:619::-;4860:6;4868;4876;4925:2;4913:9;4904:7;4900:23;4896:32;4893:119;;;4931:79;;:::i;:::-;4893:119;5051:1;5076:53;5121:7;5112:6;5101:9;5097:22;5076:53;:::i;:::-;5066:63;;5022:117;5178:2;5204:53;5249:7;5240:6;5229:9;5225:22;5204:53;:::i;:::-;5194:63;;5149:118;5306:2;5332:53;5377:7;5368:6;5357:9;5353:22;5332:53;:::i;:::-;5322:63;;5277:118;4783:619;;;;;:::o;5408:118::-;5495:24;5513:5;5495:24;:::i;:::-;5490:3;5483:37;5408:118;;:::o;5532:222::-;5625:4;5663:2;5652:9;5648:18;5640:26;;5676:71;5744:1;5733:9;5729:17;5720:6;5676:71;:::i;:::-;5532:222;;;;:::o;5760:329::-;5819:6;5868:2;5856:9;5847:7;5843:23;5839:32;5836:119;;;5874:79;;:::i;:::-;5836:119;5994:1;6019:53;6064:7;6055:6;6044:9;6040:22;6019:53;:::i;:::-;6009:63;;5965:117;5760:329;;;;:::o;6095:116::-;6165:21;6180:5;6165:21;:::i;:::-;6158:5;6155:32;6145:60;;6201:1;6198;6191:12;6145:60;6095:116;:::o;6217:133::-;6260:5;6298:6;6285:20;6276:29;;6314:30;6338:5;6314:30;:::i;:::-;6217:133;;;;:::o;6356:468::-;6421:6;6429;6478:2;6466:9;6457:7;6453:23;6449:32;6446:119;;;6484:79;;:::i;:::-;6446:119;6604:1;6629:53;6674:7;6665:6;6654:9;6650:22;6629:53;:::i;:::-;6619:63;;6575:117;6731:2;6757:50;6799:7;6790:6;6779:9;6775:22;6757:50;:::i;:::-;6747:60;;6702:115;6356:468;;;;;:::o;6830:117::-;6939:1;6936;6929:12;6953:117;7062:1;7059;7052:12;7076:180;7124:77;7121:1;7114:88;7221:4;7218:1;7211:15;7245:4;7242:1;7235:15;7262:281;7345:27;7367:4;7345:27;:::i;:::-;7337:6;7333:40;7475:6;7463:10;7460:22;7439:18;7427:10;7424:34;7421:62;7418:88;;;7486:18;;:::i;:::-;7418:88;7526:10;7522:2;7515:22;7305:238;7262:281;;:::o;7549:129::-;7583:6;7610:20;;:::i;:::-;7600:30;;7639:33;7667:4;7659:6;7639:33;:::i;:::-;7549:129;;;:::o;7684:307::-;7745:4;7835:18;7827:6;7824:30;7821:56;;;7857:18;;:::i;:::-;7821:56;7895:29;7917:6;7895:29;:::i;:::-;7887:37;;7979:4;7973;7969:15;7961:23;;7684:307;;;:::o;7997:148::-;8095:6;8090:3;8085;8072:30;8136:1;8127:6;8122:3;8118:16;8111:27;7997:148;;;:::o;8151:423::-;8228:5;8253:65;8269:48;8310:6;8269:48;:::i;:::-;8253:65;:::i;:::-;8244:74;;8341:6;8334:5;8327:21;8379:4;8372:5;8368:16;8417:3;8408:6;8403:3;8399:16;8396:25;8393:112;;;8424:79;;:::i;:::-;8393:112;8514:54;8561:6;8556:3;8551;8514:54;:::i;:::-;8234:340;8151:423;;;;;:::o;8593:338::-;8648:5;8697:3;8690:4;8682:6;8678:17;8674:27;8664:122;;8705:79;;:::i;:::-;8664:122;8822:6;8809:20;8847:78;8921:3;8913:6;8906:4;8898:6;8894:17;8847:78;:::i;:::-;8838:87;;8654:277;8593:338;;;;:::o;8937:943::-;9032:6;9040;9048;9056;9105:3;9093:9;9084:7;9080:23;9076:33;9073:120;;;9112:79;;:::i;:::-;9073:120;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;9487:2;9513:53;9558:7;9549:6;9538:9;9534:22;9513:53;:::i;:::-;9503:63;;9458:118;9643:2;9632:9;9628:18;9615:32;9674:18;9666:6;9663:30;9660:117;;;9696:79;;:::i;:::-;9660:117;9801:62;9855:7;9846:6;9835:9;9831:22;9801:62;:::i;:::-;9791:72;;9586:287;8937:943;;;;;;;:::o;9886:474::-;9954:6;9962;10011:2;9999:9;9990:7;9986:23;9982:32;9979:119;;;10017:79;;:::i;:::-;9979:119;10137:1;10162:53;10207:7;10198:6;10187:9;10183:22;10162:53;:::i;:::-;10152:63;;10108:117;10264:2;10290:53;10335:7;10326:6;10315:9;10311:22;10290:53;:::i;:::-;10280:63;;10235:118;9886:474;;;;;:::o;10366:180::-;10414:77;10411:1;10404:88;10511:4;10508:1;10501:15;10535:4;10532:1;10525:15;10552:320;10596:6;10633:1;10627:4;10623:12;10613:22;;10680:1;10674:4;10670:12;10701:18;10691:81;;10757:4;10749:6;10745:17;10735:27;;10691:81;10819:2;10811:6;10808:14;10788:18;10785:38;10782:84;;10838:18;;:::i;:::-;10782:84;10603:269;10552:320;;;:::o;10878:442::-;11027:4;11065:2;11054:9;11050:18;11042:26;;11078:71;11146:1;11135:9;11131:17;11122:6;11078:71;:::i;:::-;11159:72;11227:2;11216:9;11212:18;11203:6;11159:72;:::i;:::-;11241;11309:2;11298:9;11294:18;11285:6;11241:72;:::i;:::-;10878:442;;;;;;:::o;11326:180::-;11374:77;11371:1;11364:88;11471:4;11468:1;11461:15;11495:4;11492:1;11485:15;11512:191;11552:3;11571:20;11589:1;11571:20;:::i;:::-;11566:25;;11605:20;11623:1;11605:20;:::i;:::-;11600:25;;11648:1;11645;11641:9;11634:16;;11669:3;11666:1;11663:10;11660:36;;;11676:18;;:::i;:::-;11660:36;11512:191;;;;:::o;11709:221::-;11849:34;11845:1;11837:6;11833:14;11826:58;11918:4;11913:2;11905:6;11901:15;11894:29;11709:221;:::o;11936:366::-;12078:3;12099:67;12163:2;12158:3;12099:67;:::i;:::-;12092:74;;12175:93;12264:3;12175:93;:::i;:::-;12293:2;12288:3;12284:12;12277:19;;11936:366;;;:::o;12308:419::-;12474:4;12512:2;12501:9;12497:18;12489:26;;12561:9;12555:4;12551:20;12547:1;12536:9;12532:17;12525:47;12589:131;12715:4;12589:131;:::i;:::-;12581:139;;12308:419;;;:::o;12733:194::-;12773:4;12793:20;12811:1;12793:20;:::i;:::-;12788:25;;12827:20;12845:1;12827:20;:::i;:::-;12822:25;;12871:1;12868;12864:9;12856:17;;12895:1;12889:4;12886:11;12883:37;;;12900:18;;:::i;:::-;12883:37;12733:194;;;;:::o;12933:169::-;13073:21;13069:1;13061:6;13057:14;13050:45;12933:169;:::o;13108:366::-;13250:3;13271:67;13335:2;13330:3;13271:67;:::i;:::-;13264:74;;13347:93;13436:3;13347:93;:::i;:::-;13465:2;13460:3;13456:12;13449:19;;13108:366;;;:::o;13480:419::-;13646:4;13684:2;13673:9;13669:18;13661:26;;13733:9;13727:4;13723:20;13719:1;13708:9;13704:17;13697:47;13761:131;13887:4;13761:131;:::i;:::-;13753:139;;13480:419;;;:::o;13905:410::-;13945:7;13968:20;13986:1;13968:20;:::i;:::-;13963:25;;14002:20;14020:1;14002:20;:::i;:::-;13997:25;;14057:1;14054;14050:9;14079:30;14097:11;14079:30;:::i;:::-;14068:41;;14258:1;14249:7;14245:15;14242:1;14239:22;14219:1;14212:9;14192:83;14169:139;;14288:18;;:::i;:::-;14169:139;13953:362;13905:410;;;;:::o;14321:175::-;14461:27;14457:1;14449:6;14445:14;14438:51;14321:175;:::o;14502:366::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:419::-;15040:4;15078:2;15067:9;15063:18;15055:26;;15127:9;15121:4;15117:20;15113:1;15102:9;15098:17;15091:47;15155:131;15281:4;15155:131;:::i;:::-;15147:139;;14874:419;;;:::o;15299:233::-;15338:3;15361:24;15379:5;15361:24;:::i;:::-;15352:33;;15407:66;15400:5;15397:77;15394:103;;15477:18;;:::i;:::-;15394:103;15524:1;15517:5;15513:13;15506:20;;15299:233;;;:::o;15538:148::-;15640:11;15677:3;15662:18;;15538:148;;;;:::o;15692:390::-;15798:3;15826:39;15859:5;15826:39;:::i;:::-;15881:89;15963:6;15958:3;15881:89;:::i;:::-;15874:96;;15979:65;16037:6;16032:3;16025:4;16018:5;16014:16;15979:65;:::i;:::-;16069:6;16064:3;16060:16;16053:23;;15802:280;15692:390;;;;:::o;16088:155::-;16228:7;16224:1;16216:6;16212:14;16205:31;16088:155;:::o;16249:400::-;16409:3;16430:84;16512:1;16507:3;16430:84;:::i;:::-;16423:91;;16523:93;16612:3;16523:93;:::i;:::-;16641:1;16636:3;16632:11;16625:18;;16249:400;;;:::o;16655:541::-;16888:3;16910:95;17001:3;16992:6;16910:95;:::i;:::-;16903:102;;17022:148;17166:3;17022:148;:::i;:::-;17015:155;;17187:3;17180:10;;16655:541;;;;:::o;17202:181::-;17342:33;17338:1;17330:6;17326:14;17319:57;17202:181;:::o;17389:366::-;17531:3;17552:67;17616:2;17611:3;17552:67;:::i;:::-;17545:74;;17628:93;17717:3;17628:93;:::i;:::-;17746:2;17741:3;17737:12;17730:19;;17389:366;;;:::o;17761:419::-;17927:4;17965:2;17954:9;17950:18;17942:26;;18014:9;18008:4;18004:20;18000:1;17989:9;17985:17;17978:47;18042:131;18168:4;18042:131;:::i;:::-;18034:139;;17761:419;;;:::o;18186:98::-;18237:6;18271:5;18265:12;18255:22;;18186:98;;;:::o;18290:168::-;18373:11;18407:6;18402:3;18395:19;18447:4;18442:3;18438:14;18423:29;;18290:168;;;;:::o;18464:373::-;18550:3;18578:38;18610:5;18578:38;:::i;:::-;18632:70;18695:6;18690:3;18632:70;:::i;:::-;18625:77;;18711:65;18769:6;18764:3;18757:4;18750:5;18746:16;18711:65;:::i;:::-;18801:29;18823:6;18801:29;:::i;:::-;18796:3;18792:39;18785:46;;18554:283;18464:373;;;;:::o;18843:640::-;19038:4;19076:3;19065:9;19061:19;19053:27;;19090:71;19158:1;19147:9;19143:17;19134:6;19090:71;:::i;:::-;19171:72;19239:2;19228:9;19224:18;19215:6;19171:72;:::i;:::-;19253;19321:2;19310:9;19306:18;19297:6;19253:72;:::i;:::-;19372:9;19366:4;19362:20;19357:2;19346:9;19342:18;19335:48;19400:76;19471:4;19462:6;19400:76;:::i;:::-;19392:84;;18843:640;;;;;;;:::o;19489:141::-;19545:5;19576:6;19570:13;19561:22;;19592:32;19618:5;19592:32;:::i;:::-;19489:141;;;;:::o;19636:349::-;19705:6;19754:2;19742:9;19733:7;19729:23;19725:32;19722:119;;;19760:79;;:::i;:::-;19722:119;19880:1;19905:63;19960:7;19951:6;19940:9;19936:22;19905:63;:::i;:::-;19895:73;;19851:127;19636:349;;;;:::o;19991:435::-;20171:3;20193:95;20284:3;20275:6;20193:95;:::i;:::-;20186:102;;20305:95;20396:3;20387:6;20305:95;:::i;:::-;20298:102;;20417:3;20410:10;;19991:435;;;;;:::o;20432:180::-;20480:77;20477:1;20470:88;20577:4;20574:1;20567:15;20601:4;20598:1;20591:15;20618:332;20739:4;20777:2;20766:9;20762:18;20754:26;;20790:71;20858:1;20847:9;20843:17;20834:6;20790:71;:::i;:::-;20871:72;20939:2;20928:9;20924:18;20915:6;20871:72;:::i;:::-;20618:332;;;;;:::o

Swarm Source

ipfs://bb0eba60f543222dad472297ba0dcb315d2fffae64d6ac9c14ba054bcd0aecd9
Loading