ETH Price: $2,921.08 (-7.78%)
Gas: 8 Gwei

Token

Rug me, Reddit! (RGMRDT)
 

Overview

Max Total Supply

3,297 RGMRDT

Holders

1,431

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RGMRDT
0xdf7b8f3d0db9749a6f555f32d1c6181cb4b1093d
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:
RugMeReddit

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the 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);
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 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: Reddit.sol










pragma solidity ^0.8.17;

contract RugMeReddit is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = "ipfs://bafybeidxayjl7353vnb7cb3g2m2yvlxndfbyufxaatintdltb3acj53evi/";
  string public uriSuffix = ".json";
  
  uint public cost = 0.003 ether;
  uint public maxSupply = 4777;
  uint public freeSupply = 4777;
  uint public maxPerWallet = 10;
  uint public maxMintAmountPerTx = 10;

  bool public paused = true;

  mapping(address => bool) public freeMintClaimed;


  constructor() ERC721A("Rug me, Reddit!", "RGMRDT") {
  }

  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Error creating the order. You were not charged, please try again");
    require(_mintAmount + balanceOf(_msgSender()) <= maxPerWallet, "Error creating the order. You were not charged, please try again");
    require(totalSupply() + _mintAmount <= maxSupply, "Error creating the order. You were not charged, please try again");
    _;
  }

  modifier mintPriceCompliance(uint _mintAmount) {
    if (freeMintClaimed[_msgSender()] || totalSupply() >= freeSupply) {
      require(msg.value >= cost * _mintAmount, "Error creating the order. You were not charged, please try again");
    }
    _;
  }

   function claim(uint256 amount) external payable {
        require(!paused, "Error creating the order. You were not charged, please try again");

        require(totalSupply() + amount <= maxSupply, "Error creating the order. You were not charged, please try again");
        uint minted = _numberMinted(msg.sender);
        require(msg.sender == tx.origin, "Error creating the order. You were not charged, please try again");
        require(minted + amount <= maxPerWallet, "Error creating the order. You were not charged, please try again");

        if (minted == 0) {
            require(msg.value >= cost * (amount - 1), "Error creating the order. You were not charged, please try again");
        } else {
            require(msg.value >= cost * amount, "Error creating the order. You were not charged, please try again");
        }
        _safeMint(msg.sender, amount);
    }
  
  function mintForAddress(uint _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

  function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

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

  function setCost(uint _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   function setMaxPerWallet(uint _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

    function setValues(uint256 _newAmount) external onlyOwner {
    maxSupply = _newAmount;
}

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

  function setFreeSupply(uint _freeQty) public onlyOwner {
    freeSupply = _freeQty;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620039bd60439139600a90816200002e9190620004e7565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620004e7565b50660aa87bee538000600c556112a9600d556112a9600e55600a600f55600a6010556001601160006101000a81548160ff021916908315150217905550348015620000bf57600080fd5b506040518060400160405280600f81526020017f527567206d652c205265646469742100000000000000000000000000000000008152506040518060400160405280600681526020017f52474d524454000000000000000000000000000000000000000000000000000081525081600290816200013d9190620004e7565b5080600390816200014f9190620004e7565b50620001606200019660201b60201c565b6000819055505050620001886200017c6200019f60201b60201c565b620001a760201b60201c565b6001600981905550620005ce565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ef57607f821691505b602082108103620003055762000304620002a7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200036f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000330565b6200037b868362000330565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003c8620003c2620003bc8462000393565b6200039d565b62000393565b9050919050565b6000819050919050565b620003e483620003a7565b620003fc620003f382620003cf565b8484546200033d565b825550505050565b600090565b6200041362000404565b62000420818484620003d9565b505050565b5b8181101562000448576200043c60008262000409565b60018101905062000426565b5050565b601f821115620004975762000461816200030b565b6200046c8462000320565b810160208510156200047c578190505b620004946200048b8562000320565b83018262000425565b50505b505050565b600082821c905092915050565b6000620004bc600019846008026200049c565b1980831691505092915050565b6000620004d78383620004a9565b9150826002028217905092915050565b620004f2826200026d565b67ffffffffffffffff8111156200050e576200050d62000278565b5b6200051a8254620002d6565b620005278282856200044c565b600060209050601f8311600181146200055f57600084156200054a578287015190505b620005568582620004c9565b865550620005c6565b601f1984166200056f866200030b565b60005b82811015620005995784890151825560018201915060208501945060208101905062000572565b86831015620005b95784890151620005b5601f891682620004a9565b8355505b6001600288020188555050505b505050505050565b6133df80620005de6000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063b88d4fde116100ab578063e26d14741161006f578063e26d14741461076a578063e985e9c514610793578063efbd73f4146107d0578063f2fde38b146107f9578063f676308a146108225761021a565b8063b88d4fde14610680578063c87b56dd1461069c578063d5abeb01146106d9578063e0ec7c3614610704578063e268e4d3146107415761021a565b80638da5cb5b116100f25780638da5cb5b146105ad57806394354fd0146105d857806395d89b4114610603578063a22cb4651461062e578063b071401b146106575761021a565b80636352211e146104f357806370a0823114610530578063715018a61461056d5780637ec4a659146105845761021a565b806324a6ab0c116101a657806344a0d68a1161017557806344a0d68a1461041e578063453c2310146104475780635503a0e8146104725780635c975abb1461049d57806362b99ad4146104c85761021a565b806324a6ab0c146103a4578063379607f5146103cf5780633ccfd60b146103eb57806342842e0e146104025761021a565b806313faede6116101ed57806313faede6146102e057806316ba10e01461030b57806316c38b3c1461033457806318160ddd1461035d57806323b872dd146103885761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612477565b61084b565b60405161025391906124bf565b60405180910390f35b34801561026857600080fd5b506102716108dd565b60405161027e919061256a565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906125c2565b61096f565b6040516102bb9190612630565b60405180910390f35b6102de60048036038101906102d99190612677565b6109ee565b005b3480156102ec57600080fd5b506102f5610b32565b60405161030291906126c6565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612816565b610b38565b005b34801561034057600080fd5b5061035b6004803603810190610356919061288b565b610b53565b005b34801561036957600080fd5b50610372610b78565b60405161037f91906126c6565b60405180910390f35b6103a2600480360381019061039d91906128b8565b610b8f565b005b3480156103b057600080fd5b506103b9610eb1565b6040516103c691906126c6565b60405180910390f35b6103e960048036038101906103e491906125c2565b610eb7565b005b3480156103f757600080fd5b506104006110f1565b005b61041c600480360381019061041791906128b8565b611189565b005b34801561042a57600080fd5b50610445600480360381019061044091906125c2565b6111a9565b005b34801561045357600080fd5b5061045c6111bb565b60405161046991906126c6565b60405180910390f35b34801561047e57600080fd5b506104876111c1565b604051610494919061256a565b60405180910390f35b3480156104a957600080fd5b506104b261124f565b6040516104bf91906124bf565b60405180910390f35b3480156104d457600080fd5b506104dd611262565b6040516104ea919061256a565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906125c2565b6112f0565b6040516105279190612630565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061290b565b611302565b60405161056491906126c6565b60405180910390f35b34801561057957600080fd5b506105826113ba565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612816565b6113ce565b005b3480156105b957600080fd5b506105c26113e9565b6040516105cf9190612630565b60405180910390f35b3480156105e457600080fd5b506105ed611413565b6040516105fa91906126c6565b60405180910390f35b34801561060f57600080fd5b50610618611419565b604051610625919061256a565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612938565b6114ab565b005b34801561066357600080fd5b5061067e600480360381019061067991906125c2565b6115b6565b005b61069a60048036038101906106959190612a19565b6115c8565b005b3480156106a857600080fd5b506106c360048036038101906106be91906125c2565b61163b565b6040516106d0919061256a565b60405180910390f35b3480156106e557600080fd5b506106ee6116e5565b6040516106fb91906126c6565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061290b565b6116eb565b60405161073891906124bf565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906125c2565b61170b565b005b34801561077657600080fd5b50610791600480360381019061078c91906125c2565b61171d565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190612a9c565b61172f565b6040516107c791906124bf565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190612adc565b6117c3565b005b34801561080557600080fd5b50610820600480360381019061081b919061290b565b6118e2565b005b34801561082e57600080fd5b50610849600480360381019061084491906125c2565b611965565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ec90612b4b565b80601f016020809104026020016040519081016040528092919081815260200182805461091890612b4b565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611977565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f9826112f0565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1a6119d6565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d57610a4681610a416119d6565b61172f565b610a7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610b406119de565b80600b9081610b4f9190612d28565b5050565b610b5b6119de565b80601160006101000a81548160ff02191690831515021790555050565b6000610b82611a5c565b6001546000540303905090565b6000610b9a82611a65565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0d84611b31565b91509150610c238187610c1e6119d6565b611b58565b610c6f57610c3886610c336119d6565b61172f565b610c6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cd5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce28686866001611b9c565b8015610ced57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dbb85610d97888887611ba2565b7c020000000000000000000000000000000000000000000000000000000017611bca565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e415760006001850190506000600460008381526020019081526020016000205403610e3f576000548114610e3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea98686866001611bf5565b505050505050565b600e5481565b601160009054906101000a900460ff1615610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612e6c565b60405180910390fd5b600d5481610f13610b78565b610f1d9190612ebb565b1115610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590612e6c565b60405180910390fd5b6000610f6933611bfb565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090612e6c565b60405180910390fd5b600f548282610fe89190612ebb565b1115611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612e6c565b60405180910390fd5b600081036110925760018261103e9190612eef565b600c5461104b9190612f23565b34101561108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490612e6c565b60405180910390fd5b6110e3565b81600c546110a09190612f23565b3410156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612e6c565b60405180910390fd5b5b6110ed3383611c52565b5050565b6110f96119de565b611101611c70565b600061110b6113e9565b73ffffffffffffffffffffffffffffffffffffffff164760405161112e90612f96565b60006040518083038185875af1925050503d806000811461116b576040519150601f19603f3d011682016040523d82523d6000602084013e611170565b606091505b505090508061117e57600080fd5b50611187611cbf565b565b6111a4838383604051806020016040528060008152506115c8565b505050565b6111b16119de565b80600c8190555050565b600f5481565b600b80546111ce90612b4b565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90612b4b565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600a805461126f90612b4b565b80601f016020809104026020016040519081016040528092919081815260200182805461129b90612b4b565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b505050505081565b60006112fb82611a65565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611369576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113c26119de565b6113cc6000611cc9565b565b6113d66119de565b80600a90816113e59190612d28565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461142890612b4b565b80601f016020809104026020016040519081016040528092919081815260200182805461145490612b4b565b80156114a15780601f10611476576101008083540402835291602001916114a1565b820191906000526020600020905b81548152906001019060200180831161148457829003601f168201915b5050505050905090565b80600760006114b86119d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115656119d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115aa91906124bf565b60405180910390a35050565b6115be6119de565b8060108190555050565b6115d3848484610b8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611635576115fe84848484611d8f565b611634576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061164682611977565b611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061301d565b60405180910390fd5b600061168f611edf565b905060008151116116af57604051806020016040528060008152506116dd565b806116b984611f71565b600b6040516020016116cd939291906130fc565b6040516020818303038152906040525b915050919050565b600d5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6117136119de565b80600f8190555050565b6117256119de565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117d657506010548111155b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90612e6c565b60405180910390fd5b600f5461182861182361203f565b611302565b826118339190612ebb565b1115611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90612e6c565b60405180910390fd5b600d5481611880610b78565b61188a9190612ebb565b11156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290612e6c565b60405180910390fd5b6118d36119de565b6118dd8284611c52565b505050565b6118ea6119de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061319f565b60405180910390fd5b61196281611cc9565b50565b61196d6119de565b80600e8190555050565b600081611982611a5c565b11158015611991575060005482105b80156119cf575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119e661203f565b73ffffffffffffffffffffffffffffffffffffffff16611a046113e9565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061320b565b60405180910390fd5b565b60006001905090565b60008082905080611a74611a5c565b11611afa57600054811015611af95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611af7575b60008103611aed576004600083600190039350838152602001908152602001600020549050611ac3565b8092505050611b2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb9868684612047565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611c6c828260405180602001604052806000815250612050565b5050565b600260095403611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90613277565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611db56119d6565b8786866040518563ffffffff1660e01b8152600401611dd794939291906132ec565b6020604051808303816000875af1925050508015611e1357506040513d601f19601f82011682018060405250810190611e10919061334d565b60015b611e8c573d8060008114611e43576040519150601f19603f3d011682016040523d82523d6000602084013e611e48565b606091505b506000815103611e84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611eee90612b4b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1a90612b4b565b8015611f675780601f10611f3c57610100808354040283529160200191611f67565b820191906000526020600020905b815481529060010190602001808311611f4a57829003601f168201915b5050505050905090565b606060006001611f80846120ed565b01905060008167ffffffffffffffff811115611f9f57611f9e6126eb565b5b6040519080825280601f01601f191660200182016040528015611fd15781602001600182028036833780820191505090505b509050600082602001820190505b600115612034578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120285761202761337a565b5b04945060008503611fdf575b819350505050919050565b600033905090565b60009392505050565b61205a8383612240565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120e857600080549050600083820390505b61209a6000868380600101945086611d8f565b6120d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120875781600054146120e557600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061214b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121415761214061337a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612188576d04ee2d6d415b85acef8100000000838161217e5761217d61337a565b5b0492506020810190505b662386f26fc1000083106121b757662386f26fc1000083816121ad576121ac61337a565b5b0492506010810190505b6305f5e10083106121e0576305f5e10083816121d6576121d561337a565b5b0492506008810190505b61271083106122055761271083816121fb576121fa61337a565b5b0492506004810190505b60648310612228576064838161221e5761221d61337a565b5b0492506002810190505b600a8310612237576001810190505b80915050919050565b60008054905060008203612280576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228d6000848385611b9c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612304836122f56000866000611ba2565b6122fe856123fb565b17611bca565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123a557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061236a565b50600082036123e0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123f66000848385611bf5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124548161241f565b811461245f57600080fd5b50565b6000813590506124718161244b565b92915050565b60006020828403121561248d5761248c612415565b5b600061249b84828501612462565b91505092915050565b60008115159050919050565b6124b9816124a4565b82525050565b60006020820190506124d460008301846124b0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125145780820151818401526020810190506124f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061253c826124da565b61254681856124e5565b93506125568185602086016124f6565b61255f81612520565b840191505092915050565b600060208201905081810360008301526125848184612531565b905092915050565b6000819050919050565b61259f8161258c565b81146125aa57600080fd5b50565b6000813590506125bc81612596565b92915050565b6000602082840312156125d8576125d7612415565b5b60006125e6848285016125ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061261a826125ef565b9050919050565b61262a8161260f565b82525050565b60006020820190506126456000830184612621565b92915050565b6126548161260f565b811461265f57600080fd5b50565b6000813590506126718161264b565b92915050565b6000806040838503121561268e5761268d612415565b5b600061269c85828601612662565b92505060206126ad858286016125ad565b9150509250929050565b6126c08161258c565b82525050565b60006020820190506126db60008301846126b7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61272382612520565b810181811067ffffffffffffffff82111715612742576127416126eb565b5b80604052505050565b600061275561240b565b9050612761828261271a565b919050565b600067ffffffffffffffff821115612781576127806126eb565b5b61278a82612520565b9050602081019050919050565b82818337600083830152505050565b60006127b96127b484612766565b61274b565b9050828152602081018484840111156127d5576127d46126e6565b5b6127e0848285612797565b509392505050565b600082601f8301126127fd576127fc6126e1565b5b813561280d8482602086016127a6565b91505092915050565b60006020828403121561282c5761282b612415565b5b600082013567ffffffffffffffff81111561284a5761284961241a565b5b612856848285016127e8565b91505092915050565b612868816124a4565b811461287357600080fd5b50565b6000813590506128858161285f565b92915050565b6000602082840312156128a1576128a0612415565b5b60006128af84828501612876565b91505092915050565b6000806000606084860312156128d1576128d0612415565b5b60006128df86828701612662565b93505060206128f086828701612662565b9250506040612901868287016125ad565b9150509250925092565b60006020828403121561292157612920612415565b5b600061292f84828501612662565b91505092915050565b6000806040838503121561294f5761294e612415565b5b600061295d85828601612662565b925050602061296e85828601612876565b9150509250929050565b600067ffffffffffffffff821115612993576129926126eb565b5b61299c82612520565b9050602081019050919050565b60006129bc6129b784612978565b61274b565b9050828152602081018484840111156129d8576129d76126e6565b5b6129e3848285612797565b509392505050565b600082601f830112612a00576129ff6126e1565b5b8135612a108482602086016129a9565b91505092915050565b60008060008060808587031215612a3357612a32612415565b5b6000612a4187828801612662565b9450506020612a5287828801612662565b9350506040612a63878288016125ad565b925050606085013567ffffffffffffffff811115612a8457612a8361241a565b5b612a90878288016129eb565b91505092959194509250565b60008060408385031215612ab357612ab2612415565b5b6000612ac185828601612662565b9250506020612ad285828601612662565b9150509250929050565b60008060408385031215612af357612af2612415565b5b6000612b01858286016125ad565b9250506020612b1285828601612662565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b6357607f821691505b602082108103612b7657612b75612b1c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bde7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ba1565b612be88683612ba1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c25612c20612c1b8461258c565b612c00565b61258c565b9050919050565b6000819050919050565b612c3f83612c0a565b612c53612c4b82612c2c565b848454612bae565b825550505050565b600090565b612c68612c5b565b612c73818484612c36565b505050565b5b81811015612c9757612c8c600082612c60565b600181019050612c79565b5050565b601f821115612cdc57612cad81612b7c565b612cb684612b91565b81016020851015612cc5578190505b612cd9612cd185612b91565b830182612c78565b50505b505050565b600082821c905092915050565b6000612cff60001984600802612ce1565b1980831691505092915050565b6000612d188383612cee565b9150826002028217905092915050565b612d31826124da565b67ffffffffffffffff811115612d4a57612d496126eb565b5b612d548254612b4b565b612d5f828285612c9b565b600060209050601f831160018114612d925760008415612d80578287015190505b612d8a8582612d0c565b865550612df2565b601f198416612da086612b7c565b60005b82811015612dc857848901518255600182019150602085019450602081019050612da3565b86831015612de55784890151612de1601f891682612cee565b8355505b6001600288020188555050505b505050505050565b7f4572726f72206372656174696e6720746865206f726465722e20596f7520776560008201527f7265206e6f7420636861726765642c20706c656173652074727920616761696e602082015250565b6000612e566040836124e5565b9150612e6182612dfa565b604082019050919050565b60006020820190508181036000830152612e8581612e49565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ec68261258c565b9150612ed18361258c565b9250828201905080821115612ee957612ee8612e8c565b5b92915050565b6000612efa8261258c565b9150612f058361258c565b9250828203905081811115612f1d57612f1c612e8c565b5b92915050565b6000612f2e8261258c565b9150612f398361258c565b9250828202612f478161258c565b91508282048414831517612f5e57612f5d612e8c565b5b5092915050565b600081905092915050565b50565b6000612f80600083612f65565b9150612f8b82612f70565b600082019050919050565b6000612fa182612f73565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613007602f836124e5565b915061301282612fab565b604082019050919050565b6000602082019050818103600083015261303681612ffa565b9050919050565b600081905092915050565b6000613053826124da565b61305d818561303d565b935061306d8185602086016124f6565b80840191505092915050565b6000815461308681612b4b565b613090818661303d565b945060018216600081146130ab57600181146130c0576130f3565b60ff19831686528115158202860193506130f3565b6130c985612b7c565b60005b838110156130eb578154818901526001820191506020810190506130cc565b838801955050505b50505092915050565b60006131088286613048565b91506131148285613048565b91506131208284613079565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131896026836124e5565b91506131948261312d565b604082019050919050565b600060208201905081810360008301526131b88161317c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131f56020836124e5565b9150613200826131bf565b602082019050919050565b60006020820190508181036000830152613224816131e8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613261601f836124e5565b915061326c8261322b565b602082019050919050565b6000602082019050818103600083015261329081613254565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132be82613297565b6132c881856132a2565b93506132d88185602086016124f6565b6132e181612520565b840191505092915050565b60006080820190506133016000830187612621565b61330e6020830186612621565b61331b60408301856126b7565b818103606083015261332d81846132b3565b905095945050505050565b6000815190506133478161244b565b92915050565b60006020828403121561336357613362612415565b5b600061337184828501613338565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220a9654a475d5d3ad64071506d594e5b1f3eee5f856cb2346e5d23d177af04de3f64736f6c63430008120033697066733a2f2f62616679626569647861796a6c37333533766e623763623367326d3279766c786e64666279756678616174696e74646c74623361636a35336576692f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063b88d4fde116100ab578063e26d14741161006f578063e26d14741461076a578063e985e9c514610793578063efbd73f4146107d0578063f2fde38b146107f9578063f676308a146108225761021a565b8063b88d4fde14610680578063c87b56dd1461069c578063d5abeb01146106d9578063e0ec7c3614610704578063e268e4d3146107415761021a565b80638da5cb5b116100f25780638da5cb5b146105ad57806394354fd0146105d857806395d89b4114610603578063a22cb4651461062e578063b071401b146106575761021a565b80636352211e146104f357806370a0823114610530578063715018a61461056d5780637ec4a659146105845761021a565b806324a6ab0c116101a657806344a0d68a1161017557806344a0d68a1461041e578063453c2310146104475780635503a0e8146104725780635c975abb1461049d57806362b99ad4146104c85761021a565b806324a6ab0c146103a4578063379607f5146103cf5780633ccfd60b146103eb57806342842e0e146104025761021a565b806313faede6116101ed57806313faede6146102e057806316ba10e01461030b57806316c38b3c1461033457806318160ddd1461035d57806323b872dd146103885761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612477565b61084b565b60405161025391906124bf565b60405180910390f35b34801561026857600080fd5b506102716108dd565b60405161027e919061256a565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906125c2565b61096f565b6040516102bb9190612630565b60405180910390f35b6102de60048036038101906102d99190612677565b6109ee565b005b3480156102ec57600080fd5b506102f5610b32565b60405161030291906126c6565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612816565b610b38565b005b34801561034057600080fd5b5061035b6004803603810190610356919061288b565b610b53565b005b34801561036957600080fd5b50610372610b78565b60405161037f91906126c6565b60405180910390f35b6103a2600480360381019061039d91906128b8565b610b8f565b005b3480156103b057600080fd5b506103b9610eb1565b6040516103c691906126c6565b60405180910390f35b6103e960048036038101906103e491906125c2565b610eb7565b005b3480156103f757600080fd5b506104006110f1565b005b61041c600480360381019061041791906128b8565b611189565b005b34801561042a57600080fd5b50610445600480360381019061044091906125c2565b6111a9565b005b34801561045357600080fd5b5061045c6111bb565b60405161046991906126c6565b60405180910390f35b34801561047e57600080fd5b506104876111c1565b604051610494919061256a565b60405180910390f35b3480156104a957600080fd5b506104b261124f565b6040516104bf91906124bf565b60405180910390f35b3480156104d457600080fd5b506104dd611262565b6040516104ea919061256a565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906125c2565b6112f0565b6040516105279190612630565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061290b565b611302565b60405161056491906126c6565b60405180910390f35b34801561057957600080fd5b506105826113ba565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612816565b6113ce565b005b3480156105b957600080fd5b506105c26113e9565b6040516105cf9190612630565b60405180910390f35b3480156105e457600080fd5b506105ed611413565b6040516105fa91906126c6565b60405180910390f35b34801561060f57600080fd5b50610618611419565b604051610625919061256a565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612938565b6114ab565b005b34801561066357600080fd5b5061067e600480360381019061067991906125c2565b6115b6565b005b61069a60048036038101906106959190612a19565b6115c8565b005b3480156106a857600080fd5b506106c360048036038101906106be91906125c2565b61163b565b6040516106d0919061256a565b60405180910390f35b3480156106e557600080fd5b506106ee6116e5565b6040516106fb91906126c6565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061290b565b6116eb565b60405161073891906124bf565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906125c2565b61170b565b005b34801561077657600080fd5b50610791600480360381019061078c91906125c2565b61171d565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190612a9c565b61172f565b6040516107c791906124bf565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190612adc565b6117c3565b005b34801561080557600080fd5b50610820600480360381019061081b919061290b565b6118e2565b005b34801561082e57600080fd5b50610849600480360381019061084491906125c2565b611965565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ec90612b4b565b80601f016020809104026020016040519081016040528092919081815260200182805461091890612b4b565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611977565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f9826112f0565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1a6119d6565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d57610a4681610a416119d6565b61172f565b610a7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610b406119de565b80600b9081610b4f9190612d28565b5050565b610b5b6119de565b80601160006101000a81548160ff02191690831515021790555050565b6000610b82611a5c565b6001546000540303905090565b6000610b9a82611a65565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0d84611b31565b91509150610c238187610c1e6119d6565b611b58565b610c6f57610c3886610c336119d6565b61172f565b610c6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cd5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce28686866001611b9c565b8015610ced57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dbb85610d97888887611ba2565b7c020000000000000000000000000000000000000000000000000000000017611bca565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e415760006001850190506000600460008381526020019081526020016000205403610e3f576000548114610e3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea98686866001611bf5565b505050505050565b600e5481565b601160009054906101000a900460ff1615610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612e6c565b60405180910390fd5b600d5481610f13610b78565b610f1d9190612ebb565b1115610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590612e6c565b60405180910390fd5b6000610f6933611bfb565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090612e6c565b60405180910390fd5b600f548282610fe89190612ebb565b1115611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612e6c565b60405180910390fd5b600081036110925760018261103e9190612eef565b600c5461104b9190612f23565b34101561108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490612e6c565b60405180910390fd5b6110e3565b81600c546110a09190612f23565b3410156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612e6c565b60405180910390fd5b5b6110ed3383611c52565b5050565b6110f96119de565b611101611c70565b600061110b6113e9565b73ffffffffffffffffffffffffffffffffffffffff164760405161112e90612f96565b60006040518083038185875af1925050503d806000811461116b576040519150601f19603f3d011682016040523d82523d6000602084013e611170565b606091505b505090508061117e57600080fd5b50611187611cbf565b565b6111a4838383604051806020016040528060008152506115c8565b505050565b6111b16119de565b80600c8190555050565b600f5481565b600b80546111ce90612b4b565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90612b4b565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600a805461126f90612b4b565b80601f016020809104026020016040519081016040528092919081815260200182805461129b90612b4b565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b505050505081565b60006112fb82611a65565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611369576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113c26119de565b6113cc6000611cc9565b565b6113d66119de565b80600a90816113e59190612d28565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461142890612b4b565b80601f016020809104026020016040519081016040528092919081815260200182805461145490612b4b565b80156114a15780601f10611476576101008083540402835291602001916114a1565b820191906000526020600020905b81548152906001019060200180831161148457829003601f168201915b5050505050905090565b80600760006114b86119d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115656119d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115aa91906124bf565b60405180910390a35050565b6115be6119de565b8060108190555050565b6115d3848484610b8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611635576115fe84848484611d8f565b611634576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061164682611977565b611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061301d565b60405180910390fd5b600061168f611edf565b905060008151116116af57604051806020016040528060008152506116dd565b806116b984611f71565b600b6040516020016116cd939291906130fc565b6040516020818303038152906040525b915050919050565b600d5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6117136119de565b80600f8190555050565b6117256119de565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117d657506010548111155b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90612e6c565b60405180910390fd5b600f5461182861182361203f565b611302565b826118339190612ebb565b1115611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90612e6c565b60405180910390fd5b600d5481611880610b78565b61188a9190612ebb565b11156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290612e6c565b60405180910390fd5b6118d36119de565b6118dd8284611c52565b505050565b6118ea6119de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061319f565b60405180910390fd5b61196281611cc9565b50565b61196d6119de565b80600e8190555050565b600081611982611a5c565b11158015611991575060005482105b80156119cf575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119e661203f565b73ffffffffffffffffffffffffffffffffffffffff16611a046113e9565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061320b565b60405180910390fd5b565b60006001905090565b60008082905080611a74611a5c565b11611afa57600054811015611af95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611af7575b60008103611aed576004600083600190039350838152602001908152602001600020549050611ac3565b8092505050611b2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb9868684612047565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611c6c828260405180602001604052806000815250612050565b5050565b600260095403611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90613277565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611db56119d6565b8786866040518563ffffffff1660e01b8152600401611dd794939291906132ec565b6020604051808303816000875af1925050508015611e1357506040513d601f19601f82011682018060405250810190611e10919061334d565b60015b611e8c573d8060008114611e43576040519150601f19603f3d011682016040523d82523d6000602084013e611e48565b606091505b506000815103611e84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611eee90612b4b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1a90612b4b565b8015611f675780601f10611f3c57610100808354040283529160200191611f67565b820191906000526020600020905b815481529060010190602001808311611f4a57829003601f168201915b5050505050905090565b606060006001611f80846120ed565b01905060008167ffffffffffffffff811115611f9f57611f9e6126eb565b5b6040519080825280601f01601f191660200182016040528015611fd15781602001600182028036833780820191505090505b509050600082602001820190505b600115612034578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120285761202761337a565b5b04945060008503611fdf575b819350505050919050565b600033905090565b60009392505050565b61205a8383612240565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120e857600080549050600083820390505b61209a6000868380600101945086611d8f565b6120d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120875781600054146120e557600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061214b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121415761214061337a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612188576d04ee2d6d415b85acef8100000000838161217e5761217d61337a565b5b0492506020810190505b662386f26fc1000083106121b757662386f26fc1000083816121ad576121ac61337a565b5b0492506010810190505b6305f5e10083106121e0576305f5e10083816121d6576121d561337a565b5b0492506008810190505b61271083106122055761271083816121fb576121fa61337a565b5b0492506004810190505b60648310612228576064838161221e5761221d61337a565b5b0492506002810190505b600a8310612237576001810190505b80915050919050565b60008054905060008203612280576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228d6000848385611b9c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612304836122f56000866000611ba2565b6122fe856123fb565b17611bca565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123a557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061236a565b50600082036123e0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123f66000848385611bf5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124548161241f565b811461245f57600080fd5b50565b6000813590506124718161244b565b92915050565b60006020828403121561248d5761248c612415565b5b600061249b84828501612462565b91505092915050565b60008115159050919050565b6124b9816124a4565b82525050565b60006020820190506124d460008301846124b0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125145780820151818401526020810190506124f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061253c826124da565b61254681856124e5565b93506125568185602086016124f6565b61255f81612520565b840191505092915050565b600060208201905081810360008301526125848184612531565b905092915050565b6000819050919050565b61259f8161258c565b81146125aa57600080fd5b50565b6000813590506125bc81612596565b92915050565b6000602082840312156125d8576125d7612415565b5b60006125e6848285016125ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061261a826125ef565b9050919050565b61262a8161260f565b82525050565b60006020820190506126456000830184612621565b92915050565b6126548161260f565b811461265f57600080fd5b50565b6000813590506126718161264b565b92915050565b6000806040838503121561268e5761268d612415565b5b600061269c85828601612662565b92505060206126ad858286016125ad565b9150509250929050565b6126c08161258c565b82525050565b60006020820190506126db60008301846126b7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61272382612520565b810181811067ffffffffffffffff82111715612742576127416126eb565b5b80604052505050565b600061275561240b565b9050612761828261271a565b919050565b600067ffffffffffffffff821115612781576127806126eb565b5b61278a82612520565b9050602081019050919050565b82818337600083830152505050565b60006127b96127b484612766565b61274b565b9050828152602081018484840111156127d5576127d46126e6565b5b6127e0848285612797565b509392505050565b600082601f8301126127fd576127fc6126e1565b5b813561280d8482602086016127a6565b91505092915050565b60006020828403121561282c5761282b612415565b5b600082013567ffffffffffffffff81111561284a5761284961241a565b5b612856848285016127e8565b91505092915050565b612868816124a4565b811461287357600080fd5b50565b6000813590506128858161285f565b92915050565b6000602082840312156128a1576128a0612415565b5b60006128af84828501612876565b91505092915050565b6000806000606084860312156128d1576128d0612415565b5b60006128df86828701612662565b93505060206128f086828701612662565b9250506040612901868287016125ad565b9150509250925092565b60006020828403121561292157612920612415565b5b600061292f84828501612662565b91505092915050565b6000806040838503121561294f5761294e612415565b5b600061295d85828601612662565b925050602061296e85828601612876565b9150509250929050565b600067ffffffffffffffff821115612993576129926126eb565b5b61299c82612520565b9050602081019050919050565b60006129bc6129b784612978565b61274b565b9050828152602081018484840111156129d8576129d76126e6565b5b6129e3848285612797565b509392505050565b600082601f830112612a00576129ff6126e1565b5b8135612a108482602086016129a9565b91505092915050565b60008060008060808587031215612a3357612a32612415565b5b6000612a4187828801612662565b9450506020612a5287828801612662565b9350506040612a63878288016125ad565b925050606085013567ffffffffffffffff811115612a8457612a8361241a565b5b612a90878288016129eb565b91505092959194509250565b60008060408385031215612ab357612ab2612415565b5b6000612ac185828601612662565b9250506020612ad285828601612662565b9150509250929050565b60008060408385031215612af357612af2612415565b5b6000612b01858286016125ad565b9250506020612b1285828601612662565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b6357607f821691505b602082108103612b7657612b75612b1c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bde7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ba1565b612be88683612ba1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c25612c20612c1b8461258c565b612c00565b61258c565b9050919050565b6000819050919050565b612c3f83612c0a565b612c53612c4b82612c2c565b848454612bae565b825550505050565b600090565b612c68612c5b565b612c73818484612c36565b505050565b5b81811015612c9757612c8c600082612c60565b600181019050612c79565b5050565b601f821115612cdc57612cad81612b7c565b612cb684612b91565b81016020851015612cc5578190505b612cd9612cd185612b91565b830182612c78565b50505b505050565b600082821c905092915050565b6000612cff60001984600802612ce1565b1980831691505092915050565b6000612d188383612cee565b9150826002028217905092915050565b612d31826124da565b67ffffffffffffffff811115612d4a57612d496126eb565b5b612d548254612b4b565b612d5f828285612c9b565b600060209050601f831160018114612d925760008415612d80578287015190505b612d8a8582612d0c565b865550612df2565b601f198416612da086612b7c565b60005b82811015612dc857848901518255600182019150602085019450602081019050612da3565b86831015612de55784890151612de1601f891682612cee565b8355505b6001600288020188555050505b505050505050565b7f4572726f72206372656174696e6720746865206f726465722e20596f7520776560008201527f7265206e6f7420636861726765642c20706c656173652074727920616761696e602082015250565b6000612e566040836124e5565b9150612e6182612dfa565b604082019050919050565b60006020820190508181036000830152612e8581612e49565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ec68261258c565b9150612ed18361258c565b9250828201905080821115612ee957612ee8612e8c565b5b92915050565b6000612efa8261258c565b9150612f058361258c565b9250828203905081811115612f1d57612f1c612e8c565b5b92915050565b6000612f2e8261258c565b9150612f398361258c565b9250828202612f478161258c565b91508282048414831517612f5e57612f5d612e8c565b5b5092915050565b600081905092915050565b50565b6000612f80600083612f65565b9150612f8b82612f70565b600082019050919050565b6000612fa182612f73565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613007602f836124e5565b915061301282612fab565b604082019050919050565b6000602082019050818103600083015261303681612ffa565b9050919050565b600081905092915050565b6000613053826124da565b61305d818561303d565b935061306d8185602086016124f6565b80840191505092915050565b6000815461308681612b4b565b613090818661303d565b945060018216600081146130ab57600181146130c0576130f3565b60ff19831686528115158202860193506130f3565b6130c985612b7c565b60005b838110156130eb578154818901526001820191506020810190506130cc565b838801955050505b50505092915050565b60006131088286613048565b91506131148285613048565b91506131208284613079565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131896026836124e5565b91506131948261312d565b604082019050919050565b600060208201905081810360008301526131b88161317c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131f56020836124e5565b9150613200826131bf565b602082019050919050565b60006020820190508181036000830152613224816131e8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613261601f836124e5565b915061326c8261322b565b602082019050919050565b6000602082019050818103600083015261329081613254565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132be82613297565b6132c881856132a2565b93506132d88185602086016124f6565b6132e181612520565b840191505092915050565b60006080820190506133016000830187612621565b61330e6020830186612621565b61331b60408301856126b7565b818103606083015261332d81846132b3565b905095945050505050565b6000815190506133478161244b565b92915050565b60006020828403121561336357613362612415565b5b600061337184828501613338565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220a9654a475d5d3ad64071506d594e5b1f3eee5f856cb2346e5d23d177af04de3f64736f6c63430008120033

Deployed Bytecode Sourcemap

79296:3895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46196:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53589:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53022:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79532:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82655:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82860:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42849:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57228:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79600:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80585:897;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83038:150;;;;;;;;;;;;;:::i;:::-;;60149:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82229:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79634:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79490:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79710:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79390:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48491:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44033:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26975:103;;;;;;;;;;;;;:::i;:::-;;82549:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79668:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54147:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82306:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60940:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81853:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79567:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79742:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82440:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82763:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54538:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81490:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82943:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46196:639;46281:4;46620:10;46605:25;;:11;:25;;;;:102;;;;46697:10;46682:25;;:11;:25;;;;46605:102;:179;;;;46774:10;46759:25;;:11;:25;;;;46605:179;46585:199;;46196:639;;;:::o;47098:100::-;47152:13;47185:5;47178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47098:100;:::o;53589:218::-;53665:7;53690:16;53698:7;53690;:16::i;:::-;53685:64;;53715:34;;;;;;;;;;;;;;53685:64;53769:15;:24;53785:7;53769:24;;;;;;;;;;;:30;;;;;;;;;;;;53762:37;;53589:218;;;:::o;53022:408::-;53111:13;53127:16;53135:7;53127;:16::i;:::-;53111:32;;53183:5;53160:28;;:19;:17;:19::i;:::-;:28;;;53156:175;;53208:44;53225:5;53232:19;:17;:19::i;:::-;53208:16;:44::i;:::-;53203:128;;53280:35;;;;;;;;;;;;;;53203:128;53156:175;53376:2;53343:15;:24;53359:7;53343:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53414:7;53410:2;53394:28;;53403:5;53394:28;;;;;;;;;;;;53100:330;53022:408;;:::o;79532:30::-;;;;:::o;82655:100::-;26213:13;:11;:13::i;:::-;82739:10:::1;82727:9;:22;;;;;;:::i;:::-;;82655:100:::0;:::o;82860:77::-;26213:13;:11;:13::i;:::-;82925:6:::1;82916;;:15;;;;;;;;;;;;;;;;;;82860:77:::0;:::o;42849:323::-;42910:7;43138:15;:13;:15::i;:::-;43123:12;;43107:13;;:28;:46;43100:53;;42849:323;:::o;57228:2825::-;57370:27;57400;57419:7;57400:18;:27::i;:::-;57370:57;;57485:4;57444:45;;57460:19;57444:45;;;57440:86;;57498:28;;;;;;;;;;;;;;57440:86;57540:27;57569:23;57596:35;57623:7;57596:26;:35::i;:::-;57539:92;;;;57731:68;57756:15;57773:4;57779:19;:17;:19::i;:::-;57731:24;:68::i;:::-;57726:180;;57819:43;57836:4;57842:19;:17;:19::i;:::-;57819:16;:43::i;:::-;57814:92;;57871:35;;;;;;;;;;;;;;57814:92;57726:180;57937:1;57923:16;;:2;:16;;;57919:52;;57948:23;;;;;;;;;;;;;;57919:52;57984:43;58006:4;58012:2;58016:7;58025:1;57984:21;:43::i;:::-;58120:15;58117:160;;;58260:1;58239:19;58232:30;58117:160;58657:18;:24;58676:4;58657:24;;;;;;;;;;;;;;;;58655:26;;;;;;;;;;;;58726:18;:22;58745:2;58726:22;;;;;;;;;;;;;;;;58724:24;;;;;;;;;;;59048:146;59085:2;59134:45;59149:4;59155:2;59159:19;59134:14;:45::i;:::-;39248:8;59106:73;59048:18;:146::i;:::-;59019:17;:26;59037:7;59019:26;;;;;;;;;;;:175;;;;59365:1;39248:8;59314:19;:47;:52;59310:627;;59387:19;59419:1;59409:7;:11;59387:33;;59576:1;59542:17;:30;59560:11;59542:30;;;;;;;;;;;;:35;59538:384;;59680:13;;59665:11;:28;59661:242;;59860:19;59827:17;:30;59845:11;59827:30;;;;;;;;;;;:52;;;;59661:242;59538:384;59368:569;59310:627;59984:7;59980:2;59965:27;;59974:4;59965:27;;;;;;;;;;;;60003:42;60024:4;60030:2;60034:7;60043:1;60003:20;:42::i;:::-;57359:2694;;;57228:2825;;;:::o;79600:29::-;;;;:::o;80585:897::-;80653:6;;;;;;;;;;;80652:7;80644:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;80775:9;;80765:6;80749:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;80741:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;80864:11;80878:25;80892:10;80878:13;:25::i;:::-;80864:39;;80936:9;80922:23;;:10;:23;;;80914:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;81052:12;;81042:6;81033;:15;;;;:::i;:::-;:31;;81025:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;81160:1;81150:6;:11;81146:289;;81216:1;81207:6;:10;;;;:::i;:::-;81199:4;;:19;;;;:::i;:::-;81186:9;:32;;81178:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;81146:289;;;81348:6;81341:4;;:13;;;;:::i;:::-;81328:9;:26;;81320:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;81146:289;81445:29;81455:10;81467:6;81445:9;:29::i;:::-;80633:849;80585:897;:::o;83038:150::-;26213:13;:11;:13::i;:::-;8399:21:::1;:19;:21::i;:::-;83096:7:::2;83117;:5;:7::i;:::-;83109:21;;83138;83109:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83095:69;;;83179:2;83171:11;;;::::0;::::2;;83088:100;8443:20:::1;:18;:20::i;:::-;83038:150::o:0;60149:193::-;60295:39;60312:4;60318:2;60322:7;60295:39;;;;;;;;;;;;:16;:39::i;:::-;60149:193;;;:::o;82229:71::-;26213:13;:11;:13::i;:::-;82289:5:::1;82282:4;:12;;;;82229:71:::0;:::o;79634:29::-;;;;:::o;79490:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79710:25::-;;;;;;;;;;;;;:::o;79390:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48491:152::-;48563:7;48606:27;48625:7;48606:18;:27::i;:::-;48583:52;;48491:152;;;:::o;44033:233::-;44105:7;44146:1;44129:19;;:5;:19;;;44125:60;;44157:28;;;;;;;;;;;;;;44125:60;38192:13;44203:18;:25;44222:5;44203:25;;;;;;;;;;;;;;;;:55;44196:62;;44033:233;;;:::o;26975:103::-;26213:13;:11;:13::i;:::-;27040:30:::1;27067:1;27040:18;:30::i;:::-;26975:103::o:0;82549:100::-;26213:13;:11;:13::i;:::-;82633:10:::1;82621:9;:22;;;;;;:::i;:::-;;82549:100:::0;:::o;26327:87::-;26373:7;26400:6;;;;;;;;;;;26393:13;;26327:87;:::o;79668:35::-;;;;:::o;47274:104::-;47330:13;47363:7;47356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47274:104;:::o;54147:234::-;54294:8;54242:18;:39;54261:19;:17;:19::i;:::-;54242:39;;;;;;;;;;;;;;;:49;54282:8;54242:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54354:8;54318:55;;54333:19;:17;:19::i;:::-;54318:55;;;54364:8;54318:55;;;;;;:::i;:::-;;;;;;;;54147:234;;:::o;82306:127::-;26213:13;:11;:13::i;:::-;82408:19:::1;82387:18;:40;;;;82306:127:::0;:::o;60940:407::-;61115:31;61128:4;61134:2;61138:7;61115:12;:31::i;:::-;61179:1;61161:2;:14;;;:19;61157:183;;61200:56;61231:4;61237:2;61241:7;61250:5;61200:30;:56::i;:::-;61195:145;;61284:40;;;;;;;;;;;;;;61195:145;61157:183;60940:407;;;;:::o;81853:370::-;81924:13;81954:17;81962:8;81954:7;:17::i;:::-;81946:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;82032:28;82063:10;:8;:10::i;:::-;82032:41;;82118:1;82093:14;82087:28;:32;:130;;;;;;;;;;;;;;;;;82155:14;82171:19;:8;:17;:19::i;:::-;82192:9;82138:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82087:130;82080:137;;;81853:370;;;:::o;79567:28::-;;;;:::o;79742:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;82440:103::-;26213:13;:11;:13::i;:::-;82524::::1;82509:12;:28;;;;82440:103:::0;:::o;82763:91::-;26213:13;:11;:13::i;:::-;82840:10:::1;82828:9;:22;;;;82763:91:::0;:::o;54538:164::-;54635:4;54659:18;:25;54678:5;54659:25;;;;;;;;;;;;;;;:35;54685:8;54659:35;;;;;;;;;;;;;;;;;;;;;;;;;54652:42;;54538:164;;;;:::o;81490:152::-;81573:11;79932:1;79918:11;:15;:52;;;;;79952:18;;79937:11;:33;;79918:52;79910:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;80095:12;;80068:23;80078:12;:10;:12::i;:::-;80068:9;:23::i;:::-;80054:11;:37;;;;:::i;:::-;:53;;80046:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;80222:9;;80207:11;80191:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;80183:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26213:13:::1;:11;:13::i;:::-;81603:33:::2;81613:9;81624:11;81603:9;:33::i;:::-;81490:152:::0;;;:::o;27233:201::-;26213:13;:11;:13::i;:::-;27342:1:::1;27322:22;;:8;:22;;::::0;27314:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27398:28;27417:8;27398:18;:28::i;:::-;27233:201:::0;:::o;82943:89::-;26213:13;:11;:13::i;:::-;83018:8:::1;83005:10;:21;;;;82943:89:::0;:::o;54960:282::-;55025:4;55081:7;55062:15;:13;:15::i;:::-;:26;;:66;;;;;55115:13;;55105:7;:23;55062:66;:153;;;;;55214:1;38968:8;55166:17;:26;55184:7;55166:26;;;;;;;;;;;;:44;:49;55062:153;55042:173;;54960:282;;;:::o;77268:105::-;77328:7;77355:10;77348:17;;77268:105;:::o;26492:132::-;26567:12;:10;:12::i;:::-;26556:23;;:7;:5;:7::i;:::-;:23;;;26548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26492:132::o;81648:87::-;81713:7;81731:1;81724:8;;81648:87;:::o;49646:1275::-;49713:7;49733:12;49748:7;49733:22;;49816:4;49797:15;:13;:15::i;:::-;:23;49793:1061;;49850:13;;49843:4;:20;49839:1015;;;49888:14;49905:17;:23;49923:4;49905:23;;;;;;;;;;;;49888:40;;50022:1;38968:8;49994:6;:24;:29;49990:845;;50659:113;50676:1;50666:6;:11;50659:113;;50719:17;:25;50737:6;;;;;;;50719:25;;;;;;;;;;;;50710:34;;50659:113;;;50805:6;50798:13;;;;;;49990:845;49865:989;49839:1015;49793:1061;50882:31;;;;;;;;;;;;;;49646:1275;;;;:::o;56123:485::-;56225:27;56254:23;56295:38;56336:15;:24;56352:7;56336:24;;;;;;;;;;;56295:65;;56513:18;56490:41;;56570:19;56564:26;56545:45;;56475:126;56123:485;;;:::o;55351:659::-;55500:11;55665:16;55658:5;55654:28;55645:37;;55825:16;55814:9;55810:32;55797:45;;55975:15;55964:9;55961:30;55953:5;55942:9;55939:20;55936:56;55926:66;;55351:659;;;;;:::o;62009:159::-;;;;;:::o;76577:311::-;76712:7;76732:16;39372:3;76758:19;:41;;76732:68;;39372:3;76826:31;76837:4;76843:2;76847:9;76826:10;:31::i;:::-;76818:40;;:62;;76811:69;;;76577:311;;;;;:::o;51469:450::-;51549:14;51717:16;51710:5;51706:28;51697:37;;51894:5;51880:11;51855:23;51851:41;51848:52;51841:5;51838:63;51828:73;;51469:450;;;;:::o;62833:158::-;;;;;:::o;44348:178::-;44409:7;38192:13;38330:2;44437:18;:25;44456:5;44437:25;;;;;;;;;;;;;;;;:50;;44436:82;44429:89;;44348:178;;;:::o;71100:112::-;71177:27;71187:2;71191:8;71177:27;;;;;;;;;;;;:9;:27::i;:::-;71100:112;;:::o;8479:293::-;7881:1;8613:7;;:19;8605:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7881:1;8746:7;:18;;;;8479:293::o;8780:213::-;7837:1;8963:7;:22;;;;8780:213::o;27594:191::-;27668:16;27687:6;;;;;;;;;;;27668:25;;27713:8;27704:6;;:17;;;;;;;;;;;;;;;;;;27768:8;27737:40;;27758:8;27737:40;;;;;;;;;;;;27657:128;27594:191;:::o;63431:716::-;63594:4;63640:2;63615:45;;;63661:19;:17;:19::i;:::-;63682:4;63688:7;63697:5;63615:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63915:1;63898:6;:13;:18;63894:235;;63944:40;;;;;;;;;;;;;;63894:235;64087:6;64081:13;64072:6;64068:2;64064:15;64057:38;63611:529;63784:54;;;63774:64;;;:6;:64;;;;63767:71;;;63431:716;;;;;;:::o;81743:104::-;81803:13;81832:9;81825:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81743:104;:::o;22305:716::-;22361:13;22412:14;22449:1;22429:17;22440:5;22429:10;:17::i;:::-;:21;22412:38;;22465:20;22499:6;22488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22465:41;;22521:11;22650:6;22646:2;22642:15;22634:6;22630:28;22623:35;;22687:288;22694:4;22687:288;;;22719:5;;;;;;;;22861:8;22856:2;22849:5;22845:14;22840:30;22835:3;22827:44;22917:2;22908:11;;;;;;:::i;:::-;;;;;22951:1;22942:5;:10;22687:288;22938:21;22687:288;22996:6;22989:13;;;;;22305:716;;;:::o;24878:98::-;24931:7;24958:10;24951:17;;24878:98;:::o;76278:147::-;76415:6;76278:147;;;;;:::o;70327:689::-;70458:19;70464:2;70468:8;70458:5;:19::i;:::-;70537:1;70519:2;:14;;;:19;70515:483;;70559:11;70573:13;;70559:27;;70605:13;70627:8;70621:3;:14;70605:30;;70654:233;70685:62;70724:1;70728:2;70732:7;;;;;;70741:5;70685:30;:62::i;:::-;70680:167;;70783:40;;;;;;;;;;;;;;70680:167;70882:3;70874:5;:11;70654:233;;70969:3;70952:13;;:20;70948:34;;70974:8;;;70948:34;70540:458;;70515:483;70327:689;;;:::o;19171:922::-;19224:7;19244:14;19261:1;19244:18;;19311:6;19302:5;:15;19298:102;;19347:6;19338:15;;;;;;:::i;:::-;;;;;19382:2;19372:12;;;;19298:102;19427:6;19418:5;:15;19414:102;;19463:6;19454:15;;;;;;:::i;:::-;;;;;19498:2;19488:12;;;;19414:102;19543:6;19534:5;:15;19530:102;;19579:6;19570:15;;;;;;:::i;:::-;;;;;19614:2;19604:12;;;;19530:102;19659:5;19650;:14;19646:99;;19694:5;19685:14;;;;;;:::i;:::-;;;;;19728:1;19718:11;;;;19646:99;19772:5;19763;:14;19759:99;;19807:5;19798:14;;;;;;:::i;:::-;;;;;19841:1;19831:11;;;;19759:99;19885:5;19876;:14;19872:99;;19920:5;19911:14;;;;;;:::i;:::-;;;;;19954:1;19944:11;;;;19872:99;19998:5;19989;:14;19985:66;;20034:1;20024:11;;;;19985:66;20079:6;20072:13;;;19171:922;;;:::o;64609:2966::-;64682:20;64705:13;;64682:36;;64745:1;64733:8;:13;64729:44;;64755:18;;;;;;;;;;;;;;64729:44;64786:61;64816:1;64820:2;64824:12;64838:8;64786:21;:61::i;:::-;65330:1;38330:2;65300:1;:26;;65299:32;65287:8;:45;65261:18;:22;65280:2;65261:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65609:139;65646:2;65700:33;65723:1;65727:2;65731:1;65700:14;:33::i;:::-;65667:30;65688:8;65667:20;:30::i;:::-;:66;65609:18;:139::i;:::-;65575:17;:31;65593:12;65575:31;;;;;;;;;;;:173;;;;65765:16;65796:11;65825:8;65810:12;:23;65796:37;;66346:16;66342:2;66338:25;66326:37;;66718:12;66678:8;66637:1;66575:25;66516:1;66455;66428:335;67089:1;67075:12;67071:20;67029:346;67130:3;67121:7;67118:16;67029:346;;67348:7;67338:8;67335:1;67308:25;67305:1;67302;67297:59;67183:1;67174:7;67170:15;67159:26;;67029:346;;;67033:77;67420:1;67408:8;:13;67404:45;;67430:19;;;;;;;;;;;;;;67404:45;67482:3;67466:13;:19;;;;65035:2462;;67507:60;67536:1;67540:2;67544:12;67558:8;67507:20;:60::i;:::-;64671:2904;64609:2966;;:::o;52021:324::-;52091:14;52324:1;52314:8;52311:15;52285:24;52281:46;52271:56;;52021:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::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:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:141::-;13461:4;13484:3;13476:11;;13507:3;13504:1;13497:14;13541:4;13538:1;13528:18;13520:26;;13412:141;;;:::o;13559:93::-;13596:6;13643:2;13638;13631:5;13627:14;13623:23;13613:33;;13559:93;;;:::o;13658:107::-;13702:8;13752:5;13746:4;13742:16;13721:37;;13658:107;;;;:::o;13771:393::-;13840:6;13890:1;13878:10;13874:18;13913:97;13943:66;13932:9;13913:97;:::i;:::-;14031:39;14061:8;14050:9;14031:39;:::i;:::-;14019:51;;14103:4;14099:9;14092:5;14088:21;14079:30;;14152:4;14142:8;14138:19;14131:5;14128:30;14118:40;;13847:317;;13771:393;;;;;:::o;14170:60::-;14198:3;14219:5;14212:12;;14170:60;;;:::o;14236:142::-;14286:9;14319:53;14337:34;14346:24;14364:5;14346:24;:::i;:::-;14337:34;:::i;:::-;14319:53;:::i;:::-;14306:66;;14236:142;;;:::o;14384:75::-;14427:3;14448:5;14441:12;;14384:75;;;:::o;14465:269::-;14575:39;14606:7;14575:39;:::i;:::-;14636:91;14685:41;14709:16;14685:41;:::i;:::-;14677:6;14670:4;14664:11;14636:91;:::i;:::-;14630:4;14623:105;14541:193;14465:269;;;:::o;14740:73::-;14785:3;14740:73;:::o;14819:189::-;14896:32;;:::i;:::-;14937:65;14995:6;14987;14981:4;14937:65;:::i;:::-;14872:136;14819:189;;:::o;15014:186::-;15074:120;15091:3;15084:5;15081:14;15074:120;;;15145:39;15182:1;15175:5;15145:39;:::i;:::-;15118:1;15111:5;15107:13;15098:22;;15074:120;;;15014:186;;:::o;15206:543::-;15307:2;15302:3;15299:11;15296:446;;;15341:38;15373:5;15341:38;:::i;:::-;15425:29;15443:10;15425:29;:::i;:::-;15415:8;15411:44;15608:2;15596:10;15593:18;15590:49;;;15629:8;15614:23;;15590:49;15652:80;15708:22;15726:3;15708:22;:::i;:::-;15698:8;15694:37;15681:11;15652:80;:::i;:::-;15311:431;;15296:446;15206:543;;;:::o;15755:117::-;15809:8;15859:5;15853:4;15849:16;15828:37;;15755:117;;;;:::o;15878:169::-;15922:6;15955:51;16003:1;15999:6;15991:5;15988:1;15984:13;15955:51;:::i;:::-;15951:56;16036:4;16030;16026:15;16016:25;;15929:118;15878:169;;;;:::o;16052:295::-;16128:4;16274:29;16299:3;16293:4;16274:29;:::i;:::-;16266:37;;16336:3;16333:1;16329:11;16323:4;16320:21;16312:29;;16052:295;;;;:::o;16352:1395::-;16469:37;16502:3;16469:37;:::i;:::-;16571:18;16563:6;16560:30;16557:56;;;16593:18;;:::i;:::-;16557:56;16637:38;16669:4;16663:11;16637:38;:::i;:::-;16722:67;16782:6;16774;16768:4;16722:67;:::i;:::-;16816:1;16840:4;16827:17;;16872:2;16864:6;16861:14;16889:1;16884:618;;;;17546:1;17563:6;17560:77;;;17612:9;17607:3;17603:19;17597:26;17588:35;;17560:77;17663:67;17723:6;17716:5;17663:67;:::i;:::-;17657:4;17650:81;17519:222;16854:887;;16884:618;16936:4;16932:9;16924:6;16920:22;16970:37;17002:4;16970:37;:::i;:::-;17029:1;17043:208;17057:7;17054:1;17051:14;17043:208;;;17136:9;17131:3;17127:19;17121:26;17113:6;17106:42;17187:1;17179:6;17175:14;17165:24;;17234:2;17223:9;17219:18;17206:31;;17080:4;17077:1;17073:12;17068:17;;17043:208;;;17279:6;17270:7;17267:19;17264:179;;;17337:9;17332:3;17328:19;17322:26;17380:48;17422:4;17414:6;17410:17;17399:9;17380:48;:::i;:::-;17372:6;17365:64;17287:156;17264:179;17489:1;17485;17477:6;17473:14;17469:22;17463:4;17456:36;16891:611;;;16854:887;;16444:1303;;;16352:1395;;:::o;17753:251::-;17893:34;17889:1;17881:6;17877:14;17870:58;17962:34;17957:2;17949:6;17945:15;17938:59;17753:251;:::o;18010:366::-;18152:3;18173:67;18237:2;18232:3;18173:67;:::i;:::-;18166:74;;18249:93;18338:3;18249:93;:::i;:::-;18367:2;18362:3;18358:12;18351:19;;18010:366;;;:::o;18382:419::-;18548:4;18586:2;18575:9;18571:18;18563:26;;18635:9;18629:4;18625:20;18621:1;18610:9;18606:17;18599:47;18663:131;18789:4;18663:131;:::i;:::-;18655:139;;18382:419;;;:::o;18807:180::-;18855:77;18852:1;18845:88;18952:4;18949:1;18942:15;18976:4;18973:1;18966:15;18993:191;19033:3;19052:20;19070:1;19052:20;:::i;:::-;19047:25;;19086:20;19104:1;19086:20;:::i;:::-;19081:25;;19129:1;19126;19122:9;19115:16;;19150:3;19147:1;19144:10;19141:36;;;19157:18;;:::i;:::-;19141:36;18993:191;;;;:::o;19190:194::-;19230:4;19250:20;19268:1;19250:20;:::i;:::-;19245:25;;19284:20;19302:1;19284:20;:::i;:::-;19279:25;;19328:1;19325;19321:9;19313:17;;19352:1;19346:4;19343:11;19340:37;;;19357:18;;:::i;:::-;19340:37;19190:194;;;;:::o;19390:410::-;19430:7;19453:20;19471:1;19453:20;:::i;:::-;19448:25;;19487:20;19505:1;19487:20;:::i;:::-;19482:25;;19542:1;19539;19535:9;19564:30;19582:11;19564:30;:::i;:::-;19553:41;;19743:1;19734:7;19730:15;19727:1;19724:22;19704:1;19697:9;19677:83;19654:139;;19773:18;;:::i;:::-;19654:139;19438:362;19390:410;;;;:::o;19806:147::-;19907:11;19944:3;19929:18;;19806:147;;;;:::o;19959:114::-;;:::o;20079:398::-;20238:3;20259:83;20340:1;20335:3;20259:83;:::i;:::-;20252:90;;20351:93;20440:3;20351:93;:::i;:::-;20469:1;20464:3;20460:11;20453:18;;20079:398;;;:::o;20483:379::-;20667:3;20689:147;20832:3;20689:147;:::i;:::-;20682:154;;20853:3;20846:10;;20483:379;;;:::o;20868:234::-;21008:34;21004:1;20996:6;20992:14;20985:58;21077:17;21072:2;21064:6;21060:15;21053:42;20868:234;:::o;21108:366::-;21250:3;21271:67;21335:2;21330:3;21271:67;:::i;:::-;21264:74;;21347:93;21436:3;21347:93;:::i;:::-;21465:2;21460:3;21456:12;21449:19;;21108:366;;;:::o;21480:419::-;21646:4;21684:2;21673:9;21669:18;21661:26;;21733:9;21727:4;21723:20;21719:1;21708:9;21704:17;21697:47;21761:131;21887:4;21761:131;:::i;:::-;21753:139;;21480:419;;;:::o;21905:148::-;22007:11;22044:3;22029:18;;21905:148;;;;:::o;22059:390::-;22165:3;22193:39;22226:5;22193:39;:::i;:::-;22248:89;22330:6;22325:3;22248:89;:::i;:::-;22241:96;;22346:65;22404:6;22399:3;22392:4;22385:5;22381:16;22346:65;:::i;:::-;22436:6;22431:3;22427:16;22420:23;;22169:280;22059:390;;;;:::o;22479:874::-;22582:3;22619:5;22613:12;22648:36;22674:9;22648:36;:::i;:::-;22700:89;22782:6;22777:3;22700:89;:::i;:::-;22693:96;;22820:1;22809:9;22805:17;22836:1;22831:166;;;;23011:1;23006:341;;;;22798:549;;22831:166;22915:4;22911:9;22900;22896:25;22891:3;22884:38;22977:6;22970:14;22963:22;22955:6;22951:35;22946:3;22942:45;22935:52;;22831:166;;23006:341;23073:38;23105:5;23073:38;:::i;:::-;23133:1;23147:154;23161:6;23158:1;23155:13;23147:154;;;23235:7;23229:14;23225:1;23220:3;23216:11;23209:35;23285:1;23276:7;23272:15;23261:26;;23183:4;23180:1;23176:12;23171:17;;23147:154;;;23330:6;23325:3;23321:16;23314:23;;23013:334;;22798:549;;22586:767;;22479:874;;;;:::o;23359:589::-;23584:3;23606:95;23697:3;23688:6;23606:95;:::i;:::-;23599:102;;23718:95;23809:3;23800:6;23718:95;:::i;:::-;23711:102;;23830:92;23918:3;23909:6;23830:92;:::i;:::-;23823:99;;23939:3;23932:10;;23359:589;;;;;;:::o;23954:225::-;24094:34;24090:1;24082:6;24078:14;24071:58;24163:8;24158:2;24150:6;24146:15;24139:33;23954:225;:::o;24185:366::-;24327:3;24348:67;24412:2;24407:3;24348:67;:::i;:::-;24341:74;;24424:93;24513:3;24424:93;:::i;:::-;24542:2;24537:3;24533:12;24526:19;;24185:366;;;:::o;24557:419::-;24723:4;24761:2;24750:9;24746:18;24738:26;;24810:9;24804:4;24800:20;24796:1;24785:9;24781:17;24774:47;24838:131;24964:4;24838:131;:::i;:::-;24830:139;;24557:419;;;:::o;24982:182::-;25122:34;25118:1;25110:6;25106:14;25099:58;24982:182;:::o;25170:366::-;25312:3;25333:67;25397:2;25392:3;25333:67;:::i;:::-;25326:74;;25409:93;25498:3;25409:93;:::i;:::-;25527:2;25522:3;25518:12;25511:19;;25170:366;;;:::o;25542:419::-;25708:4;25746:2;25735:9;25731:18;25723:26;;25795:9;25789:4;25785:20;25781:1;25770:9;25766:17;25759:47;25823:131;25949:4;25823:131;:::i;:::-;25815:139;;25542:419;;;:::o;25967:181::-;26107:33;26103:1;26095:6;26091:14;26084:57;25967:181;:::o;26154:366::-;26296:3;26317:67;26381:2;26376:3;26317:67;:::i;:::-;26310:74;;26393:93;26482:3;26393:93;:::i;:::-;26511:2;26506:3;26502:12;26495:19;;26154:366;;;:::o;26526:419::-;26692:4;26730:2;26719:9;26715:18;26707:26;;26779:9;26773:4;26769:20;26765:1;26754:9;26750:17;26743:47;26807:131;26933:4;26807:131;:::i;:::-;26799:139;;26526:419;;;:::o;26951:98::-;27002:6;27036:5;27030:12;27020:22;;26951:98;;;:::o;27055:168::-;27138:11;27172:6;27167:3;27160:19;27212:4;27207:3;27203:14;27188:29;;27055:168;;;;:::o;27229:373::-;27315:3;27343:38;27375:5;27343:38;:::i;:::-;27397:70;27460:6;27455:3;27397:70;:::i;:::-;27390:77;;27476:65;27534:6;27529:3;27522:4;27515:5;27511:16;27476:65;:::i;:::-;27566:29;27588:6;27566:29;:::i;:::-;27561:3;27557:39;27550:46;;27319:283;27229:373;;;;:::o;27608:640::-;27803:4;27841:3;27830:9;27826:19;27818:27;;27855:71;27923:1;27912:9;27908:17;27899:6;27855:71;:::i;:::-;27936:72;28004:2;27993:9;27989:18;27980:6;27936:72;:::i;:::-;28018;28086:2;28075:9;28071:18;28062:6;28018:72;:::i;:::-;28137:9;28131:4;28127:20;28122:2;28111:9;28107:18;28100:48;28165:76;28236:4;28227:6;28165:76;:::i;:::-;28157:84;;27608:640;;;;;;;:::o;28254:141::-;28310:5;28341:6;28335:13;28326:22;;28357:32;28383:5;28357:32;:::i;:::-;28254:141;;;;:::o;28401:349::-;28470:6;28519:2;28507:9;28498:7;28494:23;28490:32;28487:119;;;28525:79;;:::i;:::-;28487:119;28645:1;28670:63;28725:7;28716:6;28705:9;28701:22;28670:63;:::i;:::-;28660:73;;28616:127;28401:349;;;;:::o;28756:180::-;28804:77;28801:1;28794:88;28901:4;28898:1;28891:15;28925:4;28922:1;28915:15

Swarm Source

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