ETH Price: $3,319.54 (-0.18%)
Gas: 11 Gwei

Contract

0xD3a4542FE6CDd6c1930F072b2d168CF506248AcC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...187031132023-12-03 3:12:23240 days ago1701573143IN
0xD3a4542F...506248AcC
0 ETH0.0014178230.73816367
Safe Transfer Fr...162628402022-12-25 16:05:35582 days ago1671984335IN
0xD3a4542F...506248AcC
0 ETH0.0007246412.17519482
Transfer From162477252022-12-23 13:29:11585 days ago1671802151IN
0xD3a4542F...506248AcC
0 ETH0.0007919713.97994405
Set Approval For...153793442022-08-20 19:06:51709 days ago1661022411IN
0xD3a4542F...506248AcC
0 ETH0.0012243326.49510564
Withdraw153555552022-08-17 0:24:48713 days ago1660695888IN
0xD3a4542F...506248AcC
0 ETH0.000264468.55355532
Set Approval For...152607142022-08-02 3:34:35728 days ago1659411275IN
0xD3a4542F...506248AcC
0 ETH0.0006221913.46454105
Transfer From152064302022-07-24 16:44:53736 days ago1658681093IN
0xD3a4542F...506248AcC
0 ETH0.0013990521.98012603
Transfer From152064292022-07-24 16:44:42736 days ago1658681082IN
0xD3a4542F...506248AcC
0 ETH0.0017170420.69605701
Transfer From152064292022-07-24 16:44:42736 days ago1658681082IN
0xD3a4542F...506248AcC
0 ETH0.0014089620.69605701
Transfer From152064292022-07-24 16:44:42736 days ago1658681082IN
0xD3a4542F...506248AcC
0 ETH0.0018086920.69605701
Transfer From152064262022-07-24 16:41:52736 days ago1658680912IN
0xD3a4542F...506248AcC
0 ETH0.0014561916.25094208
Set Approval For...152060182022-07-24 15:09:00736 days ago1658675340IN
0xD3a4542F...506248AcC
0 ETH0.0007524216.31247583
Set Approval For...152051532022-07-24 11:52:20737 days ago1658663540IN
0xD3a4542F...506248AcC
0 ETH0.000347177.52669001
Set Approval For...152029012022-07-24 3:27:15737 days ago1658633235IN
0xD3a4542F...506248AcC
0 ETH0.000392598.5114488
Set Approval For...151929192022-07-22 14:30:34739 days ago1658500234IN
0xD3a4542F...506248AcC
0 ETH0.0007775332
Set Approval For...151927892022-07-22 14:03:08739 days ago1658498588IN
0xD3a4542F...506248AcC
0 ETH0.0024453652.91852355
Set Base URI151900662022-07-22 3:43:11739 days ago1658461391IN
0xD3a4542F...506248AcC
0 ETH0.0004799213.24959036
Set Approval For...151842372022-07-21 6:11:53740 days ago1658383913IN
0xD3a4542F...506248AcC
0 ETH0.0003698
Set Approval For...151799082022-07-20 13:56:28741 days ago1658325388IN
0xD3a4542F...506248AcC
0 ETH0.0009866521.39037002
Set Approval For...151790082022-07-20 10:42:36741 days ago1658313756IN
0xD3a4542F...506248AcC
0 ETH0.0010856223.53598442
Set Approval For...151787862022-07-20 9:51:05741 days ago1658310665IN
0xD3a4542F...506248AcC
0 ETH0.0007245715.70862115
Set Approval For...151777792022-07-20 5:58:22741 days ago1658296702IN
0xD3a4542F...506248AcC
0 ETH0.0005658412.24505795
Set Approval For...151772502022-07-20 3:56:38741 days ago1658289398IN
0xD3a4542F...506248AcC
0 ETH0.0008772619.01892656
Set Approval For...151771772022-07-20 3:40:33741 days ago1658288433IN
0xD3a4542F...506248AcC
0 ETH0.0009763921.16800386
Set Approval For...151765882022-07-20 1:34:48741 days ago1658280888IN
0xD3a4542F...506248AcC
0 ETH0.0006560914.22403044
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
153555552022-08-17 0:24:48713 days ago1660695888
0xD3a4542F...506248AcC
0.88 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TheCryptoBums

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-18
*/

// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.6;

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

    function sqrrt(uint256 a) internal pure returns (uint256 c) {
        if (a > 3) {
            c = a;
            uint256 b = add(div(a, 2), 1);
            while (b < c) {
                c = b;
                b = div(add(div(a, b), b), 2);
            }
        } else if (a != 0) {
            c = 1;
        }
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success,) = recipient.call{value : amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
    internal
    returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
        functionCallWithValue(
            target,
            data,
            value,
            "Address: low-level call with value failed"
        );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value : value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
    internal
    view
    returns (bytes memory)
    {
        return
        functionStaticCall(
            target,
            data,
            "Address: low-level static call failed"
        );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
    internal
    returns (bytes memory)
    {
        return
        functionDelegateCall(
            target,
            data,
            "Address: low-level delegate call failed"
        );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(
            value
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(
            value,
            "SafeERC20: decreased allowance below zero"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

interface IERC20 {
    function decimals() external view returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount)
    external
    returns (bool);

    function allowance(address owner, address spender)
    external
    view
    returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    function burnFrom(address account_, uint256 amount_) external;

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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;

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

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

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

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

    // ==============================
    //        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 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

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

    unchecked {
        if (_startTokenId() <= curr)
            if (curr < _currentIndex) {
                uint256 packed = _packedOwnerships[curr];
                // If not burned.
                if (packed & BITMASK_BURNED == 0) {
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed is zero.
                    while (packed == 0) {
                        packed = _packedOwnerships[--curr];
                    }
                    return packed;
                }
            }
    }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
        _startTokenId() <= tokenId &&
        tokenId < _currentIndex && // If within bounds,
        _packedOwnerships[tokenId] & BITMASK_BURNED == 0;
        // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
        uint256 end = startTokenId + quantity;
        do {
            emit Transfer(address(0), to, tokenId++);
        }
        while (tokenId < end);

        _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
    private
    view
    returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
        // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
        // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
    }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
        // The maximum value of a uint256 contains 78 digits (1 byte per digit),
        // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
        // We will need 1 32-byte word to store the length,
        // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
        // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

        // We write the string from the rightmost digit to the leftmost digit.
        // The following is essentially a do-while loop that also handles the zero case.
        // Costs a bit more than early returning for the zero case,
        // but cheaper in terms of deployment and overall runtime costs.
            for {
            // Initialize and perform the first pass without check.
                let temp := value
            // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
            // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
            // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
            // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

interface IOwnable {
    function manager() external view returns (address);

    function renounceManagement() external;

    function pushManagement(address newOwner_) external;

    function pullManagement() external;
}

contract Ownable is IOwnable {
    address internal _owner;
    address internal _newOwner;

    event OwnershipPushed(
        address indexed previousOwner,
        address indexed newOwner
    );
    event OwnershipPulled(
        address indexed previousOwner,
        address indexed newOwner
    );

    constructor() {
        _owner = msg.sender;
        emit OwnershipPushed(address(0), _owner);
    }

    function manager() public view override returns (address) {
        return _owner;
    }

    modifier onlyManager() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function renounceManagement() public virtual override onlyManager {
        emit OwnershipPushed(_owner, address(0));
        _owner = address(0);
    }

    function pushManagement(address newOwner_)
    public
    virtual
    override
    onlyManager
    {
        require(
            newOwner_ != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipPushed(_owner, newOwner_);
        _newOwner = newOwner_;
    }

    function pullManagement() public virtual override {
        require(msg.sender == _newOwner, "Ownable: must be new owner to pull");
        emit OwnershipPulled(_owner, _newOwner);
        _owner = _newOwner;
    }
}

contract TheCryptoBums is Ownable, ERC721A {


    uint256 public startTime = 0;
    uint256 public constant MAX_TOKENS = 10000;
    uint256 public freeAmount = 8000;
    uint256 public price = 5000000 gwei;
    string public baseURI = "https://cryptobums.mypinata.cloud/ipfs/QmPuJq14hT7nv8Qsoe5KvfDkdmNx9qHMJL5fKe7bSdxiFs/";
    string public hideURI = "https://cryptobums.mypinata.cloud/ipfs/QmVeCw5mmQKgWYWGitEBAhmbaw9DFcSdiFSww49XgwQf1X";


    uint256 public minted;
    mapping(address => uint256) public mintCount;


    bool public hideImages = true;
    bool private _reentrant = false;

    constructor(uint256 _startTime) ERC721A("The CryptoBums", "CRB") {
        startTime = _startTime;
    }

    modifier nonReentrant() {
        require(!_reentrant, "No reentrancy");
        _reentrant = true;
        _;
        _reentrant = false;
    }

    function mint(uint256 quantity) external payable nonReentrant {
        // `_mint`'s second argument now takes in a `quantity`, not a `tokenId`.
        require(
            mintCount[msg.sender] + quantity <= 5,
            "Each address can mint 5"
        );
        require(startTime < block.timestamp, "not Start");
        require(tx.origin == msg.sender, "Only EOA");
        require(minted + quantity <= MAX_TOKENS, "total limit");

        uint256 totalPrice = 0;
        minted += quantity;
        if (minted > freeAmount) {
            uint256 exceed = minted - freeAmount;
            totalPrice = (exceed >= quantity ? quantity : exceed) * price;
        }
        require(msg.value == totalPrice, "eth no enough");
        _mint(msg.sender, quantity);
        mintCount[msg.sender] += quantity;
    }


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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    function setBaseURI(string memory _base) public onlyManager {
        baseURI = _base;
    }

    function setHideURI(string memory _hideURI) public onlyManager {
        hideURI = _hideURI;
    }

    function setHide(bool _hide) external onlyManager {
        hideImages = _hide;
    }

    function setPrice(uint256 _price) external onlyManager {
        price = _price;
    }

    function setStartTime(uint256 _startTime) external onlyManager {
        startTime = _startTime;
    }

    function withdraw(address payable recipient) external onlyManager {
        (bool success,) = recipient.call{value : address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":"OwnershipPulled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipPushed","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_TOKENS","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hideImages","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hideURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pullManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"name":"pushManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceManagement","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hide","type":"bool"}],"name":"setHide","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hideURI","type":"string"}],"name":"setHideURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600a55611f40600b556611c37937e08000600c55610100604052605660808181529062001ed060a039600d90620000399082620001f5565b5060405180608001604052806055815260200162001f2660559139600e90620000639082620001f5565b506011805461ffff191660011790553480156200007f57600080fd5b5060405162001f7b38038062001f7b833981016040819052620000a291620002c1565b604080518082018252600e81526d5468652043727970746f42756d7360901b60208083019190915282518084018452600381526221a92160e91b91810191909152600080546001600160a01b0319163390811782559351929391927fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908290a36004620001308382620001f5565b5060056200013f8282620001f5565b5060006002555050600a55620002db565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017b57607f821691505b6020821081036200019c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f057600081815260208120601f850160051c81016020861015620001cb5750805b601f850160051c820191505b81811015620001ec57828155600101620001d7565b5050505b505050565b81516001600160401b0381111562000211576200021162000150565b620002298162000222845462000166565b84620001a2565b602080601f831160018114620002615760008415620002485750858301515b600019600386901b1c1916600185901b178555620001ec565b600085815260208120601f198616915b82811015620002925788860151825594840194600190910190840162000271565b5085821015620002b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620002d457600080fd5b5051919050565b611be580620002eb6000396000f3fe6080604052600436106101f95760003560e01c80635a96ac0a1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd1461056d578063d4968fd01461058d578063e985e9c5146105a2578063ed9ec888146105eb578063f47c84c51461061857600080fd5b8063a035b1fe14610504578063a0712d681461051a578063a22cb4651461052d578063b88d4fde1461054d57600080fd5b806370a08231116100dc57806370a082311461049957806378e97925146104b957806391b7f5ed146104cf57806395d89b41146104ef57600080fd5b80635a96ac0a146104355780636352211e1461044a57806363f24ef11461046a5780636c0360eb1461048457600080fd5b806323b872dd11610190578063481c6a751161015f578063481c6a75146103a15780634d7c4042146103bf5780634f02c420146103df57806351cff8d9146103f557806355f804b31461041557600080fd5b806323b872dd146103215780633e0a322d1461034157806342842e0e1461036157806346f68ee91461038157600080fd5b8063089208d8116101cc578063089208d8146102b1578063095ea7b3146102c85780631540ca3c146102e857806318160ddd1461030857600080fd5b806301ffc9a7146101fe5780630451a9f11461023357806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e61021936600461161a565b61062e565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610249600b5481565b60405190815260200161022a565b34801561026357600080fd5b5061026c610680565b60405161022a919061168f565b34801561028557600080fd5b506102996102943660046116a2565b610712565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102c6610756565b005b3480156102d457600080fd5b506102c66102e33660046116d0565b6107d3565b3480156102f457600080fd5b506102c6610303366004611788565b610873565b34801561031457600080fd5b5060035460025403610249565b34801561032d57600080fd5b506102c661033c3660046117d1565b6108ad565b34801561034d57600080fd5b506102c661035c3660046116a2565b610a46565b34801561036d57600080fd5b506102c661037c3660046117d1565b610a75565b34801561038d57600080fd5b506102c661039c366004611812565b610a95565b3480156103ad57600080fd5b506000546001600160a01b0316610299565b3480156103cb57600080fd5b506102c66103da366004611844565b610b7f565b3480156103eb57600080fd5b50610249600f5481565b34801561040157600080fd5b506102c6610410366004611812565b610bbc565b34801561042157600080fd5b506102c6610430366004611788565b610caf565b34801561044157600080fd5b506102c6610ce5565b34801561045657600080fd5b506102996104653660046116a2565b610dab565b34801561047657600080fd5b5060115461021e9060ff1681565b34801561049057600080fd5b5061026c610db6565b3480156104a557600080fd5b506102496104b4366004611812565b610e44565b3480156104c557600080fd5b50610249600a5481565b3480156104db57600080fd5b506102c66104ea3660046116a2565b610e93565b3480156104fb57600080fd5b5061026c610ec2565b34801561051057600080fd5b50610249600c5481565b6102c66105283660046116a2565b610ed1565b34801561053957600080fd5b506102c661054836600461185f565b61112e565b34801561055957600080fd5b506102c6610568366004611894565b6111c3565b34801561057957600080fd5b5061026c6105883660046116a2565b61120d565b34801561059957600080fd5b5061026c611334565b3480156105ae57600080fd5b5061021e6105bd366004611914565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156105f757600080fd5b50610249610606366004611812565b60106020526000908152604090205481565b34801561062457600080fd5b5061024961271081565b60006301ffc9a760e01b6001600160e01b03198316148061065f57506380ac58cd60e01b6001600160e01b03198316145b8061067a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606004805461068f9061194d565b80601f01602080910402602001604051908101604052809291908181526020018280546106bb9061194d565b80156107085780601f106106dd57610100808354040283529160200191610708565b820191906000526020600020905b8154815290600101906020018083116106eb57829003601f168201915b5050505050905090565b600061071d82611341565b61073a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000546001600160a01b031633146107895760405162461bcd60e51b815260040161078090611987565b60405180910390fd5b600080546040516001600160a01b03909116907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908390a3600080546001600160a01b0319169055565b60006107de82610dab565b9050336001600160a01b03821614610817576107fa81336105bd565b610817576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b0316331461089d5760405162461bcd60e51b815260040161078090611987565b600e6108a98282611a02565b5050565b60006108b882611369565b9050836001600160a01b0316816001600160a01b0316146108eb5760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b038816909114176109385761091b86336105bd565b61093857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661095f57604051633a954ecd60e21b815260040160405180910390fd5b801561096a57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b841690036109fc576001840160008181526006602052604081205490036109fa5760025481146109fa5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000546001600160a01b03163314610a705760405162461bcd60e51b815260040161078090611987565b600a55565b610a90838383604051806020016040528060008152506111c3565b505050565b6000546001600160a01b03163314610abf5760405162461bcd60e51b815260040161078090611987565b6001600160a01b038116610b245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610780565b600080546040516001600160a01b03808516939216917fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba91a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ba95760405162461bcd60e51b815260040161078090611987565b6011805460ff1916911515919091179055565b6000546001600160a01b03163314610be65760405162461bcd60e51b815260040161078090611987565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c33576040519150601f19603f3d011682016040523d82523d6000602084013e610c38565b606091505b50509050806108a95760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610780565b6000546001600160a01b03163314610cd95760405162461bcd60e51b815260040161078090611987565b600d6108a98282611a02565b6001546001600160a01b03163314610d4a5760405162461bcd60e51b815260206004820152602260248201527f4f776e61626c653a206d757374206265206e6577206f776e657220746f2070756044820152611b1b60f21b6064820152608401610780565b600154600080546040516001600160a01b0393841693909116917faa151555690c956fc3ea32f106bb9f119b5237a061eaa8557cff3e51e3792c8d91a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061067a82611369565b600d8054610dc39061194d565b80601f0160208091040260200160405190810160405280929190818152602001828054610def9061194d565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505081565b60006001600160a01b038216610e6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ebd5760405162461bcd60e51b815260040161078090611987565b600c55565b60606005805461068f9061194d565b601154610100900460ff1615610f195760405162461bcd60e51b815260206004820152600d60248201526c4e6f207265656e7472616e637960981b6044820152606401610780565b6011805461ff00191661010017905533600090815260106020526040902054600590610f46908390611ad8565b1115610f945760405162461bcd60e51b815260206004820152601760248201527f4561636820616464726573732063616e206d696e7420350000000000000000006044820152606401610780565b42600a5410610fd15760405162461bcd60e51b81526020600482015260096024820152681b9bdd0814dd185c9d60ba1b6044820152606401610780565b32331461100b5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b6044820152606401610780565b61271081600f5461101c9190611ad8565b11156110585760405162461bcd60e51b815260206004820152600b60248201526a1d1bdd185b081b1a5b5a5d60aa1b6044820152606401610780565b600081600f600082825461106c9190611ad8565b9091555050600b54600f5411156110b2576000600b54600f5461108f9190611af0565b9050600c54838210156110a257816110a4565b835b6110ae9190611b07565b9150505b8034146110f15760405162461bcd60e51b815260206004820152600d60248201526c0cae8d040dcde40cadcdeeaced609b1b6044820152606401610780565b6110fb33836113d7565b336000908152601060205260408120805484929061111a908490611ad8565b90915550506011805461ff00191690555050565b336001600160a01b038316036111575760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111ce8484846108ad565b6001600160a01b0383163b15611207576111ea848484846114b7565b611207576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121882611341565b61123557604051630a14c4b560e41b815260040160405180910390fd5b60115460ff16156112d257600e805461124d9061194d565b80601f01602080910402602001604051908101604052809291908181526020018280546112799061194d565b80156112c65780601f1061129b576101008083540402835291602001916112c6565b820191906000526020600020905b8154815290600101906020018083116112a957829003601f168201915b50505050509050919050565b600d80546112df9061194d565b90506000036112fd576040518060200160405280600081525061067a565b6113056115a3565b61130e836115b2565b60405160200161131f929190611b26565b60405160208183030381529060405292915050565b600e8054610dc39061194d565b60006002548210801561067a575050600090815260066020526040902054600160e01b161590565b6000816002548110156113be5760008181526006602052604081205490600160e01b821690036113bc575b806000036113b5575060001901600081815260066020526040902054611394565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6002546001600160a01b03831661140057604051622e076360e81b815260040160405180910390fd5b816000036114215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061146b5760025550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ec903390899088908890600401611b55565b6020604051808303816000875af1925050508015611527575060408051601f3d908101601f1916820190925261152491810190611b92565b60015b611585573d808015611555576040519150601f19603f3d011682016040523d82523d6000602084013e61155a565b606091505b50805160000361157d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d805461068f9061194d565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115ef57600183039250600a81066030018353600a90046115d1565b50819003601f19909101908152919050565b6001600160e01b03198116811461161757600080fd5b50565b60006020828403121561162c57600080fd5b81356113b581611601565b60005b8381101561165257818101518382015260200161163a565b838111156112075750506000910152565b6000815180845261167b816020860160208601611637565b601f01601f19169290920160200192915050565b6020815260006113b56020830184611663565b6000602082840312156116b457600080fd5b5035919050565b6001600160a01b038116811461161757600080fd5b600080604083850312156116e357600080fd5b82356116ee816116bb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561172d5761172d6116fc565b604051601f8501601f19908116603f01168101908282118183101715611755576117556116fc565b8160405280935085815286868601111561176e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561179a57600080fd5b813567ffffffffffffffff8111156117b157600080fd5b8201601f810184136117c257600080fd5b61159b84823560208401611712565b6000806000606084860312156117e657600080fd5b83356117f1816116bb565b92506020840135611801816116bb565b929592945050506040919091013590565b60006020828403121561182457600080fd5b81356113b5816116bb565b8035801515811461183f57600080fd5b919050565b60006020828403121561185657600080fd5b6113b58261182f565b6000806040838503121561187257600080fd5b823561187d816116bb565b915061188b6020840161182f565b90509250929050565b600080600080608085870312156118aa57600080fd5b84356118b5816116bb565b935060208501356118c5816116bb565b925060408501359150606085013567ffffffffffffffff8111156118e857600080fd5b8501601f810187136118f957600080fd5b61190887823560208401611712565b91505092959194509250565b6000806040838503121561192757600080fd5b8235611932816116bb565b91506020830135611942816116bb565b809150509250929050565b600181811c9082168061196157607f821691505b60208210810361198157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a9057600081815260208120601f850160051c810160208610156119e35750805b601f850160051c820191505b81811015610a3e578281556001016119ef565b815167ffffffffffffffff811115611a1c57611a1c6116fc565b611a3081611a2a845461194d565b846119bc565b602080601f831160018114611a655760008415611a4d5750858301515b600019600386901b1c1916600185901b178555610a3e565b600085815260208120601f198616915b82811015611a9457888601518255948401946001909101908401611a75565b5085821015611ab25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611aeb57611aeb611ac2565b500190565b600082821015611b0257611b02611ac2565b500390565b6000816000190483118215151615611b2157611b21611ac2565b500290565b60008351611b38818460208801611637565b835190830190611b4c818360208801611637565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8890830184611663565b9695505050505050565b600060208284031215611ba457600080fd5b81516113b58161160156fea2646970667358221220be3d60d6bcd79dee49976612ae7b759355692b62ee2102490cbfe9dffec94f8764736f6c634300080f003368747470733a2f2f63727970746f62756d732e6d7970696e6174612e636c6f75642f697066732f516d50754a7131346854376e763851736f65354b7666446b646d4e783971484d4a4c35664b6537625364786946732f68747470733a2f2f63727970746f62756d732e6d7970696e6174612e636c6f75642f697066732f516d56654377356d6d514b67575957476974454241686d62617739444663536469465377773439586777516631580000000000000000000000000000000000000000000000000000000062d54b40

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635a96ac0a1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd1461056d578063d4968fd01461058d578063e985e9c5146105a2578063ed9ec888146105eb578063f47c84c51461061857600080fd5b8063a035b1fe14610504578063a0712d681461051a578063a22cb4651461052d578063b88d4fde1461054d57600080fd5b806370a08231116100dc57806370a082311461049957806378e97925146104b957806391b7f5ed146104cf57806395d89b41146104ef57600080fd5b80635a96ac0a146104355780636352211e1461044a57806363f24ef11461046a5780636c0360eb1461048457600080fd5b806323b872dd11610190578063481c6a751161015f578063481c6a75146103a15780634d7c4042146103bf5780634f02c420146103df57806351cff8d9146103f557806355f804b31461041557600080fd5b806323b872dd146103215780633e0a322d1461034157806342842e0e1461036157806346f68ee91461038157600080fd5b8063089208d8116101cc578063089208d8146102b1578063095ea7b3146102c85780631540ca3c146102e857806318160ddd1461030857600080fd5b806301ffc9a7146101fe5780630451a9f11461023357806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e61021936600461161a565b61062e565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610249600b5481565b60405190815260200161022a565b34801561026357600080fd5b5061026c610680565b60405161022a919061168f565b34801561028557600080fd5b506102996102943660046116a2565b610712565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102c6610756565b005b3480156102d457600080fd5b506102c66102e33660046116d0565b6107d3565b3480156102f457600080fd5b506102c6610303366004611788565b610873565b34801561031457600080fd5b5060035460025403610249565b34801561032d57600080fd5b506102c661033c3660046117d1565b6108ad565b34801561034d57600080fd5b506102c661035c3660046116a2565b610a46565b34801561036d57600080fd5b506102c661037c3660046117d1565b610a75565b34801561038d57600080fd5b506102c661039c366004611812565b610a95565b3480156103ad57600080fd5b506000546001600160a01b0316610299565b3480156103cb57600080fd5b506102c66103da366004611844565b610b7f565b3480156103eb57600080fd5b50610249600f5481565b34801561040157600080fd5b506102c6610410366004611812565b610bbc565b34801561042157600080fd5b506102c6610430366004611788565b610caf565b34801561044157600080fd5b506102c6610ce5565b34801561045657600080fd5b506102996104653660046116a2565b610dab565b34801561047657600080fd5b5060115461021e9060ff1681565b34801561049057600080fd5b5061026c610db6565b3480156104a557600080fd5b506102496104b4366004611812565b610e44565b3480156104c557600080fd5b50610249600a5481565b3480156104db57600080fd5b506102c66104ea3660046116a2565b610e93565b3480156104fb57600080fd5b5061026c610ec2565b34801561051057600080fd5b50610249600c5481565b6102c66105283660046116a2565b610ed1565b34801561053957600080fd5b506102c661054836600461185f565b61112e565b34801561055957600080fd5b506102c6610568366004611894565b6111c3565b34801561057957600080fd5b5061026c6105883660046116a2565b61120d565b34801561059957600080fd5b5061026c611334565b3480156105ae57600080fd5b5061021e6105bd366004611914565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156105f757600080fd5b50610249610606366004611812565b60106020526000908152604090205481565b34801561062457600080fd5b5061024961271081565b60006301ffc9a760e01b6001600160e01b03198316148061065f57506380ac58cd60e01b6001600160e01b03198316145b8061067a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606004805461068f9061194d565b80601f01602080910402602001604051908101604052809291908181526020018280546106bb9061194d565b80156107085780601f106106dd57610100808354040283529160200191610708565b820191906000526020600020905b8154815290600101906020018083116106eb57829003601f168201915b5050505050905090565b600061071d82611341565b61073a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000546001600160a01b031633146107895760405162461bcd60e51b815260040161078090611987565b60405180910390fd5b600080546040516001600160a01b03909116907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908390a3600080546001600160a01b0319169055565b60006107de82610dab565b9050336001600160a01b03821614610817576107fa81336105bd565b610817576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b0316331461089d5760405162461bcd60e51b815260040161078090611987565b600e6108a98282611a02565b5050565b60006108b882611369565b9050836001600160a01b0316816001600160a01b0316146108eb5760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b038816909114176109385761091b86336105bd565b61093857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661095f57604051633a954ecd60e21b815260040160405180910390fd5b801561096a57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b841690036109fc576001840160008181526006602052604081205490036109fa5760025481146109fa5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000546001600160a01b03163314610a705760405162461bcd60e51b815260040161078090611987565b600a55565b610a90838383604051806020016040528060008152506111c3565b505050565b6000546001600160a01b03163314610abf5760405162461bcd60e51b815260040161078090611987565b6001600160a01b038116610b245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610780565b600080546040516001600160a01b03808516939216917fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba91a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ba95760405162461bcd60e51b815260040161078090611987565b6011805460ff1916911515919091179055565b6000546001600160a01b03163314610be65760405162461bcd60e51b815260040161078090611987565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c33576040519150601f19603f3d011682016040523d82523d6000602084013e610c38565b606091505b50509050806108a95760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610780565b6000546001600160a01b03163314610cd95760405162461bcd60e51b815260040161078090611987565b600d6108a98282611a02565b6001546001600160a01b03163314610d4a5760405162461bcd60e51b815260206004820152602260248201527f4f776e61626c653a206d757374206265206e6577206f776e657220746f2070756044820152611b1b60f21b6064820152608401610780565b600154600080546040516001600160a01b0393841693909116917faa151555690c956fc3ea32f106bb9f119b5237a061eaa8557cff3e51e3792c8d91a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061067a82611369565b600d8054610dc39061194d565b80601f0160208091040260200160405190810160405280929190818152602001828054610def9061194d565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505081565b60006001600160a01b038216610e6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ebd5760405162461bcd60e51b815260040161078090611987565b600c55565b60606005805461068f9061194d565b601154610100900460ff1615610f195760405162461bcd60e51b815260206004820152600d60248201526c4e6f207265656e7472616e637960981b6044820152606401610780565b6011805461ff00191661010017905533600090815260106020526040902054600590610f46908390611ad8565b1115610f945760405162461bcd60e51b815260206004820152601760248201527f4561636820616464726573732063616e206d696e7420350000000000000000006044820152606401610780565b42600a5410610fd15760405162461bcd60e51b81526020600482015260096024820152681b9bdd0814dd185c9d60ba1b6044820152606401610780565b32331461100b5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b6044820152606401610780565b61271081600f5461101c9190611ad8565b11156110585760405162461bcd60e51b815260206004820152600b60248201526a1d1bdd185b081b1a5b5a5d60aa1b6044820152606401610780565b600081600f600082825461106c9190611ad8565b9091555050600b54600f5411156110b2576000600b54600f5461108f9190611af0565b9050600c54838210156110a257816110a4565b835b6110ae9190611b07565b9150505b8034146110f15760405162461bcd60e51b815260206004820152600d60248201526c0cae8d040dcde40cadcdeeaced609b1b6044820152606401610780565b6110fb33836113d7565b336000908152601060205260408120805484929061111a908490611ad8565b90915550506011805461ff00191690555050565b336001600160a01b038316036111575760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111ce8484846108ad565b6001600160a01b0383163b15611207576111ea848484846114b7565b611207576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121882611341565b61123557604051630a14c4b560e41b815260040160405180910390fd5b60115460ff16156112d257600e805461124d9061194d565b80601f01602080910402602001604051908101604052809291908181526020018280546112799061194d565b80156112c65780601f1061129b576101008083540402835291602001916112c6565b820191906000526020600020905b8154815290600101906020018083116112a957829003601f168201915b50505050509050919050565b600d80546112df9061194d565b90506000036112fd576040518060200160405280600081525061067a565b6113056115a3565b61130e836115b2565b60405160200161131f929190611b26565b60405160208183030381529060405292915050565b600e8054610dc39061194d565b60006002548210801561067a575050600090815260066020526040902054600160e01b161590565b6000816002548110156113be5760008181526006602052604081205490600160e01b821690036113bc575b806000036113b5575060001901600081815260066020526040902054611394565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6002546001600160a01b03831661140057604051622e076360e81b815260040160405180910390fd5b816000036114215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061146b5760025550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ec903390899088908890600401611b55565b6020604051808303816000875af1925050508015611527575060408051601f3d908101601f1916820190925261152491810190611b92565b60015b611585573d808015611555576040519150601f19603f3d011682016040523d82523d6000602084013e61155a565b606091505b50805160000361157d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d805461068f9061194d565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115ef57600183039250600a81066030018353600a90046115d1565b50819003601f19909101908152919050565b6001600160e01b03198116811461161757600080fd5b50565b60006020828403121561162c57600080fd5b81356113b581611601565b60005b8381101561165257818101518382015260200161163a565b838111156112075750506000910152565b6000815180845261167b816020860160208601611637565b601f01601f19169290920160200192915050565b6020815260006113b56020830184611663565b6000602082840312156116b457600080fd5b5035919050565b6001600160a01b038116811461161757600080fd5b600080604083850312156116e357600080fd5b82356116ee816116bb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561172d5761172d6116fc565b604051601f8501601f19908116603f01168101908282118183101715611755576117556116fc565b8160405280935085815286868601111561176e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561179a57600080fd5b813567ffffffffffffffff8111156117b157600080fd5b8201601f810184136117c257600080fd5b61159b84823560208401611712565b6000806000606084860312156117e657600080fd5b83356117f1816116bb565b92506020840135611801816116bb565b929592945050506040919091013590565b60006020828403121561182457600080fd5b81356113b5816116bb565b8035801515811461183f57600080fd5b919050565b60006020828403121561185657600080fd5b6113b58261182f565b6000806040838503121561187257600080fd5b823561187d816116bb565b915061188b6020840161182f565b90509250929050565b600080600080608085870312156118aa57600080fd5b84356118b5816116bb565b935060208501356118c5816116bb565b925060408501359150606085013567ffffffffffffffff8111156118e857600080fd5b8501601f810187136118f957600080fd5b61190887823560208401611712565b91505092959194509250565b6000806040838503121561192757600080fd5b8235611932816116bb565b91506020830135611942816116bb565b809150509250929050565b600181811c9082168061196157607f821691505b60208210810361198157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a9057600081815260208120601f850160051c810160208610156119e35750805b601f850160051c820191505b81811015610a3e578281556001016119ef565b815167ffffffffffffffff811115611a1c57611a1c6116fc565b611a3081611a2a845461194d565b846119bc565b602080601f831160018114611a655760008415611a4d5750858301515b600019600386901b1c1916600185901b178555610a3e565b600085815260208120601f198616915b82811015611a9457888601518255948401946001909101908401611a75565b5085821015611ab25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611aeb57611aeb611ac2565b500190565b600082821015611b0257611b02611ac2565b500390565b6000816000190483118215151615611b2157611b21611ac2565b500290565b60008351611b38818460208801611637565b835190830190611b4c818360208801611637565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8890830184611663565b9695505050505050565b600060208284031215611ba457600080fd5b81516113b58161160156fea2646970667358221220be3d60d6bcd79dee49976612ae7b759355692b62ee2102490cbfe9dffec94f8764736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000062d54b40

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1658145600

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000062d54b40


Deployed Bytecode Sourcemap

58140:2997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27025:612;;;;;;;;;;-1:-1:-1;27025:612:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27025:612:0;;;;;;;;58278:32;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;58278:32:0;592:177:1;32581:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34523:204::-;;;;;;;;;;-1:-1:-1;34523:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;34523:204:0;1710:203:1;57428:155:0;;;;;;;;;;;;;:::i;:::-;;34071:386;;;;;;;;;;-1:-1:-1;34071:386:0;;;;;:::i;:::-;;:::i;60443:100::-;;;;;;;;;;-1:-1:-1;60443:100:0;;;;;:::i;:::-;;:::i;26103:303::-;;;;;;;;;;-1:-1:-1;26361:12:0;;26345:13;;:28;26103:303;;43555:2710;;;;;;;;;;-1:-1:-1;43555:2710:0;;;;;:::i;:::-;;:::i;60742:104::-;;;;;;;;;;-1:-1:-1;60742:104:0;;;;;:::i;:::-;;:::i;35413:185::-;;;;;;;;;;-1:-1:-1;35413:185:0;;;;;:::i;:::-;;:::i;57591:316::-;;;;;;;;;;-1:-1:-1;57591:316:0;;;;;:::i;:::-;;:::i;57203:90::-;;;;;;;;;;-1:-1:-1;57252:7:0;57279:6;-1:-1:-1;;;;;57279:6:0;57203:90;;60551:87;;;;;;;;;;-1:-1:-1;60551:87:0;;;;;:::i;:::-;;:::i;58600:21::-;;;;;;;;;;;;;;;;60854:278;;;;;;;;;;-1:-1:-1;60854:278:0;;;;;:::i;:::-;;:::i;60341:94::-;;;;;;;;;;-1:-1:-1;60341:94:0;;;;;:::i;:::-;;:::i;57915:218::-;;;;;;;;;;;;;:::i;32370:144::-;;;;;;;;;;-1:-1:-1;32370:144:0;;;;;:::i;:::-;;:::i;58683:29::-;;;;;;;;;;-1:-1:-1;58683:29:0;;;;;;;;58359:112;;;;;;;;;;;;;:::i;27701:224::-;;;;;;;;;;-1:-1:-1;27701:224:0;;;;;:::i;:::-;;:::i;58194:28::-;;;;;;;;;;;;;;;;60646:88;;;;;;;;;;-1:-1:-1;60646:88:0;;;;;:::i;:::-;;:::i;32750:104::-;;;;;;;;;;;;;:::i;58317:35::-;;;;;;;;;;;;;;;;59030:834;;;;;;:::i;:::-;;:::i;34799:308::-;;;;;;;;;;-1:-1:-1;34799:308:0;;;;;:::i;:::-;;:::i;35669:399::-;;;;;;;;;;-1:-1:-1;35669:399:0;;;;;:::i;:::-;;:::i;59990:343::-;;;;;;;;;;-1:-1:-1;59990:343:0;;;;;:::i;:::-;;:::i;58478:111::-;;;;;;;;;;;;;:::i;35178:164::-;;;;;;;;;;-1:-1:-1;35178:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35299:25:0;;;35275:4;35299:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35178:164;58628:44;;;;;;;;;;-1:-1:-1;58628:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;58229:42;;;;;;;;;;;;58266:5;58229:42;;27025:612;27110:4;-1:-1:-1;;;;;;;;;27406:25:0;;;;:98;;-1:-1:-1;;;;;;;;;;27479:25:0;;;27406:98;:171;;;-1:-1:-1;;;;;;;;;;27552:25:0;;;27406:171;27390:187;27025:612;-1:-1:-1;;27025:612:0:o;32581:100::-;32635:13;32668:5;32661:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32581:100;:::o;34523:204::-;34591:7;34616:16;34624:7;34616;:16::i;:::-;34611:64;;34641:34;;-1:-1:-1;;;34641:34:0;;;;;;;;;;;34611:64;-1:-1:-1;34695:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34695:24:0;;34523:204::o;57428:155::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;;;;;;;;;57542:1:::1;57526:6:::0;;57510:35:::1;::::0;-1:-1:-1;;;;;57526:6:0;;::::1;::::0;57510:35:::1;::::0;57542:1;;57510:35:::1;57573:1;57556:19:::0;;-1:-1:-1;;;;;;57556:19:0::1;::::0;;57428:155::o;34071:386::-;34144:13;34160:16;34168:7;34160;:16::i;:::-;34144:32;-1:-1:-1;54512:10:0;-1:-1:-1;;;;;34193:28:0;;;34189:175;;34241:44;34258:5;54512:10;35178:164;:::i;34241:44::-;34236:128;;34313:35;;-1:-1:-1;;;34313:35:0;;;;;;;;;;;34236:128;34376:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34376:29:0;-1:-1:-1;;;;;34376:29:0;;;;;;;;;34421:28;;34376:24;;34421:28;;;;;;;34133:324;34071:386;;:::o;60443:100::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;60517:7:::1;:18;60527:8:::0;60517:7;:18:::1;:::i;:::-;;60443:100:::0;:::o;43555:2710::-;43689:27;43719;43738:7;43719:18;:27::i;:::-;43689:57;;43804:4;-1:-1:-1;;;;;43763:45:0;43779:19;-1:-1:-1;;;;;43763:45:0;;43759:86;;43817:28;;-1:-1:-1;;;43817:28:0;;;;;;;;;;;43759:86;43859:27;42301:21;;;42132:15;42343:4;42336:36;42425:4;42409:21;;42511:26;;54512:10;43252:30;;;-1:-1:-1;;;;;42958:26:0;;43231:19;;;43228:55;44038:174;;44125:43;44142:4;54512:10;35178:164;:::i;44125:43::-;44120:92;;44177:35;;-1:-1:-1;;;44177:35:0;;;;;;;;;;;44120:92;-1:-1:-1;;;;;44229:16:0;;44225:52;;44254:23;;-1:-1:-1;;;44254:23:0;;;;;;;;;;;44225:52;44426:15;44423:156;;;44562:1;44541:19;44534:30;44423:156;-1:-1:-1;;;;;44945:24:0;;;;;;;:18;:24;;;;;;44943:26;;-1:-1:-1;;44943:26:0;;;45019:22;;;;;;;;;45017:24;;-1:-1:-1;45017:24:0;;;32269:11;32245:22;32241:40;32228:62;-1:-1:-1;;;32228:62:0;45297:26;;;;:17;:26;;;;;:162;;;;-1:-1:-1;;;45571:46:0;;:51;;45567:586;;45671:1;45661:11;;45639:19;45786:30;;;:17;:30;;;;;;:35;;45782:360;;45916:13;;45901:11;:28;45897:230;;46055:30;;;;:17;:30;;;;;:52;;;45897:230;45624:529;45567:586;46196:7;46192:2;-1:-1:-1;;;;;46177:27:0;46186:4;-1:-1:-1;;;;;46177:27:0;;;;;;;;;;;46215:42;43678:2587;;;43555:2710;;;:::o;60742:104::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;60816:9:::1;:22:::0;60742:104::o;35413:185::-;35551:39;35568:4;35574:2;35578:7;35551:39;;;;;;;;;;;;:16;:39::i;:::-;35413:185;;;:::o;57591:316::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57728:23:0;::::1;57706:111;;;::::0;-1:-1:-1;;;57706:111:0;;9587:2:1;57706:111:0::1;::::0;::::1;9569:21:1::0;9626:2;9606:18;;;9599:30;9665:34;9645:18;;;9638:62;-1:-1:-1;;;9716:18:1;;;9709:36;9762:19;;57706:111:0::1;9385:402:1::0;57706:111:0::1;57849:6;::::0;;57833:34:::1;::::0;-1:-1:-1;;;;;57833:34:0;;::::1;::::0;57849:6;::::1;::::0;57833:34:::1;::::0;::::1;57878:9;:21:::0;;-1:-1:-1;;;;;;57878:21:0::1;-1:-1:-1::0;;;;;57878:21:0;;;::::1;::::0;;;::::1;::::0;;57591:316::o;60551:87::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;60612:10:::1;:18:::0;;-1:-1:-1;;60612:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60551:87::o;60854:278::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;60932:12:::1;60949:9;-1:-1:-1::0;;;;;60949:14:0::1;60972:21;60949:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60931:67;;;61031:7;61009:115;;;::::0;-1:-1:-1;;;61009:115:0;;10204:2:1;61009:115:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;10353:28;10333:18;;;10326:56;10399:19;;61009:115:0::1;10002:422:1::0;60341:94:0;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;60412:7:::1;:15;60422:5:::0;60412:7;:15:::1;:::i;57915:218::-:0;57998:9;;-1:-1:-1;;;;;57998:9:0;57984:10;:23;57976:70;;;;-1:-1:-1;;;57976:70:0;;10631:2:1;57976:70:0;;;10613:21:1;10670:2;10650:18;;;10643:30;10709:34;10689:18;;;10682:62;-1:-1:-1;;;10760:18:1;;;10753:32;10802:19;;57976:70:0;10429:398:1;57976:70:0;58086:9;;;58078:6;;58062:34;;-1:-1:-1;;;;;58086:9:0;;;;58078:6;;;;58062:34;;;58116:9;;;58107:18;;-1:-1:-1;;;;;;58107:18:0;-1:-1:-1;;;;;58116:9:0;;;58107:18;;;;;;57915:218::o;32370:144::-;32434:7;32477:27;32496:7;32477:18;:27::i;58359:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27701:224::-;27765:7;-1:-1:-1;;;;;27789:19:0;;27785:60;;27817:28;;-1:-1:-1;;;27817:28:0;;;;;;;;;;;27785:60;-1:-1:-1;;;;;;27863:25:0;;;;;:18;:25;;;;;;22283:13;27863:54;;27701:224::o;60646:88::-;57343:6;;-1:-1:-1;;;;;57343:6:0;57353:10;57343:20;57335:65;;;;-1:-1:-1;;;57335:65:0;;;;;;;:::i;:::-;60712:5:::1;:14:::0;60646:88::o;32750:104::-;32806:13;32839:7;32832:14;;;;;:::i;59030:834::-;58917:10;;;;;;;58916:11;58908:37;;;;-1:-1:-1;;;58908:37:0;;11034:2:1;58908:37:0;;;11016:21:1;11073:2;11053:18;;;11046:30;-1:-1:-1;;;11092:18:1;;;11085:43;11145:18;;58908:37:0;10832:337:1;58908:37:0;58956:10;:17;;-1:-1:-1;;58956:17:0;;;;;59217:10:::1;58956:17:::0;59207:21;;;:9:::1;:21;::::0;;;;;59243:1:::1;::::0;59207:32:::1;::::0;59231:8;;59207:32:::1;:::i;:::-;:37;;59185:110;;;::::0;-1:-1:-1;;;59185:110:0;;11641:2:1;59185:110:0::1;::::0;::::1;11623:21:1::0;11680:2;11660:18;;;11653:30;11719:25;11699:18;;;11692:53;11762:18;;59185:110:0::1;11439:347:1::0;59185:110:0::1;59326:15;59314:9;;:27;59306:49;;;::::0;-1:-1:-1;;;59306:49:0;;11993:2:1;59306:49:0::1;::::0;::::1;11975:21:1::0;12032:1;12012:18;;;12005:29;-1:-1:-1;;;12050:18:1;;;12043:39;12099:18;;59306:49:0::1;11791:332:1::0;59306:49:0::1;59374:9;59387:10;59374:23;59366:44;;;::::0;-1:-1:-1;;;59366:44:0;;12330:2:1;59366:44:0::1;::::0;::::1;12312:21:1::0;12369:1;12349:18;;;12342:29;-1:-1:-1;;;12387:18:1;;;12380:38;12435:18;;59366:44:0::1;12128:331:1::0;59366:44:0::1;58266:5;59438:8;59429:6;;:17;;;;:::i;:::-;:31;;59421:55;;;::::0;-1:-1:-1;;;59421:55:0;;12666:2:1;59421:55:0::1;::::0;::::1;12648:21:1::0;12705:2;12685:18;;;12678:30;-1:-1:-1;;;12724:18:1;;;12717:41;12775:18;;59421:55:0::1;12464:335:1::0;59421:55:0::1;59489:18;59532:8;59522:6;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;59564:10:0::1;::::0;59555:6:::1;::::0;:19:::1;59551:164;;;59591:14;59617:10;;59608:6;;:19;;;;:::i;:::-;59591:36;;59698:5;;59666:8;59656:6;:18;;:38;;59688:6;59656:38;;;59677:8;59656:38;59655:48;;;;:::i;:::-;59642:61;;59576:139;59551:164;59746:10;59733:9;:23;59725:49;;;::::0;-1:-1:-1;;;59725:49:0;;13309:2:1;59725:49:0::1;::::0;::::1;13291:21:1::0;13348:2;13328:18;;;13321:30;-1:-1:-1;;;13367:18:1;;;13360:43;13420:18;;59725:49:0::1;13107:337:1::0;59725:49:0::1;59785:27;59791:10;59803:8;59785:5;:27::i;:::-;59833:10;59823:21;::::0;;;:9:::1;:21;::::0;;;;:33;;59848:8;;59823:21;:33:::1;::::0;59848:8;;59823:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;58996:10:0;:18;;-1:-1:-1;;58996:18:0;;;-1:-1:-1;;59030:834:0:o;34799:308::-;54512:10;-1:-1:-1;;;;;34898:31:0;;;34894:61;;34938:17;;-1:-1:-1;;;34938:17:0;;;;;;;;;;;34894:61;54512:10;34968:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34968:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34968:60:0;;;;;;;;;;35044:55;;540:41:1;;;34968:49:0;;54512:10;35044:55;;513:18:1;35044:55:0;;;;;;;34799:308;;:::o;35669:399::-;35836:31;35849:4;35855:2;35859:7;35836:12;:31::i;:::-;-1:-1:-1;;;;;35882:14:0;;;:19;35878:183;;35921:56;35952:4;35958:2;35962:7;35971:5;35921:30;:56::i;:::-;35916:145;;36005:40;;-1:-1:-1;;;36005:40:0;;;;;;;;;;;35916:145;35669:399;;;;:::o;59990:343::-;60063:13;60094:16;60102:7;60094;:16::i;:::-;60089:59;;60119:29;;-1:-1:-1;;;60119:29:0;;;;;;;;;;;60089:59;60165:10;;;;60161:57;;;60199:7;60192:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59990:343;;;:::o;60161:57::-;60241:7;60235:21;;;;;:::i;:::-;;;60260:1;60235:26;:90;;;;;;;;;;;;;;;;;60288:10;:8;:10::i;:::-;60300:18;60310:7;60300:9;:18::i;:::-;60271:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60228:97;59990:343;-1:-1:-1;;59990:343:0:o;58478:111::-;;;;;;;:::i;36323:270::-;36380:4;36462:13;;36452:7;:23;36413:144;;;;-1:-1:-1;;36509:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;36509:43:0;:48;;36323:270::o;29375:1049::-;29442:7;29477;29567:13;;29560:4;:20;29556:805;;;29601:14;29618:23;;;:17;:23;;;;;;;-1:-1:-1;;;29699:23:0;;:28;;29695:651;;30186:105;30193:6;30203:1;30193:11;30186:105;;-1:-1:-1;;;30260:6:0;30242:25;;;;:17;:25;;;;;;30186:105;;;30320:6;29375:1049;-1:-1:-1;;;29375:1049:0:o;29695:651::-;29582:779;29556:805;30385:31;;-1:-1:-1;;;30385:31:0;;;;;;;;;;;38112:1446;38200:13;;-1:-1:-1;;;;;38228:16:0;;38224:48;;38253:19;;-1:-1:-1;;;38253:19:0;;;;;;;;;;;38224:48;38287:8;38299:1;38287:13;38283:44;;38309:18;;-1:-1:-1;;;38309:18:0;;;;;;;;;;;38283:44;-1:-1:-1;;;;;38787:22:0;;;;;;:18;:22;;22420:2;38787:22;;:70;;38825:31;38813:44;;38787:70;;;32269:11;32245:22;32241:40;-1:-1:-1;33975:15:0;;33950:23;33946:45;32238:51;32228:62;39076:31;;;;:17;:31;;;;;:161;39094:12;39305:23;;;39339:102;39362:35;;39387:9;;;;;-1:-1:-1;;;;;39362:35:0;;;39379:1;;39362:35;;39379:1;;39362:35;39436:3;39426:7;:13;39339:102;;39453:13;:19;-1:-1:-1;35413:185:0;;;:::o;50080:716::-;50264:88;;-1:-1:-1;;;50264:88:0;;50243:4;;-1:-1:-1;;;;;50264:45:0;;;;;:88;;54512:10;;50331:4;;50337:7;;50346:5;;50264:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50264:88:0;;;;;;;;-1:-1:-1;;50264:88:0;;;;;;;;;;;;:::i;:::-;;;50260:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50547:6;:13;50564:1;50547:18;50543:235;;50593:40;;-1:-1:-1;;;50593:40:0;;;;;;;;;;;50543:235;50736:6;50730:13;50721:6;50717:2;50713:15;50706:38;50260:529;-1:-1:-1;;;;;;50423:64:0;-1:-1:-1;;;50423:64:0;;-1:-1:-1;50260:529:0;50080:716;;;;;;:::o;59874:108::-;59934:13;59967:7;59960:14;;;;;:::i;54636:1892::-;55089:4;55083:11;;55096:3;55079:21;;55170:17;;;;55838:11;;;55721:5;55966:2;55980;55970:13;;55962:22;55838:11;55949:36;56021:2;56011:13;;55617:677;56040:4;55617:677;;;56223:1;56218:3;56214:11;56207:18;;56274:2;56268:4;56264:13;56260:2;56256:22;56251:3;56243:36;56131:2;56121:13;;55617:677;;;-1:-1:-1;56324:13:0;;;-1:-1:-1;;56435:12:0;;;56491:19;;;56435:12;54636:1892;-1:-1:-1;54636:1892:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:131::-;-1:-1:-1;;;;;1993:31:1;;1983:42;;1973:70;;2039:1;2036;2029:12;2054:315;2122:6;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2238:9;2225:23;2257:31;2282:5;2257:31;:::i;:::-;2307:5;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2054:315:1:o;2374:127::-;2435:10;2430:3;2426:20;2423:1;2416:31;2466:4;2463:1;2456:15;2490:4;2487:1;2480:15;2506:632;2571:5;2601:18;2642:2;2634:6;2631:14;2628:40;;;2648:18;;:::i;:::-;2723:2;2717:9;2691:2;2777:15;;-1:-1:-1;;2773:24:1;;;2799:2;2769:33;2765:42;2753:55;;;2823:18;;;2843:22;;;2820:46;2817:72;;;2869:18;;:::i;:::-;2909:10;2905:2;2898:22;2938:6;2929:15;;2968:6;2960;2953:22;3008:3;2999:6;2994:3;2990:16;2987:25;2984:45;;;3025:1;3022;3015:12;2984:45;3075:6;3070:3;3063:4;3055:6;3051:17;3038:44;3130:1;3123:4;3114:6;3106;3102:19;3098:30;3091:41;;;;2506:632;;;;;:::o;3143:451::-;3212:6;3265:2;3253:9;3244:7;3240:23;3236:32;3233:52;;;3281:1;3278;3271:12;3233:52;3321:9;3308:23;3354:18;3346:6;3343:30;3340:50;;;3386:1;3383;3376:12;3340:50;3409:22;;3462:4;3454:13;;3450:27;-1:-1:-1;3440:55:1;;3491:1;3488;3481:12;3440:55;3514:74;3580:7;3575:2;3562:16;3557:2;3553;3549:11;3514:74;:::i;3599:456::-;3676:6;3684;3692;3745:2;3733:9;3724:7;3720:23;3716:32;3713:52;;;3761:1;3758;3751:12;3713:52;3800:9;3787:23;3819:31;3844:5;3819:31;:::i;:::-;3869:5;-1:-1:-1;3926:2:1;3911:18;;3898:32;3939:33;3898:32;3939:33;:::i;:::-;3599:456;;3991:7;;-1:-1:-1;;;4045:2:1;4030:18;;;;4017:32;;3599:456::o;4060:247::-;4119:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4227:9;4214:23;4246:31;4271:5;4246:31;:::i;4312:160::-;4377:20;;4433:13;;4426:21;4416:32;;4406:60;;4462:1;4459;4452:12;4406:60;4312:160;;;:::o;4477:180::-;4533:6;4586:2;4574:9;4565:7;4561:23;4557:32;4554:52;;;4602:1;4599;4592:12;4554:52;4625:26;4641:9;4625:26;:::i;4922:315::-;4987:6;4995;5048:2;5036:9;5027:7;5023:23;5019:32;5016:52;;;5064:1;5061;5054:12;5016:52;5103:9;5090:23;5122:31;5147:5;5122:31;:::i;:::-;5172:5;-1:-1:-1;5196:35:1;5227:2;5212:18;;5196:35;:::i;:::-;5186:45;;4922:315;;;;;:::o;5242:795::-;5337:6;5345;5353;5361;5414:3;5402:9;5393:7;5389:23;5385:33;5382:53;;;5431:1;5428;5421:12;5382:53;5470:9;5457:23;5489:31;5514:5;5489:31;:::i;:::-;5539:5;-1:-1:-1;5596:2:1;5581:18;;5568:32;5609:33;5568:32;5609:33;:::i;:::-;5661:7;-1:-1:-1;5715:2:1;5700:18;;5687:32;;-1:-1:-1;5770:2:1;5755:18;;5742:32;5797:18;5786:30;;5783:50;;;5829:1;5826;5819:12;5783:50;5852:22;;5905:4;5897:13;;5893:27;-1:-1:-1;5883:55:1;;5934:1;5931;5924:12;5883:55;5957:74;6023:7;6018:2;6005:16;6000:2;5996;5992:11;5957:74;:::i;:::-;5947:84;;;5242:795;;;;;;;:::o;6042:388::-;6110:6;6118;6171:2;6159:9;6150:7;6146:23;6142:32;6139:52;;;6187:1;6184;6177:12;6139:52;6226:9;6213:23;6245:31;6270:5;6245:31;:::i;:::-;6295:5;-1:-1:-1;6352:2:1;6337:18;;6324:32;6365:33;6324:32;6365:33;:::i;:::-;6417:7;6407:17;;;6042:388;;;;;:::o;6435:380::-;6514:1;6510:12;;;;6557;;;6578:61;;6632:4;6624:6;6620:17;6610:27;;6578:61;6685:2;6677:6;6674:14;6654:18;6651:38;6648:161;;6731:10;6726:3;6722:20;6719:1;6712:31;6766:4;6763:1;6756:15;6794:4;6791:1;6784:15;6648:161;;6435:380;;;:::o;6820:356::-;7022:2;7004:21;;;7041:18;;;7034:30;7100:34;7095:2;7080:18;;7073:62;7167:2;7152:18;;6820:356::o;7307:545::-;7409:2;7404:3;7401:11;7398:448;;;7445:1;7470:5;7466:2;7459:17;7515:4;7511:2;7501:19;7585:2;7573:10;7569:19;7566:1;7562:27;7556:4;7552:38;7621:4;7609:10;7606:20;7603:47;;;-1:-1:-1;7644:4:1;7603:47;7699:2;7694:3;7690:12;7687:1;7683:20;7677:4;7673:31;7663:41;;7754:82;7772:2;7765:5;7762:13;7754:82;;;7817:17;;;7798:1;7787:13;7754:82;;8028:1352;8154:3;8148:10;8181:18;8173:6;8170:30;8167:56;;;8203:18;;:::i;:::-;8232:97;8322:6;8282:38;8314:4;8308:11;8282:38;:::i;:::-;8276:4;8232:97;:::i;:::-;8384:4;;8448:2;8437:14;;8465:1;8460:663;;;;9167:1;9184:6;9181:89;;;-1:-1:-1;9236:19:1;;;9230:26;9181:89;-1:-1:-1;;7985:1:1;7981:11;;;7977:24;7973:29;7963:40;8009:1;8005:11;;;7960:57;9283:81;;8430:944;;8460:663;7254:1;7247:14;;;7291:4;7278:18;;-1:-1:-1;;8496:20:1;;;8614:236;8628:7;8625:1;8622:14;8614:236;;;8717:19;;;8711:26;8696:42;;8809:27;;;;8777:1;8765:14;;;;8644:19;;8614:236;;;8618:3;8878:6;8869:7;8866:19;8863:201;;;8939:19;;;8933:26;-1:-1:-1;;9022:1:1;9018:14;;;9034:3;9014:24;9010:37;9006:42;8991:58;8976:74;;8863:201;-1:-1:-1;;;;;9110:1:1;9094:14;;;9090:22;9077:36;;-1:-1:-1;8028:1352:1:o;11174:127::-;11235:10;11230:3;11226:20;11223:1;11216:31;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11306:128;11346:3;11377:1;11373:6;11370:1;11367:13;11364:39;;;11383:18;;:::i;:::-;-1:-1:-1;11419:9:1;;11306:128::o;12804:125::-;12844:4;12872:1;12869;12866:8;12863:34;;;12877:18;;:::i;:::-;-1:-1:-1;12914:9:1;;12804:125::o;12934:168::-;12974:7;13040:1;13036;13032:6;13028:14;13025:1;13022:21;13017:1;13010:9;13003:17;12999:45;12996:71;;;13047:18;;:::i;:::-;-1:-1:-1;13087:9:1;;12934:168::o;13449:470::-;13628:3;13666:6;13660:13;13682:53;13728:6;13723:3;13716:4;13708:6;13704:17;13682:53;:::i;:::-;13798:13;;13757:16;;;;13820:57;13798:13;13757:16;13854:4;13842:17;;13820:57;:::i;:::-;13893:20;;13449:470;-1:-1:-1;;;;13449:470:1:o;13924:489::-;-1:-1:-1;;;;;14193:15:1;;;14175:34;;14245:15;;14240:2;14225:18;;14218:43;14292:2;14277:18;;14270:34;;;14340:3;14335:2;14320:18;;14313:31;;;14118:4;;14361:46;;14387:19;;14379:6;14361:46;:::i;:::-;14353:54;13924:489;-1:-1:-1;;;;;;13924:489:1:o;14418:249::-;14487:6;14540:2;14528:9;14519:7;14515:23;14511:32;14508:52;;;14556:1;14553;14546:12;14508:52;14588:9;14582:16;14607:30;14631:5;14607:30;:::i

Swarm Source

ipfs://be3d60d6bcd79dee49976612ae7b759355692b62ee2102490cbfe9dffec94f87

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.