ETH Price: $3,427.66 (+5.29%)
Gas: 10 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

204 ERC20 ***

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ERC20 ***
0x3ac91154a708c86e02a9c6c0fb1e6dea2cb2f0d5
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:
DEFORGEAI

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/DEFORGEAI.sol


pragma solidity ^0.8.21;




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

    uint256 public maxSupply = 224;
    uint256 public maxPerWallet = 3;
    uint256 public mintPrice = .0055 ether;
    bool public paused = true;

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

    constructor(string memory baseURI_) ERC721A("DEFORGE A.I.", "DAI") {
        baseURI = baseURI_;
    }

    function mint(uint256 amount) external payable {
        require(tx.origin == msg.sender, "Contract mint is not allowed");
        require(!paused, "Sale is not active");
        require(
            (totalSupply() + amount) <= maxSupply,
            "Max public supply exceeded"
        );
        require(
            (mintPerWallet[msg.sender] + amount) <= maxPerWallet,
            "Max mint per wallet exceeded"
        );
        require(msg.value >= (mintPrice * amount), "Insufficient funds");

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

    function reserveMint(address to, uint256 amount) external onlyOwner {
        _mint(to, amount);
    }

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

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

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

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

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

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

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

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

Contract Security Audit

Contract ABI

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

608060405260e06009556003600a5566138a388a43c000600b556001600c5f6101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000799190620004c2565b5034801562000086575f80fd5b5060405162003595380380620035958339818101604052810190620000ac9190620006fe565b6040518060400160405280600c81526020017f4445464f52474520412e492e00000000000000000000000000000000000000008152506040518060400160405280600381526020017f44414900000000000000000000000000000000000000000000000000000000008152508160029081620001299190620004c2565b5080600390816200013b9190620004c2565b506200014c6200018c60201b60201c565b5f81905550505062000173620001676200019460201b60201c565b6200019b60201b60201c565b80600f9081620001849190620004c2565b50506200074d565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002da57607f821691505b602082108103620002f057620002ef62000295565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000317565b62000360868362000317565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003aa620003a46200039e8462000378565b62000381565b62000378565b9050919050565b5f819050919050565b620003c5836200038a565b620003dd620003d482620003b1565b84845462000323565b825550505050565b5f90565b620003f3620003e5565b62000400818484620003ba565b505050565b5b8181101562000427576200041b5f82620003e9565b60018101905062000406565b5050565b601f82111562000476576200044081620002f6565b6200044b8462000308565b810160208510156200045b578190505b620004736200046a8562000308565b83018262000405565b50505b505050565b5f82821c905092915050565b5f620004985f19846008026200047b565b1980831691505092915050565b5f620004b2838362000487565b9150826002028217905092915050565b620004cd826200025e565b67ffffffffffffffff811115620004e957620004e862000268565b5b620004f58254620002c2565b620005028282856200042b565b5f60209050601f83116001811462000538575f841562000523578287015190505b6200052f8582620004a5565b8655506200059e565b601f1984166200054886620002f6565b5f5b8281101562000571578489015182556001820191506020850194506020810190506200054a565b868310156200059157848901516200058d601f89168262000487565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b620005da82620005bf565b810181811067ffffffffffffffff82111715620005fc57620005fb62000268565b5b80604052505050565b5f62000610620005a6565b90506200061e8282620005cf565b919050565b5f67ffffffffffffffff82111562000640576200063f62000268565b5b6200064b82620005bf565b9050602081019050919050565b5f5b83811015620006775780820151818401526020810190506200065a565b5f8484015250505050565b5f62000698620006928462000623565b62000605565b905082815260208101848484011115620006b757620006b6620005bb565b5b620006c484828562000658565b509392505050565b5f82601f830112620006e357620006e2620005b7565b5b8151620006f584826020860162000682565b91505092915050565b5f60208284031215620007165762000715620005af565b5b5f82015167ffffffffffffffff811115620007365762000735620005b3565b5b6200074484828501620006cc565b91505092915050565b612e3a806200075b5f395ff3fe6080604052600436106101cc575f3560e01c806370a08231116100f6578063b0ea180211610094578063e268e4d311610063578063e268e4d3146105f8578063e985e9c514610620578063f2fde38b1461065c578063f4a0a52814610684576101cc565b8063b0ea18021461054e578063b88d4fde14610576578063c87b56dd14610592578063d5abeb01146105ce576101cc565b80638da5cb5b116100d05780638da5cb5b146104b657806395d89b41146104e0578063a0712d681461050a578063a22cb46514610526576101cc565b806370a082311461044e578063715018a61461048a5780637d8966e4146104a0576101cc565b80633ccfd60b1161016e5780635c975abb1161013d5780635c975abb146103945780636352211e146103be5780636817c76c146103fa5780636c0360eb14610424576101cc565b80633ccfd60b1461031057806342842e0e14610326578063453c23101461034257806355f804b31461036c576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806313413cd21461028e57806318160ddd146102ca57806323b872dd146102f4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611e73565b6106ac565b6040516102039190611eb8565b60405180910390f35b348015610217575f80fd5b5061022061073d565b60405161022d9190611f5b565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611fae565b6107cd565b6040516102699190612018565b60405180910390f35b61028c6004803603810190610287919061205b565b610847565b005b348015610299575f80fd5b506102b460048036038101906102af9190612099565b610986565b6040516102c191906120d3565b60405180910390f35b3480156102d5575f80fd5b506102de61099b565b6040516102eb91906120d3565b60405180910390f35b61030e600480360381019061030991906120ec565b6109b0565b005b34801561031b575f80fd5b50610324610cbe565b005b610340600480360381019061033b91906120ec565b610d71565b005b34801561034d575f80fd5b50610356610d90565b60405161036391906120d3565b60405180910390f35b348015610377575f80fd5b50610392600480360381019061038d9190612268565b610d96565b005b34801561039f575f80fd5b506103a8610db1565b6040516103b59190611eb8565b60405180910390f35b3480156103c9575f80fd5b506103e460048036038101906103df9190611fae565b610dc3565b6040516103f19190612018565b60405180910390f35b348015610405575f80fd5b5061040e610dd4565b60405161041b91906120d3565b60405180910390f35b34801561042f575f80fd5b50610438610dda565b6040516104459190611f5b565b60405180910390f35b348015610459575f80fd5b50610474600480360381019061046f9190612099565b610e66565b60405161048191906120d3565b60405180910390f35b348015610495575f80fd5b5061049e610f1b565b005b3480156104ab575f80fd5b506104b4610f2e565b005b3480156104c1575f80fd5b506104ca610f60565b6040516104d79190612018565b60405180910390f35b3480156104eb575f80fd5b506104f4610f88565b6040516105019190611f5b565b60405180910390f35b610524600480360381019061051f9190611fae565b611018565b005b348015610531575f80fd5b5061054c600480360381019061054791906122d9565b611269565b005b348015610559575f80fd5b50610574600480360381019061056f919061205b565b61136f565b005b610590600480360381019061058b91906123b5565b611385565b005b34801561059d575f80fd5b506105b860048036038101906105b39190611fae565b6113f7565b6040516105c59190611f5b565b60405180910390f35b3480156105d9575f80fd5b506105e2611476565b6040516105ef91906120d3565b60405180910390f35b348015610603575f80fd5b5061061e60048036038101906106199190611fae565b61147c565b005b34801561062b575f80fd5b5061064660048036038101906106419190612435565b61148e565b6040516106539190611eb8565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d9190612099565b61151c565b005b34801561068f575f80fd5b506106aa60048036038101906106a59190611fae565b61159e565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107365750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074c906124a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610778906124a0565b80156107c35780601f1061079a576101008083540402835291602001916107c3565b820191905f5260205f20905b8154815290600101906020018083116107a657829003601f168201915b5050505050905090565b5f6107d7826115b0565b61080d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61085182610dc3565b90508073ffffffffffffffffffffffffffffffffffffffff1661087261160a565b73ffffffffffffffffffffffffffffffffffffffff16146108d55761089e8161089961160a565b61148e565b6108d4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d602052805f5260405f205f915090505481565b5f6109a4611611565b6001545f540303905090565b5f6109ba82611619565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a21576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a2c846116dc565b91509150610a428187610a3d61160a565b6116ff565b610a8e57610a5786610a5261160a565b61148e565b610a8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610af3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b008686866001611742565b8015610b0a575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610bd285610bae888887611748565b7c02000000000000000000000000000000000000000000000000000000001761176f565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c4e575f6001850190505f60045f8381526020019081526020015f205403610c4c575f548114610c4b578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb68686866001611799565b505050505050565b610cc661179f565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610ceb906124fd565b5f6040518083038185875af1925050503d805f8114610d25576040519150601f19603f3d011682016040523d82523d5f602084013e610d2a565b606091505b5050905080610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d659061255b565b60405180910390fd5b50565b610d8b83838360405180602001604052805f815250611385565b505050565b600a5481565b610d9e61179f565b80600f9081610dad9190612716565b5050565b600c5f9054906101000a900460ff1681565b5f610dcd82611619565b9050919050565b600b5481565b600f8054610de7906124a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e13906124a0565b8015610e5e5780601f10610e3557610100808354040283529160200191610e5e565b820191905f5260205f20905b815481529060010190602001808311610e4157829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ecc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f2361179f565b610f2c5f61181d565b565b610f3661179f565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f97906124a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc3906124a0565b801561100e5780601f10610fe55761010080835404028352916020019161100e565b820191905f5260205f20905b815481529060010190602001808311610ff157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d9061282f565b60405180910390fd5b600c5f9054906101000a900460ff16156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612897565b60405180910390fd5b600954816110e161099b565b6110eb91906128e2565b111561112c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111239061295f565b60405180910390fd5b600a5481600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461117891906128e2565b11156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906129c7565b60405180910390fd5b80600b546111c791906129e5565b341015611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090612a70565b60405180910390fd5b80600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461125591906128e2565b9250508190555061126633826118e0565b50565b8060075f61127561160a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661131e61160a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113639190611eb8565b60405180910390a35050565b61137761179f565b61138182826118e0565b5050565b6113908484846109b0565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113f1576113ba84848484611a89565b6113f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611402826115b0565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890612afe565b60405180910390fd5b600f61144c83611bd4565b600e60405160200161146093929190612bd6565b6040516020818303038152906040529050919050565b60095481565b61148461179f565b80600a8190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61152461179f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990612c76565b60405180910390fd5b61159b8161181d565b50565b6115a661179f565b80600b8190555050565b5f816115ba611611565b111580156115c857505f5482105b801561160357505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611627611611565b116116a5575f548110156116a4575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036116a2575b5f81036116985760045f836001900393508381526020019081526020015f20549050611671565b80925050506116d7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861175e868684611c9e565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117a7611ca6565b73ffffffffffffffffffffffffffffffffffffffff166117c5610f60565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290612cde565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820361191e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61192a5f848385611742565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061199c8361198d5f865f611748565b61199685611cad565b1761176f565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611a365780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506119fd565b505f8203611a70576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611a845f848385611799565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aae61160a565b8786866040518563ffffffff1660e01b8152600401611ad09493929190612d4e565b6020604051808303815f875af1925050508015611b0b57506040513d601f19601f82011682018060405250810190611b089190612dac565b60015b611b81573d805f8114611b39576040519150601f19603f3d011682016040523d82523d5f602084013e611b3e565b606091505b505f815103611b79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611be284611cbc565b0190505f8167ffffffffffffffff811115611c0057611bff612144565b5b6040519080825280601f01601f191660200182016040528015611c325781602001600182028036833780820191505090505b5090505f82602001820190505b600115611c93578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c8857611c87612dd7565b5b0494505f8503611c3f575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611d18577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611d0e57611d0d612dd7565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611d55576d04ee2d6d415b85acef81000000008381611d4b57611d4a612dd7565b5b0492506020810190505b662386f26fc100008310611d8457662386f26fc100008381611d7a57611d79612dd7565b5b0492506010810190505b6305f5e1008310611dad576305f5e1008381611da357611da2612dd7565b5b0492506008810190505b6127108310611dd2576127108381611dc857611dc7612dd7565b5b0492506004810190505b60648310611df55760648381611deb57611dea612dd7565b5b0492506002810190505b600a8310611e04576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e5281611e1e565b8114611e5c575f80fd5b50565b5f81359050611e6d81611e49565b92915050565b5f60208284031215611e8857611e87611e16565b5b5f611e9584828501611e5f565b91505092915050565b5f8115159050919050565b611eb281611e9e565b82525050565b5f602082019050611ecb5f830184611ea9565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f08578082015181840152602081019050611eed565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f2d82611ed1565b611f378185611edb565b9350611f47818560208601611eeb565b611f5081611f13565b840191505092915050565b5f6020820190508181035f830152611f738184611f23565b905092915050565b5f819050919050565b611f8d81611f7b565b8114611f97575f80fd5b50565b5f81359050611fa881611f84565b92915050565b5f60208284031215611fc357611fc2611e16565b5b5f611fd084828501611f9a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61200282611fd9565b9050919050565b61201281611ff8565b82525050565b5f60208201905061202b5f830184612009565b92915050565b61203a81611ff8565b8114612044575f80fd5b50565b5f8135905061205581612031565b92915050565b5f806040838503121561207157612070611e16565b5b5f61207e85828601612047565b925050602061208f85828601611f9a565b9150509250929050565b5f602082840312156120ae576120ad611e16565b5b5f6120bb84828501612047565b91505092915050565b6120cd81611f7b565b82525050565b5f6020820190506120e65f8301846120c4565b92915050565b5f805f6060848603121561210357612102611e16565b5b5f61211086828701612047565b935050602061212186828701612047565b925050604061213286828701611f9a565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61217a82611f13565b810181811067ffffffffffffffff8211171561219957612198612144565b5b80604052505050565b5f6121ab611e0d565b90506121b78282612171565b919050565b5f67ffffffffffffffff8211156121d6576121d5612144565b5b6121df82611f13565b9050602081019050919050565b828183375f83830152505050565b5f61220c612207846121bc565b6121a2565b90508281526020810184848401111561222857612227612140565b5b6122338482856121ec565b509392505050565b5f82601f83011261224f5761224e61213c565b5b813561225f8482602086016121fa565b91505092915050565b5f6020828403121561227d5761227c611e16565b5b5f82013567ffffffffffffffff81111561229a57612299611e1a565b5b6122a68482850161223b565b91505092915050565b6122b881611e9e565b81146122c2575f80fd5b50565b5f813590506122d3816122af565b92915050565b5f80604083850312156122ef576122ee611e16565b5b5f6122fc85828601612047565b925050602061230d858286016122c5565b9150509250929050565b5f67ffffffffffffffff82111561233157612330612144565b5b61233a82611f13565b9050602081019050919050565b5f61235961235484612317565b6121a2565b90508281526020810184848401111561237557612374612140565b5b6123808482856121ec565b509392505050565b5f82601f83011261239c5761239b61213c565b5b81356123ac848260208601612347565b91505092915050565b5f805f80608085870312156123cd576123cc611e16565b5b5f6123da87828801612047565b94505060206123eb87828801612047565b93505060406123fc87828801611f9a565b925050606085013567ffffffffffffffff81111561241d5761241c611e1a565b5b61242987828801612388565b91505092959194509250565b5f806040838503121561244b5761244a611e16565b5b5f61245885828601612047565b925050602061246985828601612047565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806124b757607f821691505b6020821081036124ca576124c9612473565b5b50919050565b5f81905092915050565b50565b5f6124e85f836124d0565b91506124f3826124da565b5f82019050919050565b5f612507826124dd565b9150819050919050565b7f5472616e73616374696f6e206661696c656400000000000000000000000000005f82015250565b5f612545601283611edb565b915061255082612511565b602082019050919050565b5f6020820190508181035f83015261257281612539565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261259a565b6125df868361259a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61261a61261561261084611f7b565b6125f7565b611f7b565b9050919050565b5f819050919050565b61263383612600565b61264761263f82612621565b8484546125a6565b825550505050565b5f90565b61265b61264f565b61266681848461262a565b505050565b5b818110156126895761267e5f82612653565b60018101905061266c565b5050565b601f8211156126ce5761269f81612579565b6126a88461258b565b810160208510156126b7578190505b6126cb6126c38561258b565b83018261266b565b50505b505050565b5f82821c905092915050565b5f6126ee5f19846008026126d3565b1980831691505092915050565b5f61270683836126df565b9150826002028217905092915050565b61271f82611ed1565b67ffffffffffffffff81111561273857612737612144565b5b61274282546124a0565b61274d82828561268d565b5f60209050601f83116001811461277e575f841561276c578287015190505b61277685826126fb565b8655506127dd565b601f19841661278c86612579565b5f5b828110156127b35784890151825560018201915060208501945060208101905061278e565b868310156127d057848901516127cc601f8916826126df565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206d696e74206973206e6f7420616c6c6f776564000000005f82015250565b5f612819601c83611edb565b9150612824826127e5565b602082019050919050565b5f6020820190508181035f8301526128468161280d565b9050919050565b7f53616c65206973206e6f742061637469766500000000000000000000000000005f82015250565b5f612881601283611edb565b915061288c8261284d565b602082019050919050565b5f6020820190508181035f8301526128ae81612875565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128ec82611f7b565b91506128f783611f7b565b925082820190508082111561290f5761290e6128b5565b5b92915050565b7f4d6178207075626c696320737570706c792065786365656465640000000000005f82015250565b5f612949601a83611edb565b915061295482612915565b602082019050919050565b5f6020820190508181035f8301526129768161293d565b9050919050565b7f4d6178206d696e74207065722077616c6c6574206578636565646564000000005f82015250565b5f6129b1601c83611edb565b91506129bc8261297d565b602082019050919050565b5f6020820190508181035f8301526129de816129a5565b9050919050565b5f6129ef82611f7b565b91506129fa83611f7b565b9250828202612a0881611f7b565b91508282048414831517612a1f57612a1e6128b5565b5b5092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612a5a601283611edb565b9150612a6582612a26565b602082019050919050565b5f6020820190508181035f830152612a8781612a4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f612ae8602f83611edb565b9150612af382612a8e565b604082019050919050565b5f6020820190508181035f830152612b1581612adc565b9050919050565b5f81905092915050565b5f8154612b32816124a0565b612b3c8186612b1c565b9450600182165f8114612b565760018114612b6b57612b9d565b60ff1983168652811515820286019350612b9d565b612b7485612579565b5f5b83811015612b9557815481890152600182019150602081019050612b76565b838801955050505b50505092915050565b5f612bb082611ed1565b612bba8185612b1c565b9350612bca818560208601611eeb565b80840191505092915050565b5f612be18286612b26565b9150612bed8285612ba6565b9150612bf98284612b26565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612c60602683611edb565b9150612c6b82612c06565b604082019050919050565b5f6020820190508181035f830152612c8d81612c54565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612cc8602083611edb565b9150612cd382612c94565b602082019050919050565b5f6020820190508181035f830152612cf581612cbc565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612d2082612cfc565b612d2a8185612d06565b9350612d3a818560208601611eeb565b612d4381611f13565b840191505092915050565b5f608082019050612d615f830187612009565b612d6e6020830186612009565b612d7b60408301856120c4565b8181036060830152612d8d8184612d16565b905095945050505050565b5f81519050612da681611e49565b92915050565b5f60208284031215612dc157612dc0611e16565b5b5f612dce84828501612d98565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220cbf5e999cec2800ace66fed723127ace8bbcb5ad0c3bfbfdbd10cebb18cdc84164736f6c6343000816003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51433570425762616574396a41666a594a644e43744c796e6e3352396b63364864314b3373443141735246342f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cc575f3560e01c806370a08231116100f6578063b0ea180211610094578063e268e4d311610063578063e268e4d3146105f8578063e985e9c514610620578063f2fde38b1461065c578063f4a0a52814610684576101cc565b8063b0ea18021461054e578063b88d4fde14610576578063c87b56dd14610592578063d5abeb01146105ce576101cc565b80638da5cb5b116100d05780638da5cb5b146104b657806395d89b41146104e0578063a0712d681461050a578063a22cb46514610526576101cc565b806370a082311461044e578063715018a61461048a5780637d8966e4146104a0576101cc565b80633ccfd60b1161016e5780635c975abb1161013d5780635c975abb146103945780636352211e146103be5780636817c76c146103fa5780636c0360eb14610424576101cc565b80633ccfd60b1461031057806342842e0e14610326578063453c23101461034257806355f804b31461036c576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806313413cd21461028e57806318160ddd146102ca57806323b872dd146102f4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611e73565b6106ac565b6040516102039190611eb8565b60405180910390f35b348015610217575f80fd5b5061022061073d565b60405161022d9190611f5b565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611fae565b6107cd565b6040516102699190612018565b60405180910390f35b61028c6004803603810190610287919061205b565b610847565b005b348015610299575f80fd5b506102b460048036038101906102af9190612099565b610986565b6040516102c191906120d3565b60405180910390f35b3480156102d5575f80fd5b506102de61099b565b6040516102eb91906120d3565b60405180910390f35b61030e600480360381019061030991906120ec565b6109b0565b005b34801561031b575f80fd5b50610324610cbe565b005b610340600480360381019061033b91906120ec565b610d71565b005b34801561034d575f80fd5b50610356610d90565b60405161036391906120d3565b60405180910390f35b348015610377575f80fd5b50610392600480360381019061038d9190612268565b610d96565b005b34801561039f575f80fd5b506103a8610db1565b6040516103b59190611eb8565b60405180910390f35b3480156103c9575f80fd5b506103e460048036038101906103df9190611fae565b610dc3565b6040516103f19190612018565b60405180910390f35b348015610405575f80fd5b5061040e610dd4565b60405161041b91906120d3565b60405180910390f35b34801561042f575f80fd5b50610438610dda565b6040516104459190611f5b565b60405180910390f35b348015610459575f80fd5b50610474600480360381019061046f9190612099565b610e66565b60405161048191906120d3565b60405180910390f35b348015610495575f80fd5b5061049e610f1b565b005b3480156104ab575f80fd5b506104b4610f2e565b005b3480156104c1575f80fd5b506104ca610f60565b6040516104d79190612018565b60405180910390f35b3480156104eb575f80fd5b506104f4610f88565b6040516105019190611f5b565b60405180910390f35b610524600480360381019061051f9190611fae565b611018565b005b348015610531575f80fd5b5061054c600480360381019061054791906122d9565b611269565b005b348015610559575f80fd5b50610574600480360381019061056f919061205b565b61136f565b005b610590600480360381019061058b91906123b5565b611385565b005b34801561059d575f80fd5b506105b860048036038101906105b39190611fae565b6113f7565b6040516105c59190611f5b565b60405180910390f35b3480156105d9575f80fd5b506105e2611476565b6040516105ef91906120d3565b60405180910390f35b348015610603575f80fd5b5061061e60048036038101906106199190611fae565b61147c565b005b34801561062b575f80fd5b5061064660048036038101906106419190612435565b61148e565b6040516106539190611eb8565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d9190612099565b61151c565b005b34801561068f575f80fd5b506106aa60048036038101906106a59190611fae565b61159e565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107365750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074c906124a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610778906124a0565b80156107c35780601f1061079a576101008083540402835291602001916107c3565b820191905f5260205f20905b8154815290600101906020018083116107a657829003601f168201915b5050505050905090565b5f6107d7826115b0565b61080d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61085182610dc3565b90508073ffffffffffffffffffffffffffffffffffffffff1661087261160a565b73ffffffffffffffffffffffffffffffffffffffff16146108d55761089e8161089961160a565b61148e565b6108d4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d602052805f5260405f205f915090505481565b5f6109a4611611565b6001545f540303905090565b5f6109ba82611619565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a21576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a2c846116dc565b91509150610a428187610a3d61160a565b6116ff565b610a8e57610a5786610a5261160a565b61148e565b610a8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610af3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b008686866001611742565b8015610b0a575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610bd285610bae888887611748565b7c02000000000000000000000000000000000000000000000000000000001761176f565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c4e575f6001850190505f60045f8381526020019081526020015f205403610c4c575f548114610c4b578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb68686866001611799565b505050505050565b610cc661179f565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610ceb906124fd565b5f6040518083038185875af1925050503d805f8114610d25576040519150601f19603f3d011682016040523d82523d5f602084013e610d2a565b606091505b5050905080610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d659061255b565b60405180910390fd5b50565b610d8b83838360405180602001604052805f815250611385565b505050565b600a5481565b610d9e61179f565b80600f9081610dad9190612716565b5050565b600c5f9054906101000a900460ff1681565b5f610dcd82611619565b9050919050565b600b5481565b600f8054610de7906124a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e13906124a0565b8015610e5e5780601f10610e3557610100808354040283529160200191610e5e565b820191905f5260205f20905b815481529060010190602001808311610e4157829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ecc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f2361179f565b610f2c5f61181d565b565b610f3661179f565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f97906124a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc3906124a0565b801561100e5780601f10610fe55761010080835404028352916020019161100e565b820191905f5260205f20905b815481529060010190602001808311610ff157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d9061282f565b60405180910390fd5b600c5f9054906101000a900460ff16156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612897565b60405180910390fd5b600954816110e161099b565b6110eb91906128e2565b111561112c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111239061295f565b60405180910390fd5b600a5481600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461117891906128e2565b11156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906129c7565b60405180910390fd5b80600b546111c791906129e5565b341015611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090612a70565b60405180910390fd5b80600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461125591906128e2565b9250508190555061126633826118e0565b50565b8060075f61127561160a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661131e61160a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113639190611eb8565b60405180910390a35050565b61137761179f565b61138182826118e0565b5050565b6113908484846109b0565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113f1576113ba84848484611a89565b6113f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611402826115b0565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890612afe565b60405180910390fd5b600f61144c83611bd4565b600e60405160200161146093929190612bd6565b6040516020818303038152906040529050919050565b60095481565b61148461179f565b80600a8190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61152461179f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990612c76565b60405180910390fd5b61159b8161181d565b50565b6115a661179f565b80600b8190555050565b5f816115ba611611565b111580156115c857505f5482105b801561160357505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611627611611565b116116a5575f548110156116a4575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036116a2575b5f81036116985760045f836001900393508381526020019081526020015f20549050611671565b80925050506116d7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861175e868684611c9e565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117a7611ca6565b73ffffffffffffffffffffffffffffffffffffffff166117c5610f60565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290612cde565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820361191e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61192a5f848385611742565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061199c8361198d5f865f611748565b61199685611cad565b1761176f565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611a365780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506119fd565b505f8203611a70576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611a845f848385611799565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aae61160a565b8786866040518563ffffffff1660e01b8152600401611ad09493929190612d4e565b6020604051808303815f875af1925050508015611b0b57506040513d601f19601f82011682018060405250810190611b089190612dac565b60015b611b81573d805f8114611b39576040519150601f19603f3d011682016040523d82523d5f602084013e611b3e565b606091505b505f815103611b79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611be284611cbc565b0190505f8167ffffffffffffffff811115611c0057611bff612144565b5b6040519080825280601f01601f191660200182016040528015611c325781602001600182028036833780820191505090505b5090505f82602001820190505b600115611c93578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c8857611c87612dd7565b5b0494505f8503611c3f575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611d18577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611d0e57611d0d612dd7565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611d55576d04ee2d6d415b85acef81000000008381611d4b57611d4a612dd7565b5b0492506020810190505b662386f26fc100008310611d8457662386f26fc100008381611d7a57611d79612dd7565b5b0492506010810190505b6305f5e1008310611dad576305f5e1008381611da357611da2612dd7565b5b0492506008810190505b6127108310611dd2576127108381611dc857611dc7612dd7565b5b0492506004810190505b60648310611df55760648381611deb57611dea612dd7565b5b0492506002810190505b600a8310611e04576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e5281611e1e565b8114611e5c575f80fd5b50565b5f81359050611e6d81611e49565b92915050565b5f60208284031215611e8857611e87611e16565b5b5f611e9584828501611e5f565b91505092915050565b5f8115159050919050565b611eb281611e9e565b82525050565b5f602082019050611ecb5f830184611ea9565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f08578082015181840152602081019050611eed565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f2d82611ed1565b611f378185611edb565b9350611f47818560208601611eeb565b611f5081611f13565b840191505092915050565b5f6020820190508181035f830152611f738184611f23565b905092915050565b5f819050919050565b611f8d81611f7b565b8114611f97575f80fd5b50565b5f81359050611fa881611f84565b92915050565b5f60208284031215611fc357611fc2611e16565b5b5f611fd084828501611f9a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61200282611fd9565b9050919050565b61201281611ff8565b82525050565b5f60208201905061202b5f830184612009565b92915050565b61203a81611ff8565b8114612044575f80fd5b50565b5f8135905061205581612031565b92915050565b5f806040838503121561207157612070611e16565b5b5f61207e85828601612047565b925050602061208f85828601611f9a565b9150509250929050565b5f602082840312156120ae576120ad611e16565b5b5f6120bb84828501612047565b91505092915050565b6120cd81611f7b565b82525050565b5f6020820190506120e65f8301846120c4565b92915050565b5f805f6060848603121561210357612102611e16565b5b5f61211086828701612047565b935050602061212186828701612047565b925050604061213286828701611f9a565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61217a82611f13565b810181811067ffffffffffffffff8211171561219957612198612144565b5b80604052505050565b5f6121ab611e0d565b90506121b78282612171565b919050565b5f67ffffffffffffffff8211156121d6576121d5612144565b5b6121df82611f13565b9050602081019050919050565b828183375f83830152505050565b5f61220c612207846121bc565b6121a2565b90508281526020810184848401111561222857612227612140565b5b6122338482856121ec565b509392505050565b5f82601f83011261224f5761224e61213c565b5b813561225f8482602086016121fa565b91505092915050565b5f6020828403121561227d5761227c611e16565b5b5f82013567ffffffffffffffff81111561229a57612299611e1a565b5b6122a68482850161223b565b91505092915050565b6122b881611e9e565b81146122c2575f80fd5b50565b5f813590506122d3816122af565b92915050565b5f80604083850312156122ef576122ee611e16565b5b5f6122fc85828601612047565b925050602061230d858286016122c5565b9150509250929050565b5f67ffffffffffffffff82111561233157612330612144565b5b61233a82611f13565b9050602081019050919050565b5f61235961235484612317565b6121a2565b90508281526020810184848401111561237557612374612140565b5b6123808482856121ec565b509392505050565b5f82601f83011261239c5761239b61213c565b5b81356123ac848260208601612347565b91505092915050565b5f805f80608085870312156123cd576123cc611e16565b5b5f6123da87828801612047565b94505060206123eb87828801612047565b93505060406123fc87828801611f9a565b925050606085013567ffffffffffffffff81111561241d5761241c611e1a565b5b61242987828801612388565b91505092959194509250565b5f806040838503121561244b5761244a611e16565b5b5f61245885828601612047565b925050602061246985828601612047565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806124b757607f821691505b6020821081036124ca576124c9612473565b5b50919050565b5f81905092915050565b50565b5f6124e85f836124d0565b91506124f3826124da565b5f82019050919050565b5f612507826124dd565b9150819050919050565b7f5472616e73616374696f6e206661696c656400000000000000000000000000005f82015250565b5f612545601283611edb565b915061255082612511565b602082019050919050565b5f6020820190508181035f83015261257281612539565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261259a565b6125df868361259a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61261a61261561261084611f7b565b6125f7565b611f7b565b9050919050565b5f819050919050565b61263383612600565b61264761263f82612621565b8484546125a6565b825550505050565b5f90565b61265b61264f565b61266681848461262a565b505050565b5b818110156126895761267e5f82612653565b60018101905061266c565b5050565b601f8211156126ce5761269f81612579565b6126a88461258b565b810160208510156126b7578190505b6126cb6126c38561258b565b83018261266b565b50505b505050565b5f82821c905092915050565b5f6126ee5f19846008026126d3565b1980831691505092915050565b5f61270683836126df565b9150826002028217905092915050565b61271f82611ed1565b67ffffffffffffffff81111561273857612737612144565b5b61274282546124a0565b61274d82828561268d565b5f60209050601f83116001811461277e575f841561276c578287015190505b61277685826126fb565b8655506127dd565b601f19841661278c86612579565b5f5b828110156127b35784890151825560018201915060208501945060208101905061278e565b868310156127d057848901516127cc601f8916826126df565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206d696e74206973206e6f7420616c6c6f776564000000005f82015250565b5f612819601c83611edb565b9150612824826127e5565b602082019050919050565b5f6020820190508181035f8301526128468161280d565b9050919050565b7f53616c65206973206e6f742061637469766500000000000000000000000000005f82015250565b5f612881601283611edb565b915061288c8261284d565b602082019050919050565b5f6020820190508181035f8301526128ae81612875565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128ec82611f7b565b91506128f783611f7b565b925082820190508082111561290f5761290e6128b5565b5b92915050565b7f4d6178207075626c696320737570706c792065786365656465640000000000005f82015250565b5f612949601a83611edb565b915061295482612915565b602082019050919050565b5f6020820190508181035f8301526129768161293d565b9050919050565b7f4d6178206d696e74207065722077616c6c6574206578636565646564000000005f82015250565b5f6129b1601c83611edb565b91506129bc8261297d565b602082019050919050565b5f6020820190508181035f8301526129de816129a5565b9050919050565b5f6129ef82611f7b565b91506129fa83611f7b565b9250828202612a0881611f7b565b91508282048414831517612a1f57612a1e6128b5565b5b5092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612a5a601283611edb565b9150612a6582612a26565b602082019050919050565b5f6020820190508181035f830152612a8781612a4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f612ae8602f83611edb565b9150612af382612a8e565b604082019050919050565b5f6020820190508181035f830152612b1581612adc565b9050919050565b5f81905092915050565b5f8154612b32816124a0565b612b3c8186612b1c565b9450600182165f8114612b565760018114612b6b57612b9d565b60ff1983168652811515820286019350612b9d565b612b7485612579565b5f5b83811015612b9557815481890152600182019150602081019050612b76565b838801955050505b50505092915050565b5f612bb082611ed1565b612bba8185612b1c565b9350612bca818560208601611eeb565b80840191505092915050565b5f612be18286612b26565b9150612bed8285612ba6565b9150612bf98284612b26565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612c60602683611edb565b9150612c6b82612c06565b604082019050919050565b5f6020820190508181035f830152612c8d81612c54565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612cc8602083611edb565b9150612cd382612c94565b602082019050919050565b5f6020820190508181035f830152612cf581612cbc565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612d2082612cfc565b612d2a8185612d06565b9350612d3a818560208601611eeb565b612d4381611f13565b840191505092915050565b5f608082019050612d615f830187612009565b612d6e6020830186612009565b612d7b60408301856120c4565b8181036060830152612d8d8184612d16565b905095945050505050565b5f81519050612da681611e49565b92915050565b5f60208284031215612dc157612dc0611e16565b5b5f612dce84828501612d98565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220cbf5e999cec2800ace66fed723127ace8bbcb5ad0c3bfbfdbd10cebb18cdc84164736f6c63430008160033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51433570425762616574396a41666a594a644e43744c796e6e3352396b63364864314b3373443141735246342f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmQC5pBWbaet9jAfjYJdNCtLynn3R9kc6Hd1K3sD1AsRF4/

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


Deployed Bytecode Sourcemap

72450:2415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39347:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40249:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46740:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46173:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72684:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36000:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50379:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74654:208;;;;;;;;;;;;;:::i;:::-;;53300:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72567:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74230:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72650:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41642:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72605:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72780:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37184:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20126:103;;;;;;;;;;;;;:::i;:::-;;74338:76;;;;;;;;;;;;;:::i;:::-;;19485:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40425:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72922:603;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47298:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73533:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54091:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73645:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72530:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74532:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47689:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20384:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74422:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39347:639;39432:4;39771:10;39756:25;;:11;:25;;;;:102;;;;39848:10;39833:25;;:11;:25;;;;39756:102;:179;;;;39925:10;39910:25;;:11;:25;;;;39756:179;39736:199;;39347:639;;;:::o;40249:100::-;40303:13;40336:5;40329:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40249:100;:::o;46740:218::-;46816:7;46841:16;46849:7;46841;:16::i;:::-;46836:64;;46866:34;;;;;;;;;;;;;;46836:64;46920:15;:24;46936:7;46920:24;;;;;;;;;;;:30;;;;;;;;;;;;46913:37;;46740:218;;;:::o;46173:408::-;46262:13;46278:16;46286:7;46278;:16::i;:::-;46262:32;;46334:5;46311:28;;:19;:17;:19::i;:::-;:28;;;46307:175;;46359:44;46376:5;46383:19;:17;:19::i;:::-;46359:16;:44::i;:::-;46354:128;;46431:35;;;;;;;;;;;;;;46354:128;46307:175;46527:2;46494:15;:24;46510:7;46494:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46565:7;46561:2;46545:28;;46554:5;46545:28;;;;;;;;;;;;46251:330;46173:408;;:::o;72684:48::-;;;;;;;;;;;;;;;;;:::o;36000:323::-;36061:7;36289:15;:13;:15::i;:::-;36274:12;;36258:13;;:28;:46;36251:53;;36000:323;:::o;50379:2825::-;50521:27;50551;50570:7;50551:18;:27::i;:::-;50521:57;;50636:4;50595:45;;50611:19;50595:45;;;50591:86;;50649:28;;;;;;;;;;;;;;50591:86;50691:27;50720:23;50747:35;50774:7;50747:26;:35::i;:::-;50690:92;;;;50882:68;50907:15;50924:4;50930:19;:17;:19::i;:::-;50882:24;:68::i;:::-;50877:180;;50970:43;50987:4;50993:19;:17;:19::i;:::-;50970:16;:43::i;:::-;50965:92;;51022:35;;;;;;;;;;;;;;50965:92;50877:180;51088:1;51074:16;;:2;:16;;;51070:52;;51099:23;;;;;;;;;;;;;;51070:52;51135:43;51157:4;51163:2;51167:7;51176:1;51135:21;:43::i;:::-;51271:15;51268:160;;;51411:1;51390:19;51383:30;51268:160;51808:18;:24;51827:4;51808:24;;;;;;;;;;;;;;;;51806:26;;;;;;;;;;;;51877:18;:22;51896:2;51877:22;;;;;;;;;;;;;;;;51875:24;;;;;;;;;;;52199:146;52236:2;52285:45;52300:4;52306:2;52310:19;52285:14;:45::i;:::-;32399:8;52257:73;52199:18;:146::i;:::-;52170:17;:26;52188:7;52170:26;;;;;;;;;;;:175;;;;52516:1;32399:8;52465:19;:47;:52;52461:627;;52538:19;52570:1;52560:7;:11;52538:33;;52727:1;52693:17;:30;52711:11;52693:30;;;;;;;;;;;;:35;52689:384;;52831:13;;52816:11;:28;52812:242;;53011:19;52978:17;:30;52996:11;52978:30;;;;;;;;;;;:52;;;;52812:242;52689:384;52519:569;52461:627;53135:7;53131:2;53116:27;;53125:4;53116:27;;;;;;;;;;;;53154:42;53175:4;53181:2;53185:7;53194:1;53154:20;:42::i;:::-;50510:2694;;;50379:2825;;;:::o;74654:208::-;19371:13;:11;:13::i;:::-;74705:12:::1;74731:10;74723:24;;74769:21;74723:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74704:101;;;74824:7;74816:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;74693:169;74654:208::o:0;53300:193::-;53446:39;53463:4;53469:2;53473:7;53446:39;;;;;;;;;;;;:16;:39::i;:::-;53300:193;;;:::o;72567:31::-;;;;:::o;74230:100::-;19371:13;:11;:13::i;:::-;74314:8:::1;74304:7;:18;;;;;;:::i;:::-;;74230:100:::0;:::o;72650:25::-;;;;;;;;;;;;;:::o;41642:152::-;41714:7;41757:27;41776:7;41757:18;:27::i;:::-;41734:52;;41642:152;;;:::o;72605:38::-;;;;:::o;72780:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37184:233::-;37256:7;37297:1;37280:19;;:5;:19;;;37276:60;;37308:28;;;;;;;;;;;;;;37276:60;31343:13;37354:18;:25;37373:5;37354:25;;;;;;;;;;;;;;;;:55;37347:62;;37184:233;;;:::o;20126:103::-;19371:13;:11;:13::i;:::-;20191:30:::1;20218:1;20191:18;:30::i;:::-;20126:103::o:0;74338:76::-;19371:13;:11;:13::i;:::-;74400:6:::1;;;;;;;;;;;74399:7;74390:6;;:16;;;;;;;;;;;;;;;;;;74338:76::o:0;19485:87::-;19531:7;19558:6;;;;;;;;;;;19551:13;;19485:87;:::o;40425:104::-;40481:13;40514:7;40507:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40425:104;:::o;72922:603::-;73001:10;72988:23;;:9;:23;;;72980:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;73064:6;;;;;;;;;;;73063:7;73055:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;73154:9;;73143:6;73127:13;:11;:13::i;:::-;:22;;;;:::i;:::-;73126:37;;73104:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;73290:12;;73279:6;73251:13;:25;73265:10;73251:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;73250:52;;73228:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;73403:6;73391:9;;:18;;;;:::i;:::-;73377:9;:33;;73369:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;73475:6;73446:13;:25;73460:10;73446:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;73492:25;73498:10;73510:6;73492:5;:25::i;:::-;72922:603;:::o;47298:234::-;47445:8;47393:18;:39;47412:19;:17;:19::i;:::-;47393:39;;;;;;;;;;;;;;;:49;47433:8;47393:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;47505:8;47469:55;;47484:19;:17;:19::i;:::-;47469:55;;;47515:8;47469:55;;;;;;:::i;:::-;;;;;;;;47298:234;;:::o;73533:104::-;19371:13;:11;:13::i;:::-;73612:17:::1;73618:2;73622:6;73612:5;:17::i;:::-;73533:104:::0;;:::o;54091:407::-;54266:31;54279:4;54285:2;54289:7;54266:12;:31::i;:::-;54330:1;54312:2;:14;;;:19;54308:183;;54351:56;54382:4;54388:2;54392:7;54401:5;54351:30;:56::i;:::-;54346:145;;54435:40;;;;;;;;;;;;;;54346:145;54308:183;54091:407;;;;:::o;73645:352::-;73763:13;73816:16;73824:7;73816;:16::i;:::-;73794:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;73949:7;73958:18;:7;:16;:18::i;:::-;73978:9;73932:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73918:71;;73645:352;;;:::o;72530:30::-;;;;:::o;74532:114::-;19371:13;:11;:13::i;:::-;74625::::1;74610:12;:28;;;;74532:114:::0;:::o;47689:164::-;47786:4;47810:18;:25;47829:5;47810:25;;;;;;;;;;;;;;;:35;47836:8;47810:35;;;;;;;;;;;;;;;;;;;;;;;;;47803:42;;47689:164;;;;:::o;20384:201::-;19371:13;:11;:13::i;:::-;20493:1:::1;20473:22;;:8;:22;;::::0;20465:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20549:28;20568:8;20549:18;:28::i;:::-;20384:201:::0;:::o;74422:102::-;19371:13;:11;:13::i;:::-;74506:10:::1;74494:9;:22;;;;74422:102:::0;:::o;48111:282::-;48176:4;48232:7;48213:15;:13;:15::i;:::-;:26;;:66;;;;;48266:13;;48256:7;:23;48213:66;:153;;;;;48365:1;32119:8;48317:17;:26;48335:7;48317:26;;;;;;;;;;;;:44;:49;48213:153;48193:173;;48111:282;;;:::o;70419:105::-;70479:7;70506:10;70499:17;;70419:105;:::o;74121:101::-;74186:7;74213:1;74206:8;;74121:101;:::o;42797:1275::-;42864:7;42884:12;42899:7;42884:22;;42967:4;42948:15;:13;:15::i;:::-;:23;42944:1061;;43001:13;;42994:4;:20;42990:1015;;;43039:14;43056:17;:23;43074:4;43056:23;;;;;;;;;;;;43039:40;;43173:1;32119:8;43145:6;:24;:29;43141:845;;43810:113;43827:1;43817:6;:11;43810:113;;43870:17;:25;43888:6;;;;;;;43870:25;;;;;;;;;;;;43861:34;;43810:113;;;43956:6;43949:13;;;;;;43141:845;43016:989;42990:1015;42944:1061;44033:31;;;;;;;;;;;;;;42797:1275;;;;:::o;49274:485::-;49376:27;49405:23;49446:38;49487:15;:24;49503:7;49487:24;;;;;;;;;;;49446:65;;49664:18;49641:41;;49721:19;49715:26;49696:45;;49626:126;49274:485;;;:::o;48502:659::-;48651:11;48816:16;48809:5;48805:28;48796:37;;48976:16;48965:9;48961:32;48948:45;;49126:15;49115:9;49112:30;49104:5;49093:9;49090:20;49087:56;49077:66;;48502:659;;;;;:::o;55160:159::-;;;;;:::o;69728:311::-;69863:7;69883:16;32523:3;69909:19;:41;;69883:68;;32523:3;69977:31;69988:4;69994:2;69998:9;69977:10;:31::i;:::-;69969:40;;:62;;69962:69;;;69728:311;;;;;:::o;44620:450::-;44700:14;44868:16;44861:5;44857:28;44848:37;;45045:5;45031:11;45006:23;45002:41;44999:52;44992:5;44989:63;44979:73;;44620:450;;;;:::o;55984:158::-;;;;;:::o;19650:132::-;19725:12;:10;:12::i;:::-;19714:23;;:7;:5;:7::i;:::-;:23;;;19706:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19650:132::o;20745:191::-;20819:16;20838:6;;;;;;;;;;;20819:25;;20864:8;20855:6;;:17;;;;;;;;;;;;;;;;;;20919:8;20888:40;;20909:8;20888:40;;;;;;;;;;;;20808:128;20745:191;:::o;57760:2966::-;57833:20;57856:13;;57833:36;;57896:1;57884:8;:13;57880:44;;57906:18;;;;;;;;;;;;;;57880:44;57937:61;57967:1;57971:2;57975:12;57989:8;57937:21;:61::i;:::-;58481:1;31481:2;58451:1;:26;;58450:32;58438:8;:45;58412:18;:22;58431:2;58412:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;58760:139;58797:2;58851:33;58874:1;58878:2;58882:1;58851:14;:33::i;:::-;58818:30;58839:8;58818:20;:30::i;:::-;:66;58760:18;:139::i;:::-;58726:17;:31;58744:12;58726:31;;;;;;;;;;;:173;;;;58916:16;58947:11;58976:8;58961:12;:23;58947:37;;59497:16;59493:2;59489:25;59477:37;;59869:12;59829:8;59788:1;59726:25;59667:1;59606;59579:335;60240:1;60226:12;60222:20;60180:346;60281:3;60272:7;60269:16;60180:346;;60499:7;60489:8;60486:1;60459:25;60456:1;60453;60448:59;60334:1;60325:7;60321:15;60310:26;;60180:346;;;60184:77;60571:1;60559:8;:13;60555:45;;60581:19;;;;;;;;;;;;;;60555:45;60633:3;60617:13;:19;;;;58186:2462;;60658:60;60687:1;60691:2;60695:12;60709:8;60658:20;:60::i;:::-;57822:2904;57760:2966;;:::o;56582:716::-;56745:4;56791:2;56766:45;;;56812:19;:17;:19::i;:::-;56833:4;56839:7;56848:5;56766:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56762:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57066:1;57049:6;:13;:18;57045:235;;57095:40;;;;;;;;;;;;;;57045:235;57238:6;57232:13;57223:6;57219:2;57215:15;57208:38;56762:529;56935:54;;;56925:64;;;:6;:64;;;;56918:71;;;56582:716;;;;;;:::o;14955:::-;15011:13;15062:14;15099:1;15079:17;15090:5;15079:10;:17::i;:::-;:21;15062:38;;15115:20;15149:6;15138:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15115:41;;15171:11;15300:6;15296:2;15292:15;15284:6;15280:28;15273:35;;15337:288;15344:4;15337:288;;;15369:5;;;;;;;;15511:8;15506:2;15499:5;15495:14;15490:30;15485:3;15477:44;15567:2;15558:11;;;;;;:::i;:::-;;;;;15601:1;15592:5;:10;15337:288;15588:21;15337:288;15646:6;15639:13;;;;;14955:716;;;:::o;69429:147::-;69566:6;69429:147;;;;;:::o;18036:98::-;18089:7;18116:10;18109:17;;18036:98;:::o;45172:324::-;45242:14;45475:1;45465:8;45462:15;45436:24;45432:46;45422:56;;45172:324;;;:::o;11789:948::-;11842:7;11862:14;11879:1;11862:18;;11929:8;11920:5;:17;11916:106;;11967:8;11958:17;;;;;;:::i;:::-;;;;;12004:2;11994:12;;;;11916:106;12049:8;12040:5;:17;12036:106;;12087:8;12078:17;;;;;;:::i;:::-;;;;;12124:2;12114:12;;;;12036:106;12169:8;12160:5;:17;12156:106;;12207:8;12198:17;;;;;;:::i;:::-;;;;;12244:2;12234:12;;;;12156:106;12289:7;12280:5;:16;12276:103;;12326:7;12317:16;;;;;;:::i;:::-;;;;;12362:1;12352:11;;;;12276:103;12406:7;12397:5;:16;12393:103;;12443:7;12434:16;;;;;;:::i;:::-;;;;;12479:1;12469:11;;;;12393:103;12523:7;12514:5;:16;12510:103;;12560:7;12551:16;;;;;;:::i;:::-;;;;;12596:1;12586:11;;;;12510:103;12640:7;12631:5;:16;12627:68;;12678:1;12668:11;;;;12627:68;12723:6;12716:13;;;11789:948;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:147::-;12704:11;12741:3;12726:18;;12603:147;;;;:::o;12756:114::-;;:::o;12876:398::-;13035:3;13056:83;13137:1;13132:3;13056:83;:::i;:::-;13049:90;;13148:93;13237:3;13148:93;:::i;:::-;13266:1;13261:3;13257:11;13250:18;;12876:398;;;:::o;13280:379::-;13464:3;13486:147;13629:3;13486:147;:::i;:::-;13479:154;;13650:3;13643:10;;13280:379;;;:::o;13665:168::-;13805:20;13801:1;13793:6;13789:14;13782:44;13665:168;:::o;13839:366::-;13981:3;14002:67;14066:2;14061:3;14002:67;:::i;:::-;13995:74;;14078:93;14167:3;14078:93;:::i;:::-;14196:2;14191:3;14187:12;14180:19;;13839:366;;;:::o;14211:419::-;14377:4;14415:2;14404:9;14400:18;14392:26;;14464:9;14458:4;14454:20;14450:1;14439:9;14435:17;14428:47;14492:131;14618:4;14492:131;:::i;:::-;14484:139;;14211:419;;;:::o;14636:141::-;14685:4;14708:3;14700:11;;14731:3;14728:1;14721:14;14765:4;14762:1;14752:18;14744:26;;14636:141;;;:::o;14783:93::-;14820:6;14867:2;14862;14855:5;14851:14;14847:23;14837:33;;14783:93;;;:::o;14882:107::-;14926:8;14976:5;14970:4;14966:16;14945:37;;14882:107;;;;:::o;14995:393::-;15064:6;15114:1;15102:10;15098:18;15137:97;15167:66;15156:9;15137:97;:::i;:::-;15255:39;15285:8;15274:9;15255:39;:::i;:::-;15243:51;;15327:4;15323:9;15316:5;15312:21;15303:30;;15376:4;15366:8;15362:19;15355:5;15352:30;15342:40;;15071:317;;14995:393;;;;;:::o;15394:60::-;15422:3;15443:5;15436:12;;15394:60;;;:::o;15460:142::-;15510:9;15543:53;15561:34;15570:24;15588:5;15570:24;:::i;:::-;15561:34;:::i;:::-;15543:53;:::i;:::-;15530:66;;15460:142;;;:::o;15608:75::-;15651:3;15672:5;15665:12;;15608:75;;;:::o;15689:269::-;15799:39;15830:7;15799:39;:::i;:::-;15860:91;15909:41;15933:16;15909:41;:::i;:::-;15901:6;15894:4;15888:11;15860:91;:::i;:::-;15854:4;15847:105;15765:193;15689:269;;;:::o;15964:73::-;16009:3;15964:73;:::o;16043:189::-;16120:32;;:::i;:::-;16161:65;16219:6;16211;16205:4;16161:65;:::i;:::-;16096:136;16043:189;;:::o;16238:186::-;16298:120;16315:3;16308:5;16305:14;16298:120;;;16369:39;16406:1;16399:5;16369:39;:::i;:::-;16342:1;16335:5;16331:13;16322:22;;16298:120;;;16238:186;;:::o;16430:543::-;16531:2;16526:3;16523:11;16520:446;;;16565:38;16597:5;16565:38;:::i;:::-;16649:29;16667:10;16649:29;:::i;:::-;16639:8;16635:44;16832:2;16820:10;16817:18;16814:49;;;16853:8;16838:23;;16814:49;16876:80;16932:22;16950:3;16932:22;:::i;:::-;16922:8;16918:37;16905:11;16876:80;:::i;:::-;16535:431;;16520:446;16430:543;;;:::o;16979:117::-;17033:8;17083:5;17077:4;17073:16;17052:37;;16979:117;;;;:::o;17102:169::-;17146:6;17179:51;17227:1;17223:6;17215:5;17212:1;17208:13;17179:51;:::i;:::-;17175:56;17260:4;17254;17250:15;17240:25;;17153:118;17102:169;;;;:::o;17276:295::-;17352:4;17498:29;17523:3;17517:4;17498:29;:::i;:::-;17490:37;;17560:3;17557:1;17553:11;17547:4;17544:21;17536:29;;17276:295;;;;:::o;17576:1395::-;17693:37;17726:3;17693:37;:::i;:::-;17795:18;17787:6;17784:30;17781:56;;;17817:18;;:::i;:::-;17781:56;17861:38;17893:4;17887:11;17861:38;:::i;:::-;17946:67;18006:6;17998;17992:4;17946:67;:::i;:::-;18040:1;18064:4;18051:17;;18096:2;18088:6;18085:14;18113:1;18108:618;;;;18770:1;18787:6;18784:77;;;18836:9;18831:3;18827:19;18821:26;18812:35;;18784:77;18887:67;18947:6;18940:5;18887:67;:::i;:::-;18881:4;18874:81;18743:222;18078:887;;18108:618;18160:4;18156:9;18148:6;18144:22;18194:37;18226:4;18194:37;:::i;:::-;18253:1;18267:208;18281:7;18278:1;18275:14;18267:208;;;18360:9;18355:3;18351:19;18345:26;18337:6;18330:42;18411:1;18403:6;18399:14;18389:24;;18458:2;18447:9;18443:18;18430:31;;18304:4;18301:1;18297:12;18292:17;;18267:208;;;18503:6;18494:7;18491:19;18488:179;;;18561:9;18556:3;18552:19;18546:26;18604:48;18646:4;18638:6;18634:17;18623:9;18604:48;:::i;:::-;18596:6;18589:64;18511:156;18488:179;18713:1;18709;18701:6;18697:14;18693:22;18687:4;18680:36;18115:611;;;18078:887;;17668:1303;;;17576:1395;;:::o;18977:178::-;19117:30;19113:1;19105:6;19101:14;19094:54;18977:178;:::o;19161:366::-;19303:3;19324:67;19388:2;19383:3;19324:67;:::i;:::-;19317:74;;19400:93;19489:3;19400:93;:::i;:::-;19518:2;19513:3;19509:12;19502:19;;19161:366;;;:::o;19533:419::-;19699:4;19737:2;19726:9;19722:18;19714:26;;19786:9;19780:4;19776:20;19772:1;19761:9;19757:17;19750:47;19814:131;19940:4;19814:131;:::i;:::-;19806:139;;19533:419;;;:::o;19958:168::-;20098:20;20094:1;20086:6;20082:14;20075:44;19958:168;:::o;20132:366::-;20274:3;20295:67;20359:2;20354:3;20295:67;:::i;:::-;20288:74;;20371:93;20460:3;20371:93;:::i;:::-;20489:2;20484:3;20480:12;20473:19;;20132:366;;;:::o;20504:419::-;20670:4;20708:2;20697:9;20693:18;20685:26;;20757:9;20751:4;20747:20;20743:1;20732:9;20728:17;20721:47;20785:131;20911:4;20785:131;:::i;:::-;20777:139;;20504:419;;;:::o;20929:180::-;20977:77;20974:1;20967:88;21074:4;21071:1;21064:15;21098:4;21095:1;21088:15;21115:191;21155:3;21174:20;21192:1;21174:20;:::i;:::-;21169:25;;21208:20;21226:1;21208:20;:::i;:::-;21203:25;;21251:1;21248;21244:9;21237:16;;21272:3;21269:1;21266:10;21263:36;;;21279:18;;:::i;:::-;21263:36;21115:191;;;;:::o;21312:176::-;21452:28;21448:1;21440:6;21436:14;21429:52;21312:176;:::o;21494:366::-;21636:3;21657:67;21721:2;21716:3;21657:67;:::i;:::-;21650:74;;21733:93;21822:3;21733:93;:::i;:::-;21851:2;21846:3;21842:12;21835:19;;21494:366;;;:::o;21866:419::-;22032:4;22070:2;22059:9;22055:18;22047:26;;22119:9;22113:4;22109:20;22105:1;22094:9;22090:17;22083:47;22147:131;22273:4;22147:131;:::i;:::-;22139:139;;21866:419;;;:::o;22291:178::-;22431:30;22427:1;22419:6;22415:14;22408:54;22291:178;:::o;22475:366::-;22617:3;22638:67;22702:2;22697:3;22638:67;:::i;:::-;22631:74;;22714:93;22803:3;22714:93;:::i;:::-;22832:2;22827:3;22823:12;22816:19;;22475:366;;;:::o;22847:419::-;23013:4;23051:2;23040:9;23036:18;23028:26;;23100:9;23094:4;23090:20;23086:1;23075:9;23071:17;23064:47;23128:131;23254:4;23128:131;:::i;:::-;23120:139;;22847:419;;;:::o;23272:410::-;23312:7;23335:20;23353:1;23335:20;:::i;:::-;23330:25;;23369:20;23387:1;23369:20;:::i;:::-;23364:25;;23424:1;23421;23417:9;23446:30;23464:11;23446:30;:::i;:::-;23435:41;;23625:1;23616:7;23612:15;23609:1;23606:22;23586:1;23579:9;23559:83;23536:139;;23655:18;;:::i;:::-;23536:139;23320:362;23272:410;;;;:::o;23688:168::-;23828:20;23824:1;23816:6;23812:14;23805:44;23688:168;:::o;23862:366::-;24004:3;24025:67;24089:2;24084:3;24025:67;:::i;:::-;24018:74;;24101:93;24190:3;24101:93;:::i;:::-;24219:2;24214:3;24210:12;24203:19;;23862:366;;;:::o;24234:419::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24487:9;24481:4;24477:20;24473:1;24462:9;24458:17;24451:47;24515:131;24641:4;24515:131;:::i;:::-;24507:139;;24234:419;;;:::o;24659:234::-;24799:34;24795:1;24787:6;24783:14;24776:58;24868:17;24863:2;24855:6;24851:15;24844:42;24659:234;:::o;24899:366::-;25041:3;25062:67;25126:2;25121:3;25062:67;:::i;:::-;25055:74;;25138:93;25227:3;25138:93;:::i;:::-;25256:2;25251:3;25247:12;25240:19;;24899:366;;;:::o;25271:419::-;25437:4;25475:2;25464:9;25460:18;25452:26;;25524:9;25518:4;25514:20;25510:1;25499:9;25495:17;25488:47;25552:131;25678:4;25552:131;:::i;:::-;25544:139;;25271:419;;;:::o;25696:148::-;25798:11;25835:3;25820:18;;25696:148;;;;:::o;25874:874::-;25977:3;26014:5;26008:12;26043:36;26069:9;26043:36;:::i;:::-;26095:89;26177:6;26172:3;26095:89;:::i;:::-;26088:96;;26215:1;26204:9;26200:17;26231:1;26226:166;;;;26406:1;26401:341;;;;26193:549;;26226:166;26310:4;26306:9;26295;26291:25;26286:3;26279:38;26372:6;26365:14;26358:22;26350:6;26346:35;26341:3;26337:45;26330:52;;26226:166;;26401:341;26468:38;26500:5;26468:38;:::i;:::-;26528:1;26542:154;26556:6;26553:1;26550:13;26542:154;;;26630:7;26624:14;26620:1;26615:3;26611:11;26604:35;26680:1;26671:7;26667:15;26656:26;;26578:4;26575:1;26571:12;26566:17;;26542:154;;;26725:6;26720:3;26716:16;26709:23;;26408:334;;26193:549;;25981:767;;25874:874;;;;:::o;26754:390::-;26860:3;26888:39;26921:5;26888:39;:::i;:::-;26943:89;27025:6;27020:3;26943:89;:::i;:::-;26936:96;;27041:65;27099:6;27094:3;27087:4;27080:5;27076:16;27041:65;:::i;:::-;27131:6;27126:3;27122:16;27115:23;;26864:280;26754:390;;;;:::o;27150:583::-;27372:3;27394:92;27482:3;27473:6;27394:92;:::i;:::-;27387:99;;27503:95;27594:3;27585:6;27503:95;:::i;:::-;27496:102;;27615:92;27703:3;27694:6;27615:92;:::i;:::-;27608:99;;27724:3;27717:10;;27150:583;;;;;;:::o;27739:225::-;27879:34;27875:1;27867:6;27863:14;27856:58;27948:8;27943:2;27935:6;27931:15;27924:33;27739:225;:::o;27970:366::-;28112:3;28133:67;28197:2;28192:3;28133:67;:::i;:::-;28126:74;;28209:93;28298:3;28209:93;:::i;:::-;28327:2;28322:3;28318:12;28311:19;;27970:366;;;:::o;28342:419::-;28508:4;28546:2;28535:9;28531:18;28523:26;;28595:9;28589:4;28585:20;28581:1;28570:9;28566:17;28559:47;28623:131;28749:4;28623:131;:::i;:::-;28615:139;;28342:419;;;:::o;28767:182::-;28907:34;28903:1;28895:6;28891:14;28884:58;28767:182;:::o;28955:366::-;29097:3;29118:67;29182:2;29177:3;29118:67;:::i;:::-;29111:74;;29194:93;29283:3;29194:93;:::i;:::-;29312:2;29307:3;29303:12;29296:19;;28955:366;;;:::o;29327:419::-;29493:4;29531:2;29520:9;29516:18;29508:26;;29580:9;29574:4;29570:20;29566:1;29555:9;29551:17;29544:47;29608:131;29734:4;29608:131;:::i;:::-;29600:139;;29327:419;;;:::o;29752:98::-;29803:6;29837:5;29831:12;29821:22;;29752:98;;;:::o;29856:168::-;29939:11;29973:6;29968:3;29961:19;30013:4;30008:3;30004:14;29989:29;;29856:168;;;;:::o;30030:373::-;30116:3;30144:38;30176:5;30144:38;:::i;:::-;30198:70;30261:6;30256:3;30198:70;:::i;:::-;30191:77;;30277:65;30335:6;30330:3;30323:4;30316:5;30312:16;30277:65;:::i;:::-;30367:29;30389:6;30367:29;:::i;:::-;30362:3;30358:39;30351:46;;30120:283;30030:373;;;;:::o;30409:640::-;30604:4;30642:3;30631:9;30627:19;30619:27;;30656:71;30724:1;30713:9;30709:17;30700:6;30656:71;:::i;:::-;30737:72;30805:2;30794:9;30790:18;30781:6;30737:72;:::i;:::-;30819;30887:2;30876:9;30872:18;30863:6;30819:72;:::i;:::-;30938:9;30932:4;30928:20;30923:2;30912:9;30908:18;30901:48;30966:76;31037:4;31028:6;30966:76;:::i;:::-;30958:84;;30409:640;;;;;;;:::o;31055:141::-;31111:5;31142:6;31136:13;31127:22;;31158:32;31184:5;31158:32;:::i;:::-;31055:141;;;;:::o;31202:349::-;31271:6;31320:2;31308:9;31299:7;31295:23;31291:32;31288:119;;;31326:79;;:::i;:::-;31288:119;31446:1;31471:63;31526:7;31517:6;31506:9;31502:22;31471:63;:::i;:::-;31461:73;;31417:127;31202:349;;;;:::o;31557:180::-;31605:77;31602:1;31595:88;31702:4;31699:1;31692:15;31726:4;31723:1;31716:15

Swarm Source

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