ETH Price: $2,965.57 (-2.81%)
Gas: 3 Gwei

Token

Pudgy Pudgies (PP)
 

Overview

Max Total Supply

888 PP

Holders

310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
falastino.eth
Balance
1 PP
0x1648f26a409E24267EBD32172d1b306140BA1Af8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PudgyPudgies

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SignedMath.sol


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

pragma solidity ^0.8.0;

/**
 * @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 v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // 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.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(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) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/PudgyPudgies.sol

pragma solidity ^0.8.21;

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

    uint256 public maxSupply = 888;
    uint256 public maxMintPerWallet = 5;
    uint256 public mintPrice = .002 ether;
    bool public paused = true;

    mapping(address => uint256) public mintPerWallet;
    string private uriSuffix = ".json";
    string public baseURI;

    constructor(string memory initBaseURI) ERC721A("Pudgy Pudgies", "PP") {
        baseURI = initBaseURI;
    }

    function mint(uint256 amount) external payable {
        require(!paused, "Sale is not active yet");
        require(
            (totalSupply() + amount) <= maxSupply,
            "Beyond max public supply"
        );
        require(
            (mintPerWallet[msg.sender] + amount) <= maxMintPerWallet,
            "Max mint per wallet exceeded"
        );
        require(msg.value >= (mintPrice * amount), "Wrong mint price");

        mintPerWallet[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function airdrop(address receiver, uint256 amount) external onlyOwner {
        _safeMint(receiver, amount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), uriSuffix));
    }

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

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function togglePaused() external onlyOwner {
        paused = !paused;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        require(_maxSupply < maxSupply, "Supply cannot be increased");
        maxSupply = _maxSupply;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxMintPerWallet(uint256 _maxMintPerWallet) external onlyOwner {
        maxMintPerWallet = _maxMintPerWallet;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transaction failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103786009556005600a5566071afd498d0000600b556001600c5f6101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90816200007a9190620004c3565b5034801562000087575f80fd5b5060405162003665380380620036658339818101604052810190620000ad9190620006ff565b6040518060400160405280600d81526020017f50756467792050756467696573000000000000000000000000000000000000008152506040518060400160405280600281526020017f505000000000000000000000000000000000000000000000000000000000000081525081600290816200012a9190620004c3565b5080600390816200013c9190620004c3565b506200014d6200018d60201b60201c565b5f81905550505062000174620001686200019560201b60201c565b6200019c60201b60201c565b80600f9081620001859190620004c3565b50506200074e565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002db57607f821691505b602082108103620002f157620002f062000296565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000318565b62000361868362000318565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003ab620003a56200039f8462000379565b62000382565b62000379565b9050919050565b5f819050919050565b620003c6836200038b565b620003de620003d582620003b2565b84845462000324565b825550505050565b5f90565b620003f4620003e6565b62000401818484620003bb565b505050565b5b8181101562000428576200041c5f82620003ea565b60018101905062000407565b5050565b601f82111562000477576200044181620002f7565b6200044c8462000309565b810160208510156200045c578190505b620004746200046b8562000309565b83018262000406565b50505b505050565b5f82821c905092915050565b5f620004995f19846008026200047c565b1980831691505092915050565b5f620004b3838362000488565b9150826002028217905092915050565b620004ce826200025f565b67ffffffffffffffff811115620004ea57620004e962000269565b5b620004f68254620002c3565b620005038282856200042c565b5f60209050601f83116001811462000539575f841562000524578287015190505b620005308582620004a6565b8655506200059f565b601f1984166200054986620002f7565b5f5b8281101562000572578489015182556001820191506020850194506020810190506200054b565b868310156200059257848901516200058e601f89168262000488565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b620005db82620005c0565b810181811067ffffffffffffffff82111715620005fd57620005fc62000269565b5b80604052505050565b5f62000611620005a7565b90506200061f8282620005d0565b919050565b5f67ffffffffffffffff82111562000641576200064062000269565b5b6200064c82620005c0565b9050602081019050919050565b5f5b83811015620006785780820151818401526020810190506200065b565b5f8484015250505050565b5f62000699620006938462000624565b62000606565b905082815260208101848484011115620006b857620006b7620005bc565b5b620006c584828562000659565b509392505050565b5f82601f830112620006e457620006e3620005b8565b5b8151620006f684826020860162000683565b91505092915050565b5f60208284031215620007175762000716620005b0565b5b5f82015167ffffffffffffffff811115620007375762000736620005b4565b5b6200074584828501620006cd565b91505092915050565b612f09806200075c5f395ff3fe6080604052600436106101d7575f3560e01c80636f8b44b011610101578063afdf613411610094578063d5abeb0111610063578063d5abeb0114610629578063e985e9c514610653578063f2fde38b1461068f578063f4a0a528146106b7576101d7565b8063afdf61341461057f578063b228d925146105a7578063b88d4fde146105d1578063c87b56dd146105ed576101d7565b80638da5cb5b116100d05780638da5cb5b146104e757806395d89b4114610511578063a0712d681461053b578063a22cb46514610557576101d7565b80636f8b44b01461044557806370a082311461046d578063715018a6146104a95780638ba4cc3c146104bf576101d7565b806336566f06116101795780635c975abb116101485780635c975abb1461038b5780636352211e146103b55780636817c76c146103f15780636c0360eb1461041b576101d7565b806336566f061461031b5780633ccfd60b1461033157806342842e0e1461034757806355f804b314610363576101d7565b8063095ea7b3116101b5578063095ea7b31461027d57806313413cd21461029957806318160ddd146102d557806323b872dd146102ff576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190611f42565b6106df565b60405161020e9190611f87565b60405180910390f35b348015610222575f80fd5b5061022b610770565b604051610238919061202a565b60405180910390f35b34801561024c575f80fd5b506102676004803603810190610262919061207d565b610800565b60405161027491906120e7565b60405180910390f35b6102976004803603810190610292919061212a565b61087a565b005b3480156102a4575f80fd5b506102bf60048036038101906102ba9190612168565b6109b9565b6040516102cc91906121a2565b60405180910390f35b3480156102e0575f80fd5b506102e96109ce565b6040516102f691906121a2565b60405180910390f35b610319600480360381019061031491906121bb565b6109e3565b005b348015610326575f80fd5b5061032f610cf1565b005b34801561033c575f80fd5b50610345610d23565b005b610361600480360381019061035c91906121bb565b610dd6565b005b34801561036e575f80fd5b5061038960048036038101906103849190612337565b610df5565b005b348015610396575f80fd5b5061039f610e10565b6040516103ac9190611f87565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d6919061207d565b610e22565b6040516103e891906120e7565b60405180910390f35b3480156103fc575f80fd5b50610405610e33565b60405161041291906121a2565b60405180910390f35b348015610426575f80fd5b5061042f610e39565b60405161043c919061202a565b60405180910390f35b348015610450575f80fd5b5061046b6004803603810190610466919061207d565b610ec5565b005b348015610478575f80fd5b50610493600480360381019061048e9190612168565b610f1b565b6040516104a091906121a2565b60405180910390f35b3480156104b4575f80fd5b506104bd610fd0565b005b3480156104ca575f80fd5b506104e560048036038101906104e0919061212a565b610fe3565b005b3480156104f2575f80fd5b506104fb610ff9565b60405161050891906120e7565b60405180910390f35b34801561051c575f80fd5b50610525611021565b604051610532919061202a565b60405180910390f35b6105556004803603810190610550919061207d565b6110b1565b005b348015610562575f80fd5b5061057d600480360381019061057891906123a8565b611294565b005b34801561058a575f80fd5b506105a560048036038101906105a0919061207d565b61139a565b005b3480156105b2575f80fd5b506105bb6113ac565b6040516105c891906121a2565b60405180910390f35b6105eb60048036038101906105e69190612484565b6113b2565b005b3480156105f8575f80fd5b50610613600480360381019061060e919061207d565b611424565b604051610620919061202a565b60405180910390f35b348015610634575f80fd5b5061063d6114a3565b60405161064a91906121a2565b60405180910390f35b34801561065e575f80fd5b5061067960048036038101906106749190612504565b6114a9565b6040516106869190611f87565b60405180910390f35b34801561069a575f80fd5b506106b560048036038101906106b09190612168565b611537565b005b3480156106c2575f80fd5b506106dd60048036038101906106d8919061207d565b6115b9565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107695750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077f9061256f565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab9061256f565b80156107f65780601f106107cd576101008083540402835291602001916107f6565b820191905f5260205f20905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b5f61080a826115cb565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61088482610e22565b90508073ffffffffffffffffffffffffffffffffffffffff166108a5611625565b73ffffffffffffffffffffffffffffffffffffffff1614610908576108d1816108cc611625565b6114a9565b610907576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d602052805f5260405f205f915090505481565b5f6109d761162c565b6001545f540303905090565b5f6109ed82611634565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a5f846116f7565b91509150610a758187610a70611625565b61171a565b610ac157610a8a86610a85611625565b6114a9565b610ac0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b26576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b33868686600161175d565b8015610b3d575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c0585610be1888887611763565b7c02000000000000000000000000000000000000000000000000000000001761178a565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c81575f6001850190505f60045f8381526020019081526020015f205403610c7f575f548114610c7e578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce986868660016117b4565b505050505050565b610cf96117ba565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b610d2b6117ba565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d50906125cc565b5f6040518083038185875af1925050503d805f8114610d8a576040519150601f19603f3d011682016040523d82523d5f602084013e610d8f565b606091505b5050905080610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca9061262a565b60405180910390fd5b50565b610df083838360405180602001604052805f8152506113b2565b505050565b610dfd6117ba565b80600f9081610e0c91906127e5565b5050565b600c5f9054906101000a900460ff1681565b5f610e2c82611634565b9050919050565b600b5481565b600f8054610e469061256f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e729061256f565b8015610ebd5780601f10610e9457610100808354040283529160200191610ebd565b820191905f5260205f20905b815481529060010190602001808311610ea057829003601f168201915b505050505081565b610ecd6117ba565b6009548110610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f08906128fe565b60405180910390fd5b8060098190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fd86117ba565b610fe15f611838565b565b610feb6117ba565b610ff582826118fb565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110309061256f565b80601f016020809104026020016040519081016040528092919081815260200182805461105c9061256f565b80156110a75780601f1061107e576101008083540402835291602001916110a7565b820191905f5260205f20905b81548152906001019060200180831161108a57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff1615611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612966565b60405180910390fd5b6009548161110c6109ce565b61111691906129b1565b1115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90612a2e565b60405180910390fd5b600a5481600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111a391906129b1565b11156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90612a96565b60405180910390fd5b80600b546111f29190612ab4565b341015611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90612b3f565b60405180910390fd5b80600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461128091906129b1565b9250508190555061129133826118fb565b50565b8060075f6112a0611625565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611349611625565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138e9190611f87565b60405180910390a35050565b6113a26117ba565b80600a8190555050565b600a5481565b6113bd8484846109e3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461141e576113e784848484611918565b61141d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061142f826115cb565b61146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590612bcd565b60405180910390fd5b600f61147983611a63565b600e60405160200161148d93929190612ca5565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61153f6117ba565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490612d45565b60405180910390fd5b6115b681611838565b50565b6115c16117ba565b80600b8190555050565b5f816115d561162c565b111580156115e357505f5482105b801561161e57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061164261162c565b116116c0575f548110156116bf575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036116bd575b5f81036116b35760045f836001900393508381526020019081526020015f2054905061168c565b80925050506116f2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611779868684611b2d565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117c2611b35565b73ffffffffffffffffffffffffffffffffffffffff166117e0610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90612dad565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611914828260405180602001604052805f815250611b3c565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261193d611625565b8786866040518563ffffffff1660e01b815260040161195f9493929190612e1d565b6020604051808303815f875af192505050801561199a57506040513d601f19601f820116820180604052508101906119979190612e7b565b60015b611a10573d805f81146119c8576040519150601f19603f3d011682016040523d82523d5f602084013e6119cd565b606091505b505f815103611a08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611a7184611bd3565b0190505f8167ffffffffffffffff811115611a8f57611a8e612213565b5b6040519080825280601f01601f191660200182016040528015611ac15781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b22578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b1757611b16612ea6565b5b0494505f8503611ace575b819350505050919050565b5f9392505050565b5f33905090565b611b468383611d24565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611bce575f805490505f83820390505b611b825f868380600101945086611918565b611bb8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b7057815f5414611bcb575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c2f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c2557611c24612ea6565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c6c576d04ee2d6d415b85acef81000000008381611c6257611c61612ea6565b5b0492506020810190505b662386f26fc100008310611c9b57662386f26fc100008381611c9157611c90612ea6565b5b0492506010810190505b6305f5e1008310611cc4576305f5e1008381611cba57611cb9612ea6565b5b0492506008810190505b6127108310611ce9576127108381611cdf57611cde612ea6565b5b0492506004810190505b60648310611d0c5760648381611d0257611d01612ea6565b5b0492506002810190505b600a8310611d1b576001810190505b80915050919050565b5f805490505f8203611d62576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6e5f84838561175d565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611de083611dd15f865f611763565b611dda85611ecd565b1761178a565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611e7a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611e41565b505f8203611eb4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611ec85f8483856117b4565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f2181611eed565b8114611f2b575f80fd5b50565b5f81359050611f3c81611f18565b92915050565b5f60208284031215611f5757611f56611ee5565b5b5f611f6484828501611f2e565b91505092915050565b5f8115159050919050565b611f8181611f6d565b82525050565b5f602082019050611f9a5f830184611f78565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611fd7578082015181840152602081019050611fbc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611ffc82611fa0565b6120068185611faa565b9350612016818560208601611fba565b61201f81611fe2565b840191505092915050565b5f6020820190508181035f8301526120428184611ff2565b905092915050565b5f819050919050565b61205c8161204a565b8114612066575f80fd5b50565b5f8135905061207781612053565b92915050565b5f6020828403121561209257612091611ee5565b5b5f61209f84828501612069565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120d1826120a8565b9050919050565b6120e1816120c7565b82525050565b5f6020820190506120fa5f8301846120d8565b92915050565b612109816120c7565b8114612113575f80fd5b50565b5f8135905061212481612100565b92915050565b5f80604083850312156121405761213f611ee5565b5b5f61214d85828601612116565b925050602061215e85828601612069565b9150509250929050565b5f6020828403121561217d5761217c611ee5565b5b5f61218a84828501612116565b91505092915050565b61219c8161204a565b82525050565b5f6020820190506121b55f830184612193565b92915050565b5f805f606084860312156121d2576121d1611ee5565b5b5f6121df86828701612116565b93505060206121f086828701612116565b925050604061220186828701612069565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61224982611fe2565b810181811067ffffffffffffffff8211171561226857612267612213565b5b80604052505050565b5f61227a611edc565b90506122868282612240565b919050565b5f67ffffffffffffffff8211156122a5576122a4612213565b5b6122ae82611fe2565b9050602081019050919050565b828183375f83830152505050565b5f6122db6122d68461228b565b612271565b9050828152602081018484840111156122f7576122f661220f565b5b6123028482856122bb565b509392505050565b5f82601f83011261231e5761231d61220b565b5b813561232e8482602086016122c9565b91505092915050565b5f6020828403121561234c5761234b611ee5565b5b5f82013567ffffffffffffffff81111561236957612368611ee9565b5b6123758482850161230a565b91505092915050565b61238781611f6d565b8114612391575f80fd5b50565b5f813590506123a28161237e565b92915050565b5f80604083850312156123be576123bd611ee5565b5b5f6123cb85828601612116565b92505060206123dc85828601612394565b9150509250929050565b5f67ffffffffffffffff821115612400576123ff612213565b5b61240982611fe2565b9050602081019050919050565b5f612428612423846123e6565b612271565b9050828152602081018484840111156124445761244361220f565b5b61244f8482856122bb565b509392505050565b5f82601f83011261246b5761246a61220b565b5b813561247b848260208601612416565b91505092915050565b5f805f806080858703121561249c5761249b611ee5565b5b5f6124a987828801612116565b94505060206124ba87828801612116565b93505060406124cb87828801612069565b925050606085013567ffffffffffffffff8111156124ec576124eb611ee9565b5b6124f887828801612457565b91505092959194509250565b5f806040838503121561251a57612519611ee5565b5b5f61252785828601612116565b925050602061253885828601612116565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061258657607f821691505b60208210810361259957612598612542565b5b50919050565b5f81905092915050565b50565b5f6125b75f8361259f565b91506125c2826125a9565b5f82019050919050565b5f6125d6826125ac565b9150819050919050565b7f5472616e73616374696f6e206661696c656400000000000000000000000000005f82015250565b5f612614601283611faa565b915061261f826125e0565b602082019050919050565b5f6020820190508181035f83015261264181612608565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026126a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612669565b6126ae8683612669565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6126e96126e46126df8461204a565b6126c6565b61204a565b9050919050565b5f819050919050565b612702836126cf565b61271661270e826126f0565b848454612675565b825550505050565b5f90565b61272a61271e565b6127358184846126f9565b505050565b5b818110156127585761274d5f82612722565b60018101905061273b565b5050565b601f82111561279d5761276e81612648565b6127778461265a565b81016020851015612786578190505b61279a6127928561265a565b83018261273a565b50505b505050565b5f82821c905092915050565b5f6127bd5f19846008026127a2565b1980831691505092915050565b5f6127d583836127ae565b9150826002028217905092915050565b6127ee82611fa0565b67ffffffffffffffff81111561280757612806612213565b5b612811825461256f565b61281c82828561275c565b5f60209050601f83116001811461284d575f841561283b578287015190505b61284585826127ca565b8655506128ac565b601f19841661285b86612648565b5f5b828110156128825784890151825560018201915060208501945060208101905061285d565b8683101561289f578489015161289b601f8916826127ae565b8355505b6001600288020188555050505b505050505050565b7f537570706c792063616e6e6f7420626520696e637265617365640000000000005f82015250565b5f6128e8601a83611faa565b91506128f3826128b4565b602082019050919050565b5f6020820190508181035f830152612915816128dc565b9050919050565b7f53616c65206973206e6f742061637469766520796574000000000000000000005f82015250565b5f612950601683611faa565b915061295b8261291c565b602082019050919050565b5f6020820190508181035f83015261297d81612944565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6129bb8261204a565b91506129c68361204a565b92508282019050808211156129de576129dd612984565b5b92915050565b7f4265796f6e64206d6178207075626c696320737570706c7900000000000000005f82015250565b5f612a18601883611faa565b9150612a23826129e4565b602082019050919050565b5f6020820190508181035f830152612a4581612a0c565b9050919050565b7f4d6178206d696e74207065722077616c6c6574206578636565646564000000005f82015250565b5f612a80601c83611faa565b9150612a8b82612a4c565b602082019050919050565b5f6020820190508181035f830152612aad81612a74565b9050919050565b5f612abe8261204a565b9150612ac98361204a565b9250828202612ad78161204a565b91508282048414831517612aee57612aed612984565b5b5092915050565b7f57726f6e67206d696e74207072696365000000000000000000000000000000005f82015250565b5f612b29601083611faa565b9150612b3482612af5565b602082019050919050565b5f6020820190508181035f830152612b5681612b1d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f612bb7602f83611faa565b9150612bc282612b5d565b604082019050919050565b5f6020820190508181035f830152612be481612bab565b9050919050565b5f81905092915050565b5f8154612c018161256f565b612c0b8186612beb565b9450600182165f8114612c255760018114612c3a57612c6c565b60ff1983168652811515820286019350612c6c565b612c4385612648565b5f5b83811015612c6457815481890152600182019150602081019050612c45565b838801955050505b50505092915050565b5f612c7f82611fa0565b612c898185612beb565b9350612c99818560208601611fba565b80840191505092915050565b5f612cb08286612bf5565b9150612cbc8285612c75565b9150612cc88284612bf5565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612d2f602683611faa565b9150612d3a82612cd5565b604082019050919050565b5f6020820190508181035f830152612d5c81612d23565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d97602083611faa565b9150612da282612d63565b602082019050919050565b5f6020820190508181035f830152612dc481612d8b565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612def82612dcb565b612df98185612dd5565b9350612e09818560208601611fba565b612e1281611fe2565b840191505092915050565b5f608082019050612e305f8301876120d8565b612e3d60208301866120d8565b612e4a6040830185612193565b8181036060830152612e5c8184612de5565b905095945050505050565b5f81519050612e7581611f18565b92915050565b5f60208284031215612e9057612e8f611ee5565b5b5f612e9d84828501612e67565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea26469706673582212208ff5be1c6f4fa162b5f1eda5cb1df77332aa0f26013eb273ca7d54a4e2fc092764736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59725a683962313235355750334a4c58746a73666e31526a41514a386b4153344e386636476a6547566478502f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d7575f3560e01c80636f8b44b011610101578063afdf613411610094578063d5abeb0111610063578063d5abeb0114610629578063e985e9c514610653578063f2fde38b1461068f578063f4a0a528146106b7576101d7565b8063afdf61341461057f578063b228d925146105a7578063b88d4fde146105d1578063c87b56dd146105ed576101d7565b80638da5cb5b116100d05780638da5cb5b146104e757806395d89b4114610511578063a0712d681461053b578063a22cb46514610557576101d7565b80636f8b44b01461044557806370a082311461046d578063715018a6146104a95780638ba4cc3c146104bf576101d7565b806336566f06116101795780635c975abb116101485780635c975abb1461038b5780636352211e146103b55780636817c76c146103f15780636c0360eb1461041b576101d7565b806336566f061461031b5780633ccfd60b1461033157806342842e0e1461034757806355f804b314610363576101d7565b8063095ea7b3116101b5578063095ea7b31461027d57806313413cd21461029957806318160ddd146102d557806323b872dd146102ff576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190611f42565b6106df565b60405161020e9190611f87565b60405180910390f35b348015610222575f80fd5b5061022b610770565b604051610238919061202a565b60405180910390f35b34801561024c575f80fd5b506102676004803603810190610262919061207d565b610800565b60405161027491906120e7565b60405180910390f35b6102976004803603810190610292919061212a565b61087a565b005b3480156102a4575f80fd5b506102bf60048036038101906102ba9190612168565b6109b9565b6040516102cc91906121a2565b60405180910390f35b3480156102e0575f80fd5b506102e96109ce565b6040516102f691906121a2565b60405180910390f35b610319600480360381019061031491906121bb565b6109e3565b005b348015610326575f80fd5b5061032f610cf1565b005b34801561033c575f80fd5b50610345610d23565b005b610361600480360381019061035c91906121bb565b610dd6565b005b34801561036e575f80fd5b5061038960048036038101906103849190612337565b610df5565b005b348015610396575f80fd5b5061039f610e10565b6040516103ac9190611f87565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d6919061207d565b610e22565b6040516103e891906120e7565b60405180910390f35b3480156103fc575f80fd5b50610405610e33565b60405161041291906121a2565b60405180910390f35b348015610426575f80fd5b5061042f610e39565b60405161043c919061202a565b60405180910390f35b348015610450575f80fd5b5061046b6004803603810190610466919061207d565b610ec5565b005b348015610478575f80fd5b50610493600480360381019061048e9190612168565b610f1b565b6040516104a091906121a2565b60405180910390f35b3480156104b4575f80fd5b506104bd610fd0565b005b3480156104ca575f80fd5b506104e560048036038101906104e0919061212a565b610fe3565b005b3480156104f2575f80fd5b506104fb610ff9565b60405161050891906120e7565b60405180910390f35b34801561051c575f80fd5b50610525611021565b604051610532919061202a565b60405180910390f35b6105556004803603810190610550919061207d565b6110b1565b005b348015610562575f80fd5b5061057d600480360381019061057891906123a8565b611294565b005b34801561058a575f80fd5b506105a560048036038101906105a0919061207d565b61139a565b005b3480156105b2575f80fd5b506105bb6113ac565b6040516105c891906121a2565b60405180910390f35b6105eb60048036038101906105e69190612484565b6113b2565b005b3480156105f8575f80fd5b50610613600480360381019061060e919061207d565b611424565b604051610620919061202a565b60405180910390f35b348015610634575f80fd5b5061063d6114a3565b60405161064a91906121a2565b60405180910390f35b34801561065e575f80fd5b5061067960048036038101906106749190612504565b6114a9565b6040516106869190611f87565b60405180910390f35b34801561069a575f80fd5b506106b560048036038101906106b09190612168565b611537565b005b3480156106c2575f80fd5b506106dd60048036038101906106d8919061207d565b6115b9565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107695750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077f9061256f565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab9061256f565b80156107f65780601f106107cd576101008083540402835291602001916107f6565b820191905f5260205f20905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b5f61080a826115cb565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61088482610e22565b90508073ffffffffffffffffffffffffffffffffffffffff166108a5611625565b73ffffffffffffffffffffffffffffffffffffffff1614610908576108d1816108cc611625565b6114a9565b610907576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d602052805f5260405f205f915090505481565b5f6109d761162c565b6001545f540303905090565b5f6109ed82611634565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a5f846116f7565b91509150610a758187610a70611625565b61171a565b610ac157610a8a86610a85611625565b6114a9565b610ac0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b26576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b33868686600161175d565b8015610b3d575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c0585610be1888887611763565b7c02000000000000000000000000000000000000000000000000000000001761178a565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c81575f6001850190505f60045f8381526020019081526020015f205403610c7f575f548114610c7e578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce986868660016117b4565b505050505050565b610cf96117ba565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b610d2b6117ba565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d50906125cc565b5f6040518083038185875af1925050503d805f8114610d8a576040519150601f19603f3d011682016040523d82523d5f602084013e610d8f565b606091505b5050905080610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca9061262a565b60405180910390fd5b50565b610df083838360405180602001604052805f8152506113b2565b505050565b610dfd6117ba565b80600f9081610e0c91906127e5565b5050565b600c5f9054906101000a900460ff1681565b5f610e2c82611634565b9050919050565b600b5481565b600f8054610e469061256f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e729061256f565b8015610ebd5780601f10610e9457610100808354040283529160200191610ebd565b820191905f5260205f20905b815481529060010190602001808311610ea057829003601f168201915b505050505081565b610ecd6117ba565b6009548110610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f08906128fe565b60405180910390fd5b8060098190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fd86117ba565b610fe15f611838565b565b610feb6117ba565b610ff582826118fb565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110309061256f565b80601f016020809104026020016040519081016040528092919081815260200182805461105c9061256f565b80156110a75780601f1061107e576101008083540402835291602001916110a7565b820191905f5260205f20905b81548152906001019060200180831161108a57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff1615611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612966565b60405180910390fd5b6009548161110c6109ce565b61111691906129b1565b1115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90612a2e565b60405180910390fd5b600a5481600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111a391906129b1565b11156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90612a96565b60405180910390fd5b80600b546111f29190612ab4565b341015611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90612b3f565b60405180910390fd5b80600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461128091906129b1565b9250508190555061129133826118fb565b50565b8060075f6112a0611625565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611349611625565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138e9190611f87565b60405180910390a35050565b6113a26117ba565b80600a8190555050565b600a5481565b6113bd8484846109e3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461141e576113e784848484611918565b61141d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061142f826115cb565b61146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590612bcd565b60405180910390fd5b600f61147983611a63565b600e60405160200161148d93929190612ca5565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61153f6117ba565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490612d45565b60405180910390fd5b6115b681611838565b50565b6115c16117ba565b80600b8190555050565b5f816115d561162c565b111580156115e357505f5482105b801561161e57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061164261162c565b116116c0575f548110156116bf575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036116bd575b5f81036116b35760045f836001900393508381526020019081526020015f2054905061168c565b80925050506116f2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611779868684611b2d565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117c2611b35565b73ffffffffffffffffffffffffffffffffffffffff166117e0610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90612dad565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611914828260405180602001604052805f815250611b3c565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261193d611625565b8786866040518563ffffffff1660e01b815260040161195f9493929190612e1d565b6020604051808303815f875af192505050801561199a57506040513d601f19601f820116820180604052508101906119979190612e7b565b60015b611a10573d805f81146119c8576040519150601f19603f3d011682016040523d82523d5f602084013e6119cd565b606091505b505f815103611a08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611a7184611bd3565b0190505f8167ffffffffffffffff811115611a8f57611a8e612213565b5b6040519080825280601f01601f191660200182016040528015611ac15781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b22578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b1757611b16612ea6565b5b0494505f8503611ace575b819350505050919050565b5f9392505050565b5f33905090565b611b468383611d24565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611bce575f805490505f83820390505b611b825f868380600101945086611918565b611bb8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b7057815f5414611bcb575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c2f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c2557611c24612ea6565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c6c576d04ee2d6d415b85acef81000000008381611c6257611c61612ea6565b5b0492506020810190505b662386f26fc100008310611c9b57662386f26fc100008381611c9157611c90612ea6565b5b0492506010810190505b6305f5e1008310611cc4576305f5e1008381611cba57611cb9612ea6565b5b0492506008810190505b6127108310611ce9576127108381611cdf57611cde612ea6565b5b0492506004810190505b60648310611d0c5760648381611d0257611d01612ea6565b5b0492506002810190505b600a8310611d1b576001810190505b80915050919050565b5f805490505f8203611d62576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6e5f84838561175d565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611de083611dd15f865f611763565b611dda85611ecd565b1761178a565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611e7a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611e41565b505f8203611eb4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611ec85f8483856117b4565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f2181611eed565b8114611f2b575f80fd5b50565b5f81359050611f3c81611f18565b92915050565b5f60208284031215611f5757611f56611ee5565b5b5f611f6484828501611f2e565b91505092915050565b5f8115159050919050565b611f8181611f6d565b82525050565b5f602082019050611f9a5f830184611f78565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611fd7578082015181840152602081019050611fbc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611ffc82611fa0565b6120068185611faa565b9350612016818560208601611fba565b61201f81611fe2565b840191505092915050565b5f6020820190508181035f8301526120428184611ff2565b905092915050565b5f819050919050565b61205c8161204a565b8114612066575f80fd5b50565b5f8135905061207781612053565b92915050565b5f6020828403121561209257612091611ee5565b5b5f61209f84828501612069565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120d1826120a8565b9050919050565b6120e1816120c7565b82525050565b5f6020820190506120fa5f8301846120d8565b92915050565b612109816120c7565b8114612113575f80fd5b50565b5f8135905061212481612100565b92915050565b5f80604083850312156121405761213f611ee5565b5b5f61214d85828601612116565b925050602061215e85828601612069565b9150509250929050565b5f6020828403121561217d5761217c611ee5565b5b5f61218a84828501612116565b91505092915050565b61219c8161204a565b82525050565b5f6020820190506121b55f830184612193565b92915050565b5f805f606084860312156121d2576121d1611ee5565b5b5f6121df86828701612116565b93505060206121f086828701612116565b925050604061220186828701612069565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61224982611fe2565b810181811067ffffffffffffffff8211171561226857612267612213565b5b80604052505050565b5f61227a611edc565b90506122868282612240565b919050565b5f67ffffffffffffffff8211156122a5576122a4612213565b5b6122ae82611fe2565b9050602081019050919050565b828183375f83830152505050565b5f6122db6122d68461228b565b612271565b9050828152602081018484840111156122f7576122f661220f565b5b6123028482856122bb565b509392505050565b5f82601f83011261231e5761231d61220b565b5b813561232e8482602086016122c9565b91505092915050565b5f6020828403121561234c5761234b611ee5565b5b5f82013567ffffffffffffffff81111561236957612368611ee9565b5b6123758482850161230a565b91505092915050565b61238781611f6d565b8114612391575f80fd5b50565b5f813590506123a28161237e565b92915050565b5f80604083850312156123be576123bd611ee5565b5b5f6123cb85828601612116565b92505060206123dc85828601612394565b9150509250929050565b5f67ffffffffffffffff821115612400576123ff612213565b5b61240982611fe2565b9050602081019050919050565b5f612428612423846123e6565b612271565b9050828152602081018484840111156124445761244361220f565b5b61244f8482856122bb565b509392505050565b5f82601f83011261246b5761246a61220b565b5b813561247b848260208601612416565b91505092915050565b5f805f806080858703121561249c5761249b611ee5565b5b5f6124a987828801612116565b94505060206124ba87828801612116565b93505060406124cb87828801612069565b925050606085013567ffffffffffffffff8111156124ec576124eb611ee9565b5b6124f887828801612457565b91505092959194509250565b5f806040838503121561251a57612519611ee5565b5b5f61252785828601612116565b925050602061253885828601612116565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061258657607f821691505b60208210810361259957612598612542565b5b50919050565b5f81905092915050565b50565b5f6125b75f8361259f565b91506125c2826125a9565b5f82019050919050565b5f6125d6826125ac565b9150819050919050565b7f5472616e73616374696f6e206661696c656400000000000000000000000000005f82015250565b5f612614601283611faa565b915061261f826125e0565b602082019050919050565b5f6020820190508181035f83015261264181612608565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026126a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612669565b6126ae8683612669565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6126e96126e46126df8461204a565b6126c6565b61204a565b9050919050565b5f819050919050565b612702836126cf565b61271661270e826126f0565b848454612675565b825550505050565b5f90565b61272a61271e565b6127358184846126f9565b505050565b5b818110156127585761274d5f82612722565b60018101905061273b565b5050565b601f82111561279d5761276e81612648565b6127778461265a565b81016020851015612786578190505b61279a6127928561265a565b83018261273a565b50505b505050565b5f82821c905092915050565b5f6127bd5f19846008026127a2565b1980831691505092915050565b5f6127d583836127ae565b9150826002028217905092915050565b6127ee82611fa0565b67ffffffffffffffff81111561280757612806612213565b5b612811825461256f565b61281c82828561275c565b5f60209050601f83116001811461284d575f841561283b578287015190505b61284585826127ca565b8655506128ac565b601f19841661285b86612648565b5f5b828110156128825784890151825560018201915060208501945060208101905061285d565b8683101561289f578489015161289b601f8916826127ae565b8355505b6001600288020188555050505b505050505050565b7f537570706c792063616e6e6f7420626520696e637265617365640000000000005f82015250565b5f6128e8601a83611faa565b91506128f3826128b4565b602082019050919050565b5f6020820190508181035f830152612915816128dc565b9050919050565b7f53616c65206973206e6f742061637469766520796574000000000000000000005f82015250565b5f612950601683611faa565b915061295b8261291c565b602082019050919050565b5f6020820190508181035f83015261297d81612944565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6129bb8261204a565b91506129c68361204a565b92508282019050808211156129de576129dd612984565b5b92915050565b7f4265796f6e64206d6178207075626c696320737570706c7900000000000000005f82015250565b5f612a18601883611faa565b9150612a23826129e4565b602082019050919050565b5f6020820190508181035f830152612a4581612a0c565b9050919050565b7f4d6178206d696e74207065722077616c6c6574206578636565646564000000005f82015250565b5f612a80601c83611faa565b9150612a8b82612a4c565b602082019050919050565b5f6020820190508181035f830152612aad81612a74565b9050919050565b5f612abe8261204a565b9150612ac98361204a565b9250828202612ad78161204a565b91508282048414831517612aee57612aed612984565b5b5092915050565b7f57726f6e67206d696e74207072696365000000000000000000000000000000005f82015250565b5f612b29601083611faa565b9150612b3482612af5565b602082019050919050565b5f6020820190508181035f830152612b5681612b1d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f612bb7602f83611faa565b9150612bc282612b5d565b604082019050919050565b5f6020820190508181035f830152612be481612bab565b9050919050565b5f81905092915050565b5f8154612c018161256f565b612c0b8186612beb565b9450600182165f8114612c255760018114612c3a57612c6c565b60ff1983168652811515820286019350612c6c565b612c4385612648565b5f5b83811015612c6457815481890152600182019150602081019050612c45565b838801955050505b50505092915050565b5f612c7f82611fa0565b612c898185612beb565b9350612c99818560208601611fba565b80840191505092915050565b5f612cb08286612bf5565b9150612cbc8285612c75565b9150612cc88284612bf5565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612d2f602683611faa565b9150612d3a82612cd5565b604082019050919050565b5f6020820190508181035f830152612d5c81612d23565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d97602083611faa565b9150612da282612d63565b602082019050919050565b5f6020820190508181035f830152612dc481612d8b565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612def82612dcb565b612df98185612dd5565b9350612e09818560208601611fba565b612e1281611fe2565b840191505092915050565b5f608082019050612e305f8301876120d8565b612e3d60208301866120d8565b612e4a6040830185612193565b8181036060830152612e5c8184612de5565b905095945050505050565b5f81519050612e7581611f18565b92915050565b5f60208284031215612e9057612e8f611ee5565b5b5f612e9d84828501612e67565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea26469706673582212208ff5be1c6f4fa162b5f1eda5cb1df77332aa0f26013eb273ca7d54a4e2fc092764736f6c63430008150033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59725a683962313235355750334a4c58746a73666e31526a41514a386b4153344e386636476a6547566478502f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmYrZh9b1255WP3JLXtjsfn1RjAQJ8kAS4N8f6GjeGVdxP/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d59725a683962313235355750334a4c58746a73666e3152
Arg [3] : 6a41514a386b4153344e386636476a6547566478502f00000000000000000000


Deployed Bytecode Sourcemap

72443:2572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39345:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40247:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46738:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46171:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72683:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35998:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50377:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74288:78;;;;;;;;;;;;;:::i;:::-;;74804:208;;;;;;;;;;;;;:::i;:::-;;53298:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74180:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72649:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41640:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72605:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72779:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74374:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37182:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20124:103;;;;;;;;;;;;;:::i;:::-;;73471:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19483:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40423:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72927:536;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47296:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74666:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72563:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54089:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73595:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72526:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47687:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20382:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74556:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39345:639;39430:4;39769:10;39754:25;;:11;:25;;;;:102;;;;39846:10;39831:25;;:11;:25;;;;39754:102;:179;;;;39923:10;39908:25;;:11;:25;;;;39754:179;39734:199;;39345:639;;;:::o;40247:100::-;40301:13;40334:5;40327:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40247:100;:::o;46738:218::-;46814:7;46839:16;46847:7;46839;:16::i;:::-;46834:64;;46864:34;;;;;;;;;;;;;;46834:64;46918:15;:24;46934:7;46918:24;;;;;;;;;;;:30;;;;;;;;;;;;46911:37;;46738:218;;;:::o;46171:408::-;46260:13;46276:16;46284:7;46276;:16::i;:::-;46260:32;;46332:5;46309:28;;:19;:17;:19::i;:::-;:28;;;46305:175;;46357:44;46374:5;46381:19;:17;:19::i;:::-;46357:16;:44::i;:::-;46352:128;;46429:35;;;;;;;;;;;;;;46352:128;46305:175;46525:2;46492:15;:24;46508:7;46492:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46563:7;46559:2;46543:28;;46552:5;46543:28;;;;;;;;;;;;46249:330;46171:408;;:::o;72683:48::-;;;;;;;;;;;;;;;;;:::o;35998:323::-;36059:7;36287:15;:13;:15::i;:::-;36272:12;;36256:13;;:28;:46;36249:53;;35998:323;:::o;50377:2825::-;50519:27;50549;50568:7;50549:18;:27::i;:::-;50519:57;;50634:4;50593:45;;50609:19;50593:45;;;50589:86;;50647:28;;;;;;;;;;;;;;50589:86;50689:27;50718:23;50745:35;50772:7;50745:26;:35::i;:::-;50688:92;;;;50880:68;50905:15;50922:4;50928:19;:17;:19::i;:::-;50880:24;:68::i;:::-;50875:180;;50968:43;50985:4;50991:19;:17;:19::i;:::-;50968:16;:43::i;:::-;50963:92;;51020:35;;;;;;;;;;;;;;50963:92;50875:180;51086:1;51072:16;;:2;:16;;;51068:52;;51097:23;;;;;;;;;;;;;;51068:52;51133:43;51155:4;51161:2;51165:7;51174:1;51133:21;:43::i;:::-;51269:15;51266:160;;;51409:1;51388:19;51381:30;51266:160;51806:18;:24;51825:4;51806:24;;;;;;;;;;;;;;;;51804:26;;;;;;;;;;;;51875:18;:22;51894:2;51875:22;;;;;;;;;;;;;;;;51873:24;;;;;;;;;;;52197:146;52234:2;52283:45;52298:4;52304:2;52308:19;52283:14;:45::i;:::-;32397:8;52255:73;52197:18;:146::i;:::-;52168:17;:26;52186:7;52168:26;;;;;;;;;;;:175;;;;52514:1;32397:8;52463:19;:47;:52;52459:627;;52536:19;52568:1;52558:7;:11;52536:33;;52725:1;52691:17;:30;52709:11;52691:30;;;;;;;;;;;;:35;52687:384;;52829:13;;52814:11;:28;52810:242;;53009:19;52976:17;:30;52994:11;52976:30;;;;;;;;;;;:52;;;;52810:242;52687:384;52517:569;52459:627;53133:7;53129:2;53114:27;;53123:4;53114:27;;;;;;;;;;;;53152:42;53173:4;53179:2;53183:7;53192:1;53152:20;:42::i;:::-;50508:2694;;;50377:2825;;;:::o;74288:78::-;19369:13;:11;:13::i;:::-;74352:6:::1;;;;;;;;;;;74351:7;74342:6;;:16;;;;;;;;;;;;;;;;;;74288:78::o:0;74804:208::-;19369:13;:11;:13::i;:::-;74855:12:::1;74881:10;74873:24;;74919:21;74873:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74854:101;;;74974:7;74966:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;74843:169;74804:208::o:0;53298:193::-;53444:39;53461:4;53467:2;53471:7;53444:39;;;;;;;;;;;;:16;:39::i;:::-;53298:193;;;:::o;74180:100::-;19369:13;:11;:13::i;:::-;74264:8:::1;74254:7;:18;;;;;;:::i;:::-;;74180:100:::0;:::o;72649:25::-;;;;;;;;;;;;;:::o;41640:152::-;41712:7;41755:27;41774:7;41755:18;:27::i;:::-;41732:52;;41640:152;;;:::o;72605:37::-;;;;:::o;72779:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74374:174::-;19369:13;:11;:13::i;:::-;74467:9:::1;;74454:10;:22;74446:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;74530:10;74518:9;:22;;;;74374:174:::0;:::o;37182:233::-;37254:7;37295:1;37278:19;;:5;:19;;;37274:60;;37306:28;;;;;;;;;;;;;;37274:60;31341:13;37352:18;:25;37371:5;37352:25;;;;;;;;;;;;;;;;:55;37345:62;;37182:233;;;:::o;20124:103::-;19369:13;:11;:13::i;:::-;20189:30:::1;20216:1;20189:18;:30::i;:::-;20124:103::o:0;73471:116::-;19369:13;:11;:13::i;:::-;73552:27:::1;73562:8;73572:6;73552:9;:27::i;:::-;73471:116:::0;;:::o;19483:87::-;19529:7;19556:6;;;;;;;;;;;19549:13;;19483:87;:::o;40423:104::-;40479:13;40512:7;40505:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40423:104;:::o;72927:536::-;72994:6;;;;;;;;;;;72993:7;72985:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;73088:9;;73077:6;73061:13;:11;:13::i;:::-;:22;;;;:::i;:::-;73060:37;;73038:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;73222:16;;73211:6;73183:13;:25;73197:10;73183:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;73182:56;;73160:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;73339:6;73327:9;;:18;;;;:::i;:::-;73313:9;:33;;73305:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;73409:6;73380:13;:25;73394:10;73380:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;73426:29;73436:10;73448:6;73426:9;:29::i;:::-;72927:536;:::o;47296:234::-;47443:8;47391:18;:39;47410:19;:17;:19::i;:::-;47391:39;;;;;;;;;;;;;;;:49;47431:8;47391:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;47503:8;47467:55;;47482:19;:17;:19::i;:::-;47467:55;;;47513:8;47467:55;;;;;;:::i;:::-;;;;;;;;47296:234;;:::o;74666:130::-;19369:13;:11;:13::i;:::-;74771:17:::1;74752:16;:36;;;;74666:130:::0;:::o;72563:35::-;;;;:::o;54089:407::-;54264:31;54277:4;54283:2;54287:7;54264:12;:31::i;:::-;54328:1;54310:2;:14;;;:19;54306:183;;54349:56;54380:4;54386:2;54390:7;54399:5;54349:30;:56::i;:::-;54344:145;;54433:40;;;;;;;;;;;;;;54344:145;54306:183;54089:407;;;;:::o;73595:352::-;73713:13;73766:16;73774:7;73766;:16::i;:::-;73744:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;73899:7;73908:18;:7;:16;:18::i;:::-;73928:9;73882:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73868:71;;73595:352;;;:::o;72526:30::-;;;;:::o;47687:164::-;47784:4;47808:18;:25;47827:5;47808:25;;;;;;;;;;;;;;;:35;47834:8;47808:35;;;;;;;;;;;;;;;;;;;;;;;;;47801:42;;47687:164;;;;:::o;20382:201::-;19369:13;:11;:13::i;:::-;20491:1:::1;20471:22;;:8;:22;;::::0;20463:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20547:28;20566:8;20547:18;:28::i;:::-;20382:201:::0;:::o;74556:102::-;19369:13;:11;:13::i;:::-;74640:10:::1;74628:9;:22;;;;74556:102:::0;:::o;48109:282::-;48174:4;48230:7;48211:15;:13;:15::i;:::-;:26;;:66;;;;;48264:13;;48254:7;:23;48211:66;:153;;;;;48363:1;32117:8;48315:17;:26;48333:7;48315:26;;;;;;;;;;;;:44;:49;48211:153;48191:173;;48109:282;;;:::o;70417:105::-;70477:7;70504:10;70497:17;;70417:105;:::o;74071:101::-;74136:7;74163:1;74156:8;;74071:101;:::o;42795:1275::-;42862:7;42882:12;42897:7;42882:22;;42965:4;42946:15;:13;:15::i;:::-;:23;42942:1061;;42999:13;;42992:4;:20;42988:1015;;;43037:14;43054:17;:23;43072:4;43054:23;;;;;;;;;;;;43037:40;;43171:1;32117:8;43143:6;:24;:29;43139:845;;43808:113;43825:1;43815:6;:11;43808:113;;43868:17;:25;43886:6;;;;;;;43868:25;;;;;;;;;;;;43859:34;;43808:113;;;43954:6;43947:13;;;;;;43139:845;43014:989;42988:1015;42942:1061;44031:31;;;;;;;;;;;;;;42795:1275;;;;:::o;49272:485::-;49374:27;49403:23;49444:38;49485:15;:24;49501:7;49485:24;;;;;;;;;;;49444:65;;49662:18;49639:41;;49719:19;49713:26;49694:45;;49624:126;49272:485;;;:::o;48500:659::-;48649:11;48814:16;48807:5;48803:28;48794:37;;48974:16;48963:9;48959:32;48946:45;;49124:15;49113:9;49110:30;49102:5;49091:9;49088:20;49085:56;49075:66;;48500:659;;;;;:::o;55158:159::-;;;;;:::o;69726:311::-;69861:7;69881:16;32521:3;69907:19;:41;;69881:68;;32521:3;69975:31;69986:4;69992:2;69996:9;69975:10;:31::i;:::-;69967:40;;:62;;69960:69;;;69726:311;;;;;:::o;44618:450::-;44698:14;44866:16;44859:5;44855:28;44846:37;;45043:5;45029:11;45004:23;45000:41;44997:52;44990:5;44987:63;44977:73;;44618:450;;;;:::o;55982:158::-;;;;;:::o;19648:132::-;19723:12;:10;:12::i;:::-;19712:23;;:7;:5;:7::i;:::-;:23;;;19704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19648:132::o;20743:191::-;20817:16;20836:6;;;;;;;;;;;20817:25;;20862:8;20853:6;;:17;;;;;;;;;;;;;;;;;;20917:8;20886:40;;20907:8;20886:40;;;;;;;;;;;;20806:128;20743:191;:::o;64249:112::-;64326:27;64336:2;64340:8;64326:27;;;;;;;;;;;;:9;:27::i;:::-;64249:112;;:::o;56580:716::-;56743:4;56789:2;56764:45;;;56810:19;:17;:19::i;:::-;56831:4;56837:7;56846:5;56764:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56760:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57064:1;57047:6;:13;:18;57043:235;;57093:40;;;;;;;;;;;;;;57043:235;57236:6;57230:13;57221:6;57217:2;57213:15;57206:38;56760:529;56933:54;;;56923:64;;;:6;:64;;;;56916:71;;;56580:716;;;;;;:::o;14953:::-;15009:13;15060:14;15097:1;15077:17;15088:5;15077:10;:17::i;:::-;:21;15060:38;;15113:20;15147:6;15136:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15113:41;;15169:11;15298:6;15294:2;15290:15;15282:6;15278:28;15271:35;;15335:288;15342:4;15335:288;;;15367:5;;;;;;;;15509:8;15504:2;15497:5;15493:14;15488:30;15483:3;15475:44;15565:2;15556:11;;;;;;:::i;:::-;;;;;15599:1;15590:5;:10;15335:288;15586:21;15335:288;15644:6;15637:13;;;;;14953:716;;;:::o;69427:147::-;69564:6;69427:147;;;;;:::o;18034:98::-;18087:7;18114:10;18107:17;;18034:98;:::o;63476:689::-;63607:19;63613:2;63617:8;63607:5;:19::i;:::-;63686:1;63668:2;:14;;;:19;63664:483;;63708:11;63722:13;;63708:27;;63754:13;63776:8;63770:3;:14;63754:30;;63803:233;63834:62;63873:1;63877:2;63881:7;;;;;;63890:5;63834:30;:62::i;:::-;63829:167;;63932:40;;;;;;;;;;;;;;63829:167;64031:3;64023:5;:11;63803:233;;64118:3;64101:13;;:20;64097:34;;64123:8;;;64097:34;63689:458;;63664:483;63476:689;;;:::o;11787:948::-;11840:7;11860:14;11877:1;11860:18;;11927:8;11918:5;:17;11914:106;;11965:8;11956:17;;;;;;:::i;:::-;;;;;12002:2;11992:12;;;;11914:106;12047:8;12038:5;:17;12034:106;;12085:8;12076:17;;;;;;:::i;:::-;;;;;12122:2;12112:12;;;;12034:106;12167:8;12158:5;:17;12154:106;;12205:8;12196:17;;;;;;:::i;:::-;;;;;12242:2;12232:12;;;;12154:106;12287:7;12278:5;:16;12274:103;;12324:7;12315:16;;;;;;:::i;:::-;;;;;12360:1;12350:11;;;;12274:103;12404:7;12395:5;:16;12391:103;;12441:7;12432:16;;;;;;:::i;:::-;;;;;12477:1;12467:11;;;;12391:103;12521:7;12512:5;:16;12508:103;;12558:7;12549:16;;;;;;:::i;:::-;;;;;12594:1;12584:11;;;;12508:103;12638:7;12629:5;:16;12625:68;;12676:1;12666:11;;;;12625:68;12721:6;12714:13;;;11787:948;;;:::o;57758:2966::-;57831:20;57854:13;;57831:36;;57894:1;57882:8;:13;57878:44;;57904:18;;;;;;;;;;;;;;57878:44;57935:61;57965:1;57969:2;57973:12;57987:8;57935:21;:61::i;:::-;58479:1;31479:2;58449:1;:26;;58448:32;58436:8;:45;58410:18;:22;58429:2;58410:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;58758:139;58795:2;58849:33;58872:1;58876:2;58880:1;58849:14;:33::i;:::-;58816:30;58837:8;58816:20;:30::i;:::-;:66;58758:18;:139::i;:::-;58724:17;:31;58742:12;58724:31;;;;;;;;;;;:173;;;;58914:16;58945:11;58974:8;58959:12;:23;58945:37;;59495:16;59491:2;59487:25;59475:37;;59867:12;59827:8;59786:1;59724:25;59665:1;59604;59577:335;60238:1;60224:12;60220:20;60178:346;60279:3;60270:7;60267:16;60178:346;;60497:7;60487:8;60484:1;60457:25;60454:1;60451;60446:59;60332:1;60323:7;60319:15;60308:26;;60178:346;;;60182:77;60569:1;60557:8;:13;60553:45;;60579:19;;;;;;;;;;;;;;60553:45;60631:3;60615:13;:19;;;;58184:2462;;60656:60;60685:1;60689:2;60693:12;60707:8;60656:20;:60::i;:::-;57820:2904;57758:2966;;:::o;45170:324::-;45240:14;45473:1;45463:8;45460:15;45434:24;45430:46;45420:56;;45170:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:147::-;12704:11;12741:3;12726:18;;12603:147;;;;:::o;12756:114::-;;:::o;12876:398::-;13035:3;13056:83;13137:1;13132:3;13056:83;:::i;:::-;13049:90;;13148:93;13237:3;13148:93;:::i;:::-;13266:1;13261:3;13257:11;13250:18;;12876:398;;;:::o;13280:379::-;13464:3;13486:147;13629:3;13486:147;:::i;:::-;13479:154;;13650:3;13643:10;;13280:379;;;:::o;13665:168::-;13805:20;13801:1;13793:6;13789:14;13782:44;13665:168;:::o;13839:366::-;13981:3;14002:67;14066:2;14061:3;14002:67;:::i;:::-;13995:74;;14078:93;14167:3;14078:93;:::i;:::-;14196:2;14191:3;14187:12;14180:19;;13839:366;;;:::o;14211:419::-;14377:4;14415:2;14404:9;14400:18;14392:26;;14464:9;14458:4;14454:20;14450:1;14439:9;14435:17;14428:47;14492:131;14618:4;14492:131;:::i;:::-;14484:139;;14211:419;;;:::o;14636:141::-;14685:4;14708:3;14700:11;;14731:3;14728:1;14721:14;14765:4;14762:1;14752:18;14744:26;;14636:141;;;:::o;14783:93::-;14820:6;14867:2;14862;14855:5;14851:14;14847:23;14837:33;;14783:93;;;:::o;14882:107::-;14926:8;14976:5;14970:4;14966:16;14945:37;;14882:107;;;;:::o;14995:393::-;15064:6;15114:1;15102:10;15098:18;15137:97;15167:66;15156:9;15137:97;:::i;:::-;15255:39;15285:8;15274:9;15255:39;:::i;:::-;15243:51;;15327:4;15323:9;15316:5;15312:21;15303:30;;15376:4;15366:8;15362:19;15355:5;15352:30;15342:40;;15071:317;;14995:393;;;;;:::o;15394:60::-;15422:3;15443:5;15436:12;;15394:60;;;:::o;15460:142::-;15510:9;15543:53;15561:34;15570:24;15588:5;15570:24;:::i;:::-;15561:34;:::i;:::-;15543:53;:::i;:::-;15530:66;;15460:142;;;:::o;15608:75::-;15651:3;15672:5;15665:12;;15608:75;;;:::o;15689:269::-;15799:39;15830:7;15799:39;:::i;:::-;15860:91;15909:41;15933:16;15909:41;:::i;:::-;15901:6;15894:4;15888:11;15860:91;:::i;:::-;15854:4;15847:105;15765:193;15689:269;;;:::o;15964:73::-;16009:3;15964:73;:::o;16043:189::-;16120:32;;:::i;:::-;16161:65;16219:6;16211;16205:4;16161:65;:::i;:::-;16096:136;16043:189;;:::o;16238:186::-;16298:120;16315:3;16308:5;16305:14;16298:120;;;16369:39;16406:1;16399:5;16369:39;:::i;:::-;16342:1;16335:5;16331:13;16322:22;;16298:120;;;16238:186;;:::o;16430:543::-;16531:2;16526:3;16523:11;16520:446;;;16565:38;16597:5;16565:38;:::i;:::-;16649:29;16667:10;16649:29;:::i;:::-;16639:8;16635:44;16832:2;16820:10;16817:18;16814:49;;;16853:8;16838:23;;16814:49;16876:80;16932:22;16950:3;16932:22;:::i;:::-;16922:8;16918:37;16905:11;16876:80;:::i;:::-;16535:431;;16520:446;16430:543;;;:::o;16979:117::-;17033:8;17083:5;17077:4;17073:16;17052:37;;16979:117;;;;:::o;17102:169::-;17146:6;17179:51;17227:1;17223:6;17215:5;17212:1;17208:13;17179:51;:::i;:::-;17175:56;17260:4;17254;17250:15;17240:25;;17153:118;17102:169;;;;:::o;17276:295::-;17352:4;17498:29;17523:3;17517:4;17498:29;:::i;:::-;17490:37;;17560:3;17557:1;17553:11;17547:4;17544:21;17536:29;;17276:295;;;;:::o;17576:1395::-;17693:37;17726:3;17693:37;:::i;:::-;17795:18;17787:6;17784:30;17781:56;;;17817:18;;:::i;:::-;17781:56;17861:38;17893:4;17887:11;17861:38;:::i;:::-;17946:67;18006:6;17998;17992:4;17946:67;:::i;:::-;18040:1;18064:4;18051:17;;18096:2;18088:6;18085:14;18113:1;18108:618;;;;18770:1;18787:6;18784:77;;;18836:9;18831:3;18827:19;18821:26;18812:35;;18784:77;18887:67;18947:6;18940:5;18887:67;:::i;:::-;18881:4;18874:81;18743:222;18078:887;;18108:618;18160:4;18156:9;18148:6;18144:22;18194:37;18226:4;18194:37;:::i;:::-;18253:1;18267:208;18281:7;18278:1;18275:14;18267:208;;;18360:9;18355:3;18351:19;18345:26;18337:6;18330:42;18411:1;18403:6;18399:14;18389:24;;18458:2;18447:9;18443:18;18430:31;;18304:4;18301:1;18297:12;18292:17;;18267:208;;;18503:6;18494:7;18491:19;18488:179;;;18561:9;18556:3;18552:19;18546:26;18604:48;18646:4;18638:6;18634:17;18623:9;18604:48;:::i;:::-;18596:6;18589:64;18511:156;18488:179;18713:1;18709;18701:6;18697:14;18693:22;18687:4;18680:36;18115:611;;;18078:887;;17668:1303;;;17576:1395;;:::o;18977:176::-;19117:28;19113:1;19105:6;19101:14;19094:52;18977:176;:::o;19159:366::-;19301:3;19322:67;19386:2;19381:3;19322:67;:::i;:::-;19315:74;;19398:93;19487:3;19398:93;:::i;:::-;19516:2;19511:3;19507:12;19500:19;;19159:366;;;:::o;19531:419::-;19697:4;19735:2;19724:9;19720:18;19712:26;;19784:9;19778:4;19774:20;19770:1;19759:9;19755:17;19748:47;19812:131;19938:4;19812:131;:::i;:::-;19804:139;;19531:419;;;:::o;19956:172::-;20096:24;20092:1;20084:6;20080:14;20073:48;19956:172;:::o;20134:366::-;20276:3;20297:67;20361:2;20356:3;20297:67;:::i;:::-;20290:74;;20373:93;20462:3;20373:93;:::i;:::-;20491:2;20486:3;20482:12;20475:19;;20134:366;;;:::o;20506:419::-;20672:4;20710:2;20699:9;20695:18;20687:26;;20759:9;20753:4;20749:20;20745:1;20734:9;20730:17;20723:47;20787:131;20913:4;20787:131;:::i;:::-;20779:139;;20506:419;;;:::o;20931:180::-;20979:77;20976:1;20969:88;21076:4;21073:1;21066:15;21100:4;21097:1;21090:15;21117:191;21157:3;21176:20;21194:1;21176:20;:::i;:::-;21171:25;;21210:20;21228:1;21210:20;:::i;:::-;21205:25;;21253:1;21250;21246:9;21239:16;;21274:3;21271:1;21268:10;21265:36;;;21281:18;;:::i;:::-;21265:36;21117:191;;;;:::o;21314:174::-;21454:26;21450:1;21442:6;21438:14;21431:50;21314:174;:::o;21494:366::-;21636:3;21657:67;21721:2;21716:3;21657:67;:::i;:::-;21650:74;;21733:93;21822:3;21733:93;:::i;:::-;21851:2;21846:3;21842:12;21835:19;;21494:366;;;:::o;21866:419::-;22032:4;22070:2;22059:9;22055:18;22047:26;;22119:9;22113:4;22109:20;22105:1;22094:9;22090:17;22083:47;22147:131;22273:4;22147:131;:::i;:::-;22139:139;;21866:419;;;:::o;22291:178::-;22431:30;22427:1;22419:6;22415:14;22408:54;22291:178;:::o;22475:366::-;22617:3;22638:67;22702:2;22697:3;22638:67;:::i;:::-;22631:74;;22714:93;22803:3;22714:93;:::i;:::-;22832:2;22827:3;22823:12;22816:19;;22475:366;;;:::o;22847:419::-;23013:4;23051:2;23040:9;23036:18;23028:26;;23100:9;23094:4;23090:20;23086:1;23075:9;23071:17;23064:47;23128:131;23254:4;23128:131;:::i;:::-;23120:139;;22847:419;;;:::o;23272:410::-;23312:7;23335:20;23353:1;23335:20;:::i;:::-;23330:25;;23369:20;23387:1;23369:20;:::i;:::-;23364:25;;23424:1;23421;23417:9;23446:30;23464:11;23446:30;:::i;:::-;23435:41;;23625:1;23616:7;23612:15;23609:1;23606:22;23586:1;23579:9;23559:83;23536:139;;23655:18;;:::i;:::-;23536:139;23320:362;23272:410;;;;:::o;23688:166::-;23828:18;23824:1;23816:6;23812:14;23805:42;23688:166;:::o;23860:366::-;24002:3;24023:67;24087:2;24082:3;24023:67;:::i;:::-;24016:74;;24099:93;24188:3;24099:93;:::i;:::-;24217:2;24212:3;24208:12;24201:19;;23860:366;;;:::o;24232:419::-;24398:4;24436:2;24425:9;24421:18;24413:26;;24485:9;24479:4;24475:20;24471:1;24460:9;24456:17;24449:47;24513:131;24639:4;24513:131;:::i;:::-;24505:139;;24232:419;;;:::o;24657:234::-;24797:34;24793:1;24785:6;24781:14;24774:58;24866:17;24861:2;24853:6;24849:15;24842:42;24657:234;:::o;24897:366::-;25039:3;25060:67;25124:2;25119:3;25060:67;:::i;:::-;25053:74;;25136:93;25225:3;25136:93;:::i;:::-;25254:2;25249:3;25245:12;25238:19;;24897:366;;;:::o;25269:419::-;25435:4;25473:2;25462:9;25458:18;25450:26;;25522:9;25516:4;25512:20;25508:1;25497:9;25493:17;25486:47;25550:131;25676:4;25550:131;:::i;:::-;25542:139;;25269:419;;;:::o;25694:148::-;25796:11;25833:3;25818:18;;25694:148;;;;:::o;25872:874::-;25975:3;26012:5;26006:12;26041:36;26067:9;26041:36;:::i;:::-;26093:89;26175:6;26170:3;26093:89;:::i;:::-;26086:96;;26213:1;26202:9;26198:17;26229:1;26224:166;;;;26404:1;26399:341;;;;26191:549;;26224:166;26308:4;26304:9;26293;26289:25;26284:3;26277:38;26370:6;26363:14;26356:22;26348:6;26344:35;26339:3;26335:45;26328:52;;26224:166;;26399:341;26466:38;26498:5;26466:38;:::i;:::-;26526:1;26540:154;26554:6;26551:1;26548:13;26540:154;;;26628:7;26622:14;26618:1;26613:3;26609:11;26602:35;26678:1;26669:7;26665:15;26654:26;;26576:4;26573:1;26569:12;26564:17;;26540:154;;;26723:6;26718:3;26714:16;26707:23;;26406:334;;26191:549;;25979:767;;25872:874;;;;:::o;26752:390::-;26858:3;26886:39;26919:5;26886:39;:::i;:::-;26941:89;27023:6;27018:3;26941:89;:::i;:::-;26934:96;;27039:65;27097:6;27092:3;27085:4;27078:5;27074:16;27039:65;:::i;:::-;27129:6;27124:3;27120:16;27113:23;;26862:280;26752:390;;;;:::o;27148:583::-;27370:3;27392:92;27480:3;27471:6;27392:92;:::i;:::-;27385:99;;27501:95;27592:3;27583:6;27501:95;:::i;:::-;27494:102;;27613:92;27701:3;27692:6;27613:92;:::i;:::-;27606:99;;27722:3;27715:10;;27148:583;;;;;;:::o;27737:225::-;27877:34;27873:1;27865:6;27861:14;27854:58;27946:8;27941:2;27933:6;27929:15;27922:33;27737:225;:::o;27968:366::-;28110:3;28131:67;28195:2;28190:3;28131:67;:::i;:::-;28124:74;;28207:93;28296:3;28207:93;:::i;:::-;28325:2;28320:3;28316:12;28309:19;;27968:366;;;:::o;28340:419::-;28506:4;28544:2;28533:9;28529:18;28521:26;;28593:9;28587:4;28583:20;28579:1;28568:9;28564:17;28557:47;28621:131;28747:4;28621:131;:::i;:::-;28613:139;;28340:419;;;:::o;28765:182::-;28905:34;28901:1;28893:6;28889:14;28882:58;28765:182;:::o;28953:366::-;29095:3;29116:67;29180:2;29175:3;29116:67;:::i;:::-;29109:74;;29192:93;29281:3;29192:93;:::i;:::-;29310:2;29305:3;29301:12;29294:19;;28953:366;;;:::o;29325:419::-;29491:4;29529:2;29518:9;29514:18;29506:26;;29578:9;29572:4;29568:20;29564:1;29553:9;29549:17;29542:47;29606:131;29732:4;29606:131;:::i;:::-;29598:139;;29325:419;;;:::o;29750:98::-;29801:6;29835:5;29829:12;29819:22;;29750:98;;;:::o;29854:168::-;29937:11;29971:6;29966:3;29959:19;30011:4;30006:3;30002:14;29987:29;;29854:168;;;;:::o;30028:373::-;30114:3;30142:38;30174:5;30142:38;:::i;:::-;30196:70;30259:6;30254:3;30196:70;:::i;:::-;30189:77;;30275:65;30333:6;30328:3;30321:4;30314:5;30310:16;30275:65;:::i;:::-;30365:29;30387:6;30365:29;:::i;:::-;30360:3;30356:39;30349:46;;30118:283;30028:373;;;;:::o;30407:640::-;30602:4;30640:3;30629:9;30625:19;30617:27;;30654:71;30722:1;30711:9;30707:17;30698:6;30654:71;:::i;:::-;30735:72;30803:2;30792:9;30788:18;30779:6;30735:72;:::i;:::-;30817;30885:2;30874:9;30870:18;30861:6;30817:72;:::i;:::-;30936:9;30930:4;30926:20;30921:2;30910:9;30906:18;30899:48;30964:76;31035:4;31026:6;30964:76;:::i;:::-;30956:84;;30407:640;;;;;;;:::o;31053:141::-;31109:5;31140:6;31134:13;31125:22;;31156:32;31182:5;31156:32;:::i;:::-;31053:141;;;;:::o;31200:349::-;31269:6;31318:2;31306:9;31297:7;31293:23;31289:32;31286:119;;;31324:79;;:::i;:::-;31286:119;31444:1;31469:63;31524:7;31515:6;31504:9;31500:22;31469:63;:::i;:::-;31459:73;;31415:127;31200:349;;;;:::o;31555:180::-;31603:77;31600:1;31593:88;31700:4;31697:1;31690:15;31724:4;31721:1;31714:15

Swarm Source

ipfs://8ff5be1c6f4fa162b5f1eda5cb1df77332aa0f26013eb273ca7d54a4e2fc0927
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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