ETH Price: $3,469.00 (-1.35%)
Gas: 3 Gwei

Token

Christmas Monster (CM)
 

Overview

Max Total Supply

333 CM

Holders

329

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CM
0x46960551fc7dc60ab28a2a94d332e3257fa409ea
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:
ChristmasMonster

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/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: https://github.com/chiru-labs/ERC721A/blob/main/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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken();
                    // 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, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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, '');
    }

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

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

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

    // =============================================================
    //                        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: NFT project/christmas toad/ChristmasMonster.sol


pragma solidity ^0.8.4;




contract ChristmasMonster is ERC721A, Ownable {
    using Strings for uint256;
    string public baseExtension = ".json";
    uint256 public OnceMintSOperation = 1;
    uint256 public MAX_SUPPLY = 333;
    uint256 public MAX_MINTS=1;
    uint256 public mintRate = 0 ether;
    bool public paused = true;


    string public baseURI = "ipfs://Qmb16UE9TUY2e8tEyTkTGz4y68LQyc7e65VqE3Xob6Whgn/";

    constructor() ERC721A("Christmas Monster", "CM") {}

    function mint(uint256 quantity) external payable {
        require(quantity <= OnceMintSOperation,"Exceeded the limit of once operation");
        require(!paused);
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

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

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

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OnceMintSOperation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200005192919062000271565b506001600a5561014d600b556001600c556000600d556001600e60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162002fcc60369139600f9080519060200190620000b392919062000271565b50348015620000c157600080fd5b506040518060400160405280601181526020017f4368726973746d6173204d6f6e737465720000000000000000000000000000008152506040518060400160405280600281526020017f434d00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014692919062000271565b5080600390805190602001906200015f92919062000271565b50620001706200019e60201b60201c565b6000819055505050620001986200018c620001a360201b60201c565b620001ab60201b60201c565b62000386565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027f9062000321565b90600052602060002090601f016020900481019282620002a35760008555620002ef565b82601f10620002be57805160ff1916838001178555620002ef565b82800160010185558215620002ef579182015b82811115620002ee578251825591602001919060010190620002d1565b5b509050620002fe919062000302565b5090565b5b808211156200031d57600081600090555060010162000303565b5090565b600060028204905060018216806200033a57607f821691505b6020821081141562000351576200035062000357565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c3680620003966000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063c66828621161008a578063cce132d111610064578063cce132d11461059a578063dbe2193f146105c5578063e985e9c5146105ee578063f2fde38b1461062b576101b7565b8063c668286214610507578063c87b56dd14610532578063ca0dcf161461056f576101b7565b806395d89b41116100c657806395d89b411461047b578063a0712d68146104a6578063a22cb465146104c2578063b88d4fde146104eb576101b7565b8063715018a61461040e57806385dbbafa146104255780638da5cb5b14610450576101b7565b806332cb6b0c116101595780635c975abb116101335780635c975abb1461033e5780636352211e146103695780636c0360eb146103a657806370a08231146103d1576101b7565b806332cb6b0c146102ed5780633ccfd60b1461031857806342842e0e14610322576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612220565b610654565b6040516101f09190612583565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906121f3565b6106e6565b005b34801561022e57600080fd5b5061023761070b565b604051610244919061259e565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f919061227a565b61079d565b604051610281919061251c565b60405180910390f35b6102a4600480360381019061029f91906121b3565b61081c565b005b3480156102b257600080fd5b506102bb61082c565b6040516102c891906126a0565b60405180910390f35b6102eb60048036038101906102e6919061209d565b610843565b005b3480156102f957600080fd5b50610302610b68565b60405161030f91906126a0565b60405180910390f35b610320610b6e565b005b61033c6004803603810190610337919061209d565b610bc6565b005b34801561034a57600080fd5b50610353610be6565b6040516103609190612583565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b919061227a565b610bf9565b60405161039d919061251c565b60405180910390f35b3480156103b257600080fd5b506103bb610c0b565b6040516103c8919061259e565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612030565b610c99565b60405161040591906126a0565b60405180910390f35b34801561041a57600080fd5b50610423610d52565b005b34801561043157600080fd5b5061043a610d66565b60405161044791906126a0565b60405180910390f35b34801561045c57600080fd5b50610465610d6c565b604051610472919061251c565b60405180910390f35b34801561048757600080fd5b50610490610d96565b60405161049d919061259e565b60405180910390f35b6104c060048036038101906104bb919061227a565b610e28565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612173565b610f93565b005b610505600480360381019061050091906120f0565b61109e565b005b34801561051357600080fd5b5061051c611111565b604051610529919061259e565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061227a565b61119f565b604051610566919061259e565b60405180910390f35b34801561057b57600080fd5b50610584611249565b60405161059191906126a0565b60405180910390f35b3480156105a657600080fd5b506105af61124f565b6040516105bc91906126a0565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e7919061227a565b611255565b005b3480156105fa57600080fd5b506106156004803603810190610610919061205d565b611267565b6040516106229190612583565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612030565b6112fb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106af57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106df5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106ee61137f565b80600e60006101000a81548160ff02191690831515021790555050565b60606002805461071a906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610746906128cf565b80156107935780601f1061076857610100808354040283529160200191610793565b820191906000526020600020905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b60006107a8826113fd565b6107de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108288282600161145c565b5050565b60006108366115a8565b6001546000540303905090565b600061084e826115ad565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108c1846116b2565b915091506108d781876108d26116d9565b6116e1565b610923576108ec866108e76116d9565b611267565b610922576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561098a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109978686866001611725565b80156109a257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a7085610a4c88888761172b565b7c020000000000000000000000000000000000000000000000000000000017611753565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610af8576000600185019050600060046000838152602001908152602001600020541415610af6576000548114610af5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b60868686600161177e565b505050505050565b600b5481565b610b7661137f565b610b7e610d6c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc3573d6000803e3d6000fd5b50565b610be18383836040518060200160405280600081525061109e565b505050565b600e60009054906101000a900460ff1681565b6000610c04826115ad565b9050919050565b600f8054610c18906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c44906128cf565b8015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d01576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d5a61137f565b610d646000611784565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610da5906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd1906128cf565b8015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b5050505050905090565b600a54811115610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490612600565b60405180910390fd5b600e60009054906101000a900460ff1615610e8757600080fd5b600c54610e933361184a565b82610e9e9190612769565b1115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed6906125e0565b60405180910390fd5b600b5481610eeb61082c565b610ef59190612769565b1115610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612620565b60405180910390fd5b80600d54610f4491906127bf565b341015610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90612680565b60405180910390fd5b610f9033826118a1565b50565b8060076000610fa06116d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661104d6116d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110929190612583565b60405180910390a35050565b6110a9848484610843565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461110b576110d4848484846118bf565b61110a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6009805461111e906128cf565b80601f016020809104026020016040519081016040528092919081815260200182805461114a906128cf565b80156111975780601f1061116c57610100808354040283529160200191611197565b820191906000526020600020905b81548152906001019060200180831161117a57829003601f168201915b505050505081565b60606111aa826113fd565b6111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612660565b60405180910390fd5b60006111f3611a1f565b905060008151116112135760405180602001604052806000815250611241565b8061121d84611ab1565b6009604051602001611231939291906124eb565b6040516020818303038152906040525b915050919050565b600d5481565b600c5481565b61125d61137f565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130361137f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906125c0565b60405180910390fd5b61137c81611784565b50565b611387611b89565b73ffffffffffffffffffffffffffffffffffffffff166113a5610d6c565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f290612640565b60405180910390fd5b565b6000816114086115a8565b11158015611417575060005482105b8015611455575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061146783610bf9565b905081156114f2578073ffffffffffffffffffffffffffffffffffffffff1661148e6116d9565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576114ba816114b56116d9565b611267565b6114f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b600090565b6000816115b86115a8565b1161167b576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561167a57600081141561167557600054821061163f576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081141561166b57611670565b6116ad565b611640565b6116ad565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611742868684611b91565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6118bb828260405180602001604052806000815250611b9a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118e56116d9565b8786866040518563ffffffff1660e01b81526004016119079493929190612537565b602060405180830381600087803b15801561192157600080fd5b505af192505050801561195257506040513d601f19601f8201168201806040525081019061194f919061224d565b60015b6119cc573d8060008114611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b506000815114156119c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611a2e906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5a906128cf565b8015611aa75780601f10611a7c57610100808354040283529160200191611aa7565b820191906000526020600020905b815481529060010190602001808311611a8a57829003601f168201915b5050505050905090565b606060006001611ac084611c37565b01905060008167ffffffffffffffff811115611adf57611ade6129bf565b5b6040519080825280601f01601f191660200182016040528015611b115781602001600182028036833780820191505090505b509050600082602001820190505b600115611b7e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b6857611b67612961565b5b0494506000851415611b7957611b7e565b611b1f565b819350505050919050565b600033905090565b60009392505050565b611ba48383611d8a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c3257600080549050600083820390505b611be460008683806001019450866118bf565b611c1a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bd1578160005414611c2f57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c95577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c8b57611c8a612961565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611cd2576d04ee2d6d415b85acef81000000008381611cc857611cc7612961565b5b0492506020810190505b662386f26fc100008310611d0157662386f26fc100008381611cf757611cf6612961565b5b0492506010810190505b6305f5e1008310611d2a576305f5e1008381611d2057611d1f612961565b5b0492506008810190505b6127108310611d4f576127108381611d4557611d44612961565b5b0492506004810190505b60648310611d725760648381611d6857611d67612961565b5b0492506002810190505b600a8310611d81576001810190505b80915050919050565b6000805490506000821415611dcb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd86000848385611725565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4f83611e40600086600061172b565b611e4985611f47565b17611753565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ef057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb5565b506000821415611f2c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f42600084838561177e565b505050565b60006001821460e11b9050919050565b6000611f6a611f65846126e0565b6126bb565b905082815260208101848484011115611f8657611f856129f3565b5b611f9184828561288d565b509392505050565b600081359050611fa881612ba4565b92915050565b600081359050611fbd81612bbb565b92915050565b600081359050611fd281612bd2565b92915050565b600081519050611fe781612bd2565b92915050565b600082601f830112612002576120016129ee565b5b8135612012848260208601611f57565b91505092915050565b60008135905061202a81612be9565b92915050565b600060208284031215612046576120456129fd565b5b600061205484828501611f99565b91505092915050565b60008060408385031215612074576120736129fd565b5b600061208285828601611f99565b925050602061209385828601611f99565b9150509250929050565b6000806000606084860312156120b6576120b56129fd565b5b60006120c486828701611f99565b93505060206120d586828701611f99565b92505060406120e68682870161201b565b9150509250925092565b6000806000806080858703121561210a576121096129fd565b5b600061211887828801611f99565b945050602061212987828801611f99565b935050604061213a8782880161201b565b925050606085013567ffffffffffffffff81111561215b5761215a6129f8565b5b61216787828801611fed565b91505092959194509250565b6000806040838503121561218a576121896129fd565b5b600061219885828601611f99565b92505060206121a985828601611fae565b9150509250929050565b600080604083850312156121ca576121c96129fd565b5b60006121d885828601611f99565b92505060206121e98582860161201b565b9150509250929050565b600060208284031215612209576122086129fd565b5b600061221784828501611fae565b91505092915050565b600060208284031215612236576122356129fd565b5b600061224484828501611fc3565b91505092915050565b600060208284031215612263576122626129fd565b5b600061227184828501611fd8565b91505092915050565b6000602082840312156122905761228f6129fd565b5b600061229e8482850161201b565b91505092915050565b6122b081612819565b82525050565b6122bf8161282b565b82525050565b60006122d082612726565b6122da818561273c565b93506122ea81856020860161289c565b6122f381612a02565b840191505092915050565b600061230982612731565b612313818561274d565b935061232381856020860161289c565b61232c81612a02565b840191505092915050565b600061234282612731565b61234c818561275e565b935061235c81856020860161289c565b80840191505092915050565b60008154612375816128cf565b61237f818661275e565b9450600182166000811461239a57600181146123ab576123de565b60ff198316865281860193506123de565b6123b485612711565b60005b838110156123d6578154818901526001820191506020810190506123b7565b838801955050505b50505092915050565b60006123f460268361274d565b91506123ff82612a13565b604082019050919050565b600061241760128361274d565b915061242282612a62565b602082019050919050565b600061243a60248361274d565b915061244582612a8b565b604082019050919050565b600061245d60168361274d565b915061246882612ada565b602082019050919050565b600061248060208361274d565b915061248b82612b03565b602082019050919050565b60006124a3602f8361274d565b91506124ae82612b2c565b604082019050919050565b60006124c660158361274d565b91506124d182612b7b565b602082019050919050565b6124e581612883565b82525050565b60006124f78286612337565b91506125038285612337565b915061250f8284612368565b9150819050949350505050565b600060208201905061253160008301846122a7565b92915050565b600060808201905061254c60008301876122a7565b61255960208301866122a7565b61256660408301856124dc565b818103606083015261257881846122c5565b905095945050505050565b600060208201905061259860008301846122b6565b92915050565b600060208201905081810360008301526125b881846122fe565b905092915050565b600060208201905081810360008301526125d9816123e7565b9050919050565b600060208201905081810360008301526125f98161240a565b9050919050565b600060208201905081810360008301526126198161242d565b9050919050565b6000602082019050818103600083015261263981612450565b9050919050565b6000602082019050818103600083015261265981612473565b9050919050565b6000602082019050818103600083015261267981612496565b9050919050565b60006020820190508181036000830152612699816124b9565b9050919050565b60006020820190506126b560008301846124dc565b92915050565b60006126c56126d6565b90506126d18282612901565b919050565b6000604051905090565b600067ffffffffffffffff8211156126fb576126fa6129bf565b5b61270482612a02565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061277482612883565b915061277f83612883565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127b4576127b3612932565b5b828201905092915050565b60006127ca82612883565b91506127d583612883565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561280e5761280d612932565b5b828202905092915050565b600061282482612863565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128ba57808201518184015260208101905061289f565b838111156128c9576000848401525b50505050565b600060028204905060018216806128e757607f821691505b602082108114156128fb576128fa612990565b5b50919050565b61290a82612a02565b810181811067ffffffffffffffff82111715612929576129286129bf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f457863656564656420746865206c696d6974206f66206f6e6365206f7065726160008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612bad81612819565b8114612bb857600080fd5b50565b612bc48161282b565b8114612bcf57600080fd5b50565b612bdb81612837565b8114612be657600080fd5b50565b612bf281612883565b8114612bfd57600080fd5b5056fea26469706673582212205daaea4b0be0236c0047b9a7e2a37f29313f5d3ffb96e7573c0919d45f0c971f64736f6c63430008070033697066733a2f2f516d623136554539545559326538744579546b54477a347936384c5179633765363556714533586f62365768676e2f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063c66828621161008a578063cce132d111610064578063cce132d11461059a578063dbe2193f146105c5578063e985e9c5146105ee578063f2fde38b1461062b576101b7565b8063c668286214610507578063c87b56dd14610532578063ca0dcf161461056f576101b7565b806395d89b41116100c657806395d89b411461047b578063a0712d68146104a6578063a22cb465146104c2578063b88d4fde146104eb576101b7565b8063715018a61461040e57806385dbbafa146104255780638da5cb5b14610450576101b7565b806332cb6b0c116101595780635c975abb116101335780635c975abb1461033e5780636352211e146103695780636c0360eb146103a657806370a08231146103d1576101b7565b806332cb6b0c146102ed5780633ccfd60b1461031857806342842e0e14610322576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612220565b610654565b6040516101f09190612583565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906121f3565b6106e6565b005b34801561022e57600080fd5b5061023761070b565b604051610244919061259e565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f919061227a565b61079d565b604051610281919061251c565b60405180910390f35b6102a4600480360381019061029f91906121b3565b61081c565b005b3480156102b257600080fd5b506102bb61082c565b6040516102c891906126a0565b60405180910390f35b6102eb60048036038101906102e6919061209d565b610843565b005b3480156102f957600080fd5b50610302610b68565b60405161030f91906126a0565b60405180910390f35b610320610b6e565b005b61033c6004803603810190610337919061209d565b610bc6565b005b34801561034a57600080fd5b50610353610be6565b6040516103609190612583565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b919061227a565b610bf9565b60405161039d919061251c565b60405180910390f35b3480156103b257600080fd5b506103bb610c0b565b6040516103c8919061259e565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612030565b610c99565b60405161040591906126a0565b60405180910390f35b34801561041a57600080fd5b50610423610d52565b005b34801561043157600080fd5b5061043a610d66565b60405161044791906126a0565b60405180910390f35b34801561045c57600080fd5b50610465610d6c565b604051610472919061251c565b60405180910390f35b34801561048757600080fd5b50610490610d96565b60405161049d919061259e565b60405180910390f35b6104c060048036038101906104bb919061227a565b610e28565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612173565b610f93565b005b610505600480360381019061050091906120f0565b61109e565b005b34801561051357600080fd5b5061051c611111565b604051610529919061259e565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061227a565b61119f565b604051610566919061259e565b60405180910390f35b34801561057b57600080fd5b50610584611249565b60405161059191906126a0565b60405180910390f35b3480156105a657600080fd5b506105af61124f565b6040516105bc91906126a0565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e7919061227a565b611255565b005b3480156105fa57600080fd5b506106156004803603810190610610919061205d565b611267565b6040516106229190612583565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612030565b6112fb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106af57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106df5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106ee61137f565b80600e60006101000a81548160ff02191690831515021790555050565b60606002805461071a906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610746906128cf565b80156107935780601f1061076857610100808354040283529160200191610793565b820191906000526020600020905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b60006107a8826113fd565b6107de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108288282600161145c565b5050565b60006108366115a8565b6001546000540303905090565b600061084e826115ad565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108c1846116b2565b915091506108d781876108d26116d9565b6116e1565b610923576108ec866108e76116d9565b611267565b610922576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561098a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109978686866001611725565b80156109a257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a7085610a4c88888761172b565b7c020000000000000000000000000000000000000000000000000000000017611753565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610af8576000600185019050600060046000838152602001908152602001600020541415610af6576000548114610af5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b60868686600161177e565b505050505050565b600b5481565b610b7661137f565b610b7e610d6c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc3573d6000803e3d6000fd5b50565b610be18383836040518060200160405280600081525061109e565b505050565b600e60009054906101000a900460ff1681565b6000610c04826115ad565b9050919050565b600f8054610c18906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c44906128cf565b8015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d01576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d5a61137f565b610d646000611784565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610da5906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd1906128cf565b8015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b5050505050905090565b600a54811115610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490612600565b60405180910390fd5b600e60009054906101000a900460ff1615610e8757600080fd5b600c54610e933361184a565b82610e9e9190612769565b1115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed6906125e0565b60405180910390fd5b600b5481610eeb61082c565b610ef59190612769565b1115610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612620565b60405180910390fd5b80600d54610f4491906127bf565b341015610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90612680565b60405180910390fd5b610f9033826118a1565b50565b8060076000610fa06116d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661104d6116d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110929190612583565b60405180910390a35050565b6110a9848484610843565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461110b576110d4848484846118bf565b61110a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6009805461111e906128cf565b80601f016020809104026020016040519081016040528092919081815260200182805461114a906128cf565b80156111975780601f1061116c57610100808354040283529160200191611197565b820191906000526020600020905b81548152906001019060200180831161117a57829003601f168201915b505050505081565b60606111aa826113fd565b6111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612660565b60405180910390fd5b60006111f3611a1f565b905060008151116112135760405180602001604052806000815250611241565b8061121d84611ab1565b6009604051602001611231939291906124eb565b6040516020818303038152906040525b915050919050565b600d5481565b600c5481565b61125d61137f565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130361137f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906125c0565b60405180910390fd5b61137c81611784565b50565b611387611b89565b73ffffffffffffffffffffffffffffffffffffffff166113a5610d6c565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f290612640565b60405180910390fd5b565b6000816114086115a8565b11158015611417575060005482105b8015611455575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061146783610bf9565b905081156114f2578073ffffffffffffffffffffffffffffffffffffffff1661148e6116d9565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576114ba816114b56116d9565b611267565b6114f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b600090565b6000816115b86115a8565b1161167b576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561167a57600081141561167557600054821061163f576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081141561166b57611670565b6116ad565b611640565b6116ad565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611742868684611b91565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6118bb828260405180602001604052806000815250611b9a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118e56116d9565b8786866040518563ffffffff1660e01b81526004016119079493929190612537565b602060405180830381600087803b15801561192157600080fd5b505af192505050801561195257506040513d601f19601f8201168201806040525081019061194f919061224d565b60015b6119cc573d8060008114611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b506000815114156119c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611a2e906128cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5a906128cf565b8015611aa75780601f10611a7c57610100808354040283529160200191611aa7565b820191906000526020600020905b815481529060010190602001808311611a8a57829003601f168201915b5050505050905090565b606060006001611ac084611c37565b01905060008167ffffffffffffffff811115611adf57611ade6129bf565b5b6040519080825280601f01601f191660200182016040528015611b115781602001600182028036833780820191505090505b509050600082602001820190505b600115611b7e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b6857611b67612961565b5b0494506000851415611b7957611b7e565b611b1f565b819350505050919050565b600033905090565b60009392505050565b611ba48383611d8a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c3257600080549050600083820390505b611be460008683806001019450866118bf565b611c1a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bd1578160005414611c2f57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c95577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c8b57611c8a612961565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611cd2576d04ee2d6d415b85acef81000000008381611cc857611cc7612961565b5b0492506020810190505b662386f26fc100008310611d0157662386f26fc100008381611cf757611cf6612961565b5b0492506010810190505b6305f5e1008310611d2a576305f5e1008381611d2057611d1f612961565b5b0492506008810190505b6127108310611d4f576127108381611d4557611d44612961565b5b0492506004810190505b60648310611d725760648381611d6857611d67612961565b5b0492506002810190505b600a8310611d81576001810190505b80915050919050565b6000805490506000821415611dcb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd86000848385611725565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4f83611e40600086600061172b565b611e4985611f47565b17611753565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ef057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb5565b506000821415611f2c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f42600084838561177e565b505050565b60006001821460e11b9050919050565b6000611f6a611f65846126e0565b6126bb565b905082815260208101848484011115611f8657611f856129f3565b5b611f9184828561288d565b509392505050565b600081359050611fa881612ba4565b92915050565b600081359050611fbd81612bbb565b92915050565b600081359050611fd281612bd2565b92915050565b600081519050611fe781612bd2565b92915050565b600082601f830112612002576120016129ee565b5b8135612012848260208601611f57565b91505092915050565b60008135905061202a81612be9565b92915050565b600060208284031215612046576120456129fd565b5b600061205484828501611f99565b91505092915050565b60008060408385031215612074576120736129fd565b5b600061208285828601611f99565b925050602061209385828601611f99565b9150509250929050565b6000806000606084860312156120b6576120b56129fd565b5b60006120c486828701611f99565b93505060206120d586828701611f99565b92505060406120e68682870161201b565b9150509250925092565b6000806000806080858703121561210a576121096129fd565b5b600061211887828801611f99565b945050602061212987828801611f99565b935050604061213a8782880161201b565b925050606085013567ffffffffffffffff81111561215b5761215a6129f8565b5b61216787828801611fed565b91505092959194509250565b6000806040838503121561218a576121896129fd565b5b600061219885828601611f99565b92505060206121a985828601611fae565b9150509250929050565b600080604083850312156121ca576121c96129fd565b5b60006121d885828601611f99565b92505060206121e98582860161201b565b9150509250929050565b600060208284031215612209576122086129fd565b5b600061221784828501611fae565b91505092915050565b600060208284031215612236576122356129fd565b5b600061224484828501611fc3565b91505092915050565b600060208284031215612263576122626129fd565b5b600061227184828501611fd8565b91505092915050565b6000602082840312156122905761228f6129fd565b5b600061229e8482850161201b565b91505092915050565b6122b081612819565b82525050565b6122bf8161282b565b82525050565b60006122d082612726565b6122da818561273c565b93506122ea81856020860161289c565b6122f381612a02565b840191505092915050565b600061230982612731565b612313818561274d565b935061232381856020860161289c565b61232c81612a02565b840191505092915050565b600061234282612731565b61234c818561275e565b935061235c81856020860161289c565b80840191505092915050565b60008154612375816128cf565b61237f818661275e565b9450600182166000811461239a57600181146123ab576123de565b60ff198316865281860193506123de565b6123b485612711565b60005b838110156123d6578154818901526001820191506020810190506123b7565b838801955050505b50505092915050565b60006123f460268361274d565b91506123ff82612a13565b604082019050919050565b600061241760128361274d565b915061242282612a62565b602082019050919050565b600061243a60248361274d565b915061244582612a8b565b604082019050919050565b600061245d60168361274d565b915061246882612ada565b602082019050919050565b600061248060208361274d565b915061248b82612b03565b602082019050919050565b60006124a3602f8361274d565b91506124ae82612b2c565b604082019050919050565b60006124c660158361274d565b91506124d182612b7b565b602082019050919050565b6124e581612883565b82525050565b60006124f78286612337565b91506125038285612337565b915061250f8284612368565b9150819050949350505050565b600060208201905061253160008301846122a7565b92915050565b600060808201905061254c60008301876122a7565b61255960208301866122a7565b61256660408301856124dc565b818103606083015261257881846122c5565b905095945050505050565b600060208201905061259860008301846122b6565b92915050565b600060208201905081810360008301526125b881846122fe565b905092915050565b600060208201905081810360008301526125d9816123e7565b9050919050565b600060208201905081810360008301526125f98161240a565b9050919050565b600060208201905081810360008301526126198161242d565b9050919050565b6000602082019050818103600083015261263981612450565b9050919050565b6000602082019050818103600083015261265981612473565b9050919050565b6000602082019050818103600083015261267981612496565b9050919050565b60006020820190508181036000830152612699816124b9565b9050919050565b60006020820190506126b560008301846124dc565b92915050565b60006126c56126d6565b90506126d18282612901565b919050565b6000604051905090565b600067ffffffffffffffff8211156126fb576126fa6129bf565b5b61270482612a02565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061277482612883565b915061277f83612883565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127b4576127b3612932565b5b828201905092915050565b60006127ca82612883565b91506127d583612883565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561280e5761280d612932565b5b828202905092915050565b600061282482612863565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128ba57808201518184015260208101905061289f565b838111156128c9576000848401525b50505050565b600060028204905060018216806128e757607f821691505b602082108114156128fb576128fa612990565b5b50919050565b61290a82612a02565b810181811067ffffffffffffffff82111715612929576129286129bf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f457863656564656420746865206c696d6974206f66206f6e6365206f7065726160008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612bad81612819565b8114612bb857600080fd5b50565b612bc48161282b565b8114612bcf57600080fd5b50565b612bdb81612837565b8114612be657600080fd5b50565b612bf281612883565b8114612bfd57600080fd5b5056fea26469706673582212205daaea4b0be0236c0047b9a7e2a37f29313f5d3ffb96e7573c0919d45f0c971f64736f6c63430008070033

Deployed Bytecode Sourcemap

71642:1880:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37309:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73444:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38211:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44611:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44328:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33962:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48250:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71815:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73110:114;;;:::i;:::-;;51171:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71926:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39604:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71962:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35146:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18008:103;;;;;;;;;;;;;:::i;:::-;;71771:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17360:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38387:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72110:549;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45169:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51962:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71727:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72667:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71886:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71853:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73340:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45560:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18266:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37309:639;37394:4;37733:10;37718:25;;:11;:25;;;;:102;;;;37810:10;37795:25;;:11;:25;;;;37718:102;:179;;;;37887:10;37872:25;;:11;:25;;;;37718:179;37698:199;;37309:639;;;:::o;73444:75::-;17246:13;:11;:13::i;:::-;73505:6:::1;73496;;:15;;;;;;;;;;;;;;;;;;73444:75:::0;:::o;38211:100::-;38265:13;38298:5;38291:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38211:100;:::o;44611:218::-;44687:7;44712:16;44720:7;44712;:16::i;:::-;44707:64;;44737:34;;;;;;;;;;;;;;44707:64;44791:15;:24;44807:7;44791:24;;;;;;;;;;;:30;;;;;;;;;;;;44784:37;;44611:218;;;:::o;44328:124::-;44417:27;44426:2;44430:7;44439:4;44417:8;:27::i;:::-;44328:124;;:::o;33962:323::-;34023:7;34251:15;:13;:15::i;:::-;34236:12;;34220:13;;:28;:46;34213:53;;33962:323;:::o;48250:2825::-;48392:27;48422;48441:7;48422:18;:27::i;:::-;48392:57;;48507:4;48466:45;;48482:19;48466:45;;;48462:86;;48520:28;;;;;;;;;;;;;;48462:86;48562:27;48591:23;48618:35;48645:7;48618:26;:35::i;:::-;48561:92;;;;48753:68;48778:15;48795:4;48801:19;:17;:19::i;:::-;48753:24;:68::i;:::-;48748:180;;48841:43;48858:4;48864:19;:17;:19::i;:::-;48841:16;:43::i;:::-;48836:92;;48893:35;;;;;;;;;;;;;;48836:92;48748:180;48959:1;48945:16;;:2;:16;;;48941:52;;;48970:23;;;;;;;;;;;;;;48941:52;49006:43;49028:4;49034:2;49038:7;49047:1;49006:21;:43::i;:::-;49142:15;49139:160;;;49282:1;49261:19;49254:30;49139:160;49679:18;:24;49698:4;49679:24;;;;;;;;;;;;;;;;49677:26;;;;;;;;;;;;49748:18;:22;49767:2;49748:22;;;;;;;;;;;;;;;;49746:24;;;;;;;;;;;50070:146;50107:2;50156:45;50171:4;50177:2;50181:19;50156:14;:45::i;:::-;30361:8;50128:73;50070:18;:146::i;:::-;50041:17;:26;50059:7;50041:26;;;;;;;;;;;:175;;;;50387:1;30361:8;50336:19;:47;:52;50332:627;;;50409:19;50441:1;50431:7;:11;50409:33;;50598:1;50564:17;:30;50582:11;50564:30;;;;;;;;;;;;:35;50560:384;;;50702:13;;50687:11;:28;50683:242;;50882:19;50849:17;:30;50867:11;50849:30;;;;;;;;;;;:52;;;;50683:242;50560:384;50390:569;50332:627;51006:7;51002:2;50987:27;;50996:4;50987:27;;;;;;;;;;;;51025:42;51046:4;51052:2;51056:7;51065:1;51025:20;:42::i;:::-;48381:2694;;;48250:2825;;;:::o;71815:31::-;;;;:::o;73110:114::-;17246:13;:11;:13::i;:::-;73176:7:::1;:5;:7::i;:::-;73168:25;;:48;73194:21;73168:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73110:114::o:0;51171:193::-;51317:39;51334:4;51340:2;51344:7;51317:39;;;;;;;;;;;;:16;:39::i;:::-;51171:193;;;:::o;71926:25::-;;;;;;;;;;;;;:::o;39604:152::-;39676:7;39719:27;39738:7;39719:18;:27::i;:::-;39696:52;;39604:152;;;:::o;71962:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35146:233::-;35218:7;35259:1;35242:19;;:5;:19;;;35238:60;;;35270:28;;;;;;;;;;;;;;35238:60;29305:13;35316:18;:25;35335:5;35316:25;;;;;;;;;;;;;;;;:55;35309:62;;35146:233;;;:::o;18008:103::-;17246:13;:11;:13::i;:::-;18073:30:::1;18100:1;18073:18;:30::i;:::-;18008:103::o:0;71771:37::-;;;;:::o;17360:87::-;17406:7;17433:6;;;;;;;;;;;17426:13;;17360:87;:::o;38387:104::-;38443:13;38476:7;38469:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38387:104;:::o;72110:549::-;72190:18;;72178:8;:30;;72170:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;72268:6;;;;;;;;;;;72267:7;72259:16;;;;;;72414:9;;72385:25;72399:10;72385:13;:25::i;:::-;72374:8;:36;;;;:::i;:::-;:49;;72366:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;72493:10;;72481:8;72465:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;72457:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;72574:8;72563;;:19;;;;:::i;:::-;72549:9;:34;;72541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72620:31;72630:10;72642:8;72620:9;:31::i;:::-;72110:549;:::o;45169:234::-;45316:8;45264:18;:39;45283:19;:17;:19::i;:::-;45264:39;;;;;;;;;;;;;;;:49;45304:8;45264:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45376:8;45340:55;;45355:19;:17;:19::i;:::-;45340:55;;;45386:8;45340:55;;;;;;:::i;:::-;;;;;;;;45169:234;;:::o;51962:407::-;52137:31;52150:4;52156:2;52160:7;52137:12;:31::i;:::-;52201:1;52183:2;:14;;;:19;52179:183;;52222:56;52253:4;52259:2;52263:7;52272:5;52222:30;:56::i;:::-;52217:145;;52306:40;;;;;;;;;;;;;;52217:145;52179:183;51962:407;;;;:::o;71727:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72667:435::-;72765:13;72806:16;72814:7;72806;:16::i;:::-;72790:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;72908:28;72939:10;:8;:10::i;:::-;72908:41;;72994:1;72969:14;72963:28;:32;:133;;;;;;;;;;;;;;;;;73031:14;73047:18;:7;:16;:18::i;:::-;73067:13;73014:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72963:133;72956:140;;;72667:435;;;:::o;71886:33::-;;;;:::o;71853:26::-;;;;:::o;73340:96::-;17246:13;:11;:13::i;:::-;73419:9:::1;73408:8;:20;;;;73340:96:::0;:::o;45560:164::-;45657:4;45681:18;:25;45700:5;45681:25;;;;;;;;;;;;;;;:35;45707:8;45681:35;;;;;;;;;;;;;;;;;;;;;;;;;45674:42;;45560:164;;;;:::o;18266:201::-;17246:13;:11;:13::i;:::-;18375:1:::1;18355:22;;:8;:22;;;;18347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18431:28;18450:8;18431:18;:28::i;:::-;18266:201:::0;:::o;17525:132::-;17600:12;:10;:12::i;:::-;17589:23;;:7;:5;:7::i;:::-;:23;;;17581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17525:132::o;45982:282::-;46047:4;46103:7;46084:15;:13;:15::i;:::-;:26;;:66;;;;;46137:13;;46127:7;:23;46084:66;:153;;;;;46236:1;30081:8;46188:17;:26;46206:7;46188:26;;;;;;;;;;;;:44;:49;46084:153;46064:173;;45982:282;;;:::o;63040:492::-;63169:13;63185:16;63193:7;63185;:16::i;:::-;63169:32;;63218:13;63214:219;;;63273:5;63250:28;;:19;:17;:19::i;:::-;:28;;;63246:187;;63302:44;63319:5;63326:19;:17;:19::i;:::-;63302:16;:44::i;:::-;63297:136;;63378:35;;;;;;;;;;;;;;63297:136;63246:187;63214:219;63478:2;63445:15;:24;63461:7;63445:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;63516:7;63512:2;63496:28;;63505:5;63496:28;;;;;;;;;;;;63158:374;63040:492;;;:::o;33478:92::-;33534:7;33478:92;:::o;40759:1712::-;40826:14;40876:7;40857:15;:13;:15::i;:::-;:26;40853:1562;;40909:17;:26;40927:7;40909:26;;;;;;;;;;;;40900:35;;41013:1;30081:8;40985:6;:24;:29;40981:1423;;;41134:1;41124:6;:11;41120:981;;;41175:13;;41164:7;:24;41160:68;;41197:31;;;;;;;;;;;;;;41160:68;41825:257;41911:17;:28;41929:9;;;;;;;41911:28;;;;;;;;;;;;41902:37;;42007:1;41997:6;:11;41993:25;;;42010:8;;41993:25;42045:13;;41825:257;;;41120:981;42375:13;;40981:1423;40853:1562;42432:31;;;;;;;;;;;;;;40759:1712;;;;:::o;47145:485::-;47247:27;47276:23;47317:38;47358:15;:24;47374:7;47358:24;;;;;;;;;;;47317:65;;47535:18;47512:41;;47592:19;47586:26;47567:45;;47497:126;47145:485;;;:::o;69588:105::-;69648:7;69675:10;69668:17;;69588:105;:::o;46373:659::-;46522:11;46687:16;46680:5;46676:28;46667:37;;46847:16;46836:9;46832:32;46819:45;;46997:15;46986:9;46983:30;46975:5;46964:9;46961:20;46958:56;46948:66;;46373:659;;;;;:::o;53031:159::-;;;;;:::o;68897:311::-;69032:7;69052:16;30485:3;69078:19;:41;;69052:68;;30485:3;69146:31;69157:4;69163:2;69167:9;69146:10;:31::i;:::-;69138:40;;:62;;69131:69;;;68897:311;;;;;:::o;43019:450::-;43099:14;43267:16;43260:5;43256:28;43247:37;;43444:5;43430:11;43405:23;43401:41;43398:52;43391:5;43388:63;43378:73;;43019:450;;;;:::o;53855:158::-;;;;;:::o;18627:191::-;18701:16;18720:6;;;;;;;;;;;18701:25;;18746:8;18737:6;;:17;;;;;;;;;;;;;;;;;;18801:8;18770:40;;18791:8;18770:40;;;;;;;;;;;;18690:128;18627:191;:::o;35461:178::-;35522:7;29305:13;29443:2;35550:18;:25;35569:5;35550:25;;;;;;;;;;;;;;;;:50;;35549:82;35542:89;;35461:178;;;:::o;62122:112::-;62199:27;62209:2;62213:8;62199:27;;;;;;;;;;;;:9;:27::i;:::-;62122:112;;:::o;54453:716::-;54616:4;54662:2;54637:45;;;54683:19;:17;:19::i;:::-;54704:4;54710:7;54719:5;54637:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54633:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54937:1;54920:6;:13;:18;54916:235;;;54966:40;;;;;;;;;;;;;;54916:235;55109:6;55103:13;55094:6;55090:2;55086:15;55079:38;54633:529;54806:54;;;54796:64;;;:6;:64;;;;54789:71;;;54453:716;;;;;;:::o;73232:100::-;73284:13;73317:7;73310:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73232:100;:::o;13338:716::-;13394:13;13445:14;13482:1;13462:17;13473:5;13462:10;:17::i;:::-;:21;13445:38;;13498:20;13532:6;13521:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13498:41;;13554:11;13683:6;13679:2;13675:15;13667:6;13663:28;13656:35;;13720:288;13727:4;13720:288;;;13752:5;;;;;;;;13894:8;13889:2;13882:5;13878:14;13873:30;13868:3;13860:44;13950:2;13941:11;;;;;;:::i;:::-;;;;;13984:1;13975:5;:10;13971:21;;;13987:5;;13971:21;13720:288;;;14029:6;14022:13;;;;;13338:716;;;:::o;15911:98::-;15964:7;15991:10;15984:17;;15911:98;:::o;68598:147::-;68735:6;68598:147;;;;;:::o;61349:689::-;61480:19;61486:2;61490:8;61480:5;:19::i;:::-;61559:1;61541:2;:14;;;:19;61537:483;;61581:11;61595:13;;61581:27;;61627:13;61649:8;61643:3;:14;61627:30;;61676:233;61707:62;61746:1;61750:2;61754:7;;;;;;61763:5;61707:30;:62::i;:::-;61702:167;;61805:40;;;;;;;;;;;;;;61702:167;61904:3;61896:5;:11;61676:233;;61991:3;61974:13;;:20;61970:34;;61996:8;;;61970:34;61562:458;;61537:483;61349:689;;;:::o;10204:922::-;10257:7;10277:14;10294:1;10277:18;;10344:6;10335:5;:15;10331:102;;10380:6;10371:15;;;;;;:::i;:::-;;;;;10415:2;10405:12;;;;10331:102;10460:6;10451:5;:15;10447:102;;10496:6;10487:15;;;;;;:::i;:::-;;;;;10531:2;10521:12;;;;10447:102;10576:6;10567:5;:15;10563:102;;10612:6;10603:15;;;;;;:::i;:::-;;;;;10647:2;10637:12;;;;10563:102;10692:5;10683;:14;10679:99;;10727:5;10718:14;;;;;;:::i;:::-;;;;;10761:1;10751:11;;;;10679:99;10805:5;10796;:14;10792:99;;10840:5;10831:14;;;;;;:::i;:::-;;;;;10874:1;10864:11;;;;10792:99;10918:5;10909;:14;10905:99;;10953:5;10944:14;;;;;;:::i;:::-;;;;;10987:1;10977:11;;;;10905:99;11031:5;11022;:14;11018:66;;11067:1;11057:11;;;;11018:66;11112:6;11105:13;;;10204:922;;;:::o;55631:2966::-;55704:20;55727:13;;55704:36;;55767:1;55755:8;:13;55751:44;;;55777:18;;;;;;;;;;;;;;55751:44;55808:61;55838:1;55842:2;55846:12;55860:8;55808:21;:61::i;:::-;56352:1;29443:2;56322:1;:26;;56321:32;56309:8;:45;56283:18;:22;56302:2;56283:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56631:139;56668:2;56722:33;56745:1;56749:2;56753:1;56722:14;:33::i;:::-;56689:30;56710:8;56689:20;:30::i;:::-;:66;56631:18;:139::i;:::-;56597:17;:31;56615:12;56597:31;;;;;;;;;;;:173;;;;56787:16;56818:11;56847:8;56832:12;:23;56818:37;;57368:16;57364:2;57360:25;57348:37;;57740:12;57700:8;57659:1;57597:25;57538:1;57477;57450:335;58111:1;58097:12;58093:20;58051:346;58152:3;58143:7;58140:16;58051:346;;58370:7;58360:8;58357:1;58330:25;58327:1;58324;58319:59;58205:1;58196:7;58192:15;58181:26;;58051:346;;;58055:77;58442:1;58430:8;:13;58426:45;;;58452:19;;;;;;;;;;;;;;58426:45;58504:3;58488:13;:19;;;;56057:2462;;58529:60;58558:1;58562:2;58566:12;58580:8;58529:20;:60::i;:::-;55693:2904;55631:2966;;:::o;43571:324::-;43641:14;43874:1;43864:8;43861:15;43835:24;43831:46;43821:56;;43571:324;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:323::-;4898:6;4947:2;4935:9;4926:7;4922:23;4918:32;4915:119;;;4953:79;;:::i;:::-;4915:119;5073:1;5098:50;5140:7;5131:6;5120:9;5116:22;5098:50;:::i;:::-;5088:60;;5044:114;4842:323;;;;:::o;5171:327::-;5229:6;5278:2;5266:9;5257:7;5253:23;5249:32;5246:119;;;5284:79;;:::i;:::-;5246:119;5404:1;5429:52;5473:7;5464:6;5453:9;5449:22;5429:52;:::i;:::-;5419:62;;5375:116;5171:327;;;;:::o;5504:349::-;5573:6;5622:2;5610:9;5601:7;5597:23;5593:32;5590:119;;;5628:79;;:::i;:::-;5590:119;5748:1;5773:63;5828:7;5819:6;5808:9;5804:22;5773:63;:::i;:::-;5763:73;;5719:127;5504:349;;;;:::o;5859:329::-;5918:6;5967:2;5955:9;5946:7;5942:23;5938:32;5935:119;;;5973:79;;:::i;:::-;5935:119;6093:1;6118:53;6163:7;6154:6;6143:9;6139:22;6118:53;:::i;:::-;6108:63;;6064:117;5859:329;;;;:::o;6194:118::-;6281:24;6299:5;6281:24;:::i;:::-;6276:3;6269:37;6194:118;;:::o;6318:109::-;6399:21;6414:5;6399:21;:::i;:::-;6394:3;6387:34;6318:109;;:::o;6433:360::-;6519:3;6547:38;6579:5;6547:38;:::i;:::-;6601:70;6664:6;6659:3;6601:70;:::i;:::-;6594:77;;6680:52;6725:6;6720:3;6713:4;6706:5;6702:16;6680:52;:::i;:::-;6757:29;6779:6;6757:29;:::i;:::-;6752:3;6748:39;6741:46;;6523:270;6433:360;;;;:::o;6799:364::-;6887:3;6915:39;6948:5;6915:39;:::i;:::-;6970:71;7034:6;7029:3;6970:71;:::i;:::-;6963:78;;7050:52;7095:6;7090:3;7083:4;7076:5;7072:16;7050:52;:::i;:::-;7127:29;7149:6;7127:29;:::i;:::-;7122:3;7118:39;7111:46;;6891:272;6799:364;;;;:::o;7169:377::-;7275:3;7303:39;7336:5;7303:39;:::i;:::-;7358:89;7440:6;7435:3;7358:89;:::i;:::-;7351:96;;7456:52;7501:6;7496:3;7489:4;7482:5;7478:16;7456:52;:::i;:::-;7533:6;7528:3;7524:16;7517:23;;7279:267;7169:377;;;;:::o;7576:845::-;7679:3;7716:5;7710:12;7745:36;7771:9;7745:36;:::i;:::-;7797:89;7879:6;7874:3;7797:89;:::i;:::-;7790:96;;7917:1;7906:9;7902:17;7933:1;7928:137;;;;8079:1;8074:341;;;;7895:520;;7928:137;8012:4;8008:9;7997;7993:25;7988:3;7981:38;8048:6;8043:3;8039:16;8032:23;;7928:137;;8074:341;8141:38;8173:5;8141:38;:::i;:::-;8201:1;8215:154;8229:6;8226:1;8223:13;8215:154;;;8303:7;8297:14;8293:1;8288:3;8284:11;8277:35;8353:1;8344:7;8340:15;8329:26;;8251:4;8248:1;8244:12;8239:17;;8215:154;;;8398:6;8393:3;8389:16;8382:23;;8081:334;;7895:520;;7683:738;;7576:845;;;;:::o;8427:366::-;8569:3;8590:67;8654:2;8649:3;8590:67;:::i;:::-;8583:74;;8666:93;8755:3;8666:93;:::i;:::-;8784:2;8779:3;8775:12;8768:19;;8427:366;;;:::o;8799:::-;8941:3;8962:67;9026:2;9021:3;8962:67;:::i;:::-;8955:74;;9038:93;9127:3;9038:93;:::i;:::-;9156:2;9151:3;9147:12;9140:19;;8799:366;;;:::o;9171:::-;9313:3;9334:67;9398:2;9393:3;9334:67;:::i;:::-;9327:74;;9410:93;9499:3;9410:93;:::i;:::-;9528:2;9523:3;9519:12;9512:19;;9171:366;;;:::o;9543:::-;9685:3;9706:67;9770:2;9765:3;9706:67;:::i;:::-;9699:74;;9782:93;9871:3;9782:93;:::i;:::-;9900:2;9895:3;9891:12;9884:19;;9543:366;;;:::o;9915:::-;10057:3;10078:67;10142:2;10137:3;10078:67;:::i;:::-;10071:74;;10154:93;10243:3;10154:93;:::i;:::-;10272:2;10267:3;10263:12;10256:19;;9915:366;;;:::o;10287:::-;10429:3;10450:67;10514:2;10509:3;10450:67;:::i;:::-;10443:74;;10526:93;10615:3;10526:93;:::i;:::-;10644:2;10639:3;10635:12;10628:19;;10287:366;;;:::o;10659:::-;10801:3;10822:67;10886:2;10881:3;10822:67;:::i;:::-;10815:74;;10898:93;10987:3;10898:93;:::i;:::-;11016:2;11011:3;11007:12;11000:19;;10659:366;;;:::o;11031:118::-;11118:24;11136:5;11118:24;:::i;:::-;11113:3;11106:37;11031:118;;:::o;11155:589::-;11380:3;11402:95;11493:3;11484:6;11402:95;:::i;:::-;11395:102;;11514:95;11605:3;11596:6;11514:95;:::i;:::-;11507:102;;11626:92;11714:3;11705:6;11626:92;:::i;:::-;11619:99;;11735:3;11728:10;;11155:589;;;;;;:::o;11750:222::-;11843:4;11881:2;11870:9;11866:18;11858:26;;11894:71;11962:1;11951:9;11947:17;11938:6;11894:71;:::i;:::-;11750:222;;;;:::o;11978:640::-;12173:4;12211:3;12200:9;12196:19;12188:27;;12225:71;12293:1;12282:9;12278:17;12269:6;12225:71;:::i;:::-;12306:72;12374:2;12363:9;12359:18;12350:6;12306:72;:::i;:::-;12388;12456:2;12445:9;12441:18;12432:6;12388:72;:::i;:::-;12507:9;12501:4;12497:20;12492:2;12481:9;12477:18;12470:48;12535:76;12606:4;12597:6;12535:76;:::i;:::-;12527:84;;11978:640;;;;;;;:::o;12624:210::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12762:65;12824:1;12813:9;12809:17;12800:6;12762:65;:::i;:::-;12624:210;;;;:::o;12840:313::-;12953:4;12991:2;12980:9;12976:18;12968:26;;13040:9;13034:4;13030:20;13026:1;13015:9;13011:17;13004:47;13068:78;13141:4;13132:6;13068:78;:::i;:::-;13060:86;;12840:313;;;;:::o;13159:419::-;13325:4;13363:2;13352:9;13348:18;13340:26;;13412:9;13406:4;13402:20;13398:1;13387:9;13383:17;13376:47;13440:131;13566:4;13440:131;:::i;:::-;13432:139;;13159:419;;;:::o;13584:::-;13750:4;13788:2;13777:9;13773:18;13765:26;;13837:9;13831:4;13827:20;13823:1;13812:9;13808:17;13801:47;13865:131;13991:4;13865:131;:::i;:::-;13857:139;;13584:419;;;:::o;14009:::-;14175:4;14213:2;14202:9;14198:18;14190:26;;14262:9;14256:4;14252:20;14248:1;14237:9;14233:17;14226:47;14290:131;14416:4;14290:131;:::i;:::-;14282:139;;14009:419;;;:::o;14434:::-;14600:4;14638:2;14627:9;14623:18;14615:26;;14687:9;14681:4;14677:20;14673:1;14662:9;14658:17;14651:47;14715:131;14841:4;14715:131;:::i;:::-;14707:139;;14434:419;;;:::o;14859:::-;15025:4;15063:2;15052:9;15048:18;15040:26;;15112:9;15106:4;15102:20;15098:1;15087:9;15083:17;15076:47;15140:131;15266:4;15140:131;:::i;:::-;15132:139;;14859:419;;;:::o;15284:::-;15450:4;15488:2;15477:9;15473:18;15465:26;;15537:9;15531:4;15527:20;15523:1;15512:9;15508:17;15501:47;15565:131;15691:4;15565:131;:::i;:::-;15557:139;;15284:419;;;:::o;15709:::-;15875:4;15913:2;15902:9;15898:18;15890:26;;15962:9;15956:4;15952:20;15948:1;15937:9;15933:17;15926:47;15990:131;16116:4;15990:131;:::i;:::-;15982:139;;15709:419;;;:::o;16134:222::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16278:71;16346:1;16335:9;16331:17;16322:6;16278:71;:::i;:::-;16134:222;;;;:::o;16362:129::-;16396:6;16423:20;;:::i;:::-;16413:30;;16452:33;16480:4;16472:6;16452:33;:::i;:::-;16362:129;;;:::o;16497:75::-;16530:6;16563:2;16557:9;16547:19;;16497:75;:::o;16578:307::-;16639:4;16729:18;16721:6;16718:30;16715:56;;;16751:18;;:::i;:::-;16715:56;16789:29;16811:6;16789:29;:::i;:::-;16781:37;;16873:4;16867;16863:15;16855:23;;16578:307;;;:::o;16891:141::-;16940:4;16963:3;16955:11;;16986:3;16983:1;16976:14;17020:4;17017:1;17007:18;16999:26;;16891:141;;;:::o;17038:98::-;17089:6;17123:5;17117:12;17107:22;;17038:98;;;:::o;17142:99::-;17194:6;17228:5;17222:12;17212:22;;17142:99;;;:::o;17247:168::-;17330:11;17364:6;17359:3;17352:19;17404:4;17399:3;17395:14;17380:29;;17247:168;;;;:::o;17421:169::-;17505:11;17539:6;17534:3;17527:19;17579:4;17574:3;17570:14;17555:29;;17421:169;;;;:::o;17596:148::-;17698:11;17735:3;17720:18;;17596:148;;;;:::o;17750:305::-;17790:3;17809:20;17827:1;17809:20;:::i;:::-;17804:25;;17843:20;17861:1;17843:20;:::i;:::-;17838:25;;17997:1;17929:66;17925:74;17922:1;17919:81;17916:107;;;18003:18;;:::i;:::-;17916:107;18047:1;18044;18040:9;18033:16;;17750:305;;;;:::o;18061:348::-;18101:7;18124:20;18142:1;18124:20;:::i;:::-;18119:25;;18158:20;18176:1;18158:20;:::i;:::-;18153:25;;18346:1;18278:66;18274:74;18271:1;18268:81;18263:1;18256:9;18249:17;18245:105;18242:131;;;18353:18;;:::i;:::-;18242:131;18401:1;18398;18394:9;18383:20;;18061:348;;;;:::o;18415:96::-;18452:7;18481:24;18499:5;18481:24;:::i;:::-;18470:35;;18415:96;;;:::o;18517:90::-;18551:7;18594:5;18587:13;18580:21;18569:32;;18517:90;;;:::o;18613:149::-;18649:7;18689:66;18682:5;18678:78;18667:89;;18613:149;;;:::o;18768:126::-;18805:7;18845:42;18838:5;18834:54;18823:65;;18768:126;;;:::o;18900:77::-;18937:7;18966:5;18955:16;;18900:77;;;:::o;18983:154::-;19067:6;19062:3;19057;19044:30;19129:1;19120:6;19115:3;19111:16;19104:27;18983:154;;;:::o;19143:307::-;19211:1;19221:113;19235:6;19232:1;19229:13;19221:113;;;19320:1;19315:3;19311:11;19305:18;19301:1;19296:3;19292:11;19285:39;19257:2;19254:1;19250:10;19245:15;;19221:113;;;19352:6;19349:1;19346:13;19343:101;;;19432:1;19423:6;19418:3;19414:16;19407:27;19343:101;19192:258;19143:307;;;:::o;19456:320::-;19500:6;19537:1;19531:4;19527:12;19517:22;;19584:1;19578:4;19574:12;19605:18;19595:81;;19661:4;19653:6;19649:17;19639:27;;19595:81;19723:2;19715:6;19712:14;19692:18;19689:38;19686:84;;;19742:18;;:::i;:::-;19686:84;19507:269;19456:320;;;:::o;19782:281::-;19865:27;19887:4;19865:27;:::i;:::-;19857:6;19853:40;19995:6;19983:10;19980:22;19959:18;19947:10;19944:34;19941:62;19938:88;;;20006:18;;:::i;:::-;19938:88;20046:10;20042:2;20035:22;19825:238;19782:281;;:::o;20069:180::-;20117:77;20114:1;20107:88;20214:4;20211:1;20204:15;20238:4;20235:1;20228:15;20255:180;20303:77;20300:1;20293:88;20400:4;20397:1;20390:15;20424:4;20421:1;20414:15;20441:180;20489:77;20486:1;20479:88;20586:4;20583:1;20576:15;20610:4;20607:1;20600:15;20627:180;20675:77;20672:1;20665:88;20772:4;20769:1;20762:15;20796:4;20793:1;20786:15;20813:117;20922:1;20919;20912:12;20936:117;21045:1;21042;21035:12;21059:117;21168:1;21165;21158:12;21182:117;21291:1;21288;21281:12;21305:102;21346:6;21397:2;21393:7;21388:2;21381:5;21377:14;21373:28;21363:38;;21305:102;;;:::o;21413:225::-;21553:34;21549:1;21541:6;21537:14;21530:58;21622:8;21617:2;21609:6;21605:15;21598:33;21413:225;:::o;21644:168::-;21784:20;21780:1;21772:6;21768:14;21761:44;21644:168;:::o;21818:223::-;21958:34;21954:1;21946:6;21942:14;21935:58;22027:6;22022:2;22014:6;22010:15;22003:31;21818:223;:::o;22047:172::-;22187:24;22183:1;22175:6;22171:14;22164:48;22047:172;:::o;22225:182::-;22365:34;22361:1;22353:6;22349:14;22342:58;22225:182;:::o;22413:234::-;22553:34;22549:1;22541:6;22537:14;22530:58;22622:17;22617:2;22609:6;22605:15;22598:42;22413:234;:::o;22653:171::-;22793:23;22789:1;22781:6;22777:14;22770:47;22653:171;:::o;22830:122::-;22903:24;22921:5;22903:24;:::i;:::-;22896:5;22893:35;22883:63;;22942:1;22939;22932:12;22883:63;22830:122;:::o;22958:116::-;23028:21;23043:5;23028:21;:::i;:::-;23021:5;23018:32;23008:60;;23064:1;23061;23054:12;23008:60;22958:116;:::o;23080:120::-;23152:23;23169:5;23152:23;:::i;:::-;23145:5;23142:34;23132:62;;23190:1;23187;23180:12;23132:62;23080:120;:::o;23206:122::-;23279:24;23297:5;23279:24;:::i;:::-;23272:5;23269:35;23259:63;;23318:1;23315;23308:12;23259:63;23206:122;:::o

Swarm Source

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