ETH Price: $3,271.74 (+0.69%)
Gas: 1 Gwei

Token

888ephants (8PHT)
 

Overview

Max Total Supply

888 8PHT

Holders

347

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 8PHT
0x83c0eceeeda9bcdbb3d5b2c360b0cbe1d63c3c62
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:
Elephants

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 888ELE.sol



pragma solidity ^0.8.9;





contract Elephants is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    mapping(address => uint) public mintedPerAddress;
    uint256 public mintCost = 0.0 ether;
    uint256 public maxSupply = 888;
    uint256 public maxPerTXN = 2;
    string internal baseUri = "";
    string internal notRevealedURI = "";
    bool private isRevealed = true;
    bool private saleStarted = true;

    constructor(string memory _baseUri) ERC721A("888ephants", "8PHT") {
        baseUri = _baseUri;
    }
    
    function mint(uint256 _amount) external payable nonReentrant {
        require(saleStarted, "Sale not started yet.");
        mintModifier(_amount);
    }

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

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

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

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

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

    function setNotRevealedURI(string calldata newUri) external onlyOwner {
        notRevealedURI = newUri;   
    }

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

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

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

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


    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"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":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerTXN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b55610378600c556002600d5560405180602001604052806000815250600e9081620000349190620004f9565b5060405180602001604052806000815250600f9081620000559190620004f9565b506001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055503480156200009957600080fd5b506040516200373d3803806200373d8339818101604052810190620000bf919062000744565b6040518060400160405280600a81526020017f383838657068616e7473000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f385048540000000000000000000000000000000000000000000000000000000081525081600290816200013c9190620004f9565b5080600390816200014e9190620004f9565b506200015f620001a860201b60201c565b6000819055505050620001876200017b620001b160201b60201c565b620001b960201b60201c565b600160098190555080600e9081620001a09190620004f9565b505062000795565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030157607f821691505b602082108103620003175762000316620002b9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000342565b6200038d868362000342565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003da620003d4620003ce84620003a5565b620003af565b620003a5565b9050919050565b6000819050919050565b620003f683620003b9565b6200040e6200040582620003e1565b8484546200034f565b825550505050565b600090565b6200042562000416565b62000432818484620003eb565b505050565b5b818110156200045a576200044e6000826200041b565b60018101905062000438565b5050565b601f821115620004a95762000473816200031d565b6200047e8462000332565b810160208510156200048e578190505b620004a66200049d8562000332565b83018262000437565b50505b505050565b600082821c905092915050565b6000620004ce60001984600802620004ae565b1980831691505092915050565b6000620004e98383620004bb565b9150826002028217905092915050565b62000504826200027f565b67ffffffffffffffff81111562000520576200051f6200028a565b5b6200052c8254620002e8565b620005398282856200045e565b600060209050601f8311600181146200057157600084156200055c578287015190505b620005688582620004db565b865550620005d8565b601f19841662000581866200031d565b60005b82811015620005ab5784890151825560018201915060208501945060208101905062000584565b86831015620005cb5784890151620005c7601f891682620004bb565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200061a82620005fe565b810181811067ffffffffffffffff821117156200063c576200063b6200028a565b5b80604052505050565b600062000651620005e0565b90506200065f82826200060f565b919050565b600067ffffffffffffffff8211156200068257620006816200028a565b5b6200068d82620005fe565b9050602081019050919050565b60005b83811015620006ba5780820151818401526020810190506200069d565b60008484015250505050565b6000620006dd620006d78462000664565b62000645565b905082815260208101848484011115620006fc57620006fb620005f9565b5b620007098482856200069a565b509392505050565b600082601f830112620007295762000728620005f4565b5b81516200073b848260208601620006c6565b91505092915050565b6000602082840312156200075d576200075c620005ea565b5b600082015167ffffffffffffffff8111156200077e576200077d620005ef565b5b6200078c8482850162000711565b91505092915050565b612f9880620007a56000396000f3fe6080604052600436106101cd5760003560e01c80637d8966e4116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146105f7578063e985e9c514610622578063f2c4ce1e1461065f578063f2fde38b14610688576101cd565b8063b88d4fde14610536578063bdb4b84814610552578063c87b56dd1461057d578063d445b978146105ba576101cd565b8063a0712d68116100d1578063a0712d681461049f578063a0931011146104bb578063a22cb465146104e4578063a49a1e7d1461050d576101cd565b80637d8966e4146104325780638da5cb5b1461044957806395d89b4114610474576101cd565b80633c68eb811161016f578063627804af1161013e578063627804af146103785780636352211e146103a157806370a08231146103de578063715018a61461041b576101cd565b80633c68eb811461030557806342842e0e1461031c57806344a0d68a146103385780635bc020bc14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e4a6b10146102be57806323b872dd146102e9576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611fbe565b6106b1565b6040516102069190612006565b60405180910390f35b34801561021b57600080fd5b50610224610743565b60405161023191906120b1565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612109565b6107d5565b60405161026e9190612177565b60405180910390f35b610291600480360381019061028c91906121be565b610854565b005b34801561029f57600080fd5b506102a8610998565b6040516102b5919061220d565b60405180910390f35b3480156102ca57600080fd5b506102d36109af565b6040516102e0919061220d565b60405180910390f35b61030360048036038101906102fe9190612228565b6109b5565b005b34801561031157600080fd5b5061031a610cd7565b005b61033660048036038101906103319190612228565b610d2f565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612109565b610d4f565b005b34801561036d57600080fd5b50610376610d61565b005b34801561038457600080fd5b5061039f600480360381019061039a91906121be565b610d95565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190612109565b610dd2565b6040516103d59190612177565b60405180910390f35b3480156103ea57600080fd5b506104056004803603810190610400919061227b565b610de4565b604051610412919061220d565b60405180910390f35b34801561042757600080fd5b50610430610e9c565b005b34801561043e57600080fd5b50610447610eb0565b005b34801561045557600080fd5b5061045e610ee4565b60405161046b9190612177565b60405180910390f35b34801561048057600080fd5b50610489610f0e565b60405161049691906120b1565b60405180910390f35b6104b960048036038101906104b49190612109565b610fa0565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190612109565b61100b565b005b3480156104f057600080fd5b5061050b600480360381019061050691906122d4565b61101d565b005b34801561051957600080fd5b50610534600480360381019061052f9190612379565b611128565b005b610550600480360381019061054b91906124f6565b611146565b005b34801561055e57600080fd5b506105676111b9565b604051610574919061220d565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612109565b6111bf565b6040516105b191906120b1565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc919061227b565b6112aa565b6040516105ee919061220d565b60405180910390f35b34801561060357600080fd5b5061060c6112c2565b604051610619919061220d565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190612579565b6112c8565b6040516106569190612006565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612379565b61135c565b005b34801561069457600080fd5b506106af60048036038101906106aa919061227b565b61137a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610752906125e8565b80601f016020809104026020016040519081016040528092919081815260200182805461077e906125e8565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b60006107e0826113fd565b610816576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085f82610dd2565b90508073ffffffffffffffffffffffffffffffffffffffff1661088061145c565b73ffffffffffffffffffffffffffffffffffffffff16146108e3576108ac816108a761145c565b6112c8565b6108e2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109a2611464565b6001546000540303905090565b600d5481565b60006109c08261146d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3384611539565b91509150610a498187610a4461145c565b611560565b610a9557610a5e86610a5961145c565b6112c8565b610a94576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610afb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0886868660016115a4565b8015610b1357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be185610bbd8888876115aa565b7c0200000000000000000000000000000000000000000000000000000000176115d2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c675760006001850190506000600460008381526020019081526020016000205403610c65576000548114610c64578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ccf86868660016115fd565b505050505050565b610cdf611603565b610ce7611681565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2c573d6000803e3d6000fd5b50565b610d4a83838360405180602001604052806000815250611146565b505050565b610d57611603565b80600b8190555050565b610d69611603565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610d9d611603565b6000610da7610998565b9050600c548282610db89190612648565b1115610dc357600080fd5b610dcd8383611689565b505050565b6000610ddd8261146d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea4611603565b610eae6000611844565b565b610eb8611603565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f1d906125e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f49906125e8565b8015610f965780601f10610f6b57610100808354040283529160200191610f96565b820191906000526020600020905b815481529060010190602001808311610f7957829003601f168201915b5050505050905090565b610fa861190a565b601060019054906101000a900460ff16610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906126c8565b60405180910390fd5b61100081611959565b611008611ac7565b50565b611013611603565b80600d8190555050565b806007600061102a61145c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110d761145c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111c9190612006565b60405180910390a35050565b611130611603565b8181600e918261114192919061289f565b505050565b6111518484846109b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111b35761117c84848484611ad1565b6111b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b60606111ca826113fd565b611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906129bb565b60405180910390fd5b60011515601060009054906101000a900460ff1615150361128157600061122e611c21565b9050600081511161124e5760405180602001604052806000815250611279565b8061125884611cb3565b604051602001611269929190612a63565b6040516020818303038152906040525b9150506112a5565b600f6040516020016112939190612b15565b60405160208183030381529060405290505b919050565b600a6020528060005260406000206000915090505481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611364611603565b8181600f918261137592919061289f565b505050565b611382611603565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612b9e565b60405180910390fd5b6113fa81611844565b50565b600081611408611464565b11158015611417575060005482105b8015611455575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061147c611464565b11611502576000548110156115015760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114ff575b600081036114f55760046000836001900393508381526020019081526020016000205490506114cb565b8092505050611534565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115c1868684611d81565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61160b611681565b73ffffffffffffffffffffffffffffffffffffffff16611629610ee4565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690612c0a565b60405180910390fd5b565b600033905090565b600080549050600082036116c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116d660008483856115a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061174d8361173e60008660006115aa565b61174785611d8a565b176115d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146117ee57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506117b3565b5060008203611829576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061183f60008483856115fd565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026009540361194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690612c76565b60405180910390fd5b6002600981905550565b600d54811115801561196b5750600081115b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190612ce2565b60405180910390fd5b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146119f95760006119fc565b60025b60ff1690508082611a0d9190612d02565b600b54611a1a9190612d36565b341015611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390612dc4565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aab9190612648565b92505081905550611ac3611abd611681565b83611d9a565b5050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af761145c565b8786866040518563ffffffff1660e01b8152600401611b199493929190612e39565b6020604051808303816000875af1925050508015611b5557506040513d601f19601f82011682018060405250810190611b529190612e9a565b60015b611bce573d8060008114611b85576040519150601f19603f3d011682016040523d82523d6000602084013e611b8a565b606091505b506000815103611bc6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611c30906125e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5c906125e8565b8015611ca95780601f10611c7e57610100808354040283529160200191611ca9565b820191906000526020600020905b815481529060010190602001808311611c8c57829003601f168201915b5050505050905090565b606060006001611cc284611dff565b01905060008167ffffffffffffffff811115611ce157611ce06123cb565b5b6040519080825280601f01601f191660200182016040528015611d135781602001600182028036833780820191505090505b509050600082602001820190505b600115611d76578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d6a57611d69612ec7565b5b04945060008503611d21575b819350505050919050565b60009392505050565b60006001821460e11b9050919050565b600c54611da5610998565b82611db09190612648565b1115611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de890612f42565b60405180910390fd5b611dfb8282611689565b5050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e5d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e5357611e52612ec7565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e9a576d04ee2d6d415b85acef81000000008381611e9057611e8f612ec7565b5b0492506020810190505b662386f26fc100008310611ec957662386f26fc100008381611ebf57611ebe612ec7565b5b0492506010810190505b6305f5e1008310611ef2576305f5e1008381611ee857611ee7612ec7565b5b0492506008810190505b6127108310611f17576127108381611f0d57611f0c612ec7565b5b0492506004810190505b60648310611f3a5760648381611f3057611f2f612ec7565b5b0492506002810190505b600a8310611f49576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b60008484015250505050565b6000601f19601f8301169050919050565b600061208382612021565b61208d818561202c565b935061209d81856020860161203d565b6120a681612067565b840191505092915050565b600060208201905081810360008301526120cb8184612078565b905092915050565b6000819050919050565b6120e6816120d3565b81146120f157600080fd5b50565b600081359050612103816120dd565b92915050565b60006020828403121561211f5761211e611f5c565b5b600061212d848285016120f4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216182612136565b9050919050565b61217181612156565b82525050565b600060208201905061218c6000830184612168565b92915050565b61219b81612156565b81146121a657600080fd5b50565b6000813590506121b881612192565b92915050565b600080604083850312156121d5576121d4611f5c565b5b60006121e3858286016121a9565b92505060206121f4858286016120f4565b9150509250929050565b612207816120d3565b82525050565b600060208201905061222260008301846121fe565b92915050565b60008060006060848603121561224157612240611f5c565b5b600061224f868287016121a9565b9350506020612260868287016121a9565b9250506040612271868287016120f4565b9150509250925092565b60006020828403121561229157612290611f5c565b5b600061229f848285016121a9565b91505092915050565b6122b181611feb565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b600080604083850312156122eb576122ea611f5c565b5b60006122f9858286016121a9565b925050602061230a858286016122bf565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261233957612338612314565b5b8235905067ffffffffffffffff81111561235657612355612319565b5b6020830191508360018202830111156123725761237161231e565b5b9250929050565b600080602083850312156123905761238f611f5c565b5b600083013567ffffffffffffffff8111156123ae576123ad611f61565b5b6123ba85828601612323565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240382612067565b810181811067ffffffffffffffff82111715612422576124216123cb565b5b80604052505050565b6000612435611f52565b905061244182826123fa565b919050565b600067ffffffffffffffff821115612461576124606123cb565b5b61246a82612067565b9050602081019050919050565b82818337600083830152505050565b600061249961249484612446565b61242b565b9050828152602081018484840111156124b5576124b46123c6565b5b6124c0848285612477565b509392505050565b600082601f8301126124dd576124dc612314565b5b81356124ed848260208601612486565b91505092915050565b600080600080608085870312156125105761250f611f5c565b5b600061251e878288016121a9565b945050602061252f878288016121a9565b9350506040612540878288016120f4565b925050606085013567ffffffffffffffff81111561256157612560611f61565b5b61256d878288016124c8565b91505092959194509250565b600080604083850312156125905761258f611f5c565b5b600061259e858286016121a9565b92505060206125af858286016121a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260057607f821691505b602082108103612613576126126125b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612653826120d3565b915061265e836120d3565b925082820190508082111561267657612675612619565b5b92915050565b7f53616c65206e6f742073746172746564207965742e0000000000000000000000600082015250565b60006126b260158361202c565b91506126bd8261267c565b602082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612718565b61275f8683612718565b95508019841693508086168417925050509392505050565b6000819050919050565b600061279c612797612792846120d3565b612777565b6120d3565b9050919050565b6000819050919050565b6127b683612781565b6127ca6127c2826127a3565b848454612725565b825550505050565b600090565b6127df6127d2565b6127ea8184846127ad565b505050565b5b8181101561280e576128036000826127d7565b6001810190506127f0565b5050565b601f82111561285357612824816126f3565b61282d84612708565b8101602085101561283c578190505b61285061284885612708565b8301826127ef565b50505b505050565b600082821c905092915050565b600061287660001984600802612858565b1980831691505092915050565b600061288f8383612865565b9150826002028217905092915050565b6128a983836126e8565b67ffffffffffffffff8111156128c2576128c16123cb565b5b6128cc82546125e8565b6128d7828285612812565b6000601f83116001811461290657600084156128f4578287013590505b6128fe8582612883565b865550612966565b601f198416612914866126f3565b60005b8281101561293c57848901358255600182019150602085019450602081019050612917565b868310156129595784890135612955601f891682612865565b8355505b6001600288020188555050505b50505050505050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b60006129a5601f8361202c565b91506129b08261296f565b602082019050919050565b600060208201905081810360008301526129d481612998565b9050919050565b600081905092915050565b60006129f182612021565b6129fb81856129db565b9350612a0b81856020860161203d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612a4d6005836129db565b9150612a5882612a17565b600582019050919050565b6000612a6f82856129e6565b9150612a7b82846129e6565b9150612a8682612a40565b91508190509392505050565b60008154612a9f816125e8565b612aa981866129db565b94506001821660008114612ac45760018114612ad957612b0c565b60ff1983168652811515820286019350612b0c565b612ae2856126f3565b60005b83811015612b0457815481890152600182019150602081019050612ae5565b838801955050505b50505092915050565b6000612b218284612a92565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b8860268361202c565b9150612b9382612b2c565b604082019050919050565b60006020820190508181036000830152612bb781612b7b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bf460208361202c565b9150612bff82612bbe565b602082019050919050565b60006020820190508181036000830152612c2381612be7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c60601f8361202c565b9150612c6b82612c2a565b602082019050919050565b60006020820190508181036000830152612c8f81612c53565b9050919050565b7f4d6178203220706572205472616e73616374696f6e2e00000000000000000000600082015250565b6000612ccc60168361202c565b9150612cd782612c96565b602082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b6000612d0d826120d3565b9150612d18836120d3565b9250828203905081811115612d3057612d2f612619565b5b92915050565b6000612d41826120d3565b9150612d4c836120d3565b9250828202612d5a816120d3565b91508282048414831517612d7157612d70612619565b5b5092915050565b7f54776f20467265652c207265737420302e30204554482e000000000000000000600082015250565b6000612dae60178361202c565b9150612db982612d78565b602082019050919050565b60006020820190508181036000830152612ddd81612da1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e0b82612de4565b612e158185612def565b9350612e2581856020860161203d565b612e2e81612067565b840191505092915050565b6000608082019050612e4e6000830187612168565b612e5b6020830186612168565b612e6860408301856121fe565b8181036060830152612e7a8184612e00565b905095945050505050565b600081519050612e9481611f92565b92915050565b600060208284031215612eb057612eaf611f5c565b5b6000612ebe84828501612e85565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f3020537570706c79204c6566742e000000000000000000000000000000000000600082015250565b6000612f2c600e8361202c565b9150612f3782612ef6565b602082019050919050565b60006020820190508181036000830152612f5b81612f1f565b905091905056fea264697066735822122022d3abe5a0a815177c4fef6356984feb785639c9ef7a1285fea6ace43ce7025c64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5770614a5753547a644871354545446969585164614275394c5562686352556a326e453878344c5a7336632f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637d8966e4116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146105f7578063e985e9c514610622578063f2c4ce1e1461065f578063f2fde38b14610688576101cd565b8063b88d4fde14610536578063bdb4b84814610552578063c87b56dd1461057d578063d445b978146105ba576101cd565b8063a0712d68116100d1578063a0712d681461049f578063a0931011146104bb578063a22cb465146104e4578063a49a1e7d1461050d576101cd565b80637d8966e4146104325780638da5cb5b1461044957806395d89b4114610474576101cd565b80633c68eb811161016f578063627804af1161013e578063627804af146103785780636352211e146103a157806370a08231146103de578063715018a61461041b576101cd565b80633c68eb811461030557806342842e0e1461031c57806344a0d68a146103385780635bc020bc14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e4a6b10146102be57806323b872dd146102e9576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611fbe565b6106b1565b6040516102069190612006565b60405180910390f35b34801561021b57600080fd5b50610224610743565b60405161023191906120b1565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612109565b6107d5565b60405161026e9190612177565b60405180910390f35b610291600480360381019061028c91906121be565b610854565b005b34801561029f57600080fd5b506102a8610998565b6040516102b5919061220d565b60405180910390f35b3480156102ca57600080fd5b506102d36109af565b6040516102e0919061220d565b60405180910390f35b61030360048036038101906102fe9190612228565b6109b5565b005b34801561031157600080fd5b5061031a610cd7565b005b61033660048036038101906103319190612228565b610d2f565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612109565b610d4f565b005b34801561036d57600080fd5b50610376610d61565b005b34801561038457600080fd5b5061039f600480360381019061039a91906121be565b610d95565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190612109565b610dd2565b6040516103d59190612177565b60405180910390f35b3480156103ea57600080fd5b506104056004803603810190610400919061227b565b610de4565b604051610412919061220d565b60405180910390f35b34801561042757600080fd5b50610430610e9c565b005b34801561043e57600080fd5b50610447610eb0565b005b34801561045557600080fd5b5061045e610ee4565b60405161046b9190612177565b60405180910390f35b34801561048057600080fd5b50610489610f0e565b60405161049691906120b1565b60405180910390f35b6104b960048036038101906104b49190612109565b610fa0565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190612109565b61100b565b005b3480156104f057600080fd5b5061050b600480360381019061050691906122d4565b61101d565b005b34801561051957600080fd5b50610534600480360381019061052f9190612379565b611128565b005b610550600480360381019061054b91906124f6565b611146565b005b34801561055e57600080fd5b506105676111b9565b604051610574919061220d565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612109565b6111bf565b6040516105b191906120b1565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc919061227b565b6112aa565b6040516105ee919061220d565b60405180910390f35b34801561060357600080fd5b5061060c6112c2565b604051610619919061220d565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190612579565b6112c8565b6040516106569190612006565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612379565b61135c565b005b34801561069457600080fd5b506106af60048036038101906106aa919061227b565b61137a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610752906125e8565b80601f016020809104026020016040519081016040528092919081815260200182805461077e906125e8565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b60006107e0826113fd565b610816576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085f82610dd2565b90508073ffffffffffffffffffffffffffffffffffffffff1661088061145c565b73ffffffffffffffffffffffffffffffffffffffff16146108e3576108ac816108a761145c565b6112c8565b6108e2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109a2611464565b6001546000540303905090565b600d5481565b60006109c08261146d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3384611539565b91509150610a498187610a4461145c565b611560565b610a9557610a5e86610a5961145c565b6112c8565b610a94576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610afb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0886868660016115a4565b8015610b1357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be185610bbd8888876115aa565b7c0200000000000000000000000000000000000000000000000000000000176115d2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c675760006001850190506000600460008381526020019081526020016000205403610c65576000548114610c64578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ccf86868660016115fd565b505050505050565b610cdf611603565b610ce7611681565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2c573d6000803e3d6000fd5b50565b610d4a83838360405180602001604052806000815250611146565b505050565b610d57611603565b80600b8190555050565b610d69611603565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610d9d611603565b6000610da7610998565b9050600c548282610db89190612648565b1115610dc357600080fd5b610dcd8383611689565b505050565b6000610ddd8261146d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea4611603565b610eae6000611844565b565b610eb8611603565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f1d906125e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f49906125e8565b8015610f965780601f10610f6b57610100808354040283529160200191610f96565b820191906000526020600020905b815481529060010190602001808311610f7957829003601f168201915b5050505050905090565b610fa861190a565b601060019054906101000a900460ff16610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906126c8565b60405180910390fd5b61100081611959565b611008611ac7565b50565b611013611603565b80600d8190555050565b806007600061102a61145c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110d761145c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111c9190612006565b60405180910390a35050565b611130611603565b8181600e918261114192919061289f565b505050565b6111518484846109b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111b35761117c84848484611ad1565b6111b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b60606111ca826113fd565b611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906129bb565b60405180910390fd5b60011515601060009054906101000a900460ff1615150361128157600061122e611c21565b9050600081511161124e5760405180602001604052806000815250611279565b8061125884611cb3565b604051602001611269929190612a63565b6040516020818303038152906040525b9150506112a5565b600f6040516020016112939190612b15565b60405160208183030381529060405290505b919050565b600a6020528060005260406000206000915090505481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611364611603565b8181600f918261137592919061289f565b505050565b611382611603565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612b9e565b60405180910390fd5b6113fa81611844565b50565b600081611408611464565b11158015611417575060005482105b8015611455575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061147c611464565b11611502576000548110156115015760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114ff575b600081036114f55760046000836001900393508381526020019081526020016000205490506114cb565b8092505050611534565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115c1868684611d81565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61160b611681565b73ffffffffffffffffffffffffffffffffffffffff16611629610ee4565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690612c0a565b60405180910390fd5b565b600033905090565b600080549050600082036116c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116d660008483856115a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061174d8361173e60008660006115aa565b61174785611d8a565b176115d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146117ee57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506117b3565b5060008203611829576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061183f60008483856115fd565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026009540361194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690612c76565b60405180910390fd5b6002600981905550565b600d54811115801561196b5750600081115b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190612ce2565b60405180910390fd5b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146119f95760006119fc565b60025b60ff1690508082611a0d9190612d02565b600b54611a1a9190612d36565b341015611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390612dc4565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aab9190612648565b92505081905550611ac3611abd611681565b83611d9a565b5050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af761145c565b8786866040518563ffffffff1660e01b8152600401611b199493929190612e39565b6020604051808303816000875af1925050508015611b5557506040513d601f19601f82011682018060405250810190611b529190612e9a565b60015b611bce573d8060008114611b85576040519150601f19603f3d011682016040523d82523d6000602084013e611b8a565b606091505b506000815103611bc6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611c30906125e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5c906125e8565b8015611ca95780601f10611c7e57610100808354040283529160200191611ca9565b820191906000526020600020905b815481529060010190602001808311611c8c57829003601f168201915b5050505050905090565b606060006001611cc284611dff565b01905060008167ffffffffffffffff811115611ce157611ce06123cb565b5b6040519080825280601f01601f191660200182016040528015611d135781602001600182028036833780820191505090505b509050600082602001820190505b600115611d76578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d6a57611d69612ec7565b5b04945060008503611d21575b819350505050919050565b60009392505050565b60006001821460e11b9050919050565b600c54611da5610998565b82611db09190612648565b1115611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de890612f42565b60405180910390fd5b611dfb8282611689565b5050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e5d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e5357611e52612ec7565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e9a576d04ee2d6d415b85acef81000000008381611e9057611e8f612ec7565b5b0492506020810190505b662386f26fc100008310611ec957662386f26fc100008381611ebf57611ebe612ec7565b5b0492506010810190505b6305f5e1008310611ef2576305f5e1008381611ee857611ee7612ec7565b5b0492506008810190505b6127108310611f17576127108381611f0d57611f0c612ec7565b5b0492506004810190505b60648310611f3a5760648381611f3057611f2f612ec7565b5b0492506002810190505b600a8310611f49576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b60008484015250505050565b6000601f19601f8301169050919050565b600061208382612021565b61208d818561202c565b935061209d81856020860161203d565b6120a681612067565b840191505092915050565b600060208201905081810360008301526120cb8184612078565b905092915050565b6000819050919050565b6120e6816120d3565b81146120f157600080fd5b50565b600081359050612103816120dd565b92915050565b60006020828403121561211f5761211e611f5c565b5b600061212d848285016120f4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216182612136565b9050919050565b61217181612156565b82525050565b600060208201905061218c6000830184612168565b92915050565b61219b81612156565b81146121a657600080fd5b50565b6000813590506121b881612192565b92915050565b600080604083850312156121d5576121d4611f5c565b5b60006121e3858286016121a9565b92505060206121f4858286016120f4565b9150509250929050565b612207816120d3565b82525050565b600060208201905061222260008301846121fe565b92915050565b60008060006060848603121561224157612240611f5c565b5b600061224f868287016121a9565b9350506020612260868287016121a9565b9250506040612271868287016120f4565b9150509250925092565b60006020828403121561229157612290611f5c565b5b600061229f848285016121a9565b91505092915050565b6122b181611feb565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b600080604083850312156122eb576122ea611f5c565b5b60006122f9858286016121a9565b925050602061230a858286016122bf565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261233957612338612314565b5b8235905067ffffffffffffffff81111561235657612355612319565b5b6020830191508360018202830111156123725761237161231e565b5b9250929050565b600080602083850312156123905761238f611f5c565b5b600083013567ffffffffffffffff8111156123ae576123ad611f61565b5b6123ba85828601612323565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240382612067565b810181811067ffffffffffffffff82111715612422576124216123cb565b5b80604052505050565b6000612435611f52565b905061244182826123fa565b919050565b600067ffffffffffffffff821115612461576124606123cb565b5b61246a82612067565b9050602081019050919050565b82818337600083830152505050565b600061249961249484612446565b61242b565b9050828152602081018484840111156124b5576124b46123c6565b5b6124c0848285612477565b509392505050565b600082601f8301126124dd576124dc612314565b5b81356124ed848260208601612486565b91505092915050565b600080600080608085870312156125105761250f611f5c565b5b600061251e878288016121a9565b945050602061252f878288016121a9565b9350506040612540878288016120f4565b925050606085013567ffffffffffffffff81111561256157612560611f61565b5b61256d878288016124c8565b91505092959194509250565b600080604083850312156125905761258f611f5c565b5b600061259e858286016121a9565b92505060206125af858286016121a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260057607f821691505b602082108103612613576126126125b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612653826120d3565b915061265e836120d3565b925082820190508082111561267657612675612619565b5b92915050565b7f53616c65206e6f742073746172746564207965742e0000000000000000000000600082015250565b60006126b260158361202c565b91506126bd8261267c565b602082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612718565b61275f8683612718565b95508019841693508086168417925050509392505050565b6000819050919050565b600061279c612797612792846120d3565b612777565b6120d3565b9050919050565b6000819050919050565b6127b683612781565b6127ca6127c2826127a3565b848454612725565b825550505050565b600090565b6127df6127d2565b6127ea8184846127ad565b505050565b5b8181101561280e576128036000826127d7565b6001810190506127f0565b5050565b601f82111561285357612824816126f3565b61282d84612708565b8101602085101561283c578190505b61285061284885612708565b8301826127ef565b50505b505050565b600082821c905092915050565b600061287660001984600802612858565b1980831691505092915050565b600061288f8383612865565b9150826002028217905092915050565b6128a983836126e8565b67ffffffffffffffff8111156128c2576128c16123cb565b5b6128cc82546125e8565b6128d7828285612812565b6000601f83116001811461290657600084156128f4578287013590505b6128fe8582612883565b865550612966565b601f198416612914866126f3565b60005b8281101561293c57848901358255600182019150602085019450602081019050612917565b868310156129595784890135612955601f891682612865565b8355505b6001600288020188555050505b50505050505050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b60006129a5601f8361202c565b91506129b08261296f565b602082019050919050565b600060208201905081810360008301526129d481612998565b9050919050565b600081905092915050565b60006129f182612021565b6129fb81856129db565b9350612a0b81856020860161203d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612a4d6005836129db565b9150612a5882612a17565b600582019050919050565b6000612a6f82856129e6565b9150612a7b82846129e6565b9150612a8682612a40565b91508190509392505050565b60008154612a9f816125e8565b612aa981866129db565b94506001821660008114612ac45760018114612ad957612b0c565b60ff1983168652811515820286019350612b0c565b612ae2856126f3565b60005b83811015612b0457815481890152600182019150602081019050612ae5565b838801955050505b50505092915050565b6000612b218284612a92565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b8860268361202c565b9150612b9382612b2c565b604082019050919050565b60006020820190508181036000830152612bb781612b7b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bf460208361202c565b9150612bff82612bbe565b602082019050919050565b60006020820190508181036000830152612c2381612be7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c60601f8361202c565b9150612c6b82612c2a565b602082019050919050565b60006020820190508181036000830152612c8f81612c53565b9050919050565b7f4d6178203220706572205472616e73616374696f6e2e00000000000000000000600082015250565b6000612ccc60168361202c565b9150612cd782612c96565b602082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b6000612d0d826120d3565b9150612d18836120d3565b9250828203905081811115612d3057612d2f612619565b5b92915050565b6000612d41826120d3565b9150612d4c836120d3565b9250828202612d5a816120d3565b91508282048414831517612d7157612d70612619565b5b5092915050565b7f54776f20467265652c207265737420302e30204554482e000000000000000000600082015250565b6000612dae60178361202c565b9150612db982612d78565b602082019050919050565b60006020820190508181036000830152612ddd81612da1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e0b82612de4565b612e158185612def565b9350612e2581856020860161203d565b612e2e81612067565b840191505092915050565b6000608082019050612e4e6000830187612168565b612e5b6020830186612168565b612e6860408301856121fe565b8181036060830152612e7a8184612e00565b905095945050505050565b600081519050612e9481611f92565b92915050565b600060208284031215612eb057612eaf611f5c565b5b6000612ebe84828501612e85565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f3020537570706c79204c6566742e000000000000000000000000000000000000600082015250565b6000612f2c600e8361202c565b9150612f3782612ef6565b602082019050919050565b60006020820190508181036000830152612f5b81612f1f565b905091905056fea264697066735822122022d3abe5a0a815177c4fef6356984feb785639c9ef7a1285fea6ace43ce7025c64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5770614a5753547a644871354545446969585164614275394c5562686352556a326e453878344c5a7336632f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://QmNWpaJWSTzdHq5EEDiiXQdaBu9LUbhcRUj2nE8x4LZs6c/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e5770614a5753547a6448713545454469695851646142
