ETH Price: $3,552.04 (+6.77%)

Contract

0x5DD343DF9e4019A83Fa71C6a7699c6442adAAfA2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...205009402024-08-10 21:35:59108 days ago1723325759IN
0x5DD343DF...42adAAfA2
0 ETH0.000029821.23254711
Set Approval For...187310652023-12-07 1:12:59356 days ago1701911579IN
0x5DD343DF...42adAAfA2
0 ETH0.0019626242.48649559
Set Approval For...182881462023-10-06 1:21:11418 days ago1696555271IN
0x5DD343DF...42adAAfA2
0 ETH0.00028526.18542546
Set Approval For...169258082023-03-28 12:23:35610 days ago1680006215IN
0x5DD343DF...42adAAfA2
0 ETH0.0011277424.44487905
Set Approval For...166695052023-02-20 11:37:59646 days ago1676893079IN
0x5DD343DF...42adAAfA2
0 ETH0.0009865721.38497754
Set Approval For...165862592023-02-08 19:55:59657 days ago1675886159IN
0x5DD343DF...42adAAfA2
0 ETH0.0018921341.03520084
Set Approval For...164134012023-01-15 16:29:59682 days ago1673800199IN
0x5DD343DF...42adAAfA2
0 ETH0.0011273524.44914735
Set Approval For...164133742023-01-15 16:24:35682 days ago1673799875IN
0x5DD343DF...42adAAfA2
0 ETH0.0011895325.79781834
Set Approval For...164133632023-01-15 16:22:23682 days ago1673799743IN
0x5DD343DF...42adAAfA2
0 ETH0.0012386226.86240301
Set Approval For...163889332023-01-12 6:28:23685 days ago1673504903IN
0x5DD343DF...42adAAfA2
0 ETH0.0008241417.87338128
Set Approval For...162894742022-12-29 9:18:47699 days ago1672305527IN
0x5DD343DF...42adAAfA2
0 ETH0.0006630114.37147961
Set Approval For...161898252022-12-15 11:34:35713 days ago1671104075IN
0x5DD343DF...42adAAfA2
0 ETH0.0005910412.79481149
Set Approval For...158849522022-11-02 21:15:23755 days ago1667423723IN
0x5DD343DF...42adAAfA2
0 ETH0.0008988519.46339595
Set Approval For...158831042022-11-02 15:02:47756 days ago1667401367IN
0x5DD343DF...42adAAfA2
0 ETH0.0006420613.91746556
Set Approval For...158802912022-11-02 5:36:47756 days ago1667367407IN
0x5DD343DF...42adAAfA2
0 ETH0.0004900410.6221388
Set Approval For...158802802022-11-02 5:34:35756 days ago1667367275IN
0x5DD343DF...42adAAfA2
0 ETH0.000433289.39185034
Set Approval For...158762192022-11-01 15:58:11757 days ago1667318291IN
0x5DD343DF...42adAAfA2
0 ETH0.0009566220.73577434
Set Approval For...158752802022-11-01 12:49:11757 days ago1667306951IN
0x5DD343DF...42adAAfA2
0 ETH0.0005118911.09577061
Set Approval For...158465852022-10-28 12:33:35761 days ago1666960415IN
0x5DD343DF...42adAAfA2
0 ETH0.0007615416.50718571
Set Approval For...158406822022-10-27 16:44:11762 days ago1666889051IN
0x5DD343DF...42adAAfA2
0 ETH0.0010378122.49559827
Set Approval For...158391652022-10-27 11:37:47762 days ago1666870667IN
0x5DD343DF...42adAAfA2
0 ETH0.0004871210.5589531
Set Approval For...158370562022-10-27 4:35:11762 days ago1666845311IN
0x5DD343DF...42adAAfA2
0 ETH0.000471910.22901625
Set Approval For...158335232022-10-26 16:44:23763 days ago1666802663IN
0x5DD343DF...42adAAfA2
0 ETH0.0011606125.12485318
Safe Transfer Fr...158334572022-10-26 16:31:11763 days ago1666801871IN
0x5DD343DF...42adAAfA2
0 ETH0.0016274625.32539432
Set Approval For...158329002022-10-26 14:39:11763 days ago1666795151IN
0x5DD343DF...42adAAfA2
0 ETH0.001426530.92080272
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
158039112022-10-22 13:21:23767 days ago1666444883
0x5DD343DF...42adAAfA2
0.478 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FinchDog

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

// File: contracts/Finch Dog.sol


pragma solidity ^0.8.16;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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), ".json")) : '';
    }

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

