ETH Price: $2,467.04 (+6.07%)

Token

Twertles (TWTL)
 

Overview

Max Total Supply

3,333 TWTL

Holders

479

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TWTL
0xec1f44a6b96e18db71150ef532748e4cf13b6b1d
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:
Twertles

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-06
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: Twertles.sol




// ████████╗██╗    ██╗███████╗██████╗ ████████╗██╗     ███████╗███████╗
// ╚══██╔══╝██║    ██║██╔════╝██╔══██╗╚══██╔══╝██║     ██╔════╝██╔════╝
//    ██║   ██║ █╗ ██║█████╗  ██████╔╝   ██║   ██║     █████╗  ███████╗
//    ██║   ██║███╗██║██╔══╝  ██╔══██╗   ██║   ██║     ██╔══╝  ╚════██║
//    ██║   ╚███╔███╔╝███████╗██║  ██║   ██║   ███████╗███████╗███████║
//    ╚═╝    ╚══╝╚══╝ ╚══════╝╚═╝  ╚═╝   ╚═╝   ╚══════╝╚══════╝╚══════╝


pragma solidity ^0.8.9;





contract Twertles is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    mapping(address => uint) public mintedPerAddress;
    uint256 public mintCost = 0.002 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxPerTXN = 10;
    string internal baseUri = "";
    string public notRevealedURI = "ipfs://QmWP31gFmatv75Y81QJcALZsxYysegmcr8A35cGLjkMFTm/unrevealed.json";
    bool private isRevealed = false;
    bool private saleStarted = false;

    constructor() ERC721A("Twertles", "TWTL") {}
    
    function mint(uint256 _amount) external payable nonReentrant {
        require(saleStarted, "Sale not started yet.");
        mintModifier(_amount);
    }

    function mintModifier(uint256 _amount) internal {
        require(_amount <= maxPerTXN && _amount > 0, "Max 10 per Transaction.");
        uint256 free = mintedPerAddress[msg.sender] == 0 ? 2 : 0;
        require(msg.value >= mintCost * (_amount - free), "Two Free, rest 0.002 ETH.");
        mintedPerAddress[msg.sender] += _amount;
        sendMint(_msgSender(), _amount);
    }

    function sendMint(address _wallet, uint256 _amount) internal {
        require(_amount + totalSupply() <= maxSupply, "0 Supply Left.");
        _mint(_wallet, _amount);
    }
    
    function devMint(address _wallet, uint256 _amount) public onlyOwner {
  	    uint256 totalMinted = totalSupply();
	    require(totalMinted + _amount <= maxSupply);
        _mint(_wallet, _amount);
    }
    
    function setMaxPerTXN(uint256 _max) external onlyOwner {
        maxPerTXN = _max;
    }

    function toggleSale() external onlyOwner {
        saleStarted = !saleStarted;
    }

    function toggleRevealed() external onlyOwner {
        isRevealed = !isRevealed;
    }
    
    function setCost(uint256 newCost) external onlyOwner {
        mintCost = newCost;
    }

    function setMetadata(string calldata newUri) external onlyOwner {
        baseUri = newUri;
    }

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

   
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), 'URI query for nonexistent token');
        if(isRevealed == true) {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))
            : '';
        }
        else {
            return string(abi.encodePacked(notRevealedURI));
        }
    }

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

    function transferFunds() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }


    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTXN","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":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPerAddress","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":"notRevealedURI","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerTXN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setMetadata","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":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","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":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266071afd498d0000600b55610d05600c55600a600d5560405180602001604052806000815250600e90816200003a9190620004d1565b50604051806080016040528060458152602001620035d260459139600f9081620000659190620004d1565b506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f54776572746c65730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5457544c000000000000000000000000000000000000000000000000000000008152508160029081620001279190620004d1565b508060039081620001399190620004d1565b506200014a6200018060201b60201c565b600081905550505062000172620001666200018960201b60201c565b6200019160201b60201c565b6001600981905550620005b8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d957607f821691505b602082108103620002ef57620002ee62000291565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031a565b6200036586836200031a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b2620003ac620003a6846200037d565b62000387565b6200037d565b9050919050565b6000819050919050565b620003ce8362000391565b620003e6620003dd82620003b9565b84845462000327565b825550505050565b600090565b620003fd620003ee565b6200040a818484620003c3565b505050565b5b81811015620004325762000426600082620003f3565b60018101905062000410565b5050565b601f82111562000481576200044b81620002f5565b62000456846200030a565b8101602085101562000466578190505b6200047e62000475856200030a565b8301826200040f565b50505b505050565b600082821c905092915050565b6000620004a66000198460080262000486565b1980831691505092915050565b6000620004c1838362000493565b9150826002028217905092915050565b620004dc8262000257565b67ffffffffffffffff811115620004f857620004f762000262565b5b620005048254620002c0565b6200051182828562000436565b600060209050601f83116001811462000549576000841562000534578287015190505b620005408582620004b3565b865550620005b0565b601f1984166200055986620002f5565b60005b8281101562000583578489015182556001820191506020850194506020810190506200055c565b86831015620005a357848901516200059f601f89168262000493565b8355505b6001600288020188555050505b505050505050565b61300a80620005c86000396000f3fe6080604052600436106101cd5760003560e01c806372250380116100f7578063a49a1e7d11610095578063d445b97811610064578063d445b978146105e5578063d5abeb0114610622578063e985e9c51461064d578063f2fde38b1461068a576101cd565b8063a49a1e7d14610538578063b88d4fde14610561578063bdb4b8481461057d578063c87b56dd146105a8576101cd565b806395d89b41116100d157806395d89b411461049f578063a0712d68146104ca578063a0931011146104e6578063a22cb4651461050f576101cd565b806372250380146104325780637d8966e41461045d5780638da5cb5b14610474576101cd565b80633c68eb811161016f578063627804af1161013e578063627804af146103785780636352211e146103a157806370a08231146103de578063715018a61461041b576101cd565b80633c68eb811461030557806342842e0e1461031c57806344a0d68a146103385780635bc020bc14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e4a6b10146102be57806323b872dd146102e9576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612030565b6106b3565b6040516102069190612078565b60405180910390f35b34801561021b57600080fd5b50610224610745565b6040516102319190612123565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061217b565b6107d7565b60405161026e91906121e9565b60405180910390f35b610291600480360381019061028c9190612230565b610856565b005b34801561029f57600080fd5b506102a861099a565b6040516102b5919061227f565b60405180910390f35b3480156102ca57600080fd5b506102d36109b1565b6040516102e0919061227f565b60405180910390f35b61030360048036038101906102fe919061229a565b6109b7565b005b34801561031157600080fd5b5061031a610cd9565b005b6103366004803603810190610331919061229a565b610d31565b005b34801561034457600080fd5b5061035f600480360381019061035a919061217b565b610d51565b005b34801561036d57600080fd5b50610376610d63565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612230565b610d97565b005b3480156103ad57600080fd5b506103c860048036038101906103c3919061217b565b610dd4565b6040516103d591906121e9565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906122ed565b610de6565b604051610412919061227f565b60405180910390f35b34801561042757600080fd5b50610430610e9e565b005b34801561043e57600080fd5b50610447610eb2565b6040516104549190612123565b60405180910390f35b34801561046957600080fd5b50610472610f40565b005b34801561048057600080fd5b50610489610f74565b60405161049691906121e9565b60405180910390f35b3480156104ab57600080fd5b506104b4610f9e565b6040516104c19190612123565b60405180910390f35b6104e460048036038101906104df919061217b565b611030565b005b3480156104f257600080fd5b5061050d6004803603810190610508919061217b565b61109b565b005b34801561051b57600080fd5b5061053660048036038101906105319190612346565b6110ad565b005b34801561054457600080fd5b5061055f600480360381019061055a91906123eb565b6111b8565b005b61057b60048036038101906105769190612568565b6111d6565b005b34801561058957600080fd5b50610592611249565b60405161059f919061227f565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061217b565b61124f565b6040516105dc9190612123565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906122ed565b61133a565b604051610619919061227f565b60405180910390f35b34801561062e57600080fd5b50610637611352565b604051610644919061227f565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906125eb565b611358565b6040516106819190612078565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac91906122ed565b6113ec565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107549061265a565b80601f01602080910402602001604051908101604052809291908181526020018280546107809061265a565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b5050505050905090565b60006107e28261146f565b610818576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086182610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff166108826114ce565b73ffffffffffffffffffffffffffffffffffffffff16146108e5576108ae816108a96114ce565b611358565b6108e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109a46114d6565b6001546000540303905090565b600d5481565b60006109c2826114df565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a35846115ab565b91509150610a4b8187610a466114ce565b6115d2565b610a9757610a6086610a5b6114ce565b611358565b610a96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610afd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0a8686866001611616565b8015610b1557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be385610bbf88888761161c565b7c020000000000000000000000000000000000000000000000000000000017611644565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c695760006001850190506000600460008381526020019081526020016000205403610c67576000548114610c66578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cd1868686600161166f565b505050505050565b610ce1611675565b610ce96116f3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2e573d6000803e3d6000fd5b50565b610d4c838383604051806020016040528060008152506111d6565b505050565b610d59611675565b80600b8190555050565b610d6b611675565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610d9f611675565b6000610da961099a565b9050600c548282610dba91906126ba565b1115610dc557600080fd5b610dcf83836116fb565b505050565b6000610ddf826114df565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea6611675565b610eb060006118b6565b565b600f8054610ebf9061265a565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb9061265a565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b505050505081565b610f48611675565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fad9061265a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd99061265a565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905090565b61103861197c565b601060019054906101000a900460ff16611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e9061273a565b60405180910390fd5b611090816119cb565b611098611b39565b50565b6110a3611675565b80600d8190555050565b80600760006110ba6114ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111676114ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111ac9190612078565b60405180910390a35050565b6111c0611675565b8181600e91826111d1929190612911565b505050565b6111e18484846109b7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112435761120c84848484611b43565b611242576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b606061125a8261146f565b611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090612a2d565b60405180910390fd5b60011515601060009054906101000a900460ff161515036113115760006112be611c93565b905060008151116112de5760405180602001604052806000815250611309565b806112e884611d25565b6040516020016112f9929190612ad5565b6040516020818303038152906040525b915050611335565b600f6040516020016113239190612b87565b60405160208183030381529060405290505b919050565b600a6020528060005260406000206000915090505481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f4611675565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90612c10565b60405180910390fd5b61146c816118b6565b50565b60008161147a6114d6565b11158015611489575060005482105b80156114c7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806114ee6114d6565b11611574576000548110156115735760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611571575b6000810361156757600460008360019003935083815260200190815260200160002054905061153d565b80925050506115a6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611633868684611df3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61167d6116f3565b73ffffffffffffffffffffffffffffffffffffffff1661169b610f74565b73ffffffffffffffffffffffffffffffffffffffff16146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890612c7c565b60405180910390fd5b565b600033905090565b6000805490506000820361173b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117486000848385611616565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506117bf836117b0600086600061161c565b6117b985611dfc565b17611644565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461186057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611825565b506000820361189b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506118b1600084838561166f565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600954036119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890612ce8565b60405180910390fd5b6002600981905550565b600d5481111580156119dd5750600081115b611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390612d54565b60405180910390fd5b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611a6b576000611a6e565b60025b60ff1690508082611a7f9190612d74565b600b54611a8c9190612da8565b341015611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590612e36565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1d91906126ba565b92505081905550611b35611b2f6116f3565b83611e0c565b5050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b696114ce565b8786866040518563ffffffff1660e01b8152600401611b8b9493929190612eab565b6020604051808303816000875af1925050508015611bc757506040513d601f19601f82011682018060405250810190611bc49190612f0c565b60015b611c40573d8060008114611bf7576040519150601f19603f3d011682016040523d82523d6000602084013e611bfc565b606091505b506000815103611c38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611ca29061265a565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce9061265a565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b5050505050905090565b606060006001611d3484611e71565b01905060008167ffffffffffffffff811115611d5357611d5261243d565b5b6040519080825280601f01601f191660200182016040528015611d855781602001600182028036833780820191505090505b509050600082602001820190505b600115611de8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ddc57611ddb612f39565b5b04945060008503611d93575b819350505050919050565b60009392505050565b60006001821460e11b9050919050565b600c54611e1761099a565b82611e2291906126ba565b1115611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90612fb4565b60405180910390fd5b611e6d82826116fb565b5050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ecf577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ec557611ec4612f39565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f0c576d04ee2d6d415b85acef81000000008381611f0257611f01612f39565b5b0492506020810190505b662386f26fc100008310611f3b57662386f26fc100008381611f3157611f30612f39565b5b0492506010810190505b6305f5e1008310611f64576305f5e1008381611f5a57611f59612f39565b5b0492506008810190505b6127108310611f89576127108381611f7f57611f7e612f39565b5b0492506004810190505b60648310611fac5760648381611fa257611fa1612f39565b5b0492506002810190505b600a8310611fbb576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61200d81611fd8565b811461201857600080fd5b50565b60008135905061202a81612004565b92915050565b60006020828403121561204657612045611fce565b5b60006120548482850161201b565b91505092915050565b60008115159050919050565b6120728161205d565b82525050565b600060208201905061208d6000830184612069565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120cd5780820151818401526020810190506120b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006120f582612093565b6120ff818561209e565b935061210f8185602086016120af565b612118816120d9565b840191505092915050565b6000602082019050818103600083015261213d81846120ea565b905092915050565b6000819050919050565b61215881612145565b811461216357600080fd5b50565b6000813590506121758161214f565b92915050565b60006020828403121561219157612190611fce565b5b600061219f84828501612166565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d3826121a8565b9050919050565b6121e3816121c8565b82525050565b60006020820190506121fe60008301846121da565b92915050565b61220d816121c8565b811461221857600080fd5b50565b60008135905061222a81612204565b92915050565b6000806040838503121561224757612246611fce565b5b60006122558582860161221b565b925050602061226685828601612166565b9150509250929050565b61227981612145565b82525050565b60006020820190506122946000830184612270565b92915050565b6000806000606084860312156122b3576122b2611fce565b5b60006122c18682870161221b565b93505060206122d28682870161221b565b92505060406122e386828701612166565b9150509250925092565b60006020828403121561230357612302611fce565b5b60006123118482850161221b565b91505092915050565b6123238161205d565b811461232e57600080fd5b50565b6000813590506123408161231a565b92915050565b6000806040838503121561235d5761235c611fce565b5b600061236b8582860161221b565b925050602061237c85828601612331565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126123ab576123aa612386565b5b8235905067ffffffffffffffff8111156123c8576123c761238b565b5b6020830191508360018202830111156123e4576123e3612390565b5b9250929050565b6000806020838503121561240257612401611fce565b5b600083013567ffffffffffffffff8111156124205761241f611fd3565b5b61242c85828601612395565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612475826120d9565b810181811067ffffffffffffffff821117156124945761249361243d565b5b80604052505050565b60006124a7611fc4565b90506124b3828261246c565b919050565b600067ffffffffffffffff8211156124d3576124d261243d565b5b6124dc826120d9565b9050602081019050919050565b82818337600083830152505050565b600061250b612506846124b8565b61249d565b90508281526020810184848401111561252757612526612438565b5b6125328482856124e9565b509392505050565b600082601f83011261254f5761254e612386565b5b813561255f8482602086016124f8565b91505092915050565b6000806000806080858703121561258257612581611fce565b5b60006125908782880161221b565b94505060206125a18782880161221b565b93505060406125b287828801612166565b925050606085013567ffffffffffffffff8111156125d3576125d2611fd3565b5b6125df8782880161253a565b91505092959194509250565b6000806040838503121561260257612601611fce565b5b60006126108582860161221b565b92505060206126218582860161221b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267257607f821691505b6020821081036126855761268461262b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126c582612145565b91506126d083612145565b92508282019050808211156126e8576126e761268b565b5b92915050565b7f53616c65206e6f742073746172746564207965742e0000000000000000000000600082015250565b600061272460158361209e565b915061272f826126ee565b602082019050919050565b6000602082019050818103600083015261275381612717565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261278a565b6127d1868361278a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061280e61280961280484612145565b6127e9565b612145565b9050919050565b6000819050919050565b612828836127f3565b61283c61283482612815565b848454612797565b825550505050565b600090565b612851612844565b61285c81848461281f565b505050565b5b8181101561288057612875600082612849565b600181019050612862565b5050565b601f8211156128c55761289681612765565b61289f8461277a565b810160208510156128ae578190505b6128c26128ba8561277a565b830182612861565b50505b505050565b600082821c905092915050565b60006128e8600019846008026128ca565b1980831691505092915050565b600061290183836128d7565b9150826002028217905092915050565b61291b838361275a565b67ffffffffffffffff8111156129345761293361243d565b5b61293e825461265a565b612949828285612884565b6000601f8311600181146129785760008415612966578287013590505b61297085826128f5565b8655506129d8565b601f19841661298686612765565b60005b828110156129ae57848901358255600182019150602085019450602081019050612989565b868310156129cb57848901356129c7601f8916826128d7565b8355505b6001600288020188555050505b50505050505050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612a17601f8361209e565b9150612a22826129e1565b602082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b600081905092915050565b6000612a6382612093565b612a6d8185612a4d565b9350612a7d8185602086016120af565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612abf600583612a4d565b9150612aca82612a89565b600582019050919050565b6000612ae18285612a58565b9150612aed8284612a58565b9150612af882612ab2565b91508190509392505050565b60008154612b118161265a565b612b1b8186612a4d565b94506001821660008114612b365760018114612b4b57612b7e565b60ff1983168652811515820286019350612b7e565b612b5485612765565b60005b83811015612b7657815481890152600182019150602081019050612b57565b838801955050505b50505092915050565b6000612b938284612b04565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bfa60268361209e565b9150612c0582612b9e565b604082019050919050565b60006020820190508181036000830152612c2981612bed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6660208361209e565b9150612c7182612c30565b602082019050919050565b60006020820190508181036000830152612c9581612c59565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612cd2601f8361209e565b9150612cdd82612c9c565b602082019050919050565b60006020820190508181036000830152612d0181612cc5565b9050919050565b7f4d617820313020706572205472616e73616374696f6e2e000000000000000000600082015250565b6000612d3e60178361209e565b9150612d4982612d08565b602082019050919050565b60006020820190508181036000830152612d6d81612d31565b9050919050565b6000612d7f82612145565b9150612d8a83612145565b9250828203905081811115612da257612da161268b565b5b92915050565b6000612db382612145565b9150612dbe83612145565b9250828202612dcc81612145565b91508282048414831517612de357612de261268b565b5b5092915050565b7f54776f20467265652c207265737420302e303032204554482e00000000000000600082015250565b6000612e2060198361209e565b9150612e2b82612dea565b602082019050919050565b60006020820190508181036000830152612e4f81612e13565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e7d82612e56565b612e878185612e61565b9350612e978185602086016120af565b612ea0816120d9565b840191505092915050565b6000608082019050612ec060008301876121da565b612ecd60208301866121da565b612eda6040830185612270565b8181036060830152612eec8184612e72565b905095945050505050565b600081519050612f0681612004565b92915050565b600060208284031215612f2257612f21611fce565b5b6000612f3084828501612ef7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f3020537570706c79204c6566742e000000000000000000000000000000000000600082015250565b6000612f9e600e8361209e565b9150612fa982612f68565b602082019050919050565b60006020820190508181036000830152612fcd81612f91565b905091905056fea2646970667358221220f49d7726bff1fdcf69fda24d023274c4d24512ec6a1998ea1e76420a97cec05964736f6c63430008120033697066733a2f2f516d5750333167466d6174763735593831514a63414c5a737859797365676d63723841333563474c6a6b4d46546d2f756e72657665616c65642e6a736f6e

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806372250380116100f7578063a49a1e7d11610095578063d445b97811610064578063d445b978146105e5578063d5abeb0114610622578063e985e9c51461064d578063f2fde38b1461068a576101cd565b8063a49a1e7d14610538578063b88d4fde14610561578063bdb4b8481461057d578063c87b56dd146105a8576101cd565b806395d89b41116100d157806395d89b411461049f578063a0712d68146104ca578063a0931011146104e6578063a22cb4651461050f576101cd565b806372250380146104325780637d8966e41461045d5780638da5cb5b14610474576101cd565b80633c68eb811161016f578063627804af1161013e578063627804af146103785780636352211e146103a157806370a08231146103de578063715018a61461041b576101cd565b80633c68eb811461030557806342842e0e1461031c57806344a0d68a146103385780635bc020bc14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e4a6b10146102be57806323b872dd146102e9576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612030565b6106b3565b6040516102069190612078565b60405180910390f35b34801561021b57600080fd5b50610224610745565b6040516102319190612123565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061217b565b6107d7565b60405161026e91906121e9565b60405180910390f35b610291600480360381019061028c9190612230565b610856565b005b34801561029f57600080fd5b506102a861099a565b6040516102b5919061227f565b60405180910390f35b3480156102ca57600080fd5b506102d36109b1565b6040516102e0919061227f565b60405180910390f35b61030360048036038101906102fe919061229a565b6109b7565b005b34801561031157600080fd5b5061031a610cd9565b005b6103366004803603810190610331919061229a565b610d31565b005b34801561034457600080fd5b5061035f600480360381019061035a919061217b565b610d51565b005b34801561036d57600080fd5b50610376610d63565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612230565b610d97565b005b3480156103ad57600080fd5b506103c860048036038101906103c3919061217b565b610dd4565b6040516103d591906121e9565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906122ed565b610de6565b604051610412919061227f565b60405180910390f35b34801561042757600080fd5b50610430610e9e565b005b34801561043e57600080fd5b50610447610eb2565b6040516104549190612123565b60405180910390f35b34801561046957600080fd5b50610472610f40565b005b34801561048057600080fd5b50610489610f74565b60405161049691906121e9565b60405180910390f35b3480156104ab57600080fd5b506104b4610f9e565b6040516104c19190612123565b60405180910390f35b6104e460048036038101906104df919061217b565b611030565b005b3480156104f257600080fd5b5061050d6004803603810190610508919061217b565b61109b565b005b34801561051b57600080fd5b5061053660048036038101906105319190612346565b6110ad565b005b34801561054457600080fd5b5061055f600480360381019061055a91906123eb565b6111b8565b005b61057b60048036038101906105769190612568565b6111d6565b005b34801561058957600080fd5b50610592611249565b60405161059f919061227f565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061217b565b61124f565b6040516105dc9190612123565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906122ed565b61133a565b604051610619919061227f565b60405180910390f35b34801561062e57600080fd5b50610637611352565b604051610644919061227f565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906125eb565b611358565b6040516106819190612078565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac91906122ed565b6113ec565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107549061265a565b80601f01602080910402602001604051908101604052809291908181526020018280546107809061265a565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b5050505050905090565b60006107e28261146f565b610818576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086182610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff166108826114ce565b73ffffffffffffffffffffffffffffffffffffffff16146108e5576108ae816108a96114ce565b611358565b6108e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109a46114d6565b6001546000540303905090565b600d5481565b60006109c2826114df565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a35846115ab565b91509150610a4b8187610a466114ce565b6115d2565b610a9757610a6086610a5b6114ce565b611358565b610a96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610afd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0a8686866001611616565b8015610b1557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be385610bbf88888761161c565b7c020000000000000000000000000000000000000000000000000000000017611644565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c695760006001850190506000600460008381526020019081526020016000205403610c67576000548114610c66578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cd1868686600161166f565b505050505050565b610ce1611675565b610ce96116f3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2e573d6000803e3d6000fd5b50565b610d4c838383604051806020016040528060008152506111d6565b505050565b610d59611675565b80600b8190555050565b610d6b611675565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610d9f611675565b6000610da961099a565b9050600c548282610dba91906126ba565b1115610dc557600080fd5b610dcf83836116fb565b505050565b6000610ddf826114df565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea6611675565b610eb060006118b6565b565b600f8054610ebf9061265a565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb9061265a565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b505050505081565b610f48611675565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fad9061265a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd99061265a565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905090565b61103861197c565b601060019054906101000a900460ff16611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e9061273a565b60405180910390fd5b611090816119cb565b611098611b39565b50565b6110a3611675565b80600d8190555050565b80600760006110ba6114ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111676114ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111ac9190612078565b60405180910390a35050565b6111c0611675565b8181600e91826111d1929190612911565b505050565b6111e18484846109b7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112435761120c84848484611b43565b611242576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b606061125a8261146f565b611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090612a2d565b60405180910390fd5b60011515601060009054906101000a900460ff161515036113115760006112be611c93565b905060008151116112de5760405180602001604052806000815250611309565b806112e884611d25565b6040516020016112f9929190612ad5565b6040516020818303038152906040525b915050611335565b600f6040516020016113239190612b87565b60405160208183030381529060405290505b919050565b600a6020528060005260406000206000915090505481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f4611675565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90612c10565b60405180910390fd5b61146c816118b6565b50565b60008161147a6114d6565b11158015611489575060005482105b80156114c7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806114ee6114d6565b11611574576000548110156115735760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611571575b6000810361156757600460008360019003935083815260200190815260200160002054905061153d565b80925050506115a6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611633868684611df3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61167d6116f3565b73ffffffffffffffffffffffffffffffffffffffff1661169b610f74565b73ffffffffffffffffffffffffffffffffffffffff16146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890612c7c565b60405180910390fd5b565b600033905090565b6000805490506000820361173b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117486000848385611616565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506117bf836117b0600086600061161c565b6117b985611dfc565b17611644565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461186057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611825565b506000820361189b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506118b1600084838561166f565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600954036119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890612ce8565b60405180910390fd5b6002600981905550565b600d5481111580156119dd5750600081115b611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390612d54565b60405180910390fd5b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611a6b576000611a6e565b60025b60ff1690508082611a7f9190612d74565b600b54611a8c9190612da8565b341015611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590612e36565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1d91906126ba565b92505081905550611b35611b2f6116f3565b83611e0c565b5050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b696114ce565b8786866040518563ffffffff1660e01b8152600401611b8b9493929190612eab565b6020604051808303816000875af1925050508015611bc757506040513d601f19601f82011682018060405250810190611bc49190612f0c565b60015b611c40573d8060008114611bf7576040519150601f19603f3d011682016040523d82523d6000602084013e611bfc565b606091505b506000815103611c38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611ca29061265a565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce9061265a565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b5050505050905090565b606060006001611d3484611e71565b01905060008167ffffffffffffffff811115611d5357611d5261243d565b5b6040519080825280601f01601f191660200182016040528015611d855781602001600182028036833780820191505090505b509050600082602001820190505b600115611de8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ddc57611ddb612f39565b5b04945060008503611d93575b819350505050919050565b60009392505050565b60006001821460e11b9050919050565b600c54611e1761099a565b82611e2291906126ba565b1115611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90612fb4565b60405180910390fd5b611e6d82826116fb565b5050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ecf577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ec557611ec4612f39565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f0c576d04ee2d6d415b85acef81000000008381611f0257611f01612f39565b5b0492506020810190505b662386f26fc100008310611f3b57662386f26fc100008381611f3157611f30612f39565b5b0492506010810190505b6305f5e1008310611f64576305f5e1008381611f5a57611f59612f39565b5b0492506008810190505b6127108310611f89576127108381611f7f57611f7e612f39565b5b0492506004810190505b60648310611fac5760648381611fa257611fa1612f39565b5b0492506002810190505b600a8310611fbb576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61200d81611fd8565b811461201857600080fd5b50565b60008135905061202a81612004565b92915050565b60006020828403121561204657612045611fce565b5b60006120548482850161201b565b91505092915050565b60008115159050919050565b6120728161205d565b82525050565b600060208201905061208d6000830184612069565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120cd5780820151818401526020810190506120b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006120f582612093565b6120ff818561209e565b935061210f8185602086016120af565b612118816120d9565b840191505092915050565b6000602082019050818103600083015261213d81846120ea565b905092915050565b6000819050919050565b61215881612145565b811461216357600080fd5b50565b6000813590506121758161214f565b92915050565b60006020828403121561219157612190611fce565b5b600061219f84828501612166565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d3826121a8565b9050919050565b6121e3816121c8565b82525050565b60006020820190506121fe60008301846121da565b92915050565b61220d816121c8565b811461221857600080fd5b50565b60008135905061222a81612204565b92915050565b6000806040838503121561224757612246611fce565b5b60006122558582860161221b565b925050602061226685828601612166565b9150509250929050565b61227981612145565b82525050565b60006020820190506122946000830184612270565b92915050565b6000806000606084860312156122b3576122b2611fce565b5b60006122c18682870161221b565b93505060206122d28682870161221b565b92505060406122e386828701612166565b9150509250925092565b60006020828403121561230357612302611fce565b5b60006123118482850161221b565b91505092915050565b6123238161205d565b811461232e57600080fd5b50565b6000813590506123408161231a565b92915050565b6000806040838503121561235d5761235c611fce565b5b600061236b8582860161221b565b925050602061237c85828601612331565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126123ab576123aa612386565b5b8235905067ffffffffffffffff8111156123c8576123c761238b565b5b6020830191508360018202830111156123e4576123e3612390565b5b9250929050565b6000806020838503121561240257612401611fce565b5b600083013567ffffffffffffffff8111156124205761241f611fd3565b5b61242c85828601612395565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612475826120d9565b810181811067ffffffffffffffff821117156124945761249361243d565b5b80604052505050565b60006124a7611fc4565b90506124b3828261246c565b919050565b600067ffffffffffffffff8211156124d3576124d261243d565b5b6124dc826120d9565b9050602081019050919050565b82818337600083830152505050565b600061250b612506846124b8565b61249d565b90508281526020810184848401111561252757612526612438565b5b6125328482856124e9565b509392505050565b600082601f83011261254f5761254e612386565b5b813561255f8482602086016124f8565b91505092915050565b6000806000806080858703121561258257612581611fce565b5b60006125908782880161221b565b94505060206125a18782880161221b565b93505060406125b287828801612166565b925050606085013567ffffffffffffffff8111156125d3576125d2611fd3565b5b6125df8782880161253a565b91505092959194509250565b6000806040838503121561260257612601611fce565b5b60006126108582860161221b565b92505060206126218582860161221b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267257607f821691505b6020821081036126855761268461262b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126c582612145565b91506126d083612145565b92508282019050808211156126e8576126e761268b565b5b92915050565b7f53616c65206e6f742073746172746564207965742e0000000000000000000000600082015250565b600061272460158361209e565b915061272f826126ee565b602082019050919050565b6000602082019050818103600083015261275381612717565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261278a565b6127d1868361278a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061280e61280961280484612145565b6127e9565b612145565b9050919050565b6000819050919050565b612828836127f3565b61283c61283482612815565b848454612797565b825550505050565b600090565b612851612844565b61285c81848461281f565b505050565b5b8181101561288057612875600082612849565b600181019050612862565b5050565b601f8211156128c55761289681612765565b61289f8461277a565b810160208510156128ae578190505b6128c26128ba8561277a565b830182612861565b50505b505050565b600082821c905092915050565b60006128e8600019846008026128ca565b1980831691505092915050565b600061290183836128d7565b9150826002028217905092915050565b61291b838361275a565b67ffffffffffffffff8111156129345761293361243d565b5b61293e825461265a565b612949828285612884565b6000601f8311600181146129785760008415612966578287013590505b61297085826128f5565b8655506129d8565b601f19841661298686612765565b60005b828110156129ae57848901358255600182019150602085019450602081019050612989565b868310156129cb57848901356129c7601f8916826128d7565b8355505b6001600288020188555050505b50505050505050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612a17601f8361209e565b9150612a22826129e1565b602082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b600081905092915050565b6000612a6382612093565b612a6d8185612a4d565b9350612a7d8185602086016120af565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612abf600583612a4d565b9150612aca82612a89565b600582019050919050565b6000612ae18285612a58565b9150612aed8284612a58565b9150612af882612ab2565b91508190509392505050565b60008154612b118161265a565b612b1b8186612a4d565b94506001821660008114612b365760018114612b4b57612b7e565b60ff1983168652811515820286019350612b7e565b612b5485612765565b60005b83811015612b7657815481890152600182019150602081019050612b57565b838801955050505b50505092915050565b6000612b938284612b04565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bfa60268361209e565b9150612c0582612b9e565b604082019050919050565b60006020820190508181036000830152612c2981612bed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6660208361209e565b9150612c7182612c30565b602082019050919050565b60006020820190508181036000830152612c9581612c59565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612cd2601f8361209e565b9150612cdd82612c9c565b602082019050919050565b60006020820190508181036000830152612d0181612cc5565b9050919050565b7f4d617820313020706572205472616e73616374696f6e2e000000000000000000600082015250565b6000612d3e60178361209e565b9150612d4982612d08565b602082019050919050565b60006020820190508181036000830152612d6d81612d31565b9050919050565b6000612d7f82612145565b9150612d8a83612145565b9250828203905081811115612da257612da161268b565b5b92915050565b6000612db382612145565b9150612dbe83612145565b9250828202612dcc81612145565b91508282048414831517612de357612de261268b565b5b5092915050565b7f54776f20467265652c207265737420302e303032204554482e00000000000000600082015250565b6000612e2060198361209e565b9150612e2b82612dea565b602082019050919050565b60006020820190508181036000830152612e4f81612e13565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e7d82612e56565b612e878185612e61565b9350612e978185602086016120af565b612ea0816120d9565b840191505092915050565b6000608082019050612ec060008301876121da565b612ecd60208301866121da565b612eda6040830185612270565b8181036060830152612eec8184612e72565b905095945050505050565b600081519050612f0681612004565b92915050565b600060208284031215612f2257612f21611fce565b5b6000612f3084828501612ef7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f3020537570706c79204c6566742e000000000000000000000000000000000000600082015250565b6000612f9e600e8361209e565b9150612fa982612f68565b602082019050919050565b60006020820190508181036000830152612fcd81612f91565b905091905056fea2646970667358221220f49d7726bff1fdcf69fda24d023274c4d24512ec6a1998ea1e76420a97cec05964736f6c63430008120033