Arg [3] : 75394c5562686352556a326e453878344c5a7336632f00000000000000000000


Deployed Bytecode Sourcemap

73235:2996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36549:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37451:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43942:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43375:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33202:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73468:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47581:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76102:116;;;;;;;;;;;;;:::i;:::-;;50502:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75027:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74927:88;;;;;;;;;;;;;:::i;:::-;;74517:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38844:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34386:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72356:103;;;;;;;;;;;;;:::i;:::-;;74833:86;;;;;;;;;;;;;:::i;:::-;;71708:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37627:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73772:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74735:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44500:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75125:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51293:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73389:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75468:517;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73334:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73431:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44891:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75232:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72614:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36549:639;36634:4;36973:10;36958:25;;:11;:25;;;;:102;;;;37050:10;37035:25;;:11;:25;;;;36958:102;:179;;;;37127:10;37112:25;;:11;:25;;;;36958:179;36938:199;;36549:639;;;:::o;37451:100::-;37505:13;37538:5;37531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37451:100;:::o;43942:218::-;44018:7;44043:16;44051:7;44043;:16::i;:::-;44038:64;;44068:34;;;;;;;;;;;;;;44038:64;44122:15;:24;44138:7;44122:24;;;;;;;;;;;:30;;;;;;;;;;;;44115:37;;43942:218;;;:::o;43375:408::-;43464:13;43480:16;43488:7;43480;:16::i;:::-;43464:32;;43536:5;43513:28;;:19;:17;:19::i;:::-;:28;;;43509:175;;43561:44;43578:5;43585:19;:17;:19::i;:::-;43561:16;:44::i;:::-;43556:128;;43633:35;;;;;;;;;;;;;;43556:128;43509:175;43729:2;43696:15;:24;43712:7;43696:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43767:7;43763:2;43747:28;;43756:5;43747:28;;;;;;;;;;;;43453:330;43375:408;;:::o;33202:323::-;33263:7;33491:15;:13;:15::i;:::-;33476:12;;33460:13;;:28;:46;33453:53;;33202:323;:::o;73468:28::-;;;;:::o;47581:2825::-;47723:27;47753;47772:7;47753:18;:27::i;:::-;47723:57;;47838:4;47797:45;;47813:19;47797:45;;;47793:86;;47851:28;;;;;;;;;;;;;;47793:86;47893:27;47922:23;47949:35;47976:7;47949:26;:35::i;:::-;47892:92;;;;48084:68;48109:15;48126:4;48132:19;:17;:19::i;:::-;48084:24;:68::i;:::-;48079:180;;48172:43;48189:4;48195:19;:17;:19::i;:::-;48172:16;:43::i;:::-;48167:92;;48224:35;;;;;;;;;;;;;;48167:92;48079:180;48290:1;48276:16;;:2;:16;;;48272:52;;48301:23;;;;;;;;;;;;;;48272:52;48337:43;48359:4;48365:2;48369:7;48378:1;48337:21;:43::i;:::-;48473:15;48470:160;;;48613:1;48592:19;48585:30;48470:160;49010:18;:24;49029:4;49010:24;;;;;;;;;;;;;;;;49008:26;;;;;;;;;;;;49079:18;:22;49098:2;49079:22;;;;;;;;;;;;;;;;49077:24;;;;;;;;;;;49401:146;49438:2;49487:45;49502:4;49508:2;49512:19;49487:14;:45::i;:::-;29601:8;49459:73;49401:18;:146::i;:::-;49372:17;:26;49390:7;49372:26;;;;;;;;;;;:175;;;;49718:1;29601:8;49667:19;:47;:52;49663:627;;49740:19;49772:1;49762:7;:11;49740:33;;49929:1;49895:17;:30;49913:11;49895:30;;;;;;;;;;;;:35;49891:384;;50033:13;;50018:11;:28;50014:242;;50213:19;50180:17;:30;50198:11;50180:30;;;;;;;;;;;:52;;;;50014:242;49891:384;49721:569;49663:627;50337:7;50333:2;50318:27;;50327:4;50318:27;;;;;;;;;;;;50356:42;50377:4;50383:2;50387:7;50396:1;50356:20;:42::i;:::-;47712:2694;;;47581:2825;;;:::o;76102:116::-;71594:13;:11;:13::i;:::-;76165:12:::1;:10;:12::i;:::-;76157:30;;:53;76188:21;76157:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;76102:116::o:0;50502:193::-;50648:39;50665:4;50671:2;50675:7;50648:39;;;;;;;;;;;;:16;:39::i;:::-;50502:193;;;:::o;75027:90::-;71594:13;:11;:13::i;:::-;75102:7:::1;75091:8;:18;;;;75027:90:::0;:::o;74927:88::-;71594:13;:11;:13::i;:::-;74997:10:::1;;;;;;;;;;;74996:11;74983:10;;:24;;;;;;;;;;;;;;;;;;74927:88::o:0;74517:206::-;71594:13;:11;:13::i;:::-;74595:19:::1;74617:13;:11;:13::i;:::-;74595:35;;74671:9;;74660:7;74646:11;:21;;;;:::i;:::-;:34;;74638:43;;;::::0;::::1;;74692:23;74698:7;74707;74692:5;:23::i;:::-;74585:138;74517:206:::0;;:::o;38844:152::-;38916:7;38959:27;38978:7;38959:18;:27::i;:::-;38936:52;;38844:152;;;:::o;34386:233::-;34458:7;34499:1;34482:19;;:5;:19;;;34478:60;;34510:28;;;;;;;;;;;;;;34478:60;28545:13;34556:18;:25;34575:5;34556:25;;;;;;;;;;;;;;;;:55;34549:62;;34386:233;;;:::o;72356:103::-;71594:13;:11;:13::i;:::-;72421:30:::1;72448:1;72421:18;:30::i;:::-;72356:103::o:0;74833:86::-;71594:13;:11;:13::i;:::-;74900:11:::1;;;;;;;;;;;74899:12;74885:11;;:26;;;;;;;;;;;;;;;;;;74833:86::o:0;71708:87::-;71754:7;71781:6;;;;;;;;;;;71774:13;;71708:87;:::o;37627:104::-;37683:13;37716:7;37709:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37627:104;:::o;73772:157::-;17544:21;:19;:21::i;:::-;73852:11:::1;;;;;;;;;;;73844:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;73900:21;73913:7;73900:12;:21::i;:::-;17588:20:::0;:18;:20::i;:::-;73772:157;:::o;74735:90::-;71594:13;:11;:13::i;:::-;74813:4:::1;74801:9;:16;;;;74735:90:::0;:::o;44500:234::-;44647:8;44595:18;:39;44614:19;:17;:19::i;:::-;44595:39;;;;;;;;;;;;;;;:49;44635:8;44595:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44707:8;44671:55;;44686:19;:17;:19::i;:::-;44671:55;;;44717:8;44671:55;;;;;;:::i;:::-;;;;;;;;44500:234;;:::o;75125:99::-;71594:13;:11;:13::i;:::-;75210:6:::1;;75200:7;:16;;;;;;;:::i;:::-;;75125:99:::0;;:::o;51293:407::-;51468:31;51481:4;51487:2;51491:7;51468:12;:31::i;:::-;51532:1;51514:2;:14;;;:19;51510:183;;51553:56;51584:4;51590:2;51594:7;51603:5;51553:30;:56::i;:::-;51548:145;;51637:40;;;;;;;;;;;;;;51548:145;51510:183;51293:407;;;;:::o;73389:35::-;;;;:::o;75468:517::-;75542:13;75576:17;75584:8;75576:7;:17::i;:::-;75568:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;75657:4;75643:18;;:10;;;;;;;;;;;:18;;;75640:338;;75678:28;75709:10;:8;:10::i;:::-;75678:41;;75772:1;75747:14;75741:28;:32;:136;;;;;;;;;;;;;;;;;75813:14;75829:19;:8;:17;:19::i;:::-;75796:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75741:136;75734:143;;;;;75640:338;75950:14;75933:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;75919:47;;75468:517;;;;:::o;73334:48::-;;;;;;;;;;;;;;;;;:::o;73431:30::-;;;;:::o;44891:164::-;44988:4;45012:18;:25;45031:5;45012:25;;;;;;;;;;;;;;;:35;45038:8;45012:35;;;;;;;;;;;;;;;;;;;;;;;;;45005:42;;44891:164;;;;:::o;75232:115::-;71594:13;:11;:13::i;:::-;75330:6:::1;;75313:14;:23;;;;;;;:::i;:::-;;75232:115:::0;;:::o;72614:201::-;71594:13;:11;:13::i;:::-;72723:1:::1;72703:22;;:8;:22;;::::0;72695:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;72779:28;72798:8;72779:18;:28::i;:::-;72614:201:::0;:::o;45313:282::-;45378:4;45434:7;45415:15;:13;:15::i;:::-;:26;;:66;;;;;45468:13;;45458:7;:23;45415:66;:153;;;;;45567:1;29321:8;45519:17;:26;45537:7;45519:26;;;;;;;;;;;;:44;:49;45415:153;45395:173;;45313:282;;;:::o;67621:105::-;67681:7;67708:10;67701:17;;67621:105;:::o;75993:101::-;76058:7;76085:1;76078:8;;75993:101;:::o;39999:1275::-;40066:7;40086:12;40101:7;40086:22;;40169:4;40150:15;:13;:15::i;:::-;:23;40146:1061;;40203:13;;40196:4;:20;40192:1015;;;40241:14;40258:17;:23;40276:4;40258:23;;;;;;;;;;;;40241:40;;40375:1;29321:8;40347:6;:24;:29;40343:845;;41012:113;41029:1;41019:6;:11;41012:113;;41072:17;:25;41090:6;;;;;;;41072:25;;;;;;;;;;;;41063:34;;41012:113;;;41158:6;41151:13;;;;;;40343:845;40218:989;40192:1015;40146:1061;41235:31;;;;;;;;;;;;;;39999:1275;;;;:::o;46476:485::-;46578:27;46607:23;46648:38;46689:15;:24;46705:7;46689:24;;;;;;;;;;;46648:65;;46866:18;46843:41;;46923:19;46917:26;46898:45;;46828:126;46476:485;;;:::o;45704:659::-;45853:11;46018:16;46011:5;46007:28;45998:37;;46178:16;46167:9;46163:32;46150:45;;46328:15;46317:9;46314:30;46306:5;46295:9;46292:20;46289:56;46279:66;;45704:659;;;;;:::o;52362:159::-;;;;;:::o;66930:311::-;67065:7;67085:16;29725:3;67111:19;:41;;67085:68;;29725:3;67179:31;67190:4;67196:2;67200:9;67179:10;:31::i;:::-;67171:40;;:62;;67164:69;;;66930:311;;;;;:::o;41822:450::-;41902:14;42070:16;42063:5;42059:28;42050:37;;42247:5;42233:11;42208:23;42204:41;42201:52;42194:5;42191:63;42181:73;;41822:450;;;;:::o;53186:158::-;;;;;:::o;71873:132::-;71948:12;:10;:12::i;:::-;71937:23;;:7;:5;:7::i;:::-;:23;;;71929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71873:132::o;70259:98::-;70312:7;70339:10;70332:17;;70259:98;:::o;54962:2966::-;55035:20;55058:13;;55035:36;;55098:1;55086:8;:13;55082:44;;55108:18;;;;;;;;;;;;;;55082:44;55139:61;55169:1;55173:2;55177:12;55191:8;55139:21;:61::i;:::-;55683:1;28683:2;55653:1;:26;;55652:32;55640:8;:45;55614:18;:22;55633:2;55614:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55962:139;55999:2;56053:33;56076:1;56080:2;56084:1;56053:14;:33::i;:::-;56020:30;56041:8;56020:20;:30::i;:::-;:66;55962:18;:139::i;:::-;55928:17;:31;55946:12;55928:31;;;;;;;;;;;:173;;;;56118:16;56149:11;56178:8;56163:12;:23;56149:37;;56699:16;56695:2;56691:25;56679:37;;57071:12;57031:8;56990:1;56928:25;56869:1;56808;56781:335;57442:1;57428:12;57424:20;57382:346;57483:3;57474:7;57471:16;57382:346;;57701:7;57691:8;57688:1;57661:25;57658:1;57655;57650:59;57536:1;57527:7;57523:15;57512:26;;57382:346;;;57386:77;57773:1;57761:8;:13;57757:45;;57783:19;;;;;;;;;;;;;;57757:45;57835:3;57819:13;:19;;;;55388:2462;;57860:60;57889:1;57893:2;57897:12;57911:8;57860:20;:60::i;:::-;55024:2904;54962:2966;;:::o;72975:191::-;73049:16;73068:6;;;;;;;;;;;73049:25;;73094:8;73085:6;;:17;;;;;;;;;;;;;;;;;;73149:8;73118:40;;73139:8;73118:40;;;;;;;;;;;;73038:128;72975:191;:::o;17624:293::-;17026:1;17758:7;;:19;17750:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17026:1;17891:7;:18;;;;17624:293::o;73937:383::-;74015:9;;74004:7;:20;;:35;;;;;74038:1;74028:7;:11;74004:35;73996:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;74077:12;74124:1;74092:16;:28;74109:10;74092:28;;;;;;;;;;;;;;;;:33;:41;;74132:1;74092:41;;;74128:1;74092:41;74077:56;;;;74187:4;74177:7;:14;;;;:::i;:::-;74165:8;;:27;;;;:::i;:::-;74152:9;:40;;74144:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;74263:7;74231:16;:28;74248:10;74231:28;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;74281:31;74290:12;:10;:12::i;:::-;74304:7;74281:8;:31::i;:::-;73985:335;73937:383;:::o;17925:213::-;16982:1;18108:7;:22;;;;17925:213::o;53784:716::-;53947:4;53993:2;53968:45;;;54014:19;:17;:19::i;:::-;54035:4;54041:7;54050:5;53968:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53964:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54268:1;54251:6;:13;:18;54247:235;;54297:40;;;;;;;;;;;;;;54247:235;54440:6;54434:13;54425:6;54421:2;54417:15;54410:38;53964:529;54137:54;;;54127:64;;;:6;:64;;;;54120:71;;;53784:716;;;;;;:::o;75355:100::-;75407:13;75440:7;75433:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75355:100;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;66631:147::-;66768:6;66631:147;;;;;:::o;42374:324::-;42444:14;42677:1;42667:8;42664:15;42638:24;42634:46;42624:56;;42374:324;;;:::o;74328:177::-;74435:9;;74418:13;:11;:13::i;:::-;74408:7;:23;;;;:::i;:::-;:36;;74400:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;74474:23;74480:7;74489;74474:5;:23::i;:::-;74328:177;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:117;7292:1;7289;7282:12;7320:553;7378:8;7388:6;7438:3;7431:4;7423:6;7419:17;7415:27;7405:122;;7446:79;;:::i;:::-;7405:122;7559:6;7546:20;7536:30;;7589:18;7581:6;7578:30;7575:117;;;7611:79;;:::i;:::-;7575:117;7725:4;7717:6;7713:17;7701:29;;7779:3;7771:4;7763:6;7759:17;7749:8;7745:32;7742:41;7739:128;;;7786:79;;:::i;:::-;7739:128;7320:553;;;;;:::o;7879:529::-;7950:6;7958;8007:2;7995:9;7986:7;7982:23;7978:32;7975:119;;;8013:79;;:::i;:::-;7975:119;8161:1;8150:9;8146:17;8133:31;8191:18;8183:6;8180:30;8177:117;;;8213:79;;:::i;:::-;8177:117;8326:65;8383:7;8374:6;8363:9;8359:22;8326:65;:::i;:::-;8308:83;;;;8104:297;7879:529;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:180::-;12385:77;12382:1;12375:88;12482:4;12479:1;12472:15;12506:4;12503:1;12496:15;12523:191;12563:3;12582:20;12600:1;12582:20;:::i;:::-;12577:25;;12616:20;12634:1;12616:20;:::i;:::-;12611:25;;12659:1;12656;12652:9;12645:16;;12680:3;12677:1;12674:10;12671:36;;;12687:18;;:::i;:::-;12671:36;12523:191;;;;:::o;12720:171::-;12860:23;12856:1;12848:6;12844:14;12837:47;12720:171;:::o;12897:366::-;13039:3;13060:67;13124:2;13119:3;13060:67;:::i;:::-;13053:74;;13136:93;13225:3;13136:93;:::i;:::-;13254:2;13249:3;13245:12;13238:19;;12897:366;;;:::o;13269:419::-;13435:4;13473:2;13462:9;13458:18;13450:26;;13522:9;13516:4;13512:20;13508:1;13497:9;13493:17;13486:47;13550:131;13676:4;13550:131;:::i;:::-;13542:139;;13269:419;;;:::o;13694:97::-;13753:6;13781:3;13771:13;;13694:97;;;;:::o;13797:141::-;13846:4;13869:3;13861:11;;13892:3;13889:1;13882:14;13926:4;13923:1;13913:18;13905:26;;13797:141;;;:::o;13944:93::-;13981:6;14028:2;14023;14016:5;14012:14;14008:23;13998:33;;13944:93;;;:::o;14043:107::-;14087:8;14137:5;14131:4;14127:16;14106:37;;14043:107;;;;:::o;14156:393::-;14225:6;14275:1;14263:10;14259:18;14298:97;14328:66;14317:9;14298:97;:::i;:::-;14416:39;14446:8;14435:9;14416:39;:::i;:::-;14404:51;;14488:4;14484:9;14477:5;14473:21;14464:30;;14537:4;14527:8;14523:19;14516:5;14513:30;14503:40;;14232:317;;14156:393;;;;;:::o;14555:60::-;14583:3;14604:5;14597:12;;14555:60;;;:::o;14621:142::-;14671:9;14704:53;14722:34;14731:24;14749:5;14731:24;:::i;:::-;14722:34;:::i;:::-;14704:53;:::i;:::-;14691:66;;14621:142;;;:::o;14769:75::-;14812:3;14833:5;14826:12;;14769:75;;;:::o;14850:269::-;14960:39;14991:7;14960:39;:::i;:::-;15021:91;15070:41;15094:16;15070:41;:::i;:::-;15062:6;15055:4;15049:11;15021:91;:::i;:::-;15015:4;15008:105;14926:193;14850:269;;;:::o;15125:73::-;15170:3;15125:73;:::o;15204:189::-;15281:32;;:::i;:::-;15322:65;15380:6;15372;15366:4;15322:65;:::i;:::-;15257:136;15204:189;;:::o;15399:186::-;15459:120;15476:3;15469:5;15466:14;15459:120;;;15530:39;15567:1;15560:5;15530:39;:::i;:::-;15503:1;15496:5;15492:13;15483:22;;15459:120;;;15399:186;;:::o;15591:543::-;15692:2;15687:3;15684:11;15681:446;;;15726:38;15758:5;15726:38;:::i;:::-;15810:29;15828:10;15810:29;:::i;:::-;15800:8;15796:44;15993:2;15981:10;15978:18;15975:49;;;16014:8;15999:23;;15975:49;16037:80;16093:22;16111:3;16093:22;:::i;:::-;16083:8;16079:37;16066:11;16037:80;:::i;:::-;15696:431;;15681:446;15591:543;;;:::o;16140:117::-;16194:8;16244:5;16238:4;16234:16;16213:37;;16140:117;;;;:::o;16263:169::-;16307:6;16340:51;16388:1;16384:6;16376:5;16373:1;16369:13;16340:51;:::i;:::-;16336:56;16421:4;16415;16411:15;16401:25;;16314:118;16263:169;;;;:::o;16437:295::-;16513:4;16659:29;16684:3;16678:4;16659:29;:::i;:::-;16651:37;;16721:3;16718:1;16714:11;16708:4;16705:21;16697:29;;16437:295;;;;:::o;16737:1403::-;16861:44;16901:3;16896;16861:44;:::i;:::-;16970:18;16962:6;16959:30;16956:56;;;16992:18;;:::i;:::-;16956:56;17036:38;17068:4;17062:11;17036:38;:::i;:::-;17121:67;17181:6;17173;17167:4;17121:67;:::i;:::-;17215:1;17244:2;17236:6;17233:14;17261:1;17256:632;;;;17932:1;17949:6;17946:84;;;18005:9;18000:3;17996:19;17983:33;17974:42;;17946:84;18056:67;18116:6;18109:5;18056:67;:::i;:::-;18050:4;18043:81;17905:229;17226:908;;17256:632;17308:4;17304:9;17296:6;17292:22;17342:37;17374:4;17342:37;:::i;:::-;17401:1;17415:215;17429:7;17426:1;17423:14;17415:215;;;17515:9;17510:3;17506:19;17493:33;17485:6;17478:49;17566:1;17558:6;17554:14;17544:24;;17613:2;17602:9;17598:18;17585:31;;17452:4;17449:1;17445:12;17440:17;;17415:215;;;17658:6;17649:7;17646:19;17643:186;;;17723:9;17718:3;17714:19;17701:33;17766:48;17808:4;17800:6;17796:17;17785:9;17766:48;:::i;:::-;17758:6;17751:64;17666:163;17643:186;17875:1;17871;17863:6;17859:14;17855:22;17849:4;17842:36;17263:625;;;17226:908;;16836:1304;;;16737:1403;;;:::o;18146:181::-;18286:33;18282:1;18274:6;18270:14;18263:57;18146:181;:::o;18333:366::-;18475:3;18496:67;18560:2;18555:3;18496:67;:::i;:::-;18489:74;;18572:93;18661:3;18572:93;:::i;:::-;18690:2;18685:3;18681:12;18674:19;;18333:366;;;:::o;18705:419::-;18871:4;18909:2;18898:9;18894:18;18886:26;;18958:9;18952:4;18948:20;18944:1;18933:9;18929:17;18922:47;18986:131;19112:4;18986:131;:::i;:::-;18978:139;;18705:419;;;:::o;19130:148::-;19232:11;19269:3;19254:18;;19130:148;;;;:::o;19284:390::-;19390:3;19418:39;19451:5;19418:39;:::i;:::-;19473:89;19555:6;19550:3;19473:89;:::i;:::-;19466:96;;19571:65;19629:6;19624:3;19617:4;19610:5;19606:16;19571:65;:::i;:::-;19661:6;19656:3;19652:16;19645:23;;19394:280;19284:390;;;;:::o;19680:155::-;19820:7;19816:1;19808:6;19804:14;19797:31;19680:155;:::o;19841:400::-;20001:3;20022:84;20104:1;20099:3;20022:84;:::i;:::-;20015:91;;20115:93;20204:3;20115:93;:::i;:::-;20233:1;20228:3;20224:11;20217:18;;19841:400;;;:::o;20247:701::-;20528:3;20550:95;20641:3;20632:6;20550:95;:::i;:::-;20543:102;;20662:95;20753:3;20744:6;20662:95;:::i;:::-;20655:102;;20774:148;20918:3;20774:148;:::i;:::-;20767:155;;20939:3;20932:10;;20247:701;;;;;:::o;20978:874::-;21081:3;21118:5;21112:12;21147:36;21173:9;21147:36;:::i;:::-;21199:89;21281:6;21276:3;21199:89;:::i;:::-;21192:96;;21319:1;21308:9;21304:17;21335:1;21330:166;;;;21510:1;21505:341;;;;21297:549;;21330:166;21414:4;21410:9;21399;21395:25;21390:3;21383:38;21476:6;21469:14;21462:22;21454:6;21450:35;21445:3;21441:45;21434:52;;21330:166;;21505:341;21572:38;21604:5;21572:38;:::i;:::-;21632:1;21646:154;21660:6;21657:1;21654:13;21646:154;;;21734:7;21728:14;21724:1;21719:3;21715:11;21708:35;21784:1;21775:7;21771:15;21760:26;;21682:4;21679:1;21675:12;21670:17;;21646:154;;;21829:6;21824:3;21820:16;21813:23;;21512:334;;21297:549;;21085:767;;20978:874;;;;:::o;21858:269::-;21987:3;22009:92;22097:3;22088:6;22009:92;:::i;:::-;22002:99;;22118:3;22111:10;;21858:269;;;;:::o;22133:225::-;22273:34;22269:1;22261:6;22257:14;22250:58;22342:8;22337:2;22329:6;22325:15;22318:33;22133:225;:::o;22364:366::-;22506:3;22527:67;22591:2;22586:3;22527:67;:::i;:::-;22520:74;;22603:93;22692:3;22603:93;:::i;:::-;22721:2;22716:3;22712:12;22705:19;;22364:366;;;:::o;22736:419::-;22902:4;22940:2;22929:9;22925:18;22917:26;;22989:9;22983:4;22979:20;22975:1;22964:9;22960:17;22953:47;23017:131;23143:4;23017:131;:::i;:::-;23009:139;;22736:419;;;:::o;23161:182::-;23301:34;23297:1;23289:6;23285:14;23278:58;23161:182;:::o;23349:366::-;23491:3;23512:67;23576:2;23571:3;23512:67;:::i;:::-;23505:74;;23588:93;23677:3;23588:93;:::i;:::-;23706:2;23701:3;23697:12;23690:19;;23349:366;;;:::o;23721:419::-;23887:4;23925:2;23914:9;23910:18;23902:26;;23974:9;23968:4;23964:20;23960:1;23949:9;23945:17;23938:47;24002:131;24128:4;24002:131;:::i;:::-;23994:139;;23721:419;;;:::o;24146:181::-;24286:33;24282:1;24274:6;24270:14;24263:57;24146:181;:::o;24333:366::-;24475:3;24496:67;24560:2;24555:3;24496:67;:::i;:::-;24489:74;;24572:93;24661:3;24572:93;:::i;:::-;24690:2;24685:3;24681:12;24674:19;;24333:366;;;:::o;24705:419::-;24871:4;24909:2;24898:9;24894:18;24886:26;;24958:9;24952:4;24948:20;24944:1;24933:9;24929:17;24922:47;24986:131;25112:4;24986:131;:::i;:::-;24978:139;;24705:419;;;:::o;25130:172::-;25270:24;25266:1;25258:6;25254:14;25247:48;25130:172;:::o;25308:366::-;25450:3;25471:67;25535:2;25530:3;25471:67;:::i;:::-;25464:74;;25547:93;25636:3;25547:93;:::i;:::-;25665:2;25660:3;25656:12;25649:19;;25308:366;;;:::o;25680:419::-;25846:4;25884:2;25873:9;25869:18;25861:26;;25933:9;25927:4;25923:20;25919:1;25908:9;25904:17;25897:47;25961:131;26087:4;25961:131;:::i;:::-;25953:139;;25680:419;;;:::o;26105:194::-;26145:4;26165:20;26183:1;26165:20;:::i;:::-;26160:25;;26199:20;26217:1;26199:20;:::i;:::-;26194:25;;26243:1;26240;26236:9;26228:17;;26267:1;26261:4;26258:11;26255:37;;;26272:18;;:::i;:::-;26255:37;26105:194;;;;:::o;26305:410::-;26345:7;26368:20;26386:1;26368:20;:::i;:::-;26363:25;;26402:20;26420:1;26402:20;:::i;:::-;26397:25;;26457:1;26454;26450:9;26479:30;26497:11;26479:30;:::i;:::-;26468:41;;26658:1;26649:7;26645:15;26642:1;26639:22;26619:1;26612:9;26592:83;26569:139;;26688:18;;:::i;:::-;26569:139;26353:362;26305:410;;;;:::o;26721:173::-;26861:25;26857:1;26849:6;26845:14;26838:49;26721:173;:::o;26900:366::-;27042:3;27063:67;27127:2;27122:3;27063:67;:::i;:::-;27056:74;;27139:93;27228:3;27139:93;:::i;:::-;27257:2;27252:3;27248:12;27241:19;;26900:366;;;:::o;27272:419::-;27438:4;27476:2;27465:9;27461:18;27453:26;;27525:9;27519:4;27515:20;27511:1;27500:9;27496:17;27489:47;27553:131;27679:4;27553:131;:::i;:::-;27545:139;;27272:419;;;:::o;27697:98::-;27748:6;27782:5;27776:12;27766:22;;27697:98;;;:::o;27801:168::-;27884:11;27918:6;27913:3;27906:19;27958:4;27953:3;27949:14;27934:29;;27801:168;;;;:::o;27975:373::-;28061:3;28089:38;28121:5;28089:38;:::i;:::-;28143:70;28206:6;28201:3;28143:70;:::i;:::-;28136:77;;28222:65;28280:6;28275:3;28268:4;28261:5;28257:16;28222:65;:::i;:::-;28312:29;28334:6;28312:29;:::i;:::-;28307:3;28303:39;28296:46;;28065:283;27975:373;;;;:::o;28354:640::-;28549:4;28587:3;28576:9;28572:19;28564:27;;28601:71;28669:1;28658:9;28654:17;28645:6;28601:71;:::i;:::-;28682:72;28750:2;28739:9;28735:18;28726:6;28682:72;:::i;:::-;28764;28832:2;28821:9;28817:18;28808:6;28764:72;:::i;:::-;28883:9;28877:4;28873:20;28868:2;28857:9;28853:18;28846:48;28911:76;28982:4;28973:6;28911:76;:::i;:::-;28903:84;;28354:640;;;;;;;:::o;29000:141::-;29056:5;29087:6;29081:13;29072:22;;29103:32;29129:5;29103:32;:::i;:::-;29000:141;;;;:::o;29147:349::-;29216:6;29265:2;29253:9;29244:7;29240:23;29236:32;29233:119;;;29271:79;;:::i;:::-;29233:119;29391:1;29416:63;29471:7;29462:6;29451:9;29447:22;29416:63;:::i;:::-;29406:73;;29362:127;29147:349;;;;:::o;29502:180::-;29550:77;29547:1;29540:88;29647:4;29644:1;29637:15;29671:4;29668:1;29661:15;29688:164;29828:16;29824:1;29816:6;29812:14;29805:40;29688:164;:::o;29858:366::-;30000:3;30021:67;30085:2;30080:3;30021:67;:::i;:::-;30014:74;;30097:93;30186:3;30097:93;:::i;:::-;30215:2;30210:3;30206:12;30199:19;;29858:366;;;:::o;30230:419::-;30396:4;30434:2;30423:9;30419:18;30411:26;;30483:9;30477:4;30473:20;30469:1;30458:9;30454:17;30447:47;30511:131;30637:4;30511:131;:::i;:::-;30503:139;;30230:419;;;:::o

Swarm Source

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