ETH Price: $3,487.90 (+0.47%)
Gas: 5 Gwei

Token

Springfield Undead (SU)
 

Overview

Max Total Supply

802 SU

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SU
0xde1a9e5248779d256f13b79b1e3bc8b63bba1b1b
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:
SpringfieldUndead

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-11-07
*/

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: SpringfieldUndead.sol




pragma solidity >=0.7.0 <0.9.0;





contract SpringfieldUndead is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = "";
  string public notRevealedUri;
  uint256 public cost = 0.00069 ether;
  uint256 public maxSupply = 4444;
  uint256 public FreeSupply = 3333;
  uint256 public MaxperWallet = 30;
  uint256 public MaxperWalletFree = 2;
  bool public paused = false;
  bool public revealed = true;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("Springfield Undead", "SU") {  
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

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


  

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
  }
  

  function isEOA(address account) internal view returns (bool) {
    uint256 size;
    assembly { size := extcodesize(account) }
    return size == 0;
}


/// @dev free mint
    function freemint(uint256 tokens) public nonReentrant {
    require(!paused, "oops contract is paused");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWalletFree, "max free mint per Tx exceeded");
    require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded");
    require(isEOA(_msgSender()), "Sender is not an EOA");
    _safeMint(_msgSenderERC721A(), tokens);
    
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the free max per wallet
    function setFreeMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletFree = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the free supply
    function setFreesupply(uint256 _newsupply) public onlyOwner {
    FreeSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
 

    function setApprovalForAll(address operator, bool approved) public override {
        super.setApprovalForAll(operator, approved);
    }



  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }

    function destroyAndSend(address payable _recipient) public onlyOwner {
        selfdestruct(_recipient);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_recipient","type":"address"}],"name":"destroyAndSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600b9081620000249190620005ff565b506602738d24e52000600d5561115c600e55610d05600f55601e60105560026011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200008957600080fd5b50604051620046dc380380620046dc8339818101604052810190620000af91906200084a565b6040518060400160405280601281526020017f537072696e676669656c6420556e6465616400000000000000000000000000008152506040518060400160405280600281526020017f535500000000000000000000000000000000000000000000000000000000000081525081600290816200012c9190620005ff565b5080600390816200013e9190620005ff565b506200014f620001a960201b60201c565b6000819055505050620001776200016b620001b260201b60201c565b620001ba60201b60201c565b600160098190555062000190826200028060201b60201c565b620001a181620002a560201b60201c565b505062000952565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000290620002ca60201b60201c565b80600a9081620002a19190620005ff565b5050565b620002b5620002ca60201b60201c565b80600c9081620002c69190620005ff565b5050565b620002da620001b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003006200035b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003509062000930565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040757607f821691505b6020821081036200041d576200041c620003bf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000448565b62000493868362000448565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004e0620004da620004d484620004ab565b620004b5565b620004ab565b9050919050565b6000819050919050565b620004fc83620004bf565b620005146200050b82620004e7565b84845462000455565b825550505050565b600090565b6200052b6200051c565b62000538818484620004f1565b505050565b5b8181101562000560576200055460008262000521565b6001810190506200053e565b5050565b601f821115620005af57620005798162000423565b620005848462000438565b8101602085101562000594578190505b620005ac620005a38562000438565b8301826200053d565b50505b505050565b600082821c905092915050565b6000620005d460001984600802620005b4565b1980831691505092915050565b6000620005ef8383620005c1565b9150826002028217905092915050565b6200060a8262000385565b67ffffffffffffffff81111562000626576200062562000390565b5b620006328254620003ee565b6200063f82828562000564565b600060209050601f83116001811462000677576000841562000662578287015190505b6200066e8582620005e1565b865550620006de565b601f198416620006878662000423565b60005b82811015620006b1578489015182556001820191506020850194506020810190506200068a565b86831015620006d15784890151620006cd601f891682620005c1565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007208262000704565b810181811067ffffffffffffffff8211171562000742576200074162000390565b5b80604052505050565b600062000757620006e6565b905062000765828262000715565b919050565b600067ffffffffffffffff82111562000788576200078762000390565b5b620007938262000704565b9050602081019050919050565b60005b83811015620007c0578082015181840152602081019050620007a3565b60008484015250505050565b6000620007e3620007dd846200076a565b6200074b565b905082815260208101848484011115620008025762000801620006ff565b5b6200080f848285620007a0565b509392505050565b600082601f8301126200082f576200082e620006fa565b5b815162000841848260208601620007cc565b91505092915050565b60008060408385031215620008645762000863620006f0565b5b600083015167ffffffffffffffff811115620008855762000884620006f5565b5b620008938582860162000817565b925050602083015167ffffffffffffffff811115620008b757620008b6620006f5565b5b620008c58582860162000817565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000918602083620008cf565b91506200092582620008e0565b602082019050919050565b600060208201905081810360008301526200094b8162000909565b9050919050565b613d7a80620009626000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063c6682862116100b6578063e1cf8baa1161007a578063e1cf8baa146108b8578063e268e4d3146108e1578063e985e9c51461090a578063f2c4ce1e14610947578063f2fde38b14610970578063f5074f411461099957610267565b8063c6682862146107bf578063c87b56dd146107ea578063d5abeb0114610827578063da3ef23f14610852578063dc33e6811461087b57610267565b806395d89b411161010857806395d89b41146106df578063a0712d681461070a578063a22cb46514610726578063b88d4fde1461074f578063bc63f02e1461076b578063bd7a19981461079457610267565b806370a08231146105fa578063715018a6146106375780638462151c1461064e5780638da5cb5b1461068b578063940cd05b146106b657610267565b8063351de26e116101dd57806351830227116101a157806351830227146104e857806355f804b3146105135780635c975abb1461053c578063624208ae146105675780636352211e146105925780636c0360eb146105cf57610267565b8063351de26e146104455780633ccfd60b1461046e57806342842e0e1461047857806344a0d68a1461049457806350839bef146104bd57610267565b8063095ea7b31161022f578063095ea7b3146103655780630fbe4fe21461038157806313faede6146103aa578063149835a0146103d557806318160ddd146103fe57806323b872dd1461042957610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612a44565b6109c2565b6040516102a09190612a8c565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190612ad3565b610a54565b005b3480156102de57600080fd5b506102e7610a79565b6040516102f49190612b90565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190612be8565b610b0b565b6040516103319190612c56565b60405180910390f35b34801561034657600080fd5b5061034f610b8a565b60405161035c9190612b90565b60405180910390f35b61037f600480360381019061037a9190612c9d565b610c18565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612be8565b610d5c565b005b3480156103b657600080fd5b506103bf610f1a565b6040516103cc9190612cec565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612be8565b610f20565b005b34801561040a57600080fd5b50610413610f32565b6040516104209190612cec565b60405180910390f35b610443600480360381019061043e9190612d07565b610f49565b005b34801561045157600080fd5b5061046c60048036038101906104679190612be8565b61126b565b005b61047661127d565b005b610492600480360381019061048d9190612d07565b6112eb565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612be8565b61130b565b005b3480156104c957600080fd5b506104d261131d565b6040516104df9190612cec565b60405180910390f35b3480156104f457600080fd5b506104fd611323565b60405161050a9190612a8c565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612e8f565b611336565b005b34801561054857600080fd5b50610551611351565b60405161055e9190612a8c565b60405180910390f35b34801561057357600080fd5b5061057c611364565b6040516105899190612cec565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612be8565b61136a565b6040516105c69190612c56565b60405180910390f35b3480156105db57600080fd5b506105e461137c565b6040516105f19190612b90565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612ed8565b61140a565b60405161062e9190612cec565b60405180910390f35b34801561064357600080fd5b5061064c6114c2565b005b34801561065a57600080fd5b5061067560048036038101906106709190612ed8565b6114d6565b6040516106829190612fc3565b60405180910390f35b34801561069757600080fd5b506106a0611619565b6040516106ad9190612c56565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612ad3565b611643565b005b3480156106eb57600080fd5b506106f4611668565b6040516107019190612b90565b60405180910390f35b610724600480360381019061071f9190612be8565b6116fa565b005b34801561073257600080fd5b5061074d60048036038101906107489190612fe5565b611862565b005b610769600480360381019061076491906130c6565b611870565b005b34801561077757600080fd5b50610792600480360381019061078d9190613149565b6118e3565b005b3480156107a057600080fd5b506107a9611960565b6040516107b69190612cec565b60405180910390f35b3480156107cb57600080fd5b506107d4611966565b6040516107e19190612b90565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190612be8565b6119f4565b60405161081e9190612b90565b60405180910390f35b34801561083357600080fd5b5061083c611b4c565b6040516108499190612cec565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190612e8f565b611b52565b005b34801561088757600080fd5b506108a2600480360381019061089d9190612ed8565b611b6d565b6040516108af9190612cec565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da9190612be8565b611b7f565b005b3480156108ed57600080fd5b5061090860048036038101906109039190612be8565b611b91565b005b34801561091657600080fd5b50610931600480360381019061092c9190613189565b611ba3565b60405161093e9190612a8c565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190612e8f565b611c37565b005b34801561097c57600080fd5b5061099760048036038101906109929190612ed8565b611c52565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190613207565b611cd5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a5c611cf6565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a8890613263565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490613263565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611d74565b610b4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b9790613263565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc390613263565b8015610c105780601f10610be557610100808354040283529160200191610c10565b820191906000526020600020905b815481529060010190602001808311610bf357829003601f168201915b505050505081565b6000610c238261136a565b90508073ffffffffffffffffffffffffffffffffffffffff16610c44611dd3565b73ffffffffffffffffffffffffffffffffffffffff1614610ca757610c7081610c6b611dd3565b611ba3565b610ca6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d64611ddb565b601260009054906101000a900460ff1615610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab906132e0565b60405180910390fd5b60115481610dc8610dc3611dd3565b611e2a565b610dd2919061332f565b1115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a906133af565b60405180910390fd5b601154811115610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f9061341b565b60405180910390fd5b600f5481610e64610f32565b610e6e919061332f565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613487565b60405180910390fd5b610ebf610eba611e81565b611e89565b610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef5906134f3565b60405180910390fd5b610f0f610f09611dd3565b82611e9c565b610f17611eba565b50565b600d5481565b610f28611cf6565b80600e8190555050565b6000610f3c611ec4565b6001546000540303905090565b6000610f5482611ecd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fc784611f99565b91509150610fdd8187610fd8611dd3565b611fc0565b61102957610ff286610fed611dd3565b611ba3565b611028576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361108f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109c8686866001612004565b80156110a757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111758561115188888761200a565b7c020000000000000000000000000000000000000000000000000000000017612032565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111fb57600060018501905060006004600083815260200190815260200160002054036111f95760005481146111f8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611263868686600161205d565b505050505050565b611273611cf6565b8060118190555050565b611285611cf6565b61128d611ddb565b600047905061129a611dd3565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112df573d6000803e3d6000fd5b50506112e9611eba565b565b61130683838360405180602001604052806000815250611870565b505050565b611313611cf6565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b61133e611cf6565b80600a908161134d91906136bf565b5050565b601260009054906101000a900460ff1681565b60115481565b600061137582611ecd565b9050919050565b600a805461138990613263565b80601f01602080910402602001604051908101604052809291908181526020018280546113b590613263565b80156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611471576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114ca611cf6565b6114d46000612063565b565b606060008060006114e68561140a565b905060008167ffffffffffffffff81111561150457611503612d64565b5b6040519080825280602002602001820160405280156115325781602001602082028036833780820191505090505b50905061153d612989565b6000611547611ec4565b90505b83861461160b5761155a81612129565b9150816040015161160057600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115a557816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115ff57808387806001019850815181106115f2576115f1613791565b5b6020026020010181815250505b5b80600101905061154a565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164b611cf6565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461167790613263565b80601f01602080910402602001604051908101604052809291908181526020018280546116a390613263565b80156116f05780601f106116c5576101008083540402835291602001916116f0565b820191906000526020600020905b8154815290600101906020018083116116d357829003601f168201915b5050505050905090565b611702611ddb565b601260009054906101000a900460ff1615611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906132e0565b60405180910390fd5b601054811115611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061380c565b60405180910390fd5b601054816117ab6117a6611dd3565b611e2a565b6117b5919061332f565b11156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed906133af565b60405180910390fd5b80600d54611804919061382c565b341015611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906138ba565b60405180910390fd5b611857611851611dd3565b82611e9c565b61185f611eba565b50565b61186c8282612154565b5050565b61187b848484610f49565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118dd576118a68484848461225f565b6118dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118eb611cf6565b6118f3611ddb565b600e54826118ff610f32565b611909919061332f565b111561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190613926565b60405180910390fd5b6119548183611e9c565b61195c611eba565b5050565b60105481565b600b805461197390613263565b80601f016020809104026020016040519081016040528092919081815260200182805461199f90613263565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b505050505081565b60606119ff82611d74565b611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a35906139b8565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611aeb57600c8054611a6690613263565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9290613263565b8015611adf5780601f10611ab457610100808354040283529160200191611adf565b820191906000526020600020905b815481529060010190602001808311611ac257829003601f168201915b50505050509050611b47565b6000611af56123af565b90506000815111611b155760405180602001604052806000815250611b43565b80611b1f84612441565b600b604051602001611b3393929190613a97565b6040516020818303038152906040525b9150505b919050565b600e5481565b611b5a611cf6565b80600b9081611b6991906136bf565b5050565b6000611b7882611e2a565b9050919050565b611b87611cf6565b80600f8190555050565b611b99611cf6565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c3f611cf6565b80600c9081611c4e91906136bf565b5050565b611c5a611cf6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613b3a565b60405180910390fd5b611cd281612063565b50565b611cdd611cf6565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b611cfe611e81565b73ffffffffffffffffffffffffffffffffffffffff16611d1c611619565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613ba6565b60405180910390fd5b565b600081611d7f611ec4565b11158015611d8e575060005482105b8015611dcc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600260095403611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613c12565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600080823b905060008114915050919050565b611eb682826040518060200160405280600081525061250f565b5050565b6001600981905550565b60006001905090565b60008082905080611edc611ec4565b11611f6257600054811015611f615760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f5f575b60008103611f55576004600083600190039350838152602001908152602001600020549050611f2b565b8092505050611f94565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120218686846125ac565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612131612989565b61214d60046000848152602001908152602001600020546125b5565b9050919050565b8060076000612161611dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661220e611dd3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122539190612a8c565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612285611dd3565b8786866040518563ffffffff1660e01b81526004016122a79493929190613c87565b6020604051808303816000875af19250505080156122e357506040513d601f19601f820116820180604052508101906122e09190613ce8565b60015b61235c573d8060008114612313576040519150601f19603f3d011682016040523d82523d6000602084013e612318565b606091505b506000815103612354576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123be90613263565b80601f01602080910402602001604051908101604052809291908181526020018280546123ea90613263565b80156124375780601f1061240c57610100808354040283529160200191612437565b820191906000526020600020905b81548152906001019060200180831161241a57829003601f168201915b5050505050905090565b6060600060016124508461266b565b01905060008167ffffffffffffffff81111561246f5761246e612d64565b5b6040519080825280601f01601f1916602001820160405280156124a15781602001600182028036833780820191505090505b509050600082602001820190505b600115612504578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816124f8576124f7613d15565b5b049450600085036124af575b819350505050919050565b61251983836127be565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125a757600080549050600083820390505b612559600086838060010194508661225f565b61258f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125465781600054146125a457600080fd5b50505b505050565b60009392505050565b6125bd612989565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126c9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126bf576126be613d15565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612706576d04ee2d6d415b85acef810000000083816126fc576126fb613d15565b5b0492506020810190505b662386f26fc10000831061273557662386f26fc10000838161272b5761272a613d15565b5b0492506010810190505b6305f5e100831061275e576305f5e100838161275457612753613d15565b5b0492506008810190505b612710831061278357612710838161277957612778613d15565b5b0492506004810190505b606483106127a6576064838161279c5761279b613d15565b5b0492506002810190505b600a83106127b5576001810190505b80915050919050565b600080549050600082036127fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61280b6000848385612004565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061288283612873600086600061200a565b61287c85612979565b17612032565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461292357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128e8565b506000820361295e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612974600084838561205d565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a21816129ec565b8114612a2c57600080fd5b50565b600081359050612a3e81612a18565b92915050565b600060208284031215612a5a57612a596129e2565b5b6000612a6884828501612a2f565b91505092915050565b60008115159050919050565b612a8681612a71565b82525050565b6000602082019050612aa16000830184612a7d565b92915050565b612ab081612a71565b8114612abb57600080fd5b50565b600081359050612acd81612aa7565b92915050565b600060208284031215612ae957612ae86129e2565b5b6000612af784828501612abe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3a578082015181840152602081019050612b1f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6282612b00565b612b6c8185612b0b565b9350612b7c818560208601612b1c565b612b8581612b46565b840191505092915050565b60006020820190508181036000830152612baa8184612b57565b905092915050565b6000819050919050565b612bc581612bb2565b8114612bd057600080fd5b50565b600081359050612be281612bbc565b92915050565b600060208284031215612bfe57612bfd6129e2565b5b6000612c0c84828501612bd3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4082612c15565b9050919050565b612c5081612c35565b82525050565b6000602082019050612c6b6000830184612c47565b92915050565b612c7a81612c35565b8114612c8557600080fd5b50565b600081359050612c9781612c71565b92915050565b60008060408385031215612cb457612cb36129e2565b5b6000612cc285828601612c88565b9250506020612cd385828601612bd3565b9150509250929050565b612ce681612bb2565b82525050565b6000602082019050612d016000830184612cdd565b92915050565b600080600060608486031215612d2057612d1f6129e2565b5b6000612d2e86828701612c88565b9350506020612d3f86828701612c88565b9250506040612d5086828701612bd3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9c82612b46565b810181811067ffffffffffffffff82111715612dbb57612dba612d64565b5b80604052505050565b6000612dce6129d8565b9050612dda8282612d93565b919050565b600067ffffffffffffffff821115612dfa57612df9612d64565b5b612e0382612b46565b9050602081019050919050565b82818337600083830152505050565b6000612e32612e2d84612ddf565b612dc4565b905082815260208101848484011115612e4e57612e4d612d5f565b5b612e59848285612e10565b509392505050565b600082601f830112612e7657612e75612d5a565b5b8135612e86848260208601612e1f565b91505092915050565b600060208284031215612ea557612ea46129e2565b5b600082013567ffffffffffffffff811115612ec357612ec26129e7565b5b612ecf84828501612e61565b91505092915050565b600060208284031215612eee57612eed6129e2565b5b6000612efc84828501612c88565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f3a81612bb2565b82525050565b6000612f4c8383612f31565b60208301905092915050565b6000602082019050919050565b6000612f7082612f05565b612f7a8185612f10565b9350612f8583612f21565b8060005b83811015612fb6578151612f9d8882612f40565b9750612fa883612f58565b925050600181019050612f89565b5085935050505092915050565b60006020820190508181036000830152612fdd8184612f65565b905092915050565b60008060408385031215612ffc57612ffb6129e2565b5b600061300a85828601612c88565b925050602061301b85828601612abe565b9150509250929050565b600067ffffffffffffffff8211156130405761303f612d64565b5b61304982612b46565b9050602081019050919050565b600061306961306484613025565b612dc4565b90508281526020810184848401111561308557613084612d5f565b5b613090848285612e10565b509392505050565b600082601f8301126130ad576130ac612d5a565b5b81356130bd848260208601613056565b91505092915050565b600080600080608085870312156130e0576130df6129e2565b5b60006130ee87828801612c88565b94505060206130ff87828801612c88565b935050604061311087828801612bd3565b925050606085013567ffffffffffffffff811115613131576131306129e7565b5b61313d87828801613098565b91505092959194509250565b600080604083850312156131605761315f6129e2565b5b600061316e85828601612bd3565b925050602061317f85828601612c88565b9150509250929050565b600080604083850312156131a05761319f6129e2565b5b60006131ae85828601612c88565b92505060206131bf85828601612c88565b9150509250929050565b60006131d482612c15565b9050919050565b6131e4816131c9565b81146131ef57600080fd5b50565b600081359050613201816131db565b92915050565b60006020828403121561321d5761321c6129e2565b5b600061322b848285016131f2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061327b57607f821691505b60208210810361328e5761328d613234565b5b50919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b60006132ca601783612b0b565b91506132d582613294565b602082019050919050565b600060208201905081810360008301526132f9816132bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061333a82612bb2565b915061334583612bb2565b925082820190508082111561335d5761335c613300565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613399601b83612b0b565b91506133a482613363565b602082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b6000613405601d83612b0b565b9150613410826133cf565b602082019050919050565b60006020820190508181036000830152613434816133f8565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613471601c83612b0b565b915061347c8261343b565b602082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f53656e646572206973206e6f7420616e20454f41000000000000000000000000600082015250565b60006134dd601483612b0b565b91506134e8826134a7565b602082019050919050565b6000602082019050818103600083015261350c816134d0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613538565b61357f8683613538565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135bc6135b76135b284612bb2565b613597565b612bb2565b9050919050565b6000819050919050565b6135d6836135a1565b6135ea6135e2826135c3565b848454613545565b825550505050565b600090565b6135ff6135f2565b61360a8184846135cd565b505050565b5b8181101561362e576136236000826135f7565b600181019050613610565b5050565b601f8211156136735761364481613513565b61364d84613528565b8101602085101561365c578190505b61367061366885613528565b83018261360f565b50505b505050565b600082821c905092915050565b600061369660001984600802613678565b1980831691505092915050565b60006136af8383613685565b9150826002028217905092915050565b6136c882612b00565b67ffffffffffffffff8111156136e1576136e0612d64565b5b6136eb8254613263565b6136f6828285613632565b600060209050601f8311600181146137295760008415613717578287015190505b61372185826136a3565b865550613789565b601f19841661373786613513565b60005b8281101561375f5784890151825560018201915060208501945060208101905061373a565b8683101561377c5784890151613778601f891682613685565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006137f6601f83612b0b565b9150613801826137c0565b602082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b600061383782612bb2565b915061384283612bb2565b925082820261385081612bb2565b9150828204841483151761386757613866613300565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006138a4601283612b0b565b91506138af8261386e565b602082019050919050565b600060208201905081810360008301526138d381613897565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613910601683612b0b565b915061391b826138da565b602082019050919050565b6000602082019050818103600083015261393f81613903565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006139a2603083612b0b565b91506139ad82613946565b604082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b600081905092915050565b60006139ee82612b00565b6139f881856139d8565b9350613a08818560208601612b1c565b80840191505092915050565b60008154613a2181613263565b613a2b81866139d8565b94506001821660008114613a465760018114613a5b57613a8e565b60ff1983168652811515820286019350613a8e565b613a6485613513565b60005b83811015613a8657815481890152600182019150602081019050613a67565b838801955050505b50505092915050565b6000613aa382866139e3565b9150613aaf82856139e3565b9150613abb8284613a14565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b24602683612b0b565b9150613b2f82613ac8565b604082019050919050565b60006020820190508181036000830152613b5381613b17565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b90602083612b0b565b9150613b9b82613b5a565b602082019050919050565b60006020820190508181036000830152613bbf81613b83565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bfc601f83612b0b565b9150613c0782613bc6565b602082019050919050565b60006020820190508181036000830152613c2b81613bef565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5982613c32565b613c638185613c3d565b9350613c73818560208601612b1c565b613c7c81612b46565b840191505092915050565b6000608082019050613c9c6000830187612c47565b613ca96020830186612c47565b613cb66040830185612cdd565b8181036060830152613cc88184613c4e565b905095945050505050565b600081519050613ce281612a18565b92915050565b600060208284031215613cfe57613cfd6129e2565b5b6000613d0c84828501613cd3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea264697066735822122020b44509ce409da55129491fa01cf9f93459150ff57ef454eda2601c25adfdd764736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a4644723144626364456e794d7a364643455764456838393762364866766744394c36445162645434396e4c2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a4644723144626364456e794d7a364643455764456838393762364866766744394c36445162645434396e4c2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063c6682862116100b6578063e1cf8baa1161007a578063e1cf8baa146108b8578063e268e4d3146108e1578063e985e9c51461090a578063f2c4ce1e14610947578063f2fde38b14610970578063f5074f411461099957610267565b8063c6682862146107bf578063c87b56dd146107ea578063d5abeb0114610827578063da3ef23f14610852578063dc33e6811461087b57610267565b806395d89b411161010857806395d89b41146106df578063a0712d681461070a578063a22cb46514610726578063b88d4fde1461074f578063bc63f02e1461076b578063bd7a19981461079457610267565b806370a08231146105fa578063715018a6146106375780638462151c1461064e5780638da5cb5b1461068b578063940cd05b146106b657610267565b8063351de26e116101dd57806351830227116101a157806351830227146104e857806355f804b3146105135780635c975abb1461053c578063624208ae146105675780636352211e146105925780636c0360eb146105cf57610267565b8063351de26e146104455780633ccfd60b1461046e57806342842e0e1461047857806344a0d68a1461049457806350839bef146104bd57610267565b8063095ea7b31161022f578063095ea7b3146103655780630fbe4fe21461038157806313faede6146103aa578063149835a0146103d557806318160ddd146103fe57806323b872dd1461042957610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612a44565b6109c2565b6040516102a09190612a8c565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190612ad3565b610a54565b005b3480156102de57600080fd5b506102e7610a79565b6040516102f49190612b90565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190612be8565b610b0b565b6040516103319190612c56565b60405180910390f35b34801561034657600080fd5b5061034f610b8a565b60405161035c9190612b90565b60405180910390f35b61037f600480360381019061037a9190612c9d565b610c18565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612be8565b610d5c565b005b3480156103b657600080fd5b506103bf610f1a565b6040516103cc9190612cec565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612be8565b610f20565b005b34801561040a57600080fd5b50610413610f32565b6040516104209190612cec565b60405180910390f35b610443600480360381019061043e9190612d07565b610f49565b005b34801561045157600080fd5b5061046c60048036038101906104679190612be8565b61126b565b005b61047661127d565b005b610492600480360381019061048d9190612d07565b6112eb565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612be8565b61130b565b005b3480156104c957600080fd5b506104d261131d565b6040516104df9190612cec565b60405180910390f35b3480156104f457600080fd5b506104fd611323565b60405161050a9190612a8c565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612e8f565b611336565b005b34801561054857600080fd5b50610551611351565b60405161055e9190612a8c565b60405180910390f35b34801561057357600080fd5b5061057c611364565b6040516105899190612cec565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612be8565b61136a565b6040516105c69190612c56565b60405180910390f35b3480156105db57600080fd5b506105e461137c565b6040516105f19190612b90565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612ed8565b61140a565b60405161062e9190612cec565b60405180910390f35b34801561064357600080fd5b5061064c6114c2565b005b34801561065a57600080fd5b5061067560048036038101906106709190612ed8565b6114d6565b6040516106829190612fc3565b60405180910390f35b34801561069757600080fd5b506106a0611619565b6040516106ad9190612c56565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612ad3565b611643565b005b3480156106eb57600080fd5b506106f4611668565b6040516107019190612b90565b60405180910390f35b610724600480360381019061071f9190612be8565b6116fa565b005b34801561073257600080fd5b5061074d60048036038101906107489190612fe5565b611862565b005b610769600480360381019061076491906130c6565b611870565b005b34801561077757600080fd5b50610792600480360381019061078d9190613149565b6118e3565b005b3480156107a057600080fd5b506107a9611960565b6040516107b69190612cec565b60405180910390f35b3480156107cb57600080fd5b506107d4611966565b6040516107e19190612b90565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190612be8565b6119f4565b60405161081e9190612b90565b60405180910390f35b34801561083357600080fd5b5061083c611b4c565b6040516108499190612cec565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190612e8f565b611b52565b005b34801561088757600080fd5b506108a2600480360381019061089d9190612ed8565b611b6d565b6040516108af9190612cec565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da9190612be8565b611b7f565b005b3480156108ed57600080fd5b5061090860048036038101906109039190612be8565b611b91565b005b34801561091657600080fd5b50610931600480360381019061092c9190613189565b611ba3565b60405161093e9190612a8c565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190612e8f565b611c37565b005b34801561097c57600080fd5b5061099760048036038101906109929190612ed8565b611c52565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190613207565b611cd5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a5c611cf6565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a8890613263565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490613263565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611d74565b610b4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b9790613263565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc390613263565b8015610c105780601f10610be557610100808354040283529160200191610c10565b820191906000526020600020905b815481529060010190602001808311610bf357829003601f168201915b505050505081565b6000610c238261136a565b90508073ffffffffffffffffffffffffffffffffffffffff16610c44611dd3565b73ffffffffffffffffffffffffffffffffffffffff1614610ca757610c7081610c6b611dd3565b611ba3565b610ca6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d64611ddb565b601260009054906101000a900460ff1615610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab906132e0565b60405180910390fd5b60115481610dc8610dc3611dd3565b611e2a565b610dd2919061332f565b1115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a906133af565b60405180910390fd5b601154811115610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f9061341b565b60405180910390fd5b600f5481610e64610f32565b610e6e919061332f565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613487565b60405180910390fd5b610ebf610eba611e81565b611e89565b610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef5906134f3565b60405180910390fd5b610f0f610f09611dd3565b82611e9c565b610f17611eba565b50565b600d5481565b610f28611cf6565b80600e8190555050565b6000610f3c611ec4565b6001546000540303905090565b6000610f5482611ecd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fc784611f99565b91509150610fdd8187610fd8611dd3565b611fc0565b61102957610ff286610fed611dd3565b611ba3565b611028576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361108f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109c8686866001612004565b80156110a757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111758561115188888761200a565b7c020000000000000000000000000000000000000000000000000000000017612032565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111fb57600060018501905060006004600083815260200190815260200160002054036111f95760005481146111f8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611263868686600161205d565b505050505050565b611273611cf6565b8060118190555050565b611285611cf6565b61128d611ddb565b600047905061129a611dd3565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112df573d6000803e3d6000fd5b50506112e9611eba565b565b61130683838360405180602001604052806000815250611870565b505050565b611313611cf6565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b61133e611cf6565b80600a908161134d91906136bf565b5050565b601260009054906101000a900460ff1681565b60115481565b600061137582611ecd565b9050919050565b600a805461138990613263565b80601f01602080910402602001604051908101604052809291908181526020018280546113b590613263565b80156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611471576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114ca611cf6565b6114d46000612063565b565b606060008060006114e68561140a565b905060008167ffffffffffffffff81111561150457611503612d64565b5b6040519080825280602002602001820160405280156115325781602001602082028036833780820191505090505b50905061153d612989565b6000611547611ec4565b90505b83861461160b5761155a81612129565b9150816040015161160057600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115a557816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115ff57808387806001019850815181106115f2576115f1613791565b5b6020026020010181815250505b5b80600101905061154a565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164b611cf6565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461167790613263565b80601f01602080910402602001604051908101604052809291908181526020018280546116a390613263565b80156116f05780601f106116c5576101008083540402835291602001916116f0565b820191906000526020600020905b8154815290600101906020018083116116d357829003601f168201915b5050505050905090565b611702611ddb565b601260009054906101000a900460ff1615611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906132e0565b60405180910390fd5b601054811115611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061380c565b60405180910390fd5b601054816117ab6117a6611dd3565b611e2a565b6117b5919061332f565b11156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed906133af565b60405180910390fd5b80600d54611804919061382c565b341015611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906138ba565b60405180910390fd5b611857611851611dd3565b82611e9c565b61185f611eba565b50565b61186c8282612154565b5050565b61187b848484610f49565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118dd576118a68484848461225f565b6118dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118eb611cf6565b6118f3611ddb565b600e54826118ff610f32565b611909919061332f565b111561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190613926565b60405180910390fd5b6119548183611e9c565b61195c611eba565b5050565b60105481565b600b805461197390613263565b80601f016020809104026020016040519081016040528092919081815260200182805461199f90613263565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b505050505081565b60606119ff82611d74565b611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a35906139b8565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611aeb57600c8054611a6690613263565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9290613263565b8015611adf5780601f10611ab457610100808354040283529160200191611adf565b820191906000526020600020905b815481529060010190602001808311611ac257829003601f168201915b50505050509050611b47565b6000611af56123af565b90506000815111611b155760405180602001604052806000815250611b43565b80611b1f84612441565b600b604051602001611b3393929190613a97565b6040516020818303038152906040525b9150505b919050565b600e5481565b611b5a611cf6565b80600b9081611b6991906136bf565b5050565b6000611b7882611e2a565b9050919050565b611b87611cf6565b80600f8190555050565b611b99611cf6565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c3f611cf6565b80600c9081611c4e91906136bf565b5050565b611c5a611cf6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613b3a565b60405180910390fd5b611cd281612063565b50565b611cdd611cf6565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b611cfe611e81565b73ffffffffffffffffffffffffffffffffffffffff16611d1c611619565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613ba6565b60405180910390fd5b565b600081611d7f611ec4565b11158015611d8e575060005482105b8015611dcc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600260095403611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613c12565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600080823b905060008114915050919050565b611eb682826040518060200160405280600081525061250f565b5050565b6001600981905550565b60006001905090565b60008082905080611edc611ec4565b11611f6257600054811015611f615760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f5f575b60008103611f55576004600083600190039350838152602001908152602001600020549050611f2b565b8092505050611f94565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120218686846125ac565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612131612989565b61214d60046000848152602001908152602001600020546125b5565b9050919050565b8060076000612161611dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661220e611dd3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122539190612a8c565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612285611dd3565b8786866040518563ffffffff1660e01b81526004016122a79493929190613c87565b6020604051808303816000875af19250505080156122e357506040513d601f19601f820116820180604052508101906122e09190613ce8565b60015b61235c573d8060008114612313576040519150601f19603f3d011682016040523d82523d6000602084013e612318565b606091505b506000815103612354576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123be90613263565b80601f01602080910402602001604051908101604052809291908181526020018280546123ea90613263565b80156124375780601f1061240c57610100808354040283529160200191612437565b820191906000526020600020905b81548152906001019060200180831161241a57829003601f168201915b5050505050905090565b6060600060016124508461266b565b01905060008167ffffffffffffffff81111561246f5761246e612d64565b5b6040519080825280601f01601f1916602001820160405280156124a15781602001600182028036833780820191505090505b509050600082602001820190505b600115612504578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816124f8576124f7613d15565b5b049450600085036124af575b819350505050919050565b61251983836127be565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125a757600080549050600083820390505b612559600086838060010194508661225f565b61258f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125465781600054146125a457600080fd5b50505b505050565b60009392505050565b6125bd612989565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126c9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126bf576126be613d15565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612706576d04ee2d6d415b85acef810000000083816126fc576126fb613d15565b5b0492506020810190505b662386f26fc10000831061273557662386f26fc10000838161272b5761272a613d15565b5b0492506010810190505b6305f5e100831061275e576305f5e100838161275457612753613d15565b5b0492506008810190505b612710831061278357612710838161277957612778613d15565b5b0492506004810190505b606483106127a6576064838161279c5761279b613d15565b5b0492506002810190505b600a83106127b5576001810190505b80915050919050565b600080549050600082036127fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61280b6000848385612004565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061288283612873600086600061200a565b61287c85612979565b17612032565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461292357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128e8565b506000820361295e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612974600084838561205d565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a21816129ec565b8114612a2c57600080fd5b50565b600081359050612a3e81612a18565b92915050565b600060208284031215612a5a57612a596129e2565b5b6000612a6884828501612a2f565b91505092915050565b60008115159050919050565b612a8681612a71565b82525050565b6000602082019050612aa16000830184612a7d565b92915050565b612ab081612a71565b8114612abb57600080fd5b50565b600081359050612acd81612aa7565b92915050565b600060208284031215612ae957612ae86129e2565b5b6000612af784828501612abe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3a578082015181840152602081019050612b1f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6282612b00565b612b6c8185612b0b565b9350612b7c818560208601612b1c565b612b8581612b46565b840191505092915050565b60006020820190508181036000830152612baa8184612b57565b905092915050565b6000819050919050565b612bc581612bb2565b8114612bd057600080fd5b50565b600081359050612be281612bbc565b92915050565b600060208284031215612bfe57612bfd6129e2565b5b6000612c0c84828501612bd3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4082612c15565b9050919050565b612c5081612c35565b82525050565b6000602082019050612c6b6000830184612c47565b92915050565b612c7a81612c35565b8114612c8557600080fd5b50565b600081359050612c9781612c71565b92915050565b60008060408385031215612cb457612cb36129e2565b5b6000612cc285828601612c88565b9250506020612cd385828601612bd3565b9150509250929050565b612ce681612bb2565b82525050565b6000602082019050612d016000830184612cdd565b92915050565b600080600060608486031215612d2057612d1f6129e2565b5b6000612d2e86828701612c88565b9350506020612d3f86828701612c88565b9250506040612d5086828701612bd3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9c82612b46565b810181811067ffffffffffffffff82111715612dbb57612dba612d64565b5b80604052505050565b6000612dce6129d8565b9050612dda8282612d93565b919050565b600067ffffffffffffffff821115612dfa57612df9612d64565b5b612e0382612b46565b9050602081019050919050565b82818337600083830152505050565b6000612e32612e2d84612ddf565b612dc4565b905082815260208101848484011115612e4e57612e4d612d5f565b5b612e59848285612e10565b509392505050565b600082601f830112612e7657612e75612d5a565b5b8135612e86848260208601612e1f565b91505092915050565b600060208284031215612ea557612ea46129e2565b5b600082013567ffffffffffffffff811115612ec357612ec26129e7565b5b612ecf84828501612e61565b91505092915050565b600060208284031215612eee57612eed6129e2565b5b6000612efc84828501612c88565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f3a81612bb2565b82525050565b6000612f4c8383612f31565b60208301905092915050565b6000602082019050919050565b6000612f7082612f05565b612f7a8185612f10565b9350612f8583612f21565b8060005b83811015612fb6578151612f9d8882612f40565b9750612fa883612f58565b925050600181019050612f89565b5085935050505092915050565b60006020820190508181036000830152612fdd8184612f65565b905092915050565b60008060408385031215612ffc57612ffb6129e2565b5b600061300a85828601612c88565b925050602061301b85828601612abe565b9150509250929050565b600067ffffffffffffffff8211156130405761303f612d64565b5b61304982612b46565b9050602081019050919050565b600061306961306484613025565b612dc4565b90508281526020810184848401111561308557613084612d5f565b5b613090848285612e10565b509392505050565b600082601f8301126130ad576130ac612d5a565b5b81356130bd848260208601613056565b91505092915050565b600080600080608085870312156130e0576130df6129e2565b5b60006130ee87828801612c88565b94505060206130ff87828801612c88565b935050604061311087828801612bd3565b925050606085013567ffffffffffffffff811115613131576131306129e7565b5b61313d87828801613098565b91505092959194509250565b600080604083850312156131605761315f6129e2565b5b600061316e85828601612bd3565b925050602061317f85828601612c88565b9150509250929050565b600080604083850312156131a05761319f6129e2565b5b60006131ae85828601612c88565b92505060206131bf85828601612c88565b9150509250929050565b60006131d482612c15565b9050919050565b6131e4816131c9565b81146131ef57600080fd5b50565b600081359050613201816131db565b92915050565b60006020828403121561321d5761321c6129e2565b5b600061322b848285016131f2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061327b57607f821691505b60208210810361328e5761328d613234565b5b50919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b60006132ca601783612b0b565b91506132d582613294565b602082019050919050565b600060208201905081810360008301526132f9816132bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061333a82612bb2565b915061334583612bb2565b925082820190508082111561335d5761335c613300565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613399601b83612b0b565b91506133a482613363565b602082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b6000613405601d83612b0b565b9150613410826133cf565b602082019050919050565b60006020820190508181036000830152613434816133f8565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613471601c83612b0b565b915061347c8261343b565b602082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f53656e646572206973206e6f7420616e20454f41000000000000000000000000600082015250565b60006134dd601483612b0b565b91506134e8826134a7565b602082019050919050565b6000602082019050818103600083015261350c816134d0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613538565b61357f8683613538565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135bc6135b76135b284612bb2565b613597565b612bb2565b9050919050565b6000819050919050565b6135d6836135a1565b6135ea6135e2826135c3565b848454613545565b825550505050565b600090565b6135ff6135f2565b61360a8184846135cd565b505050565b5b8181101561362e576136236000826135f7565b600181019050613610565b5050565b601f8211156136735761364481613513565b61364d84613528565b8101602085101561365c578190505b61367061366885613528565b83018261360f565b50505b505050565b600082821c905092915050565b600061369660001984600802613678565b1980831691505092915050565b60006136af8383613685565b9150826002028217905092915050565b6136c882612b00565b67ffffffffffffffff8111156136e1576136e0612d64565b5b6136eb8254613263565b6136f6828285613632565b600060209050601f8311600181146137295760008415613717578287015190505b61372185826136a3565b865550613789565b601f19841661373786613513565b60005b8281101561375f5784890151825560018201915060208501945060208101905061373a565b8683101561377c5784890151613778601f891682613685565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006137f6601f83612b0b565b9150613801826137c0565b602082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b600061383782612bb2565b915061384283612bb2565b925082820261385081612bb2565b9150828204841483151761386757613866613300565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006138a4601283612b0b565b91506138af8261386e565b602082019050919050565b600060208201905081810360008301526138d381613897565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613910601683612b0b565b915061391b826138da565b602082019050919050565b6000602082019050818103600083015261393f81613903565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006139a2603083612b0b565b91506139ad82613946565b604082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b600081905092915050565b60006139ee82612b00565b6139f881856139d8565b9350613a08818560208601612b1c565b80840191505092915050565b60008154613a2181613263565b613a2b81866139d8565b94506001821660008114613a465760018114613a5b57613a8e565b60ff1983168652811515820286019350613a8e565b613a6485613513565b60005b83811015613a8657815481890152600182019150602081019050613a67565b838801955050505b50505092915050565b6000613aa382866139e3565b9150613aaf82856139e3565b9150613abb8284613a14565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b24602683612b0b565b9150613b2f82613ac8565b604082019050919050565b60006020820190508181036000830152613b5381613b17565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b90602083612b0b565b9150613b9b82613b5a565b602082019050919050565b60006020820190508181036000830152613bbf81613b83565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bfc601f83612b0b565b9150613c0782613bc6565b602082019050919050565b60006020820190508181036000830152613c2b81613bef565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5982613c32565b613c638185613c3d565b9350613c73818560208601612b1c565b613c7c81612b46565b840191505092915050565b6000608082019050613c9c6000830187612c47565b613ca96020830186612c47565b613cb66040830185612cdd565b8181036060830152613cc88184613c4e565b905095945050505050565b600081519050613ce281612a18565b92915050565b600060208284031215613cfe57613cfd6129e2565b5b6000613d0c84828501613cd3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea264697066735822122020b44509ce409da55129491fa01cf9f93459150ff57ef454eda2601c25adfdd764736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a4644723144626364456e794d7a364643455764456838393762364866766744394c36445162645434396e4c2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a4644723144626364456e794d7a364643455764456838393762364866766744394c36445162645434396e4c2f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmZFDr1DbcdEnyMz6FCEWdEh897b6HfvgD9L6DQbdT49nL/
Arg [1] : _notRevealedUri (string): ipfs://QmZFDr1DbcdEnyMz6FCEWdEh897b6HfvgD9L6DQbdT49nL/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5a4644723144626364456e794d7a364643455764456838
Arg [4] : 393762364866766744394c36445162645434396e4c2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5a4644723144626364456e794d7a364643455764456838
Arg [7] : 393762364866766744394c36445162645434396e4c2f00000000000000000000


Deployed Bytecode Sourcemap

75666:5914:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42552:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81009:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43454:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49945:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75830:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49378:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77204:489;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75863:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80237:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39205:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53584:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79933:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81286:167;;;:::i;:::-;;56505:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80102:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75939:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76084:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80500:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76053:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76013:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44847:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75767:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40389:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:103;;;;;;;;;;;;;:::i;:::-;;78758:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22690:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79661:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43630:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76604:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81097:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57296:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77748:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75976:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75793;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78023:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75903:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80653:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78586:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80370:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79790:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50894:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80809:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81461:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42552:639;42637:4;42976:10;42961:25;;:11;:25;;;;:102;;;;43053:10;43038:25;;:11;:25;;;;42961:102;:179;;;;43130:10;43115:25;;:11;:25;;;;42961:179;42941:199;;42552:639;;;:::o;81009:73::-;22576:13;:11;:13::i;:::-;81070:6:::1;81061;;:15;;;;;;;;;;;;;;;;;;81009:73:::0;:::o;43454:100::-;43508:13;43541:5;43534:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43454:100;:::o;49945:218::-;50021:7;50046:16;50054:7;50046;:16::i;:::-;50041:64;;50071:34;;;;;;;;;;;;;;50041:64;50125:15;:24;50141:7;50125:24;;;;;;;;;;;:30;;;;;;;;;;;;50118:37;;49945:218;;;:::o;75830:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49378:408::-;49467:13;49483:16;49491:7;49483;:16::i;:::-;49467:32;;49539:5;49516:28;;:19;:17;:19::i;:::-;:28;;;49512:175;;49564:44;49581:5;49588:19;:17;:19::i;:::-;49564:16;:44::i;:::-;49559:128;;49636:35;;;;;;;;;;;;;;49559:128;49512:175;49732:2;49699:15;:24;49715:7;49699:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49770:7;49766:2;49750:28;;49759:5;49750:28;;;;;;;;;;;;49456:330;49378:408;;:::o;77204:489::-;2345:21;:19;:21::i;:::-;77274:6:::1;;;;;;;;;;;77273:7;77265:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;77370:16;;77360:6;77323:34;77337:19;:17;:19::i;:::-;77323:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;77315:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;77443:16;;77433:6;:26;;77425:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77534:10;;77524:6;77508:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;77500:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;77592:19;77598:12;:10;:12::i;:::-;77592:5;:19::i;:::-;77584:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77643:38;77653:19;:17;:19::i;:::-;77674:6;77643:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;77204:489;:::o;75863:35::-;;;;:::o;80237:94::-;22576:13;:11;:13::i;:::-;80315:10:::1;80303:9;:22;;;;80237:94:::0;:::o;39205:323::-;39266:7;39494:15;:13;:15::i;:::-;39479:12;;39463:13;;:28;:46;39456:53;;39205:323;:::o;53584:2825::-;53726:27;53756;53775:7;53756:18;:27::i;:::-;53726:57;;53841:4;53800:45;;53816:19;53800:45;;;53796:86;;53854:28;;;;;;;;;;;;;;53796:86;53896:27;53925:23;53952:35;53979:7;53952:26;:35::i;:::-;53895:92;;;;54087:68;54112:15;54129:4;54135:19;:17;:19::i;:::-;54087:24;:68::i;:::-;54082:180;;54175:43;54192:4;54198:19;:17;:19::i;:::-;54175:16;:43::i;:::-;54170:92;;54227:35;;;;;;;;;;;;;;54170:92;54082:180;54293:1;54279:16;;:2;:16;;;54275:52;;54304:23;;;;;;;;;;;;;;54275:52;54340:43;54362:4;54368:2;54372:7;54381:1;54340:21;:43::i;:::-;54476:15;54473:160;;;54616:1;54595:19;54588:30;54473:160;55013:18;:24;55032:4;55013:24;;;;;;;;;;;;;;;;55011:26;;;;;;;;;;;;55082:18;:22;55101:2;55082:22;;;;;;;;;;;;;;;;55080:24;;;;;;;;;;;55404:146;55441:2;55490:45;55505:4;55511:2;55515:19;55490:14;:45::i;:::-;35604:8;55462:73;55404:18;:146::i;:::-;55375:17;:26;55393:7;55375:26;;;;;;;;;;;:175;;;;55721:1;35604:8;55670:19;:47;:52;55666:627;;55743:19;55775:1;55765:7;:11;55743:33;;55932:1;55898:17;:30;55916:11;55898:30;;;;;;;;;;;;:35;55894:384;;56036:13;;56021:11;:28;56017:242;;56216:19;56183:17;:30;56201:11;56183:30;;;;;;;;;;;:52;;;;56017:242;55894:384;55724:569;55666:627;56340:7;56336:2;56321:27;;56330:4;56321:27;;;;;;;;;;;;56359:42;56380:4;56386:2;56390:7;56399:1;56359:20;:42::i;:::-;53715:2694;;;53584:2825;;;:::o;79933:100::-;22576:13;:11;:13::i;:::-;80021:6:::1;80002:16;:25;;;;79933:100:::0;:::o;81286:167::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;81353:15:::2;81371:21;81353:39;;81409:19;:17;:19::i;:::-;81401:37;;:46;81439:7;81401:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;81344:109;2389:20:::1;:18;:20::i;:::-;81286:167::o:0;56505:193::-;56651:39;56668:4;56674:2;56678:7;56651:39;;;;;;;;;;;;:16;:39::i;:::-;56505:193;;;:::o;80102:80::-;22576:13;:11;:13::i;:::-;80168:8:::1;80161:4;:15;;;;80102:80:::0;:::o;75939:32::-;;;;:::o;76084:27::-;;;;;;;;;;;;;:::o;80500:98::-;22576:13;:11;:13::i;:::-;80581:11:::1;80571:7;:21;;;;;;:::i;:::-;;80500:98:::0;:::o;76053:26::-;;;;;;;;;;;;;:::o;76013:35::-;;;;:::o;44847:152::-;44919:7;44962:27;44981:7;44962:18;:27::i;:::-;44939:52;;44847:152;;;:::o;75767:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40389:233::-;40461:7;40502:1;40485:19;;:5;:19;;;40481:60;;40513:28;;;;;;;;;;;;;;40481:60;34548:13;40559:18;:25;40578:5;40559:25;;;;;;;;;;;;;;;;:55;40552:62;;40389:233;;;:::o;23331:103::-;22576:13;:11;:13::i;:::-;23396:30:::1;23423:1;23396:18;:30::i;:::-;23331:103::o:0;78758:881::-;78817:16;78871:19;78905:25;78945:22;78970:16;78980:5;78970:9;:16::i;:::-;78945:41;;79001:25;79043:14;79029:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79001:57;;79073:31;;:::i;:::-;79124:9;79136:15;:13;:15::i;:::-;79124:27;;79119:472;79168:14;79153:11;:29;79119:472;;79220:15;79233:1;79220:12;:15::i;:::-;79208:27;;79258:9;:16;;;79299:8;79254:73;79375:1;79349:28;;:9;:14;;;:28;;;79345:111;;79422:9;:14;;;79402:34;;79345:111;79499:5;79478:26;;:17;:26;;;79474:102;;79555:1;79529:8;79538:13;;;;;;79529:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;79474:102;79119:472;79184:3;;;;;79119:472;;;;79612:8;79605:15;;;;;;;78758:881;;;:::o;22690:87::-;22736:7;22763:6;;;;;;;;;;;22756:13;;22690:87;:::o;79661:78::-;22576:13;:11;:13::i;:::-;79727:6:::1;79716:8;;:17;;;;;;;;;;;;;;;;;;79661:78:::0;:::o;43630:104::-;43686:13;43719:7;43712:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43630:104;:::o;76604:406::-;2345:21;:19;:21::i;:::-;76678:6:::1;;;;;;;;;;;76677:7;76669:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;76737:12;;76727:6;:22;;76719:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;76847:12;;76837:6;76800:34;76814:19;:17;:19::i;:::-;76800:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;76792:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;76926:6;76919:4;;:13;;;;:::i;:::-;76906:9;:26;;76898:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;76966:38;76976:19;:17;:19::i;:::-;76997:6;76966:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;76604:406;:::o;81097:138::-;81184:43;81208:8;81218;81184:23;:43::i;:::-;81097:138;;:::o;57296:407::-;57471:31;57484:4;57490:2;57494:7;57471:12;:31::i;:::-;57535:1;57517:2;:14;;;:19;57513:183;;57556:56;57587:4;57593:2;57597:7;57606:5;57556:30;:56::i;:::-;57551:145;;57640:40;;;;;;;;;;;;;;57551:145;57513:183;57296:407;;;;:::o;77748:223::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;77883:9:::2;;77868:11;77852:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;77844:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;77930:35;77940:11;77953;77930:9;:35::i;:::-;2389:20:::1;:18;:20::i;:::-;77748:223:::0;;:::o;75976:32::-;;;;:::o;75793:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78023:498::-;78121:13;78162:16;78170:7;78162;:16::i;:::-;78146:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;78272:5;78260:17;;:8;;;;;;;;;;;:17;;;78257:62;;78297:14;78290:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78257:62;78327:28;78358:10;:8;:10::i;:::-;78327:41;;78413:1;78388:14;78382:28;:32;:133;;;;;;;;;;;;;;;;;78450:14;78466:18;:7;:16;:18::i;:::-;78486:13;78433:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78382:133;78375:140;;;78023:498;;;;:::o;75903:31::-;;;;:::o;80653:122::-;22576:13;:11;:13::i;:::-;80752:17:::1;80736:13;:33;;;;;;:::i;:::-;;80653:122:::0;:::o;78586:107::-;78644:7;78667:20;78681:5;78667:13;:20::i;:::-;78660:27;;78586:107;;;:::o;80370:96::-;22576:13;:11;:13::i;:::-;80450:10:::1;80437;:23;;;;80370:96:::0;:::o;79790:92::-;22576:13;:11;:13::i;:::-;79870:6:::1;79855:12;:21;;;;79790:92:::0;:::o;50894:164::-;50991:4;51015:18;:25;51034:5;51015:25;;;;;;;;;;;;;;;:35;51041:8;51015:35;;;;;;;;;;;;;;;;;;;;;;;;;51008:42;;50894:164;;;;:::o;80809:120::-;22576:13;:11;:13::i;:::-;80908:15:::1;80891:14;:32;;;;;;:::i;:::-;;80809:120:::0;:::o;23589:201::-;22576:13;:11;:13::i;:::-;23698:1:::1;23678:22;;:8;:22;;::::0;23670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23754:28;23773:8;23754:18;:28::i;:::-;23589:201:::0;:::o;81461:112::-;22576:13;:11;:13::i;:::-;81554:10:::1;81541:24;;;22855:132:::0;22930:12;:10;:12::i;:::-;22919:23;;:7;:5;:7::i;:::-;:23;;;22911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22855:132::o;51316:282::-;51381:4;51437:7;51418:15;:13;:15::i;:::-;:26;;:66;;;;;51471:13;;51461:7;:23;51418:66;:153;;;;;51570:1;35324:8;51522:17;:26;51540:7;51522:26;;;;;;;;;;;;:44;:49;51418:153;51398:173;;51316:282;;;:::o;73624:105::-;73684:7;73711:10;73704:17;;73624:105;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;40704:178::-;40765:7;34548:13;34686:2;40793:18;:25;40812:5;40793:25;;;;;;;;;;;;;;;;:50;;40792:82;40785:89;;40704:178;;;:::o;21241:98::-;21294:7;21321:10;21314:17;;21241:98;:::o;77020:154::-;77075:4;77088:12;77138:7;77126:20;77118:28;;77169:1;77161:4;:9;77154:16;;;77020:154;;;:::o;67456:112::-;67533:27;67543:2;67547:8;67533:27;;;;;;;;;;;;:9;:27::i;:::-;67456:112;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;76451:101::-;76516:7;76543:1;76536:8;;76451:101;:::o;46002:1275::-;46069:7;46089:12;46104:7;46089:22;;46172:4;46153:15;:13;:15::i;:::-;:23;46149:1061;;46206:13;;46199:4;:20;46195:1015;;;46244:14;46261:17;:23;46279:4;46261:23;;;;;;;;;;;;46244:40;;46378:1;35324:8;46350:6;:24;:29;46346:845;;47015:113;47032:1;47022:6;:11;47015:113;;47075:17;:25;47093:6;;;;;;;47075:25;;;;;;;;;;;;47066:34;;47015:113;;;47161:6;47154:13;;;;;;46346:845;46221:989;46195:1015;46149:1061;47238:31;;;;;;;;;;;;;;46002:1275;;;;:::o;52479:485::-;52581:27;52610:23;52651:38;52692:15;:24;52708:7;52692:24;;;;;;;;;;;52651:65;;52869:18;52846:41;;52926:19;52920:26;52901:45;;52831:126;52479:485;;;:::o;51707:659::-;51856:11;52021:16;52014:5;52010:28;52001:37;;52181:16;52170:9;52166:32;52153:45;;52331:15;52320:9;52317:30;52309:5;52298:9;52295:20;52292:56;52282:66;;51707:659;;;;;:::o;58365:159::-;;;;;:::o;72933:311::-;73068:7;73088:16;35728:3;73114:19;:41;;73088:68;;35728:3;73182:31;73193:4;73199:2;73203:9;73182:10;:31::i;:::-;73174:40;;:62;;73167:69;;;72933:311;;;;;:::o;47825:450::-;47905:14;48073:16;48066:5;48062:28;48053:37;;48250:5;48236:11;48211:23;48207:41;48204:52;48197:5;48194:63;48184:73;;47825:450;;;;:::o;59189:158::-;;;;;:::o;23950:191::-;24024:16;24043:6;;;;;;;;;;;24024:25;;24069:8;24060:6;;:17;;;;;;;;;;;;;;;;;;24124:8;24093:40;;24114:8;24093:40;;;;;;;;;;;;24013:128;23950:191;:::o;45450:161::-;45518:21;;:::i;:::-;45559:44;45578:17;:24;45596:5;45578:24;;;;;;;;;;;;45559:18;:44::i;:::-;45552:51;;45450:161;;;:::o;50503:234::-;50650:8;50598:18;:39;50617:19;:17;:19::i;:::-;50598:39;;;;;;;;;;;;;;;:49;50638:8;50598:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50710:8;50674:55;;50689:19;:17;:19::i;:::-;50674:55;;;50720:8;50674:55;;;;;;:::i;:::-;;;;;;;;50503:234;;:::o;59787:716::-;59950:4;59996:2;59971:45;;;60017:19;:17;:19::i;:::-;60038:4;60044:7;60053:5;59971:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59967:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60271:1;60254:6;:13;:18;60250:235;;60300:40;;;;;;;;;;;;;;60250:235;60443:6;60437:13;60428:6;60424:2;60420:15;60413:38;59967:529;60140:54;;;60130:64;;;:6;:64;;;;60123:71;;;59787:716;;;;;;:::o;76341:102::-;76401:13;76430:7;76423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76341:102;:::o;18160:716::-;18216:13;18267:14;18304:1;18284:17;18295:5;18284:10;:17::i;:::-;:21;18267:38;;18320:20;18354:6;18343:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18320:41;;18376:11;18505:6;18501:2;18497:15;18489:6;18485:28;18478:35;;18542:288;18549:4;18542:288;;;18574:5;;;;;;;;18716:8;18711:2;18704:5;18700:14;18695:30;18690:3;18682:44;18772:2;18763:11;;;;;;:::i;:::-;;;;;18806:1;18797:5;:10;18542:288;18793:21;18542:288;18851:6;18844:13;;;;;18160:716;;;:::o;66683:689::-;66814:19;66820:2;66824:8;66814:5;:19::i;:::-;66893:1;66875:2;:14;;;:19;66871:483;;66915:11;66929:13;;66915:27;;66961:13;66983:8;66977:3;:14;66961:30;;67010:233;67041:62;67080:1;67084:2;67088:7;;;;;;67097:5;67041:30;:62::i;:::-;67036:167;;67139:40;;;;;;;;;;;;;;67036:167;67238:3;67230:5;:11;67010:233;;67325:3;67308:13;;:20;67304:34;;67330:8;;;67304:34;66896:458;;66871:483;66683:689;;;:::o;72634:147::-;72771:6;72634:147;;;;;:::o;47376:366::-;47442:31;;:::i;:::-;47519:6;47486:9;:14;;:41;;;;;;;;;;;35207:3;47572:6;:33;;47538:9;:24;;:68;;;;;;;;;;;47664:1;35324:8;47636:6;:24;:29;;47617:9;:16;;:48;;;;;;;;;;;35728:3;47705:6;:28;;47676:9;:19;;:58;;;;;;;;;;;47376:366;;;:::o;14994:948::-;15047:7;15067:14;15084:1;15067:18;;15134:8;15125:5;:17;15121:106;;15172:8;15163:17;;;;;;:::i;:::-;;;;;15209:2;15199:12;;;;15121:106;15254:8;15245:5;:17;15241:106;;15292:8;15283:17;;;;;;:::i;:::-;;;;;15329:2;15319:12;;;;15241:106;15374:8;15365:5;:17;15361:106;;15412:8;15403:17;;;;;;:::i;:::-;;;;;15449:2;15439:12;;;;15361:106;15494:7;15485:5;:16;15481:103;;15531:7;15522:16;;;;;;:::i;:::-;;;;;15567:1;15557:11;;;;15481:103;15611:7;15602:5;:16;15598:103;;15648:7;15639:16;;;;;;:::i;:::-;;;;;15684:1;15674:11;;;;15598:103;15728:7;15719:5;:16;15715:103;;15765:7;15756:16;;;;;;:::i;:::-;;;;;15801:1;15791:11;;;;15715:103;15845:7;15836:5;:16;15832:68;;15883:1;15873:11;;;;15832:68;15928:6;15921:13;;;14994:948;;;:::o;60965:2966::-;61038:20;61061:13;;61038:36;;61101:1;61089:8;:13;61085:44;;61111:18;;;;;;;;;;;;;;61085:44;61142:61;61172:1;61176:2;61180:12;61194:8;61142:21;:61::i;:::-;61686:1;34686:2;61656:1;:26;;61655:32;61643:8;:45;61617:18;:22;61636:2;61617:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61965:139;62002:2;62056:33;62079:1;62083:2;62087:1;62056:14;:33::i;:::-;62023:30;62044:8;62023:20;:30::i;:::-;:66;61965:18;:139::i;:::-;61931:17;:31;61949:12;61931:31;;;;;;;;;;;:173;;;;62121:16;62152:11;62181:8;62166:12;:23;62152:37;;62702:16;62698:2;62694:25;62682:37;;63074:12;63034:8;62993:1;62931:25;62872:1;62811;62784:335;63445:1;63431:12;63427:20;63385:346;63486:3;63477:7;63474:16;63385:346;;63704:7;63694:8;63691:1;63664:25;63661:1;63658;63653:59;63539:1;63530:7;63526:15;63515:26;;63385:346;;;63389:77;63776:1;63764:8;:13;63760:45;;63786:19;;;;;;;;;;;;;;63760:45;63838:3;63822:13;:19;;;;61391:2462;;63863:60;63892:1;63896:2;63900:12;63914:8;63863:20;:60::i;:::-;61027:2904;60965:2966;;:::o;48377:324::-;48447:14;48680:1;48670:8;48667:15;48641:24;48637:46;48627:56;;48377:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:104::-;14958:7;14987:24;15005:5;14987:24;:::i;:::-;14976:35;;14913:104;;;:::o;15023:138::-;15104:32;15130:5;15104:32;:::i;:::-;15097:5;15094:43;15084:71;;15151:1;15148;15141:12;15084:71;15023:138;:::o;15167:155::-;15221:5;15259:6;15246:20;15237:29;;15275:41;15310:5;15275:41;:::i;:::-;15167:155;;;;:::o;15328:345::-;15395:6;15444:2;15432:9;15423:7;15419:23;15415:32;15412:119;;;15450:79;;:::i;:::-;15412:119;15570:1;15595:61;15648:7;15639:6;15628:9;15624:22;15595:61;:::i;:::-;15585:71;;15541:125;15328:345;;;;:::o;15679:180::-;15727:77;15724:1;15717:88;15824:4;15821:1;15814:15;15848:4;15845:1;15838:15;15865:320;15909:6;15946:1;15940:4;15936:12;15926:22;;15993:1;15987:4;15983:12;16014:18;16004:81;;16070:4;16062:6;16058:17;16048:27;;16004:81;16132:2;16124:6;16121:14;16101:18;16098:38;16095:84;;16151:18;;:::i;:::-;16095:84;15916:269;15865:320;;;:::o;16191:173::-;16331:25;16327:1;16319:6;16315:14;16308:49;16191:173;:::o;16370:366::-;16512:3;16533:67;16597:2;16592:3;16533:67;:::i;:::-;16526:74;;16609:93;16698:3;16609:93;:::i;:::-;16727:2;16722:3;16718:12;16711:19;;16370:366;;;:::o;16742:419::-;16908:4;16946:2;16935:9;16931:18;16923:26;;16995:9;16989:4;16985:20;16981:1;16970:9;16966:17;16959:47;17023:131;17149:4;17023:131;:::i;:::-;17015:139;;16742:419;;;:::o;17167:180::-;17215:77;17212:1;17205:88;17312:4;17309:1;17302:15;17336:4;17333:1;17326:15;17353:191;17393:3;17412:20;17430:1;17412:20;:::i;:::-;17407:25;;17446:20;17464:1;17446:20;:::i;:::-;17441:25;;17489:1;17486;17482:9;17475:16;;17510:3;17507:1;17504:10;17501:36;;;17517:18;;:::i;:::-;17501:36;17353:191;;;;:::o;17550:177::-;17690:29;17686:1;17678:6;17674:14;17667:53;17550:177;:::o;17733:366::-;17875:3;17896:67;17960:2;17955:3;17896:67;:::i;:::-;17889:74;;17972:93;18061:3;17972:93;:::i;:::-;18090:2;18085:3;18081:12;18074:19;;17733:366;;;:::o;18105:419::-;18271:4;18309:2;18298:9;18294:18;18286:26;;18358:9;18352:4;18348:20;18344:1;18333:9;18329:17;18322:47;18386:131;18512:4;18386:131;:::i;:::-;18378:139;;18105:419;;;:::o;18530:179::-;18670:31;18666:1;18658:6;18654:14;18647:55;18530:179;:::o;18715:366::-;18857:3;18878:67;18942:2;18937:3;18878:67;:::i;:::-;18871:74;;18954:93;19043:3;18954:93;:::i;:::-;19072:2;19067:3;19063:12;19056:19;;18715:366;;;:::o;19087:419::-;19253:4;19291:2;19280:9;19276:18;19268:26;;19340:9;19334:4;19330:20;19326:1;19315:9;19311:17;19304:47;19368:131;19494:4;19368:131;:::i;:::-;19360:139;;19087:419;;;:::o;19512:178::-;19652:30;19648:1;19640:6;19636:14;19629:54;19512:178;:::o;19696:366::-;19838:3;19859:67;19923:2;19918:3;19859:67;:::i;:::-;19852:74;;19935:93;20024:3;19935:93;:::i;:::-;20053:2;20048:3;20044:12;20037:19;;19696:366;;;:::o;20068:419::-;20234:4;20272:2;20261:9;20257:18;20249:26;;20321:9;20315:4;20311:20;20307:1;20296:9;20292:17;20285:47;20349:131;20475:4;20349:131;:::i;:::-;20341:139;;20068:419;;;:::o;20493:170::-;20633:22;20629:1;20621:6;20617:14;20610:46;20493:170;:::o;20669:366::-;20811:3;20832:67;20896:2;20891:3;20832:67;:::i;:::-;20825:74;;20908:93;20997:3;20908:93;:::i;:::-;21026:2;21021:3;21017:12;21010:19;;20669:366;;;:::o;21041:419::-;21207:4;21245:2;21234:9;21230:18;21222:26;;21294:9;21288:4;21284:20;21280:1;21269:9;21265:17;21258:47;21322:131;21448:4;21322:131;:::i;:::-;21314:139;;21041:419;;;:::o;21466:141::-;21515:4;21538:3;21530:11;;21561:3;21558:1;21551:14;21595:4;21592:1;21582:18;21574:26;;21466:141;;;:::o;21613:93::-;21650:6;21697:2;21692;21685:5;21681:14;21677:23;21667:33;;21613:93;;;:::o;21712:107::-;21756:8;21806:5;21800:4;21796:16;21775:37;;21712:107;;;;:::o;21825:393::-;21894:6;21944:1;21932:10;21928:18;21967:97;21997:66;21986:9;21967:97;:::i;:::-;22085:39;22115:8;22104:9;22085:39;:::i;:::-;22073:51;;22157:4;22153:9;22146:5;22142:21;22133:30;;22206:4;22196:8;22192:19;22185:5;22182:30;22172:40;;21901:317;;21825:393;;;;;:::o;22224:60::-;22252:3;22273:5;22266:12;;22224:60;;;:::o;22290:142::-;22340:9;22373:53;22391:34;22400:24;22418:5;22400:24;:::i;:::-;22391:34;:::i;:::-;22373:53;:::i;:::-;22360:66;;22290:142;;;:::o;22438:75::-;22481:3;22502:5;22495:12;;22438:75;;;:::o;22519:269::-;22629:39;22660:7;22629:39;:::i;:::-;22690:91;22739:41;22763:16;22739:41;:::i;:::-;22731:6;22724:4;22718:11;22690:91;:::i;:::-;22684:4;22677:105;22595:193;22519:269;;;:::o;22794:73::-;22839:3;22794:73;:::o;22873:189::-;22950:32;;:::i;:::-;22991:65;23049:6;23041;23035:4;22991:65;:::i;:::-;22926:136;22873:189;;:::o;23068:186::-;23128:120;23145:3;23138:5;23135:14;23128:120;;;23199:39;23236:1;23229:5;23199:39;:::i;:::-;23172:1;23165:5;23161:13;23152:22;;23128:120;;;23068:186;;:::o;23260:543::-;23361:2;23356:3;23353:11;23350:446;;;23395:38;23427:5;23395:38;:::i;:::-;23479:29;23497:10;23479:29;:::i;:::-;23469:8;23465:44;23662:2;23650:10;23647:18;23644:49;;;23683:8;23668:23;;23644:49;23706:80;23762:22;23780:3;23762:22;:::i;:::-;23752:8;23748:37;23735:11;23706:80;:::i;:::-;23365:431;;23350:446;23260:543;;;:::o;23809:117::-;23863:8;23913:5;23907:4;23903:16;23882:37;;23809:117;;;;:::o;23932:169::-;23976:6;24009:51;24057:1;24053:6;24045:5;24042:1;24038:13;24009:51;:::i;:::-;24005:56;24090:4;24084;24080:15;24070:25;;23983:118;23932:169;;;;:::o;24106:295::-;24182:4;24328:29;24353:3;24347:4;24328:29;:::i;:::-;24320:37;;24390:3;24387:1;24383:11;24377:4;24374:21;24366:29;;24106:295;;;;:::o;24406:1395::-;24523:37;24556:3;24523:37;:::i;:::-;24625:18;24617:6;24614:30;24611:56;;;24647:18;;:::i;:::-;24611:56;24691:38;24723:4;24717:11;24691:38;:::i;:::-;24776:67;24836:6;24828;24822:4;24776:67;:::i;:::-;24870:1;24894:4;24881:17;;24926:2;24918:6;24915:14;24943:1;24938:618;;;;25600:1;25617:6;25614:77;;;25666:9;25661:3;25657:19;25651:26;25642:35;;25614:77;25717:67;25777:6;25770:5;25717:67;:::i;:::-;25711:4;25704:81;25573:222;24908:887;;24938:618;24990:4;24986:9;24978:6;24974:22;25024:37;25056:4;25024:37;:::i;:::-;25083:1;25097:208;25111:7;25108:1;25105:14;25097:208;;;25190:9;25185:3;25181:19;25175:26;25167:6;25160:42;25241:1;25233:6;25229:14;25219:24;;25288:2;25277:9;25273:18;25260:31;;25134:4;25131:1;25127:12;25122:17;;25097:208;;;25333:6;25324:7;25321:19;25318:179;;;25391:9;25386:3;25382:19;25376:26;25434:48;25476:4;25468:6;25464:17;25453:9;25434:48;:::i;:::-;25426:6;25419:64;25341:156;25318:179;25543:1;25539;25531:6;25527:14;25523:22;25517:4;25510:36;24945:611;;;24908:887;;24498:1303;;;24406:1395;;:::o;25807:180::-;25855:77;25852:1;25845:88;25952:4;25949:1;25942:15;25976:4;25973:1;25966:15;25993:181;26133:33;26129:1;26121:6;26117:14;26110:57;25993:181;:::o;26180:366::-;26322:3;26343:67;26407:2;26402:3;26343:67;:::i;:::-;26336:74;;26419:93;26508:3;26419:93;:::i;:::-;26537:2;26532:3;26528:12;26521:19;;26180:366;;;:::o;26552:419::-;26718:4;26756:2;26745:9;26741:18;26733:26;;26805:9;26799:4;26795:20;26791:1;26780:9;26776:17;26769:47;26833:131;26959:4;26833:131;:::i;:::-;26825:139;;26552:419;;;:::o;26977:410::-;27017:7;27040:20;27058:1;27040:20;:::i;:::-;27035:25;;27074:20;27092:1;27074:20;:::i;:::-;27069:25;;27129:1;27126;27122:9;27151:30;27169:11;27151:30;:::i;:::-;27140:41;;27330:1;27321:7;27317:15;27314:1;27311:22;27291:1;27284:9;27264:83;27241:139;;27360:18;;:::i;:::-;27241:139;27025:362;26977:410;;;;:::o;27393:168::-;27533:20;27529:1;27521:6;27517:14;27510:44;27393:168;:::o;27567:366::-;27709:3;27730:67;27794:2;27789:3;27730:67;:::i;:::-;27723:74;;27806:93;27895:3;27806:93;:::i;:::-;27924:2;27919:3;27915:12;27908:19;;27567:366;;;:::o;27939:419::-;28105:4;28143:2;28132:9;28128:18;28120:26;;28192:9;28186:4;28182:20;28178:1;28167:9;28163:17;28156:47;28220:131;28346:4;28220:131;:::i;:::-;28212:139;;27939:419;;;:::o;28364:172::-;28504:24;28500:1;28492:6;28488:14;28481:48;28364:172;:::o;28542:366::-;28684:3;28705:67;28769:2;28764:3;28705:67;:::i;:::-;28698:74;;28781:93;28870:3;28781:93;:::i;:::-;28899:2;28894:3;28890:12;28883:19;;28542:366;;;:::o;28914:419::-;29080:4;29118:2;29107:9;29103:18;29095:26;;29167:9;29161:4;29157:20;29153:1;29142:9;29138:17;29131:47;29195:131;29321:4;29195:131;:::i;:::-;29187:139;;28914:419;;;:::o;29339:235::-;29479:34;29475:1;29467:6;29463:14;29456:58;29548:18;29543:2;29535:6;29531:15;29524:43;29339:235;:::o;29580:366::-;29722:3;29743:67;29807:2;29802:3;29743:67;:::i;:::-;29736:74;;29819:93;29908:3;29819:93;:::i;:::-;29937:2;29932:3;29928:12;29921:19;;29580:366;;;:::o;29952:419::-;30118:4;30156:2;30145:9;30141:18;30133:26;;30205:9;30199:4;30195:20;30191:1;30180:9;30176:17;30169:47;30233:131;30359:4;30233:131;:::i;:::-;30225:139;;29952:419;;;:::o;30377:148::-;30479:11;30516:3;30501:18;;30377:148;;;;:::o;30531:390::-;30637:3;30665:39;30698:5;30665:39;:::i;:::-;30720:89;30802:6;30797:3;30720:89;:::i;:::-;30713:96;;30818:65;30876:6;30871:3;30864:4;30857:5;30853:16;30818:65;:::i;:::-;30908:6;30903:3;30899:16;30892:23;;30641:280;30531:390;;;;:::o;30951:874::-;31054:3;31091:5;31085:12;31120:36;31146:9;31120:36;:::i;:::-;31172:89;31254:6;31249:3;31172:89;:::i;:::-;31165:96;;31292:1;31281:9;31277:17;31308:1;31303:166;;;;31483:1;31478:341;;;;31270:549;;31303:166;31387:4;31383:9;31372;31368:25;31363:3;31356:38;31449:6;31442:14;31435:22;31427:6;31423:35;31418:3;31414:45;31407:52;;31303:166;;31478:341;31545:38;31577:5;31545:38;:::i;:::-;31605:1;31619:154;31633:6;31630:1;31627:13;31619:154;;;31707:7;31701:14;31697:1;31692:3;31688:11;31681:35;31757:1;31748:7;31744:15;31733:26;;31655:4;31652:1;31648:12;31643:17;;31619:154;;;31802:6;31797:3;31793:16;31786:23;;31485:334;;31270:549;;31058:767;;30951:874;;;;:::o;31831:589::-;32056:3;32078:95;32169:3;32160:6;32078:95;:::i;:::-;32071:102;;32190:95;32281:3;32272:6;32190:95;:::i;:::-;32183:102;;32302:92;32390:3;32381:6;32302:92;:::i;:::-;32295:99;;32411:3;32404:10;;31831:589;;;;;;:::o;32426:225::-;32566:34;32562:1;32554:6;32550:14;32543:58;32635:8;32630:2;32622:6;32618:15;32611:33;32426:225;:::o;32657:366::-;32799:3;32820:67;32884:2;32879:3;32820:67;:::i;:::-;32813:74;;32896:93;32985:3;32896:93;:::i;:::-;33014:2;33009:3;33005:12;32998:19;;32657:366;;;:::o;33029:419::-;33195:4;33233:2;33222:9;33218:18;33210:26;;33282:9;33276:4;33272:20;33268:1;33257:9;33253:17;33246:47;33310:131;33436:4;33310:131;:::i;:::-;33302:139;;33029:419;;;:::o;33454:182::-;33594:34;33590:1;33582:6;33578:14;33571:58;33454:182;:::o;33642:366::-;33784:3;33805:67;33869:2;33864:3;33805:67;:::i;:::-;33798:74;;33881:93;33970:3;33881:93;:::i;:::-;33999:2;33994:3;33990:12;33983:19;;33642:366;;;:::o;34014:419::-;34180:4;34218:2;34207:9;34203:18;34195:26;;34267:9;34261:4;34257:20;34253:1;34242:9;34238:17;34231:47;34295:131;34421:4;34295:131;:::i;:::-;34287:139;;34014:419;;;:::o;34439:181::-;34579:33;34575:1;34567:6;34563:14;34556:57;34439:181;:::o;34626:366::-;34768:3;34789:67;34853:2;34848:3;34789:67;:::i;:::-;34782:74;;34865:93;34954:3;34865:93;:::i;:::-;34983:2;34978:3;34974:12;34967:19;;34626:366;;;:::o;34998:419::-;35164:4;35202:2;35191:9;35187:18;35179:26;;35251:9;35245:4;35241:20;35237:1;35226:9;35222:17;35215:47;35279:131;35405:4;35279:131;:::i;:::-;35271:139;;34998:419;;;:::o;35423:98::-;35474:6;35508:5;35502:12;35492:22;;35423:98;;;:::o;35527:168::-;35610:11;35644:6;35639:3;35632:19;35684:4;35679:3;35675:14;35660:29;;35527:168;;;;:::o;35701:373::-;35787:3;35815:38;35847:5;35815:38;:::i;:::-;35869:70;35932:6;35927:3;35869:70;:::i;:::-;35862:77;;35948:65;36006:6;36001:3;35994:4;35987:5;35983:16;35948:65;:::i;:::-;36038:29;36060:6;36038:29;:::i;:::-;36033:3;36029:39;36022:46;;35791:283;35701:373;;;;:::o;36080:640::-;36275:4;36313:3;36302:9;36298:19;36290:27;;36327:71;36395:1;36384:9;36380:17;36371:6;36327:71;:::i;:::-;36408:72;36476:2;36465:9;36461:18;36452:6;36408:72;:::i;:::-;36490;36558:2;36547:9;36543:18;36534:6;36490:72;:::i;:::-;36609:9;36603:4;36599:20;36594:2;36583:9;36579:18;36572:48;36637:76;36708:4;36699:6;36637:76;:::i;:::-;36629:84;;36080:640;;;;;;;:::o;36726:141::-;36782:5;36813:6;36807:13;36798:22;;36829:32;36855:5;36829:32;:::i;:::-;36726:141;;;;:::o;36873:349::-;36942:6;36991:2;36979:9;36970:7;36966:23;36962:32;36959:119;;;36997:79;;:::i;:::-;36959:119;37117:1;37142:63;37197:7;37188:6;37177:9;37173:22;37142:63;:::i;:::-;37132:73;;37088:127;36873:349;;;;:::o;37228:180::-;37276:77;37273:1;37266:88;37373:4;37370:1;37363:15;37397:4;37394:1;37387:15

Swarm Source

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