Deployed Bytecode Sourcemap

74311:2889:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36549:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37451:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43942:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43375:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33202:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74546:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47581:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77071:116;;;;;;;;;;;;;:::i;:::-;;50502:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76119:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76019:88;;;;;;;;;;;;;:::i;:::-;;75609:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38844:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34386:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72356:103;;;;;;;;;;;;;:::i;:::-;;74617:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75925:86;;;;;;;;;;;;;:::i;:::-;;71708:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37627:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74861:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75827:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44500:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76217:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51293:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74464:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76437:517;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74409:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74508:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44891:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72614:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36549:639;36634:4;36973:10;36958:25;;:11;:25;;;;:102;;;;37050:10;37035:25;;:11;:25;;;;36958:102;:179;;;;37127:10;37112:25;;:11;:25;;;;36958:179;36938:199;;36549:639;;;:::o;37451:100::-;37505:13;37538:5;37531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37451:100;:::o;43942:218::-;44018:7;44043:16;44051:7;44043;:16::i;:::-;44038:64;;44068:34;;;;;;;;;;;;;;44038:64;44122:15;:24;44138:7;44122:24;;;;;;;;;;;:30;;;;;;;;;;;;44115:37;;43942:218;;;:::o;43375:408::-;43464:13;43480:16;43488:7;43480;:16::i;:::-;43464:32;;43536:5;43513:28;;:19;:17;:19::i;:::-;:28;;;43509:175;;43561:44;43578:5;43585:19;:17;:19::i;:::-;43561:16;:44::i;:::-;43556:128;;43633:35;;;;;;;;;;;;;;43556:128;43509:175;43729:2;43696:15;:24;43712:7;43696:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43767:7;43763:2;43747:28;;43756:5;43747:28;;;;;;;;;;;;43453:330;43375:408;;:::o;33202:323::-;33263:7;33491:15;:13;:15::i;:::-;33476:12;;33460:13;;:28;:46;33453:53;;33202:323;:::o;74546:29::-;;;;:::o;47581:2825::-;47723:27;47753;47772:7;47753:18;:27::i;:::-;47723:57;;47838:4;47797:45;;47813:19;47797:45;;;47793:86;;47851:28;;;;;;;;;;;;;;47793:86;47893:27;47922:23;47949:35;47976:7;47949:26;:35::i;:::-;47892:92;;;;48084:68;48109:15;48126:4;48132:19;:17;:19::i;:::-;48084:24;:68::i;:::-;48079:180;;48172:43;48189:4;48195:19;:17;:19::i;:::-;48172:16;:43::i;:::-;48167:92;;48224:35;;;;;;;;;;;;;;48167:92;48079:180;48290:1;48276:16;;:2;:16;;;48272:52;;48301:23;;;;;;;;;;;;;;48272:52;48337:43;48359:4;48365:2;48369:7;48378:1;48337:21;:43::i;:::-;48473:15;48470:160;;;48613:1;48592:19;48585:30;48470:160;49010:18;:24;49029:4;49010:24;;;;;;;;;;;;;;;;49008:26;;;;;;;;;;;;49079:18;:22;49098:2;49079:22;;;;;;;;;;;;;;;;49077:24;;;;;;;;;;;49401:146;49438:2;49487:45;49502:4;49508:2;49512:19;49487:14;:45::i;:::-;29601:8;49459:73;49401:18;:146::i;:::-;49372:17;:26;49390:7;49372:26;;;;;;;;;;;:175;;;;49718:1;29601:8;49667:19;:47;:52;49663:627;;49740:19;49772:1;49762:7;:11;49740:33;;49929:1;49895:17;:30;49913:11;49895:30;;;;;;;;;;;;:35;49891:384;;50033:13;;50018:11;:28;50014:242;;50213:19;50180:17;:30;50198:11;50180:30;;;;;;;;;;;:52;;;;50014:242;49891:384;49721:569;49663:627;50337:7;50333:2;50318:27;;50327:4;50318:27;;;;;;;;;;;;50356:42;50377:4;50383:2;50387:7;50396:1;50356:20;:42::i;:::-;47712:2694;;;47581:2825;;;:::o;77071:116::-;71594:13;:11;:13::i;:::-;77134:12:::1;:10;:12::i;:::-;77126:30;;:53;77157:21;77126:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77071:116::o:0;50502:193::-;50648:39;50665:4;50671:2;50675:7;50648:39;;;;;;;;;;;;:16;:39::i;:::-;50502:193;;;:::o;76119:90::-;71594:13;:11;:13::i;:::-;76194:7:::1;76183:8;:18;;;;76119:90:::0;:::o;76019:88::-;71594:13;:11;:13::i;:::-;76089:10:::1;;;;;;;;;;;76088:11;76075:10;;:24;;;;;;;;;;;;;;;;;;76019:88::o:0;75609:206::-;71594:13;:11;:13::i;:::-;75687:19:::1;75709:13;:11;:13::i;:::-;75687:35;;75763:9;;75752:7;75738:11;:21;;;;:::i;:::-;:34;;75730:43;;;::::0;::::1;;75784:23;75790:7;75799;75784:5;:23::i;:::-;75677:138;75609:206:::0;;:::o;38844:152::-;38916:7;38959:27;38978:7;38959:18;:27::i;:::-;38936:52;;38844:152;;;:::o;34386:233::-;34458:7;34499:1;34482:19;;:5;:19;;;34478:60;;34510:28;;;;;;;;;;;;;;34478:60;28545:13;34556:18;:25;34575:5;34556:25;;;;;;;;;;;;;;;;:55;34549:62;;34386:233;;;:::o;72356:103::-;71594:13;:11;:13::i;:::-;72421:30:::1;72448:1;72421:18;:30::i;:::-;72356:103::o:0;74617:102::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75925:86::-;71594:13;:11;:13::i;:::-;75992:11:::1;;;;;;;;;;;75991:12;75977:11;;:26;;;;;;;;;;;;;;;;;;75925:86::o:0;71708:87::-;71754:7;71781:6;;;;;;;;;;;71774:13;;71708:87;:::o;37627:104::-;37683:13;37716:7;37709:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37627:104;:::o;74861:157::-;17544:21;:19;:21::i;:::-;74941:11:::1;;;;;;;;;;;74933:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;74989:21;75002:7;74989:12;:21::i;:::-;17588:20:::0;:18;:20::i;:::-;74861:157;:::o;75827:90::-;71594:13;:11;:13::i;:::-;75905:4:::1;75893:9;:16;;;;75827:90:::0;:::o;44500:234::-;44647:8;44595:18;:39;44614:19;:17;:19::i;:::-;44595:39;;;;;;;;;;;;;;;:49;44635:8;44595:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44707:8;44671:55;;44686:19;:17;:19::i;:::-;44671:55;;;44717:8;44671:55;;;;;;:::i;:::-;;;;;;;;44500:234;;:::o;76217:99::-;71594:13;:11;:13::i;:::-;76302:6:::1;;76292:7;:16;;;;;;;:::i;:::-;;76217:99:::0;;:::o;51293:407::-;51468:31;51481:4;51487:2;51491:7;51468:12;:31::i;:::-;51532:1;51514:2;:14;;;:19;51510:183;;51553:56;51584:4;51590:2;51594:7;51603:5;51553:30;:56::i;:::-;51548:145;;51637:40;;;;;;;;;;;;;;51548:145;51510:183;51293:407;;;;:::o;74464:37::-;;;;:::o;76437:517::-;76511:13;76545:17;76553:8;76545:7;:17::i;:::-;76537:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;76626:4;76612:18;;:10;;;;;;;;;;;:18;;;76609:338;;76647:28;76678:10;:8;:10::i;:::-;76647:41;;76741:1;76716:14;76710:28;:32;:136;;;;;;;;;;;;;;;;;76782:14;76798:19;:8;:17;:19::i;:::-;76765:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76710:136;76703:143;;;;;76609:338;76919:14;76902:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;76888:47;;76437:517;;;;:::o;74409:48::-;;;;;;;;;;;;;;;;;:::o;74508:31::-;;;;:::o;44891:164::-;44988:4;45012:18;:25;45031:5;45012:25;;;;;;;;;;;;;;;:35;45038:8;45012:35;;;;;;;;;;;;;;;;;;;;;;;;;45005:42;;44891:164;;;;:::o;72614:201::-;71594:13;:11;:13::i;:::-;72723:1:::1;72703:22;;:8;:22;;::::0;72695:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;72779:28;72798:8;72779:18;:28::i;:::-;72614:201:::0;:::o;45313:282::-;45378:4;45434:7;45415:15;:13;:15::i;:::-;:26;;:66;;;;;45468:13;;45458:7;:23;45415:66;:153;;;;;45567:1;29321:8;45519:17;:26;45537:7;45519:26;;;;;;;;;;;;:44;:49;45415:153;45395:173;;45313:282;;;:::o;67621:105::-;67681:7;67708:10;67701:17;;67621:105;:::o;76962:101::-;77027:7;77054:1;77047:8;;76962:101;:::o;39999:1275::-;40066:7;40086:12;40101:7;40086:22;;40169:4;40150:15;:13;:15::i;:::-;:23;40146:1061;;40203:13;;40196:4;:20;40192:1015;;;40241:14;40258:17;:23;40276:4;40258:23;;;;;;;;;;;;40241:40;;40375:1;29321:8;40347:6;:24;:29;40343:845;;41012:113;41029:1;41019:6;:11;41012:113;;41072:17;:25;41090:6;;;;;;;41072:25;;;;;;;;;;;;41063:34;;41012:113;;;41158:6;41151:13;;;;;;40343:845;40218:989;40192:1015;40146:1061;41235:31;;;;;;;;;;;;;;39999:1275;;;;:::o;46476:485::-;46578:27;46607:23;46648:38;46689:15;:24;46705:7;46689:24;;;;;;;;;;;46648:65;;46866:18;46843:41;;46923:19;46917:26;46898:45;;46828:126;46476:485;;;:::o;45704:659::-;45853:11;46018:16;46011:5;46007:28;45998:37;;46178:16;46167:9;46163:32;46150:45;;46328:15;46317:9;46314:30;46306:5;46295:9;46292:20;46289:56;46279:66;;45704:659;;;;;:::o;52362:159::-;;;;;:::o;66930:311::-;67065:7;67085:16;29725:3;67111:19;:41;;67085:68;;29725:3;67179:31;67190:4;67196:2;67200:9;67179:10;:31::i;:::-;67171:40;;:62;;67164:69;;;66930:311;;;;;:::o;41822:450::-;41902:14;42070:16;42063:5;42059:28;42050:37;;42247:5;42233:11;42208:23;42204:41;42201:52;42194:5;42191:63;42181:73;;41822:450;;;;:::o;53186:158::-;;;;;:::o;71873:132::-;71948:12;:10;:12::i;:::-;71937:23;;:7;:5;:7::i;:::-;:23;;;71929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71873:132::o;70259:98::-;70312:7;70339:10;70332:17;;70259:98;:::o;54962:2966::-;55035:20;55058:13;;55035:36;;55098:1;55086:8;:13;55082:44;;55108:18;;;;;;;;;;;;;;55082:44;55139:61;55169:1;55173:2;55177:12;55191:8;55139:21;:61::i;:::-;55683:1;28683:2;55653:1;:26;;55652:32;55640:8;:45;55614:18;:22;55633:2;55614:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55962:139;55999:2;56053:33;56076:1;56080:2;56084:1;56053:14;:33::i;:::-;56020:30;56041:8;56020:20;:30::i;:::-;:66;55962:18;:139::i;:::-;55928:17;:31;55946:12;55928:31;;;;;;;;;;;:173;;;;56118:16;56149:11;56178:8;56163:12;:23;56149:37;;56699:16;56695:2;56691:25;56679:37;;57071:12;57031:8;56990:1;56928:25;56869:1;56808;56781:335;57442:1;57428:12;57424:20;57382:346;57483:3;57474:7;57471:16;57382:346;;57701:7;57691:8;57688:1;57661:25;57658:1;57655;57650:59;57536:1;57527:7;57523:15;57512:26;;57382:346;;;57386:77;57773:1;57761:8;:13;57757:45;;57783:19;;;;;;;;;;;;;;57757:45;57835:3;57819:13;:19;;;;55388:2462;;57860:60;57889:1;57893:2;57897:12;57911:8;57860:20;:60::i;:::-;55024:2904;54962:2966;;:::o;72975:191::-;73049:16;73068:6;;;;;;;;;;;73049:25;;73094:8;73085:6;;:17;;;;;;;;;;;;;;;;;;73149:8;73118:40;;73139:8;73118:40;;;;;;;;;;;;73038:128;72975:191;:::o;17624:293::-;17026:1;17758:7;;:19;17750:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17026:1;17891:7;:18;;;;17624:293::o;75026:386::-;75104:9;;75093:7;:20;;:35;;;;;75127:1;75117:7;:11;75093:35;75085:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;75167:12;75214:1;75182:16;:28;75199:10;75182:28;;;;;;;;;;;;;;;;:33;:41;;75222:1;75182:41;;;75218:1;75182:41;75167:56;;;;75277:4;75267:7;:14;;;;:::i;:::-;75255:8;;:27;;;;:::i;:::-;75242:9;:40;;75234:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;75355:7;75323:16;:28;75340:10;75323:28;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;75373:31;75382:12;:10;:12::i;:::-;75396:7;75373:8;:31::i;:::-;75074:338;75026:386;:::o;17925:213::-;16982:1;18108:7;:22;;;;17925:213::o;53784:716::-;53947:4;53993:2;53968:45;;;54014:19;:17;:19::i;:::-;54035:4;54041:7;54050:5;53968:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53964:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54268:1;54251:6;:13;:18;54247:235;;54297:40;;;;;;;;;;;;;;54247:235;54440:6;54434:13;54425:6;54421:2;54417:15;54410:38;53964:529;54137:54;;;54127:64;;;:6;:64;;;;54120:71;;;53784:716;;;;;;:::o;76324:100::-;76376:13;76409:7;76402:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76324:100;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;66631:147::-;66768:6;66631:147;;;;;:::o;42374:324::-;42444:14;42677:1;42667:8;42664:15;42638:24;42634:46;42624:56;;42374:324;;;:::o;75420:177::-;75527:9;;75510:13;:11;:13::i;:::-;75500:7;:23;;;;:::i;:::-;:36;;75492:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;75566:23;75572:7;75581;75566:5;:23::i;:::-;75420:177;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:117;7292:1;7289;7282:12;7320:553;7378:8;7388:6;7438:3;7431:4;7423:6;7419:17;7415:27;7405:122;;7446:79;;:::i;:::-;7405:122;7559:6;7546:20;7536:30;;7589:18;7581:6;7578:30;7575:117;;;7611:79;;:::i;:::-;7575:117;7725:4;7717:6;7713:17;7701:29;;7779:3;7771:4;7763:6;7759:17;7749:8;7745:32;7742:41;7739:128;;;7786:79;;:::i;:::-;7739:128;7320:553;;;;;:::o;7879:529::-;7950:6;7958;8007:2;7995:9;7986:7;7982:23;7978:32;7975:119;;;8013:79;;:::i;:::-;7975:119;8161:1;8150:9;8146:17;8133:31;8191:18;8183:6;8180:30;8177:117;;;8213:79;;:::i;:::-;8177:117;8326:65;8383:7;8374:6;8363:9;8359:22;8326:65;:::i;:::-;8308:83;;;;8104:297;7879:529;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:180::-;12385:77;12382:1;12375:88;12482:4;12479:1;12472:15;12506:4;12503:1;12496:15;12523:191;12563:3;12582:20;12600:1;12582:20;:::i;:::-;12577:25;;12616:20;12634:1;12616:20;:::i;:::-;12611:25;;12659:1;12656;12652:9;12645:16;;12680:3;12677:1;12674:10;12671:36;;;12687:18;;:::i;:::-;12671:36;12523:191;;;;:::o;12720:171::-;12860:23;12856:1;12848:6;12844:14;12837:47;12720:171;:::o;12897:366::-;13039:3;13060:67;13124:2;13119:3;13060:67;:::i;:::-;13053:74;;13136:93;13225:3;13136:93;:::i;:::-;13254:2;13249:3;13245:12;13238:19;;12897:366;;;:::o;13269:419::-;13435:4;13473:2;13462:9;13458:18;13450:26;;13522:9;13516:4;13512:20;13508:1;13497:9;13493:17;13486:47;13550:131;13676:4;13550:131;:::i;:::-;13542:139;;13269:419;;;:::o;13694:97::-;13753:6;13781:3;13771:13;;13694:97;;;;:::o;13797:141::-;13846:4;13869:3;13861:11;;13892:3;13889:1;13882:14;13926:4;13923:1;13913:18;13905:26;;13797:141;;;:::o;13944:93::-;13981:6;14028:2;14023;14016:5;14012:14;14008:23;13998:33;;13944:93;;;:::o;14043:107::-;14087:8;14137:5;14131:4;14127:16;14106:37;;14043:107;;;;:::o;14156:393::-;14225:6;14275:1;14263:10;14259:18;14298:97;14328:66;14317:9;14298:97;:::i;:::-;14416:39;14446:8;14435:9;14416:39;:::i;:::-;14404:51;;14488:4;14484:9;14477:5;14473:21;14464:30;;14537:4;14527:8;14523:19;14516:5;14513:30;14503:40;;14232:317;;14156:393;;;;;:::o;14555:60::-;14583:3;14604:5;14597:12;;14555:60;;;:::o;14621:142::-;14671:9;14704:53;14722:34;14731:24;14749:5;14731:24;:::i;:::-;14722:34;:::i;:::-;14704:53;:::i;:::-;14691:66;;14621:142;;;:::o;14769:75::-;14812:3;14833:5;14826:12;;14769:75;;;:::o;14850:269::-;14960:39;14991:7;14960:39;:::i;:::-;15021:91;15070:41;15094:16;15070:41;:::i;:::-;15062:6;15055:4;15049:11;15021:91;:::i;:::-;15015:4;15008:105;14926:193;14850:269;;;:::o;15125:73::-;15170:3;15125:73;:::o;15204:189::-;15281:32;;:::i;:::-;15322:65;15380:6;15372;15366:4;15322:65;:::i;:::-;15257:136;15204:189;;:::o;15399:186::-;15459:120;15476:3;15469:5;15466:14;15459:120;;;15530:39;15567:1;15560:5;15530:39;:::i;:::-;15503:1;15496:5;15492:13;15483:22;;15459:120;;;15399:186;;:::o;15591:543::-;15692:2;15687:3;15684:11;15681:446;;;15726:38;15758:5;15726:38;:::i;:::-;15810:29;15828:10;15810:29;:::i;:::-;15800:8;15796:44;15993:2;15981:10;15978:18;15975:49;;;16014:8;15999:23;;15975:49;16037:80;16093:22;16111:3;16093:22;:::i;:::-;16083:8;16079:37;16066:11;16037:80;:::i;:::-;15696:431;;15681:446;15591:543;;;:::o;16140:117::-;16194:8;16244:5;16238:4;16234:16;16213:37;;16140:117;;;;:::o;16263:169::-;16307:6;16340:51;16388:1;16384:6;16376:5;16373:1;16369:13;16340:51;:::i;:::-;16336:56;16421:4;16415;16411:15;16401:25;;16314:118;16263:169;;;;:::o;16437:295::-;16513:4;16659:29;16684:3;16678:4;16659:29;:::i;:::-;16651:37;;16721:3;16718:1;16714:11;16708:4;16705:21;16697:29;;16437:295;;;;:::o;16737:1403::-;16861:44;16901:3;16896;16861:44;:::i;:::-;16970:18;16962:6;16959:30;16956:56;;;16992:18;;:::i;:::-;16956:56;17036:38;17068:4;17062:11;17036:38;:::i;:::-;17121:67;17181:6;17173;17167:4;17121:67;:::i;:::-;17215:1;17244:2;17236:6;17233:14;17261:1;17256:632;;;;17932:1;17949:6;17946:84;;;18005:9;18000:3;17996:19;17983:33;17974:42;;17946:84;18056:67;18116:6;18109:5;18056:67;:::i;:::-;18050:4;18043:81;17905:229;17226:908;;17256:632;17308:4;17304:9;17296:6;17292:22;17342:37;17374:4;17342:37;:::i;:::-;17401:1;17415:215;17429:7;17426:1;17423:14;17415:215;;;17515:9;17510:3;17506:19;17493:33;17485:6;17478:49;17566:1;17558:6;17554:14;17544:24;;17613:2;17602:9;17598:18;17585:31;;17452:4;17449:1;17445:12;17440:17;;17415:215;;;17658:6;17649:7;17646:19;17643:186;;;17723:9;17718:3;17714:19;17701:33;17766:48;17808:4;17800:6;17796:17;17785:9;17766:48;:::i;:::-;17758:6;17751:64;17666:163;17643:186;17875:1;17871;17863:6;17859:14;17855:22;17849:4;17842:36;17263:625;;;17226:908;;16836:1304;;;16737:1403;;;:::o;18146:181::-;18286:33;18282:1;18274:6;18270:14;18263:57;18146:181;:::o;18333:366::-;18475:3;18496:67;18560:2;18555:3;18496:67;:::i;:::-;18489:74;;18572:93;18661:3;18572:93;:::i;:::-;18690:2;18685:3;18681:12;18674:19;;18333:366;;;:::o;18705:419::-;18871:4;18909:2;18898:9;18894:18;18886:26;;18958:9;18952:4;18948:20;18944:1;18933:9;18929:17;18922:47;18986:131;19112:4;18986:131;:::i;:::-;18978:139;;18705:419;;;:::o;19130:148::-;19232:11;19269:3;19254:18;;19130:148;;;;:::o;19284:390::-;19390:3;19418:39;19451:5;19418:39;:::i;:::-;19473:89;19555:6;19550:3;19473:89;:::i;:::-;19466:96;;19571:65;19629:6;19624:3;19617:4;19610:5;19606:16;19571:65;:::i;:::-;19661:6;19656:3;19652:16;19645:23;;19394:280;19284:390;;;;:::o;19680:155::-;19820:7;19816:1;19808:6;19804:14;19797:31;19680:155;:::o;19841:400::-;20001:3;20022:84;20104:1;20099:3;20022:84;:::i;:::-;20015:91;;20115:93;20204:3;20115:93;:::i;:::-;20233:1;20228:3;20224:11;20217:18;;19841:400;;;:::o;20247:701::-;20528:3;20550:95;20641:3;20632:6;20550:95;:::i;:::-;20543:102;;20662:95;20753:3;20744:6;20662:95;:::i;:::-;20655:102;;20774:148;20918:3;20774:148;:::i;:::-;20767:155;;20939:3;20932:10;;20247:701;;;;;:::o;20978:874::-;21081:3;21118:5;21112:12;21147:36;21173:9;21147:36;:::i;:::-;21199:89;21281:6;21276:3;21199:89;:::i;:::-;21192:96;;21319:1;21308:9;21304:17;21335:1;21330:166;;;;21510:1;21505:341;;;;21297:549;;21330:166;21414:4;21410:9;21399;21395:25;21390:3;21383:38;21476:6;21469:14;21462:22;21454:6;21450:35;21445:3;21441:45;21434:52;;21330:166;;21505:341;21572:38;21604:5;21572:38;:::i;:::-;21632:1;21646:154;21660:6;21657:1;21654:13;21646:154;;;21734:7;21728:14;21724:1;21719:3;21715:11;21708:35;21784:1;21775:7;21771:15;21760:26;;21682:4;21679:1;21675:12;21670:17;;21646:154;;;21829:6;21824:3;21820:16;21813:23;;21512:334;;21297:549;;21085:767;;20978:874;;;;:::o;21858:269::-;21987:3;22009:92;22097:3;22088:6;22009:92;:::i;:::-;22002:99;;22118:3;22111:10;;21858:269;;;;:::o;22133:225::-;22273:34;22269:1;22261:6;22257:14;22250:58;22342:8;22337:2;22329:6;22325:15;22318:33;22133:225;:::o;22364:366::-;22506:3;22527:67;22591:2;22586:3;22527:67;:::i;:::-;22520:74;;22603:93;22692:3;22603:93;:::i;:::-;22721:2;22716:3;22712:12;22705:19;;22364:366;;;:::o;22736:419::-;22902:4;22940:2;22929:9;22925:18;22917:26;;22989:9;22983:4;22979:20;22975:1;22964:9;22960:17;22953:47;23017:131;23143:4;23017:131;:::i;:::-;23009:139;;22736:419;;;:::o;23161:182::-;23301:34;23297:1;23289:6;23285:14;23278:58;23161:182;:::o;23349:366::-;23491:3;23512:67;23576:2;23571:3;23512:67;:::i;:::-;23505:74;;23588:93;23677:3;23588:93;:::i;:::-;23706:2;23701:3;23697:12;23690:19;;23349:366;;;:::o;23721:419::-;23887:4;23925:2;23914:9;23910:18;23902:26;;23974:9;23968:4;23964:20;23960:1;23949:9;23945:17;23938:47;24002:131;24128:4;24002:131;:::i;:::-;23994:139;;23721:419;;;:::o;24146:181::-;24286:33;24282:1;24274:6;24270:14;24263:57;24146:181;:::o;24333:366::-;24475:3;24496:67;24560:2;24555:3;24496:67;:::i;:::-;24489:74;;24572:93;24661:3;24572:93;:::i;:::-;24690:2;24685:3;24681:12;24674:19;;24333:366;;;:::o;24705:419::-;24871:4;24909:2;24898:9;24894:18;24886:26;;24958:9;24952:4;24948:20;24944:1;24933:9;24929:17;24922:47;24986:131;25112:4;24986:131;:::i;:::-;24978:139;;24705:419;;;:::o;25130:173::-;25270:25;25266:1;25258:6;25254:14;25247:49;25130:173;:::o;25309:366::-;25451:3;25472:67;25536:2;25531:3;25472:67;:::i;:::-;25465:74;;25548:93;25637:3;25548:93;:::i;:::-;25666:2;25661:3;25657:12;25650:19;;25309:366;;;:::o;25681:419::-;25847:4;25885:2;25874:9;25870:18;25862:26;;25934:9;25928:4;25924:20;25920:1;25909:9;25905:17;25898:47;25962:131;26088:4;25962:131;:::i;:::-;25954:139;;25681:419;;;:::o;26106:194::-;26146:4;26166:20;26184:1;26166:20;:::i;:::-;26161:25;;26200:20;26218:1;26200:20;:::i;:::-;26195:25;;26244:1;26241;26237:9;26229:17;;26268:1;26262:4;26259:11;26256:37;;;26273:18;;:::i;:::-;26256:37;26106:194;;;;:::o;26306:410::-;26346:7;26369:20;26387:1;26369:20;:::i;:::-;26364:25;;26403:20;26421:1;26403:20;:::i;:::-;26398:25;;26458:1;26455;26451:9;26480:30;26498:11;26480:30;:::i;:::-;26469:41;;26659:1;26650:7;26646:15;26643:1;26640:22;26620:1;26613:9;26593:83;26570:139;;26689:18;;:::i;:::-;26570:139;26354:362;26306:410;;;;:::o;26722:175::-;26862:27;26858:1;26850:6;26846:14;26839:51;26722:175;:::o;26903:366::-;27045:3;27066:67;27130:2;27125:3;27066:67;:::i;:::-;27059:74;;27142:93;27231:3;27142:93;:::i;:::-;27260:2;27255:3;27251:12;27244:19;;26903:366;;;:::o;27275:419::-;27441:4;27479:2;27468:9;27464:18;27456:26;;27528:9;27522:4;27518:20;27514:1;27503:9;27499:17;27492:47;27556:131;27682:4;27556:131;:::i;:::-;27548:139;;27275:419;;;:::o;27700:98::-;27751:6;27785:5;27779:12;27769:22;;27700:98;;;:::o;27804:168::-;27887:11;27921:6;27916:3;27909:19;27961:4;27956:3;27952:14;27937:29;;27804:168;;;;:::o;27978:373::-;28064:3;28092:38;28124:5;28092:38;:::i;:::-;28146:70;28209:6;28204:3;28146:70;:::i;:::-;28139:77;;28225:65;28283:6;28278:3;28271:4;28264:5;28260:16;28225:65;:::i;:::-;28315:29;28337:6;28315:29;:::i;:::-;28310:3;28306:39;28299:46;;28068:283;27978:373;;;;:::o;28357:640::-;28552:4;28590:3;28579:9;28575:19;28567:27;;28604:71;28672:1;28661:9;28657:17;28648:6;28604:71;:::i;:::-;28685:72;28753:2;28742:9;28738:18;28729:6;28685:72;:::i;:::-;28767;28835:2;28824:9;28820:18;28811:6;28767:72;:::i;:::-;28886:9;28880:4;28876:20;28871:2;28860:9;28856:18;28849:48;28914:76;28985:4;28976:6;28914:76;:::i;:::-;28906:84;;28357:640;;;;;;;:::o;29003:141::-;29059:5;29090:6;29084:13;29075:22;;29106:32;29132:5;29106:32;:::i;:::-;29003:141;;;;:::o;29150:349::-;29219:6;29268:2;29256:9;29247:7;29243:23;29239:32;29236:119;;;29274:79;;:::i;:::-;29236:119;29394:1;29419:63;29474:7;29465:6;29454:9;29450:22;29419:63;:::i;:::-;29409:73;;29365:127;29150:349;;;;:::o;29505:180::-;29553:77;29550:1;29543:88;29650:4;29647:1;29640:15;29674:4;29671:1;29664:15;29691:164;29831:16;29827:1;29819:6;29815:14;29808:40;29691:164;:::o;29861:366::-;30003:3;30024:67;30088:2;30083:3;30024:67;:::i;:::-;30017:74;;30100:93;30189:3;30100:93;:::i;:::-;30218:2;30213:3;30209:12;30202:19;;29861:366;;;:::o;30233:419::-;30399:4;30437:2;30426:9;30422:18;30414:26;;30486:9;30480:4;30476:20;30472:1;30461:9;30457:17;30450:47;30514:131;30640:4;30514:131;:::i;:::-;30506:139;;30233:419;;;:::o

Swarm Source

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