contract FinchDog is Ownable, ERC721A {
  string public baseURI = "https://bafybeid3nbpe5q4jgsstmhtobpelxpp6zr4mohklpjkoatfdtrk3nxbddy.ipfs.nftstorage.link/";

  bool public isMintOpen = false;

  bool public isFreeMintOpen = true;

  uint256 public immutable unitPrice = 0.003 ether;

  uint256 public immutable maxSupply = 8888;

  uint256 public immutable maxWalletSupply = 10;

  uint256 public immutable maxWalletFreeSupply = 3;

  constructor(uint256 _mintCntToOwner) ERC721A('FinchDog', 'FDOG') {
    _mint(msg.sender, _mintCntToOwner);
  }

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

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

  function startTokenId() external pure returns (uint256) {
    return _startTokenId();
  }

  function nextTokenId() external view returns (uint256) {
    return _nextTokenId();
  }

  function numberMinted(address owner) external view returns (uint256) {
    return _numberMinted(owner);
  }

  function getBalance() external view returns (uint256) {
    return address(this).balance;
  }

  function mint(uint256 quantity) external payable {
    unchecked {
      require(isMintOpen, '0');

      uint256 currentSupply = _nextTokenId() - 1;
      require((currentSupply + quantity) <= maxSupply, '1');

      uint256 walletSupply = _numberMinted(msg.sender);
      require((walletSupply + quantity) <= maxWalletSupply, '2');

      if (isFreeMintOpen == false || currentSupply >= 8000) {
        require(msg.value >= unitPrice * quantity, '3');
      } else {
        uint256 walletFreeSupply = walletSupply > maxWalletFreeSupply
            ? maxWalletFreeSupply
            : walletSupply;
        uint256 freeQuantity = maxWalletFreeSupply > walletFreeSupply
            ? maxWalletFreeSupply - walletFreeSupply
            : 0;
        require(
            msg.value >= unitPrice * (quantity > freeQuantity ? quantity - freeQuantity : 0),
            '4'
        );
      }
    }

    _mint(msg.sender, quantity);
  }

  function setBaseURI(string calldata uri) external onlyOwner {
    baseURI = uri;
  }

  function setIsMintOpen(bool _isMintOpen) external onlyOwner {
    isMintOpen = _isMintOpen;
  }

  function setIsFreeMintOpen(bool _isFreeMintOpen) external onlyOwner {
    isFreeMintOpen = _isFreeMintOpen;
  }

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

  function marketMint(address[] memory marketmintaddress, uint256[] memory mintquantity) public onlyOwner {
    for (uint256 i = 0; i < marketmintaddress.length; i++) {
      require(totalSupply() + mintquantity[i] <= maxSupply, "Exceed supply");
      _safeMint(marketmintaddress[i], mintquantity[i]);
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_mintCntToOwner","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":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isFreeMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"marketmintaddress","type":"address[]"},{"internalType":"uint256[]","name":"mintquantity","type":"uint256[]"}],"name":"marketMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFreeMintOpen","type":"bool"}],"name":"setIsFreeMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintOpen","type":"bool"}],"name":"setIsMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610180604052605961010081815290620020b861012039600990620000259082620002e9565b50600a805461ffff1916610100178155660aa87bee5380006080526122b860a05260c052600360e0523480156200005b57600080fd5b5060405162002111380380620021118339810160408190526200007e91620003b5565b6040518060400160405280600881526020016746696e6368446f6760c01b8152506040518060400160405280600481526020016346444f4760e01b815250620000d6620000d06200010d60201b60201c565b62000111565b6003620000e48382620002e9565b506004620000f38282620002e9565b5050600180555062000106338262000161565b50620003cf565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166200018b57604051622e076360e81b815260040160405180910390fd5b81600003620001ad5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001f757600155505b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027057607f821691505b6020821081036200029157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024057600081815260208120601f850160051c81016020861015620002c05750805b601f850160051c820191505b81811015620002e157828155600101620002cc565b505050505050565b81516001600160401b0381111562000305576200030562000245565b6200031d816200031684546200025b565b8462000297565b602080601f8311600181146200035557600084156200033c5750858301515b600019600386901b1c1916600185901b178555620002e1565b600085815260208120601f198616915b82811015620003865788860151825594840194600190910190840162000365565b5085821015620003a55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620003c857600080fd5b5051919050565b60805160a05160c05160e051611c7062000448600039600081816103d501528181610d2c01528181610d5901528181610d800152610dae0152600081816104ee0152610c5b01526000818161058101528181610be70152610fee0152600081816105e901528181610cd00152610de50152611c706000f3fe6080604052600436106101f95760003560e01c806375794a3c1161010d578063b88d4fde116100a0578063e6798baa1161006f578063e6798baa146105c3578063e73faa2d146105d7578063e9014f9d1461060b578063e985e9c51461062b578063f2fde38b1461064b57600080fd5b8063b88d4fde1461052f578063c87b56dd1461054f578063d5abeb011461056f578063dc33e681146105a357600080fd5b8063a0712d68116100dc578063a0712d68146104a9578063a22cb465146104bc578063a542f1c4146104dc578063a6f5f0141461051057600080fd5b806375794a3c146104415780638da5cb5b1461045657806395d89b41146104745780639da2f5f51461048957600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e146103a357806365d547ec146103c35780636c0360eb146103f757806370a082311461040c578063715018a61461042c57600080fd5b806323b872dd1461032357806342842e0e1461034357806351cff8d91461036357806355f804b31461038357600080fd5b806312065fe0116101cc57806312065fe0146102af578063125c917c146102cc57806318160ddd146102ec578063199080161461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611583565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106bd565b60405161022a91906115f0565b34801561026157600080fd5b50610275610270366004611603565b61074f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611638565b610793565b005b3480156102bb57600080fd5b50475b60405190815260200161022a565b3480156102d857600080fd5b506102ad6102e7366004611672565b610833565b3480156102f857600080fd5b5060025460015403600019016102be565b34801561031557600080fd5b50600a5461021e9060ff1681565b34801561032f57600080fd5b506102ad61033e36600461168d565b610855565b34801561034f57600080fd5b506102ad61035e36600461168d565b6109ee565b34801561036f57600080fd5b506102ad61037e3660046116c9565b610a0e565b34801561038f57600080fd5b506102ad61039e3660046116e4565b610a4f565b3480156103af57600080fd5b506102756103be366004611603565b610a64565b3480156103cf57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561040357600080fd5b50610248610a6f565b34801561041857600080fd5b506102be6104273660046116c9565b610afd565b34801561043857600080fd5b506102ad610b4c565b34801561044d57600080fd5b506102be610b60565b34801561046257600080fd5b506000546001600160a01b0316610275565b34801561048057600080fd5b50610248610b70565b34801561049557600080fd5b506102ad6104a4366004611672565b610b7f565b6102ad6104b7366004611603565b610b9a565b3480156104c857600080fd5b506102ad6104d7366004611756565b610e4a565b3480156104e857600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561051c57600080fd5b50600a5461021e90610100900460ff1681565b34801561053b57600080fd5b506102ad61054a3660046117d0565b610edf565b34801561055b57600080fd5b5061024861056a366004611603565b610f29565b34801561057b57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105af57600080fd5b506102be6105be3660046116c9565b610fad565b3480156105cf57600080fd5b5060016102be565b3480156105e357600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561061757600080fd5b506102ad61062636600461191f565b610fd8565b34801561063757600080fd5b5061021e6106463660046119df565b6110d0565b34801561065757600080fd5b506102ad6106663660046116c9565b6110fe565b60006301ffc9a760e01b6001600160e01b03198316148061069c57506380ac58cd60e01b6001600160e01b03198316145b806106b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106cc90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611a09565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611174565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079e82610a64565b9050336001600160a01b038216146107d7576107ba81336110d0565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083b6111a9565b600a80549115156101000261ff0019909216919091179055565b600061086082611203565b9050836001600160a01b0316816001600160a01b0316146108935760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108e0576108c386336110d0565b6108e057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661090757604051633a954ecd60e21b815260040160405180910390fd5b801561091257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036109a4576001840160008181526005602052604081205490036109a25760015481146109a25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a0983838360405180602001604052806000815250610edf565b505050565b610a166111a9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b610a576111a9565b6009610a09828483611a89565b60006106b782611203565b60098054610a7c90611a09565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890611a09565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b60006001600160a01b038216610b26576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b546111a9565b610b5e6000611272565b565b6000610b6b60015490565b905090565b6060600480546106cc90611a09565b610b876111a9565b600a805460ff1916911515919091179055565b600a5460ff16610bd55760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610be260015490565b0390507f00000000000000000000000000000000000000000000000000000000000000008282011115610c3b5760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610bcc565b336000908152600660205260409081902054901c67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000008382011115610caf5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610bcc565b600a54610100900460ff161580610cc85750611f408210155b15610d2857827f000000000000000000000000000000000000000000000000000000000000000002341015610d235760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610bcc565b610e3b565b60007f00000000000000000000000000000000000000000000000000000000000000008211610d575781610d79565b7f00000000000000000000000000000000000000000000000000000000000000005b90506000817f000000000000000000000000000000000000000000000000000000000000000011610dab576000610dcf565b817f0000000000000000000000000000000000000000000000000000000000000000035b9050808511610ddf576000610de3565b8085035b7f000000000000000000000000000000000000000000000000000000000000000002341015610e385760405162461bcd60e51b81526020600482015260016024820152600d60fa1b6044820152606401610bcc565b50505b5050610e4733826112c2565b50565b336001600160a01b03831603610e735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484610855565b6001600160a01b0383163b15610f2357610f06848484846113a2565b610f23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3482611174565b610f5157604051630a14c4b560e41b815260040160405180910390fd5b6000610f5b61148d565b90508051600003610f7b5760405180602001604052806000815250610fa6565b80610f858461149c565b604051602001610f96929190611b49565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166106b7565b610fe06111a9565b60005b8251811015610a09577f000000000000000000000000000000000000000000000000000000000000000082828151811061101f5761101f611b88565b602002602001015161103a6002546001546000199190030190565b6110449190611bb4565b11156110825760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610bcc565b6110be83828151811061109757611097611b88565b60200260200101518383815181106110b1576110b1611b88565b60200260200101516114eb565b806110c881611bc7565b915050610fe3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6111066111a9565b6001600160a01b03811661116b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bcc565b610e4781611272565b600081600111158015611188575060015482105b80156106b7575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bcc565b60008180600111611259576001548110156112595760008181526005602052604081205490600160e01b82169003611257575b80600003610fa6575060001901600081815260056020526040902054611236565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166112eb57604051622e076360e81b815260040160405180910390fd5b8160000361130c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113565760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d7903390899088908890600401611be0565b6020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611c1d565b60015b611470573d808015611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b508051600003611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106cc90611a09565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b610a4b82826040518060200160405280600081525061150a83836112c2565b6001600160a01b0383163b15610a09576001548281035b61153460008683806001019450866113a2565b611551576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152157816001541461156657600080fd5b5050505050565b6001600160e01b031981168114610e4757600080fd5b60006020828403121561159557600080fd5b8135610fa68161156d565b60005b838110156115bb5781810151838201526020016115a3565b50506000910152565b600081518084526115dc8160208601602086016115a0565b601f01601f19169290920160200192915050565b602081526000610fa660208301846115c4565b60006020828403121561161557600080fd5b5035919050565b80356001600160a01b038116811461163357600080fd5b919050565b6000806040838503121561164b57600080fd5b6116548361161c565b946020939093013593505050565b8035801515811461163357600080fd5b60006020828403121561168457600080fd5b610fa682611662565b6000806000606084860312156116a257600080fd5b6116ab8461161c565b92506116b96020850161161c565b9150604084013590509250925092565b6000602082840312156116db57600080fd5b610fa68261161c565b600080602083850312156116f757600080fd5b823567ffffffffffffffff8082111561170f57600080fd5b818501915085601f83011261172357600080fd5b81358181111561173257600080fd5b86602082850101111561174457600080fd5b60209290920196919550909350505050565b6000806040838503121561176957600080fd5b6117728361161c565b915061178060208401611662565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c8576117c8611789565b604052919050565b600080600080608085870312156117e657600080fd5b6117ef8561161c565b935060206117fe81870161161c565b935060408601359250606086013567ffffffffffffffff8082111561182257600080fd5b818801915088601f83011261183657600080fd5b81358181111561184857611848611789565b61185a601f8201601f1916850161179f565b9150808252898482850101111561187057600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff8211156118aa576118aa611789565b5060051b60200190565b600082601f8301126118c557600080fd5b813560206118da6118d583611890565b61179f565b82815260059290921b840181019181810190868411156118f957600080fd5b8286015b8481101561191457803583529183019183016118fd565b509695505050505050565b6000806040838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b8135602061196e6118d583611890565b82815260059290921b8401810191818101908984111561198d57600080fd5b948201945b838610156119b2576119a38661161c565b82529482019490820190611992565b965050860135925050808211156119c857600080fd5b506119d5858286016118b4565b9150509250929050565b600080604083850312156119f257600080fd5b6119fb8361161c565b91506117806020840161161c565b600181811c90821680611a1d57607f821691505b602082108103611a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a0957600081815260208120601f850160051c81016020861015611a6a5750805b601f850160051c820191505b818110156109e657828155600101611a76565b67ffffffffffffffff831115611aa157611aa1611789565b611ab583611aaf8354611a09565b83611a43565b6000601f841160018114611ae95760008515611ad15750838201355b600019600387901b1c1916600186901b178355611566565b600083815260209020601f19861690835b82811015611b1a5786850135825560209485019460019092019101611afa565b5086821015611b375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611b5b8184602088016115a0565b835190830190611b6f8183602088016115a0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7611b9e565b600060018201611bd957611bd9611b9e565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c13908301846115c4565b9695505050505050565b600060208284031215611c2f57600080fd5b8151610fa68161156d56fea2646970667358221220d95f1fc28d40d504484be42e5e888bc8cc64b60827d659cbcabb8ced1532e7e264736f6c6343000810003368747470733a2f2f6261667962656964336e6270653571346a677373746d68746f6270656c787070367a72346d6f686b6c706a6b6f6174666474726b336e78626464792e697066732e6e667473746f726167652e6c696e6b2f0000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806375794a3c1161010d578063b88d4fde116100a0578063e6798baa1161006f578063e6798baa146105c3578063e73faa2d146105d7578063e9014f9d1461060b578063e985e9c51461062b578063f2fde38b1461064b57600080fd5b8063b88d4fde1461052f578063c87b56dd1461054f578063d5abeb011461056f578063dc33e681146105a357600080fd5b8063a0712d68116100dc578063a0712d68146104a9578063a22cb465146104bc578063a542f1c4146104dc578063a6f5f0141461051057600080fd5b806375794a3c146104415780638da5cb5b1461045657806395d89b41146104745780639da2f5f51461048957600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e146103a357806365d547ec146103c35780636c0360eb146103f757806370a082311461040c578063715018a61461042c57600080fd5b806323b872dd1461032357806342842e0e1461034357806351cff8d91461036357806355f804b31461038357600080fd5b806312065fe0116101cc57806312065fe0146102af578063125c917c146102cc57806318160ddd146102ec578063199080161461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611583565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106bd565b60405161022a91906115f0565b34801561026157600080fd5b50610275610270366004611603565b61074f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611638565b610793565b005b3480156102bb57600080fd5b50475b60405190815260200161022a565b3480156102d857600080fd5b506102ad6102e7366004611672565b610833565b3480156102f857600080fd5b5060025460015403600019016102be565b34801561031557600080fd5b50600a5461021e9060ff1681565b34801561032f57600080fd5b506102ad61033e36600461168d565b610855565b34801561034f57600080fd5b506102ad61035e36600461168d565b6109ee565b34801561036f57600080fd5b506102ad61037e3660046116c9565b610a0e565b34801561038f57600080fd5b506102ad61039e3660046116e4565b610a4f565b3480156103af57600080fd5b506102756103be366004611603565b610a64565b3480156103cf57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000381565b34801561040357600080fd5b50610248610a6f565b34801561041857600080fd5b506102be6104273660046116c9565b610afd565b34801561043857600080fd5b506102ad610b4c565b34801561044d57600080fd5b506102be610b60565b34801561046257600080fd5b506000546001600160a01b0316610275565b34801561048057600080fd5b50610248610b70565b34801561049557600080fd5b506102ad6104a4366004611672565b610b7f565b6102ad6104b7366004611603565b610b9a565b3480156104c857600080fd5b506102ad6104d7366004611756565b610e4a565b3480156104e857600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561051c57600080fd5b50600a5461021e90610100900460ff1681565b34801561053b57600080fd5b506102ad61054a3660046117d0565b610edf565b34801561055b57600080fd5b5061024861056a366004611603565b610f29565b34801561057b57600080fd5b506102be7f00000000000000000000000000000000000000000000000000000000000022b881565b3480156105af57600080fd5b506102be6105be3660046116c9565b610fad565b3480156105cf57600080fd5b5060016102be565b3480156105e357600080fd5b506102be7f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561061757600080fd5b506102ad61062636600461191f565b610fd8565b34801561063757600080fd5b5061021e6106463660046119df565b6110d0565b34801561065757600080fd5b506102ad6106663660046116c9565b6110fe565b60006301ffc9a760e01b6001600160e01b03198316148061069c57506380ac58cd60e01b6001600160e01b03198316145b806106b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106cc90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611a09565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611174565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079e82610a64565b9050336001600160a01b038216146107d7576107ba81336110d0565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083b6111a9565b600a80549115156101000261ff0019909216919091179055565b600061086082611203565b9050836001600160a01b0316816001600160a01b0316146108935760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108e0576108c386336110d0565b6108e057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661090757604051633a954ecd60e21b815260040160405180910390fd5b801561091257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036109a4576001840160008181526005602052604081205490036109a25760015481146109a25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a0983838360405180602001604052806000815250610edf565b505050565b610a166111a9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b610a576111a9565b6009610a09828483611a89565b60006106b782611203565b60098054610a7c90611a09565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890611a09565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b60006001600160a01b038216610b26576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b546111a9565b610b5e6000611272565b565b6000610b6b60015490565b905090565b6060600480546106cc90611a09565b610b876111a9565b600a805460ff1916911515919091179055565b600a5460ff16610bd55760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610be260015490565b0390507f00000000000000000000000000000000000000000000000000000000000022b88282011115610c3b5760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610bcc565b336000908152600660205260409081902054901c67ffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000a8382011115610caf5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610bcc565b600a54610100900460ff161580610cc85750611f408210155b15610d2857827f000000000000000000000000000000000000000000000000000aa87bee53800002341015610d235760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610bcc565b610e3b565b60007f00000000000000000000000000000000000000000000000000000000000000038211610d575781610d79565b7f00000000000000000000000000000000000000000000000000000000000000035b90506000817f000000000000000000000000000000000000000000000000000000000000000311610dab576000610dcf565b817f0000000000000000000000000000000000000000000000000000000000000003035b9050808511610ddf576000610de3565b8085035b7f000000000000000000000000000000000000000000000000000aa87bee53800002341015610e385760405162461bcd60e51b81526020600482015260016024820152600d60fa1b6044820152606401610bcc565b50505b5050610e4733826112c2565b50565b336001600160a01b03831603610e735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484610855565b6001600160a01b0383163b15610f2357610f06848484846113a2565b610f23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3482611174565b610f5157604051630a14c4b560e41b815260040160405180910390fd5b6000610f5b61148d565b90508051600003610f7b5760405180602001604052806000815250610fa6565b80610f858461149c565b604051602001610f96929190611b49565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166106b7565b610fe06111a9565b60005b8251811015610a09577f00000000000000000000000000000000000000000000000000000000000022b882828151811061101f5761101f611b88565b602002602001015161103a6002546001546000199190030190565b6110449190611bb4565b11156110825760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610bcc565b6110be83828151811061109757611097611b88565b60200260200101518383815181106110b1576110b1611b88565b60200260200101516114eb565b806110c881611bc7565b915050610fe3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6111066111a9565b6001600160a01b03811661116b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bcc565b610e4781611272565b600081600111158015611188575060015482105b80156106b7575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bcc565b60008180600111611259576001548110156112595760008181526005602052604081205490600160e01b82169003611257575b80600003610fa6575060001901600081815260056020526040902054611236565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166112eb57604051622e076360e81b815260040160405180910390fd5b8160000361130c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113565760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d7903390899088908890600401611be0565b6020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611c1d565b60015b611470573d808015611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b508051600003611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106cc90611a09565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b610a4b82826040518060200160405280600081525061150a83836112c2565b6001600160a01b0383163b15610a09576001548281035b61153460008683806001019450866113a2565b611551576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152157816001541461156657600080fd5b5050505050565b6001600160e01b031981168114610e4757600080fd5b60006020828403121561159557600080fd5b8135610fa68161156d565b60005b838110156115bb5781810151838201526020016115a3565b50506000910152565b600081518084526115dc8160208601602086016115a0565b601f01601f19169290920160200192915050565b602081526000610fa660208301846115c4565b60006020828403121561161557600080fd5b5035919050565b80356001600160a01b038116811461163357600080fd5b919050565b6000806040838503121561164b57600080fd5b6116548361161c565b946020939093013593505050565b8035801515811461163357600080fd5b60006020828403121561168457600080fd5b610fa682611662565b6000806000606084860312156116a257600080fd5b6116ab8461161c565b92506116b96020850161161c565b9150604084013590509250925092565b6000602082840312156116db57600080fd5b610fa68261161c565b600080602083850312156116f757600080fd5b823567ffffffffffffffff8082111561170f57600080fd5b818501915085601f83011261172357600080fd5b81358181111561173257600080fd5b86602082850101111561174457600080fd5b60209290920196919550909350505050565b6000806040838503121561176957600080fd5b6117728361161c565b915061178060208401611662565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c8576117c8611789565b604052919050565b600080600080608085870312156117e657600080fd5b6117ef8561161c565b935060206117fe81870161161c565b935060408601359250606086013567ffffffffffffffff8082111561182257600080fd5b818801915088601f83011261183657600080fd5b81358181111561184857611848611789565b61185a601f8201601f1916850161179f565b9150808252898482850101111561187057600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff8211156118aa576118aa611789565b5060051b60200190565b600082601f8301126118c557600080fd5b813560206118da6118d583611890565b61179f565b82815260059290921b840181019181810190868411156118f957600080fd5b8286015b8481101561191457803583529183019183016118fd565b509695505050505050565b6000806040838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b8135602061196e6118d583611890565b82815260059290921b8401810191818101908984111561198d57600080fd5b948201945b838610156119b2576119a38661161c565b82529482019490820190611992565b965050860135925050808211156119c857600080fd5b506119d5858286016118b4565b9150509250929050565b600080604083850312156119f257600080fd5b6119fb8361161c565b91506117806020840161161c565b600181811c90821680611a1d57607f821691505b602082108103611a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a0957600081815260208120601f850160051c81016020861015611a6a5750805b601f850160051c820191505b818110156109e657828155600101611a76565b67ffffffffffffffff831115611aa157611aa1611789565b611ab583611aaf8354611a09565b83611a43565b6000601f841160018114611ae95760008515611ad15750838201355b600019600387901b1c1916600186901b178355611566565b600083815260209020601f19861690835b82811015611b1a5786850135825560209485019460019092019101611afa565b5086821015611b375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611b5b8184602088016115a0565b835190830190611b6f8183602088016115a0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7611b9e565b600060018201611bd957611bd9611b9e565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c13908301846115c4565b9695505050505050565b600060208284031215611c2f57600080fd5b8151610fa68161156d56fea2646970667358221220d95f1fc28d40d504484be42e5e888bc8cc64b60827d659cbcabb8ced1532e7e264736f6c63430008100033

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

0000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _mintCntToOwner (uint256): 1

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


Deployed Bytecode Sourcemap

46204:2877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16063:615;;;;;;;;;;-1:-1:-1;16063:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16063:615:0;;;;;;;;21710:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23665:204::-;;;;;;;;;;-1:-1:-1;23665:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;23665:204:0;1533:203:1;23213:386:0;;;;;;;;;;-1:-1:-1;23213:386:0;;;;;:::i;:::-;;:::i;:::-;;47274:95;;;;;;;;;;-1:-1:-1;47342:21:0;47274:95;;;2324:25:1;;;2312:2;2297:18;47274:95:0;2178:177:1;48533:113:0;;;;;;;;;;-1:-1:-1;48533:113:0;;;;;:::i;:::-;;:::i;15117:315::-;;;;;;;;;;-1:-1:-1;15383:12:0;;46954:1;15367:13;:28;-1:-1:-1;;15367:46:0;15117:315;;46369:30;;;;;;;;;;-1:-1:-1;46369:30:0;;;;;;;;32930:2800;;;;;;;;;;-1:-1:-1;32930:2800:0;;;;;:::i;:::-;;:::i;24555:185::-;;;;;;;;;;-1:-1:-1;24555:185:0;;;;;:::i;:::-;;:::i;48652:105::-;;;;;;;;;;-1:-1:-1;48652:105:0;;;;;:::i;:::-;;:::i;48338:86::-;;;;;;;;;;-1:-1:-1;48338:86:0;;;;;:::i;:::-;;:::i;21499:144::-;;;;;;;;;;-1:-1:-1;21499:144:0;;;;;:::i;:::-;;:::i;46601:48::-;;;;;;;;;;;;;;;46247:115;;;;;;;;;;;;;:::i;16742:224::-;;;;;;;;;;-1:-1:-1;16742:224:0;;;;;:::i;:::-;;:::i;1531:103::-;;;;;;;;;;;;;:::i;47064:89::-;;;;;;;;;;;;;:::i;883:87::-;;;;;;;;;;-1:-1:-1;929:7:0;956:6;-1:-1:-1;;;;;956:6:0;883:87;;21879:104;;;;;;;;;;;;;:::i;48430:97::-;;;;;;;;;;-1:-1:-1;48430:97:0;;;;;:::i;:::-;;:::i;47375:957::-;;;;;;:::i;:::-;;:::i;23941:308::-;;;;;;;;;;-1:-1:-1;23941:308:0;;;;;:::i;:::-;;:::i;46549:45::-;;;;;;;;;;;;;;;46406:33;;;;;;;;;;-1:-1:-1;46406:33:0;;;;;;;;;;;24811:399;;;;;;;;;;-1:-1:-1;24811:399:0;;;;;:::i;:::-;;:::i;22054:327::-;;;;;;;;;;-1:-1:-1;22054:327:0;;;;;:::i;:::-;;:::i;46501:41::-;;;;;;;;;;;;;;;47159:109;;;;;;;;;;-1:-1:-1;47159:109:0;;;;;:::i;:::-;;:::i;46967:91::-;;;;;;;;;;-1:-1:-1;46954:1:0;46967:91;47064:89;46446:48;;;;;;;;;;;;;;;48763:315;;;;;;;;;;-1:-1:-1;48763:315:0;;;;;:::i;:::-;;:::i;24320:164::-;;;;;;;;;;-1:-1:-1;24320:164:0;;;;;:::i;:::-;;:::i;1789:201::-;;;;;;;;;;-1:-1:-1;1789:201:0;;;;;:::i;:::-;;:::i;16063:615::-;16148:4;-1:-1:-1;;;;;;;;;16448:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16525:25:0;;;16448:102;:179;;;-1:-1:-1;;;;;;;;;;16602:25:0;;;16448:179;16428:199;16063:615;-1:-1:-1;;16063:615:0:o;21710:100::-;21764:13;21797:5;21790:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21710:100;:::o;23665:204::-;23733:7;23758:16;23766:7;23758;:16::i;:::-;23753:64;;23783:34;;-1:-1:-1;;;23783:34:0;;;;;;;;;;;23753:64;-1:-1:-1;23837:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23837:24:0;;23665:204::o;23213:386::-;23286:13;23302:16;23310:7;23302;:16::i;:::-;23286:32;-1:-1:-1;44113:10:0;-1:-1:-1;;;;;23335:28:0;;;23331:175;;23383:44;23400:5;44113:10;24320:164;:::i;23383:44::-;23378:128;;23455:35;;-1:-1:-1;;;23455:35:0;;;;;;;;;;;23378:128;23518:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23518:29:0;-1:-1:-1;;;;;23518:29:0;;;;;;;;;23563:28;;23518:24;;23563:28;;;;;;;23275:324;23213:386;;:::o;48533:113::-;769:13;:11;:13::i;:::-;48608:14:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;48608:32:0;;::::1;::::0;;;::::1;::::0;;48533:113::o;32930:2800::-;33064:27;33094;33113:7;33094:18;:27::i;:::-;33064:57;;33179:4;-1:-1:-1;;;;;33138:45:0;33154:19;-1:-1:-1;;;;;33138:45:0;;33134:86;;33192:28;;-1:-1:-1;;;33192:28:0;;;;;;;;;;;33134:86;33234:27;31660:21;;;31487:15;31702:4;31695:36;31784:4;31768:21;;31874:26;;44113:10;32627:30;;;-1:-1:-1;;;;;32325:26:0;;32606:19;;;32603:55;33413:174;;33500:43;33517:4;44113:10;24320:164;:::i;33500:43::-;33495:92;;33552:35;;-1:-1:-1;;;33552:35:0;;;;;;;;;;;33495:92;-1:-1:-1;;;;;33604:16:0;;33600:52;;33629:23;;-1:-1:-1;;;33629:23:0;;;;;;;;;;;33600:52;33801:15;33798:160;;;33941:1;33920:19;33913:30;33798:160;-1:-1:-1;;;;;34336:24:0;;;;;;;:18;:24;;;;;;34334:26;;-1:-1:-1;;34334:26:0;;;34405:22;;;;;;;;;34403:24;;-1:-1:-1;34403:24:0;;;21398:11;21374:22;21370:40;21357:62;-1:-1:-1;;;21357:62:0;34698:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;34992:46:0;;:51;;34988:626;;35096:1;35086:11;;35064:19;35219:30;;;:17;:30;;;;;;:35;;35215:384;;35357:13;;35342:11;:28;35338:242;;35504:30;;;;:17;:30;;;;;:52;;;35338:242;35045:569;34988:626;35661:7;35657:2;-1:-1:-1;;;;;35642:27:0;35651:4;-1:-1:-1;;;;;35642:27:0;;;;;;;;;;;35680:42;33053:2677;;;32930:2800;;;:::o;24555:185::-;24693:39;24710:4;24716:2;24720:7;24693:39;;;;;;;;;;;;:16;:39::i;:::-;24555:185;;;:::o;48652:105::-;769:13;:11;:13::i;:::-;48708:43:::1;::::0;-1:-1:-1;;;;;48708:20:0;::::1;::::0;48729:21:::1;48708:43:::0;::::1;;;::::0;::::1;::::0;;;48729:21;48708:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48652:105:::0;:::o;48338:86::-;769:13;:11;:13::i;:::-;48405:7:::1;:13;48415:3:::0;;48405:7;:13:::1;:::i;21499:144::-:0;21563:7;21606:27;21625:7;21606:18;:27::i;46247:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16742:224::-;16806:7;-1:-1:-1;;;;;16830:19:0;;16826:60;;16858:28;;-1:-1:-1;;;16858:28:0;;;;;;;;;;;16826:60;-1:-1:-1;;;;;;16904:25:0;;;;;:18;:25;;;;;;11297:13;16904:54;;16742:224::o;1531:103::-;769:13;:11;:13::i;:::-;1596:30:::1;1623:1;1596:18;:30::i;:::-;1531:103::o:0;47064:89::-;47110:7;47133:14;14886:13;;;14812:95;47133:14;47126:21;;47064:89;:::o;21879:104::-;21935:13;21968:7;21961:14;;;;;:::i;48430:97::-;769:13;:11;:13::i;:::-;48497:10:::1;:24:::0;;-1:-1:-1;;48497:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48430:97::o;47375:957::-;47458:10;;;;47450:24;;;;-1:-1:-1;;;47450:24:0;;10403:2:1;47450:24:0;;;10385:21:1;10442:1;10422:18;;;10415:29;-1:-1:-1;;;10460:18:1;;;10453:31;10501:18;;47450:24:0;;;;;;;;;47485:21;47526:1;47509:14;14886:13;;;14812:95;47509:14;:18;47485:42;;47574:9;47561:8;47545:13;:24;47544:39;;47536:53;;;;-1:-1:-1;;;47536:53:0;;10732:2:1;47536:53:0;;;10714:21:1;10771:1;10751:18;;;10744:29;-1:-1:-1;;;10789:18:1;;;10782:31;10830:18;;47536:53:0;10530:324:1;47536:53:0;47637:10;47600:20;17137:25;;;:18;:25;;11434:2;17137:25;;;;;:49;;11297:13;17136:80;47694:15;47666:23;;;47665:44;;47657:58;;;;-1:-1:-1;;;47657:58:0;;11061:2:1;47657:58:0;;;11043:21:1;11100:1;11080:18;;;11073:29;-1:-1:-1;;;11118:18:1;;;11111:31;11159:18;;47657:58:0;10859:324:1;47657:58:0;47730:14;;;;;;;:23;;:48;;;47774:4;47757:13;:21;;47730:48;47726:558;;;47824:8;47812:9;:20;47799:9;:33;;47791:47;;;;-1:-1:-1;;;47791:47:0;;11390:2:1;47791:47:0;;;11372:21:1;11429:1;11409:18;;;11402:29;-1:-1:-1;;;11447:18:1;;;11440:31;11488:18;;47791:47:0;11188:324:1;47791:47:0;47726:558;;;47865:24;47907:19;47892:12;:34;:97;;47977:12;47892:97;;;47942:19;47892:97;47865:124;;48000:20;48045:16;48023:19;:38;:109;;48131:1;48023:109;;;48099:16;48077:19;:38;48023:109;48000:132;;48202:12;48191:8;:23;:53;;48243:1;48191:53;;;48228:12;48217:8;:23;48191:53;48178:9;:67;48165:9;:80;;48143:131;;;;-1:-1:-1;;;48143:131:0;;11719:2:1;48143:131:0;;;11701:21:1;11758:1;11738:18;;;11731:29;-1:-1:-1;;;11776:18:1;;;11769:31;11817:18;;48143:131:0;11517:324:1;48143:131:0;47854:430;;47726:558;47431:860;;48299:27;48305:10;48317:8;48299:5;:27::i;:::-;47375:957;:::o;23941:308::-;44113:10;-1:-1:-1;;;;;24040:31:0;;;24036:61;;24080:17;;-1:-1:-1;;;24080:17:0;;;;;;;;;;;24036:61;44113:10;24110:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24110:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24110:60:0;;;;;;;;;;24186:55;;540:41:1;;;24110:49:0;;44113:10;24186:55;;513:18:1;24186:55:0;;;;;;;23941:308;;:::o;24811:399::-;24978:31;24991:4;24997:2;25001:7;24978:12;:31::i;:::-;-1:-1:-1;;;;;25024:14:0;;;:19;25020:183;;25063:56;25094:4;25100:2;25104:7;25113:5;25063:30;:56::i;:::-;25058:145;;25147:40;;-1:-1:-1;;;25147:40:0;;;;;;;;;;;25058:145;24811:399;;;;:::o;22054:327::-;22127:13;22158:16;22166:7;22158;:16::i;:::-;22153:59;;22183:29;;-1:-1:-1;;;22183:29:0;;;;;;;;;;;22153:59;22225:21;22249:10;:8;:10::i;:::-;22225:34;;22283:7;22277:21;22302:1;22277:26;:96;;;;;;;;;;;;;;;;;22330:7;22339:18;22349:7;22339:9;:18::i;:::-;22313:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22277:96;22270:103;22054:327;-1:-1:-1;;;22054:327:0:o;47159:109::-;-1:-1:-1;;;;;17137:25:0;;47219:7;17137:25;;;:18;:25;;11434:2;17137:25;;;;11297:13;17137:49;;17136:80;47242:20;17048:176;48763:315;769:13;:11;:13::i;:::-;48879:9:::1;48874:199;48898:17;:24;48894:1;:28;48874:199;;;48981:9;48962:12;48975:1;48962:15;;;;;;;;:::i;:::-;;;;;;;48946:13;15383:12:::0;;46954:1;15367:13;-1:-1:-1;;15367:28:0;;;:46;;15117:315;48946:13:::1;:31;;;;:::i;:::-;:44;;48938:70;;;::::0;-1:-1:-1;;;48938:70:0;;13110:2:1;48938:70:0::1;::::0;::::1;13092:21:1::0;13149:2;13129:18;;;13122:30;-1:-1:-1;;;13168:18:1;;;13161:43;13221:18;;48938:70:0::1;12908:337:1::0;48938:70:0::1;49017:48;49027:17;49045:1;49027:20;;;;;;;;:::i;:::-;;;;;;;49049:12;49062:1;49049:15;;;;;;;;:::i;:::-;;;;;;;49017:9;:48::i;:::-;48924:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48874:199;;24320:164:::0;-1:-1:-1;;;;;24441:25:0;;;24417:4;24441:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24320:164::o;1789:201::-;769:13;:11;:13::i;:::-;-1:-1:-1;;;;;1878:22:0;::::1;1870:73;;;::::0;-1:-1:-1;;;1870:73:0;;13592:2:1;1870:73:0::1;::::0;::::1;13574:21:1::0;13631:2;13611:18;;;13604:30;13670:34;13650:18;;;13643:62;-1:-1:-1;;;13721:18:1;;;13714:36;13767:19;;1870:73:0::1;13390:402:1::0;1870:73:0::1;1954:28;1973:8;1954:18;:28::i;25465:273::-:0;25522:4;25578:7;46954:1;25559:26;;:66;;;;;25612:13;;25602:7;:23;25559:66;:152;;;;-1:-1:-1;;25663:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25663:43:0;:48;;25465:273::o;1048:132::-;929:7;956:6;-1:-1:-1;;;;;956:6:0;44113:10;1112:23;1104:68;;;;-1:-1:-1;;;1104:68:0;;13999:2:1;1104:68:0;;;13981:21:1;;;14018:18;;;14011:30;14077:34;14057:18;;;14050:62;14129:18;;1104:68:0;13797:356:1;18416:1129:0;18483:7;18518;;46954:1;18567:23;18563:915;;18620:13;;18613:4;:20;18609:869;;;18658:14;18675:23;;;:17;:23;;;;;;;-1:-1:-1;;;18764:23:0;;:28;;18760:699;;19283:113;19290:6;19300:1;19290:11;19283:113;;-1:-1:-1;;;19361:6:0;19343:25;;;;:17;:25;;;;;;19283:113;;18760:699;18635:843;18609:869;19506:31;;-1:-1:-1;;;19506:31:0;;;;;;;;;;;2150:191;2224:16;2243:6;;-1:-1:-1;;;;;2260:17:0;;;-1:-1:-1;;;;;;2260:17:0;;;;;;2293:40;;2243:6;;;;;;;2293:40;;2224:16;2293:40;2213:128;2150:191;:::o;27296:1529::-;27384:13;;-1:-1:-1;;;;;27412:16:0;;27408:48;;27437:19;;-1:-1:-1;;;27437:19:0;;;;;;;;;;;27408:48;27471:8;27483:1;27471:13;27467:44;;27493:18;;-1:-1:-1;;;27493:18:0;;;;;;;;;;;27467:44;-1:-1:-1;;;;;27999:22:0;;;;;;:18;:22;;11434:2;27999:22;;:70;;28037:31;28025:44;;27999:70;;;21398:11;21374:22;21370:40;-1:-1:-1;23117:15:0;;23092:23;23088:45;21367:51;21357:62;28312:31;;;;:17;:31;;;;;:173;28330:12;28561:23;;;28599:101;28626:35;;28651:9;;;;;-1:-1:-1;;;;;28626:35:0;;;28643:1;;28626:35;;28643:1;;28626:35;28695:3;28685:7;:13;28599:101;;28716:13;:19;-1:-1:-1;24555:185:0;;;:::o;39681:716::-;39865:88;;-1:-1:-1;;;39865:88:0;;39844:4;;-1:-1:-1;;;;;39865:45:0;;;;;:88;;44113:10;;39932:4;;39938:7;;39947:5;;39865:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39865:88:0;;;;;;;;-1:-1:-1;;39865:88:0;;;;;;;;;;;;:::i;:::-;;;39861:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40148:6;:13;40165:1;40148:18;40144:235;;40194:40;;-1:-1:-1;;;40194:40:0;;;;;;;;;;;40144:235;40337:6;40331:13;40322:6;40318:2;40314:15;40307:38;39861:529;-1:-1:-1;;;;;;40024:64:0;-1:-1:-1;;;40024:64:0;;-1:-1:-1;39681:716:0;;;;;;:::o;46774:94::-;46826:13;46855:7;46848:14;;;;;:::i;44237:1960::-;44706:4;44700:11;;44713:3;44696:21;;44791:17;;;;45487:11;;;45366:5;45619:2;45633;45623:13;;45615:22;45487:11;45602:36;45674:2;45664:13;;45258:697;45693:4;45258:697;;;45884:1;45879:3;45875:11;45868:18;;45935:2;45929:4;45925:13;45921:2;45917:22;45912:3;45904:36;45788:2;45778:13;;45258:697;;;-1:-1:-1;45985:13:0;;;-1:-1:-1;;46100:12:0;;;46160:19;;;46100:12;44237:1960;-1:-1:-1;44237:1960:0:o;25822:104::-;25891:27;25901:2;25905:8;25891:27;;;;;;;;;;;;26465:19;26471:2;26475:8;26465:5;:19::i;:::-;-1:-1:-1;;;;;26526:14:0;;;:19;26522:483;;26580:13;;26628:14;;;26661:233;26692:62;26731:1;26735:2;26739:7;;;;;;26748:5;26692:30;:62::i;:::-;26687:167;;26790:40;;-1:-1:-1;;;26790:40:0;;;;;;;;;;;26687:167;26889:3;26881:5;:11;26661:233;;26976:3;26959:13;;:20;26955:34;;26981:8;;;26955:34;26547:458;;26342:681;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:592::-;3305:6;3313;3366:2;3354:9;3345:7;3341:23;3337:32;3334:52;;;3382:1;3379;3372:12;3334:52;3422:9;3409:23;3451:18;3492:2;3484:6;3481:14;3478:34;;;3508:1;3505;3498:12;3478:34;3546:6;3535:9;3531:22;3521:32;;3591:7;3584:4;3580:2;3576:13;3572:27;3562:55;;3613:1;3610;3603:12;3562:55;3653:2;3640:16;3679:2;3671:6;3668:14;3665:34;;;3695:1;3692;3685:12;3665:34;3740:7;3735:2;3726:6;3722:2;3718:15;3714:24;3711:37;3708:57;;;3761:1;3758;3751:12;3708:57;3792:2;3784:11;;;;;3814:6;;-1:-1:-1;3234:592:1;;-1:-1:-1;;;;3234:592:1:o;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:275;4293:2;4287:9;4358:2;4339:13;;-1:-1:-1;;4335:27:1;4323:40;;4393:18;4378:34;;4414:22;;;4375:62;4372:88;;;4440:18;;:::i;:::-;4476:2;4469:22;4222:275;;-1:-1:-1;4222:275:1:o;4502:980::-;4597:6;4605;4613;4621;4674:3;4662:9;4653:7;4649:23;4645:33;4642:53;;;4691:1;4688;4681:12;4642:53;4714:29;4733:9;4714:29;:::i;:::-;4704:39;;4762:2;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4946:18;4987:2;4979:6;4976:14;4973:34;;;5003:1;5000;4993:12;4973:34;5041:6;5030:9;5026:22;5016:32;;5086:7;5079:4;5075:2;5071:13;5067:27;5057:55;;5108:1;5105;5098:12;5057:55;5144:2;5131:16;5166:2;5162;5159:10;5156:36;;;5172:18;;:::i;:::-;5214:53;5257:2;5238:13;;-1:-1:-1;;5234:27:1;5230:36;;5214:53;:::i;:::-;5201:66;;5290:2;5283:5;5276:17;5330:7;5325:2;5320;5316;5312:11;5308:20;5305:33;5302:53;;;5351:1;5348;5341:12;5302:53;5406:2;5401;5397;5393:11;5388:2;5381:5;5377:14;5364:45;5450:1;5445:2;5440;5433:5;5429:14;5425:23;5418:34;;5471:5;5461:15;;;;;4502:980;;;;;;;:::o;5487:183::-;5547:4;5580:18;5572:6;5569:30;5566:56;;;5602:18;;:::i;:::-;-1:-1:-1;5647:1:1;5643:14;5659:4;5639:25;;5487:183::o;5675:662::-;5729:5;5782:3;5775:4;5767:6;5763:17;5759:27;5749:55;;5800:1;5797;5790:12;5749:55;5836:6;5823:20;5862:4;5886:60;5902:43;5942:2;5902:43;:::i;:::-;5886:60;:::i;:::-;5980:15;;;6066:1;6062:10;;;;6050:23;;6046:32;;;6011:12;;;;6090:15;;;6087:35;;;6118:1;6115;6108:12;6087:35;6154:2;6146:6;6142:15;6166:142;6182:6;6177:3;6174:15;6166:142;;;6248:17;;6236:30;;6286:12;;;;6199;;6166:142;;;-1:-1:-1;6326:5:1;5675:662;-1:-1:-1;;;;;;5675:662:1:o;6342:1146::-;6460:6;6468;6521:2;6509:9;6500:7;6496:23;6492:32;6489:52;;;6537:1;6534;6527:12;6489:52;6577:9;6564:23;6606:18;6647:2;6639:6;6636:14;6633:34;;;6663:1;6660;6653:12;6633:34;6701:6;6690:9;6686:22;6676:32;;6746:7;6739:4;6735:2;6731:13;6727:27;6717:55;;6768:1;6765;6758:12;6717:55;6804:2;6791:16;6826:4;6850:60;6866:43;6906:2;6866:43;:::i;6850:60::-;6944:15;;;7026:1;7022:10;;;;7014:19;;7010:28;;;6975:12;;;;7050:19;;;7047:39;;;7082:1;7079;7072:12;7047:39;7106:11;;;;7126:148;7142:6;7137:3;7134:15;7126:148;;;7208:23;7227:3;7208:23;:::i;:::-;7196:36;;7159:12;;;;7252;;;;7126:148;;;7293:5;-1:-1:-1;;7336:18:1;;7323:32;;-1:-1:-1;;7367:16:1;;;7364:36;;;7396:1;7393;7386:12;7364:36;;7419:63;7474:7;7463:8;7452:9;7448:24;7419:63;:::i;:::-;7409:73;;;6342:1146;;;;;:::o;7493:260::-;7561:6;7569;7622:2;7610:9;7601:7;7597:23;7593:32;7590:52;;;7638:1;7635;7628:12;7590:52;7661:29;7680:9;7661:29;:::i;:::-;7651:39;;7709:38;7743:2;7732:9;7728:18;7709:38;:::i;7758:380::-;7837:1;7833:12;;;;7880;;;7901:61;;7955:4;7947:6;7943:17;7933:27;;7901:61;8008:2;8000:6;7997:14;7977:18;7974:38;7971:161;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;7971:161;;7758:380;;;:::o;8269:545::-;8371:2;8366:3;8363:11;8360:448;;;8407:1;8432:5;8428:2;8421:17;8477:4;8473:2;8463:19;8547:2;8535:10;8531:19;8528:1;8524:27;8518:4;8514:38;8583:4;8571:10;8568:20;8565:47;;;-1:-1:-1;8606:4:1;8565:47;8661:2;8656:3;8652:12;8649:1;8645:20;8639:4;8635:31;8625:41;;8716:82;8734:2;8727:5;8724:13;8716:82;;;8779:17;;;8760:1;8749:13;8716:82;;8990:1206;9114:18;9109:3;9106:27;9103:53;;;9136:18;;:::i;:::-;9165:94;9255:3;9215:38;9247:4;9241:11;9215:38;:::i;:::-;9209:4;9165:94;:::i;:::-;9285:1;9310:2;9305:3;9302:11;9327:1;9322:616;;;;9982:1;9999:3;9996:93;;;-1:-1:-1;10055:19:1;;;10042:33;9996:93;-1:-1:-1;;8947:1:1;8943:11;;;8939:24;8935:29;8925:40;8971:1;8967:11;;;8922:57;10102:78;;9295:895;;9322:616;8216:1;8209:14;;;8253:4;8240:18;;-1:-1:-1;;9358:17:1;;;9459:9;9481:229;9495:7;9492:1;9489:14;9481:229;;;9584:19;;;9571:33;9556:49;;9691:4;9676:20;;;;9644:1;9632:14;;;;9511:12;9481:229;;;9485:3;9738;9729:7;9726:16;9723:159;;;9862:1;9858:6;9852:3;9846;9843:1;9839:11;9835:21;9831:34;9827:39;9814:9;9809:3;9805:19;9792:33;9788:79;9780:6;9773:95;9723:159;;;9925:1;9919:3;9916:1;9912:11;9908:19;9902:4;9895:33;9295:895;;8990:1206;;;:::o;11846:663::-;12126:3;12164:6;12158:13;12180:66;12239:6;12234:3;12227:4;12219:6;12215:17;12180:66;:::i;:::-;12309:13;;12268:16;;;;12331:70;12309:13;12268:16;12378:4;12366:17;;12331:70;:::i;:::-;-1:-1:-1;;;12423:20:1;;12452:22;;;12501:1;12490:13;;11846:663;-1:-1:-1;;;;11846:663:1:o;12514:127::-;12575:10;12570:3;12566:20;12563:1;12556:31;12606:4;12603:1;12596:15;12630:4;12627:1;12620:15;12646:127;12707:10;12702:3;12698:20;12695:1;12688:31;12738:4;12735:1;12728:15;12762:4;12759:1;12752:15;12778:125;12843:9;;;12864:10;;;12861:36;;;12877:18;;:::i;13250:135::-;13289:3;13310:17;;;13307:43;;13330:18;;:::i;:::-;-1:-1:-1;13377:1:1;13366:13;;13250:135::o;14158:489::-;-1:-1:-1;;;;;14427:15:1;;;14409:34;;14479:15;;14474:2;14459:18;;14452:43;14526:2;14511:18;;14504:34;;;14574:3;14569:2;14554:18;;14547:31;;;14352:4;;14595:46;;14621:19;;14613:6;14595:46;:::i;:::-;14587:54;14158:489;-1:-1:-1;;;;;;14158:489:1:o;14652:249::-;14721:6;14774:2;14762:9;14753:7;14749:23;14745:32;14742:52;;;14790:1;14787;14780:12;14742:52;14822:9;14816:16;14841:30;14865:5;14841:30;:::i

Swarm Source

ipfs://d95f1fc28d40d504484be42e5e888bc8cc64b60827d659cbcabb8ced1532e7e2

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.