ETH Price: $2,332.77 (-4.65%)

Token

DUCKZILLAS (DUCKZILLA)
 

Overview

Max Total Supply

134 DUCKZILLA

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rapatsit.eth
Balance
1 DUCKZILLA
0x3F9d386eeb91304aB65899b567EE8756D3298d40
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DUCKZILLAS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 6: DUCKZILLAS.sol
pragma solidity 0.8.17;
// SPDX-License-Identifier: MIT
import "./ERC721A.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";

contract DUCKZILLAS is ERC721A, Ownable {
    mapping(address => uint256) public whitelistClaimed;
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public freeClaimed;


    string public baseURI;
    string public baseExtension = ".json";
    uint256 public whitelistCost = 0.00911 ether;
    uint256 public publicCost = 0.03 ether;
    uint256 public whitelistTimestamp = 1667325600; // 1-Nov 2:00 PM ETC
    uint256 public publicTimestamp = 1667336400;    // 1-Nov 5:00 PM ETC
    uint256 public freeTimestamp = 1667343600;      // 1-Nov 7:00 PM ETC
    bytes32 public merkleRoot;
    uint256 public maxWhitelist = 5;
    uint256 public maxPublic = 10;
    uint256 public maxFree = 1;
    uint256 public maxSupply = 8888;
    bool public freeMintEnabled = true;
    uint256 mintCap = 7777;

    constructor() ERC721A("DUCKZILLAS", "DUCKZILLA") {
        setBaseURI("ipfs://bafybeidrhx75skm3h2zsnxmzn4k5fbyivhtdf5nhbzht2djg6n23n4proi/");
        ownerMint(1);
    }

    function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(block.timestamp >= whitelistTimestamp && block.timestamp <= publicTimestamp, "Whitelist Sale Didn't Started Yet!");
        require(whitelistClaimed[msg.sender] + quantity <= maxWhitelist, "You're not allowed to mint this Much!");
        require(msg.value >= whitelistCost * quantity, "Insufficient Funds");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "You're Not Whitelisted!");
        whitelistClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(block.timestamp >= publicTimestamp && block.timestamp <= freeTimestamp, "Public Sale Didn't Started Yet!");
        require(supply <= mintCap, "Can't Mint, Please Try Again");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(publicClaimed[msg.sender] + quantity <= maxPublic, "You're not allowed to mint this Much!");
        require(quantity <= maxPublic, "You're Not Allowed To Mint more than maxMint Amount");
        require(msg.value >= publicCost * quantity, "Insufficient Funds");
        publicClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    function freeMint(uint256 quantity) public {
        uint256 supply = totalSupply();
        require(block.timestamp >= freeTimestamp && freeMintEnabled, "Sale Not Started!");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(freeClaimed[msg.sender] + quantity <= maxFree, "You're not allowed to mint this Much!");
        freeClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function ownerMint(uint256 quantity) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        _safeMint(msg.sender, quantity);
    }

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



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

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

    function setCost(uint256 _whitelistCost, uint256 _publicCost)
        public
        onlyOwner
    {
        whitelistCost = _whitelistCost;
        publicCost = _publicCost;
    }

    function setMax(uint256 _whitelist, uint256 _public ,uint256 _maxFree , uint256 _mintCap) public onlyOwner {
        maxWhitelist = _whitelist;
        maxPublic = _public;
        maxFree = _maxFree;
        mintCap = _mintCap;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setFreeMintStat(bool _freeMintEnabled) public onlyOwner {
        freeMintEnabled = _freeMintEnabled;
    }


    function setTime(uint256 _publicTimestamp,uint256 _freeTimestamp , uint256 _whitelistTimestamp) public onlyOwner {
        publicTimestamp = _publicTimestamp;
        freeTimestamp = _freeTimestamp;
        whitelistTimestamp = _whitelistTimestamp;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public onlyOwner {
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
    }
}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

File 3 of 6: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
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 1;
    }

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

File 4 of 6: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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);
}

File 5 of 6: MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_freeMintEnabled","type":"bool"}],"name":"setFreeMintStat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"},{"internalType":"uint256","name":"_maxFree","type":"uint256"},{"internalType":"uint256","name":"_mintCap","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicTimestamp","type":"uint256"},{"internalType":"uint256","name":"_freeTimestamp","type":"uint256"},{"internalType":"uint256","name":"_whitelistTimestamp","type":"uint256"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600d90620000269082620005c0565b5066205d7f29e76000600e55666a94d74f430000600f556363615ea060105563636188d0601155636361a4f06012556005601455600a601555600160168190556122b86017556018805460ff19169091179055611e616019553480156200008c57600080fd5b506040518060400160405280600a8152602001694455434b5a494c4c415360b01b815250604051806040016040528060098152602001684455434b5a494c4c4160b81b8152508160029081620000e39190620005c0565b506003620000f28282620005c0565b505060016000555062000105336200013b565b62000129604051806080016040528060438152602001620029ef604391396200018d565b620001356001620001ee565b6200075a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001dc5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a3283398151915260448201526064015b60405180910390fd5b600c620001ea8282620005c0565b5050565b6008546001600160a01b03163314620002395760405162461bcd60e51b8152602060048201819052602482015260008051602062002a328339815191526044820152606401620001d3565b60006200024f6001546000546000199190030190565b6017549091506200026183836200068c565b1115620002a65760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401620001d3565b620001ea3383620001ea828260405180602001604052806000815250620002ce60201b60201c565b620002da838362000345565b6001600160a01b0383163b1562000340576000548281035b6001810190620003089060009087908662000428565b62000326576040516368d2bf6b60e11b815260040160405180910390fd5b818110620002f25781600054146200033d57600080fd5b50505b505050565b6000546001600160a01b0383166200036f57604051622e076360e81b815260040160405180910390fd5b81600003620003915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620003db5760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200045f903390899088908890600401620006b4565b6020604051808303816000875af19250505080156200049d575060408051601f3d908101601f191682019092526200049a9181019062000727565b60015b620004ff573d808015620004ce576040519150601f19603f3d011682016040523d82523d6000602084013e620004d3565b606091505b508051600003620004f7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200054757607f821691505b6020821081036200056857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034057600081815260208120601f850160051c81016020861015620005975750805b601f850160051c820191505b81811015620005b857828155600101620005a3565b505050505050565b81516001600160401b03811115620005dc57620005dc6200051c565b620005f481620005ed845462000532565b846200056e565b602080601f8311600181146200062c5760008415620006135750858301515b600019600386901b1c1916600185901b178555620005b8565b600085815260208120601f198616915b828110156200065d578886015182559484019460019091019084016200063c565b50858210156200067c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620006ae57634e487b7160e01b600052601160045260246000fd5b92915050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620007035785810182015185820160a001528101620006e5565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b6000602082840312156200073a57600080fd5b81516001600160e01b0319811681146200075357600080fd5b9392505050565b612285806200076a6000396000f3fe6080604052600436106102725760003560e01c80637c928fe91161014f578063bf0d96c3116100c1578063db4bec441161007a578063db4bec44146106f2578063e7b99ec71461071f578063e985e9c514610735578063f19e75d414610755578063f1a7e04414610775578063f2fde38b1461079557600080fd5b8063bf0d96c31461065e578063c668286214610674578063c87b56dd14610689578063d2cab056146106a9578063d5abeb01146106bc578063da3ef23f146106d257600080fd5b80638da5cb5b116101135780638da5cb5b146105ab57806395d89b41146105c9578063a0712d68146105de578063a22cb465146105f1578063b5b1cd7c14610611578063b88d4fde1461063e57600080fd5b80637c928fe91461051f5780637cb647591461053f5780637dc429751461055f5780637f6486a8146105755780638693da201461059557600080fd5b806342842e0e116101e857806362ad68aa116101ac57806362ad68aa1461047b5780636352211e146104955780636c0360eb146104b557806370a08231146104ca578063715018a6146104ea5780637696e088146104ff57600080fd5b806342842e0e146103e257806346ad0bdd14610402578063485a68a31461041857806355f804b31461042e57806361c0b6a01461044e57600080fd5b80631e6d487a1161023a5780631e6d487a1461034b57806323b872dd146103615780632569aed2146103815780632eb4a7ab146103975780633ccfd60b146103ad5780633e5597f9146103c257600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806318160ddd14610328575b600080fd5b34801561028357600080fd5b50610297610292366004611af2565b6107b5565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610807565b6040516102a39190611b5f565b3480156102da57600080fd5b506102ee6102e9366004611b72565b610899565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004611ba7565b6108dd565b005b34801561033457600080fd5b5061033d61097d565b6040519081526020016102a3565b34801561035757600080fd5b5061033d60115481565b34801561036d57600080fd5b5061032661037c366004611bd1565b61098b565b34801561038d57600080fd5b5061033d60125481565b3480156103a357600080fd5b5061033d60135481565b3480156103b957600080fd5b50610326610b24565b3480156103ce57600080fd5b506103266103dd366004611c0d565b610bcb565b3480156103ee57600080fd5b506103266103fd366004611bd1565b610c09565b34801561040e57600080fd5b5061033d60105481565b34801561042457600080fd5b5061033d60165481565b34801561043a57600080fd5b50610326610449366004611ccb565b610c29565b34801561045a57600080fd5b5061033d610469366004611d14565b600b6020526000908152604090205481565b34801561048757600080fd5b506018546102979060ff1681565b3480156104a157600080fd5b506102ee6104b0366004611b72565b610c63565b3480156104c157600080fd5b506102c1610c6e565b3480156104d657600080fd5b5061033d6104e5366004611d14565b610cfc565b3480156104f657600080fd5b50610326610d4b565b34801561050b57600080fd5b5061032661051a366004611d2f565b610d81565b34801561052b57600080fd5b5061032661053a366004611b72565b610db6565b34801561054b57600080fd5b5061032661055a366004611b72565b610eac565b34801561056b57600080fd5b5061033d60155481565b34801561058157600080fd5b50610326610590366004611d51565b610edb565b3480156105a157600080fd5b5061033d600f5481565b3480156105b757600080fd5b506008546001600160a01b03166102ee565b3480156105d557600080fd5b506102c1610f13565b6103266105ec366004611b72565b610f22565b3480156105fd57600080fd5b5061032661060c366004611d8d565b611126565b34801561061d57600080fd5b5061033d61062c366004611d14565b600a6020526000908152604090205481565b34801561064a57600080fd5b50610326610659366004611dc0565b6111bb565b34801561066a57600080fd5b5061033d60145481565b34801561068057600080fd5b506102c1611205565b34801561069557600080fd5b506102c16106a4366004611b72565b611212565b6103266106b7366004611e3c565b6112e0565b3480156106c857600080fd5b5061033d60175481565b3480156106de57600080fd5b506103266106ed366004611ccb565b61150d565b3480156106fe57600080fd5b5061033d61070d366004611d14565b60096020526000908152604090205481565b34801561072b57600080fd5b5061033d600e5481565b34801561074157600080fd5b50610297610750366004611ebb565b611543565b34801561076157600080fd5b50610326610770366004611b72565b611571565b34801561078157600080fd5b50610326610790366004611ee5565b6115dd565b3480156107a157600080fd5b506103266107b0366004611d14565b61161a565b60006301ffc9a760e01b6001600160e01b0319831614806107e657506380ac58cd60e01b6001600160e01b03198316145b806108015750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461081690611f00565b80601f016020809104026020016040519081016040528092919081815260200182805461084290611f00565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b60006108a4826116b2565b6108c1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108e882610c63565b9050336001600160a01b03821614610921576109048133611543565b610921576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600154600054036000190190565b6000610996826116e7565b9050836001600160a01b0316816001600160a01b0316146109c95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a16576109f98633611543565b610a1657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3d57604051633a954ecd60e21b815260040160405180910390fd5b8015610a4857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610ada57600184016000818152600460205260408120549003610ad8576000548114610ad85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610b575760405162461bcd60e51b8152600401610b4e90611f3a565b60405180910390fd5b6000610b6b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bb5576040519150601f19603f3d011682016040523d82523d6000602084013e610bba565b606091505b5050905080610bc857600080fd5b50565b6008546001600160a01b03163314610bf55760405162461bcd60e51b8152600401610b4e90611f3a565b601493909355601591909155601655601955565b610c24838383604051806020016040528060008152506111bb565b505050565b6008546001600160a01b03163314610c535760405162461bcd60e51b8152600401610b4e90611f3a565b600c610c5f8282611fb5565b5050565b6000610801826116e7565b600c8054610c7b90611f00565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790611f00565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b60006001600160a01b038216610d25576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d755760405162461bcd60e51b8152600401610b4e90611f3a565b610d7f6000611756565b565b6008546001600160a01b03163314610dab5760405162461bcd60e51b8152600401610b4e90611f3a565b600e91909155600f55565b6000610dc061097d565b90506012544210158015610dd6575060185460ff165b610e165760405162461bcd60e51b815260206004820152601160248201527053616c65204e6f7420537461727465642160781b6044820152606401610b4e565b601754610e23838361208b565b1115610e415760405162461bcd60e51b8152600401610b4e9061209e565b601654336000908152600b6020526040902054610e5f90849061208b565b1115610e7d5760405162461bcd60e51b8152600401610b4e906120ca565b336000908152600b602052604081208054849290610e9c90849061208b565b90915550610c5f905033836117a8565b6008546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610b4e90611f3a565b601355565b6008546001600160a01b03163314610f055760405162461bcd60e51b8152600401610b4e90611f3a565b601192909255601255601055565b60606003805461081690611f00565b6000610f2c61097d565b90506011544210158015610f4257506012544211155b610f8e5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632053616c65204469646e277420537461727465642059657421006044820152606401610b4e565b601954811115610fe05760405162461bcd60e51b815260206004820152601c60248201527f43616e2774204d696e742c20506c656173652054727920416761696e000000006044820152606401610b4e565b601754610fed838361208b565b111561100b5760405162461bcd60e51b8152600401610b4e9061209e565b601554336000908152600a602052604090205461102990849061208b565b11156110475760405162461bcd60e51b8152600401610b4e906120ca565b6015548211156110b55760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610b4e565b81600f546110c3919061210f565b3410156111075760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610b4e565b336000908152600a602052604081208054849290610e9c90849061208b565b336001600160a01b0383160361114f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111c684848461098b565b6001600160a01b0383163b156111ff576111e2848484846117c2565b6111ff576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d8054610c7b90611f00565b606061121d826116b2565b6112815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b4e565b600061128b6118ae565b905060008151116112ab57604051806020016040528060008152506112d9565b806112b5846118bd565b600d6040516020016112c993929190612126565b6040516020818303038152906040525b9392505050565b60006112ea61097d565b6017549091506112fa858361208b565b11156113185760405162461bcd60e51b8152600401610b4e9061209e565b601054421015801561132c57506011544211155b6113835760405162461bcd60e51b815260206004820152602260248201527f57686974656c6973742053616c65204469646e27742053746172746564205965604482015261742160f01b6064820152608401610b4e565b601454336000908152600960205260409020546113a190869061208b565b11156113bf5760405162461bcd60e51b8152600401610b4e906120ca565b83600e546113cd919061210f565b3410156114115760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610b4e565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061148b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354915084905061190c565b6114d75760405162461bcd60e51b815260206004820152601760248201527f596f75277265204e6f742057686974656c6973746564210000000000000000006044820152606401610b4e565b33600090815260096020526040812080548792906114f690849061208b565b90915550611506905033866117a8565b5050505050565b6008546001600160a01b031633146115375760405162461bcd60e51b8152600401610b4e90611f3a565b600d610c5f8282611fb5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461159b5760405162461bcd60e51b8152600401610b4e90611f3a565b60006115a561097d565b6017549091506115b5838361208b565b11156115d35760405162461bcd60e51b8152600401610b4e9061209e565b610c5f33836117a8565b6008546001600160a01b031633146116075760405162461bcd60e51b8152600401610b4e90611f3a565b6018805460ff1916911515919091179055565b6008546001600160a01b031633146116445760405162461bcd60e51b8152600401610b4e90611f3a565b6001600160a01b0381166116a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b4e565b610bc881611756565b6000816001111580156116c6575060005482105b8015610801575050600090815260046020526040902054600160e01b161590565b6000818060011161173d5760005481101561173d5760008181526004602052604081205490600160e01b8216900361173b575b806000036112d957506000190160008181526004602052604090205461171a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5f828260405180602001604052806000815250611922565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117f79033908990889088906004016121c6565b6020604051808303816000875af1925050508015611832575060408051601f3d908101601f1916820190925261182f91810190612203565b60015b611890573d808015611860576040519150601f19603f3d011682016040523d82523d6000602084013e611865565b606091505b508051600003611888576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461081690611f00565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118fa57600183039250600a81066030018353600a90046118dc565b50819003601f19909101908152919050565b6000826119198584611988565b14949350505050565b61192c83836119fc565b6001600160a01b0383163b15610c24576000548281035b61195660008683806001019450866117c2565b611973576040516368d2bf6b60e11b815260040160405180910390fd5b81811061194357816000541461150657600080fd5b600081815b84518110156119f45760008582815181106119aa576119aa612220565b602002602001015190508083116119d057600083815260208290526040902092506119e1565b600081815260208490526040902092505b50806119ec81612236565b91505061198d565b509392505050565b6000546001600160a01b038316611a2557604051622e076360e81b815260040160405180910390fd5b81600003611a465760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a905760005550505050565b6001600160e01b031981168114610bc857600080fd5b600060208284031215611b0457600080fd5b81356112d981611adc565b60005b83811015611b2a578181015183820152602001611b12565b50506000910152565b60008151808452611b4b816020860160208601611b0f565b601f01601f19169290920160200192915050565b6020815260006112d96020830184611b33565b600060208284031215611b8457600080fd5b5035919050565b80356001600160a01b0381168114611ba257600080fd5b919050565b60008060408385031215611bba57600080fd5b611bc383611b8b565b946020939093013593505050565b600080600060608486031215611be657600080fd5b611bef84611b8b565b9250611bfd60208501611b8b565b9150604084013590509250925092565b60008060008060808587031215611c2357600080fd5b5050823594602084013594506040840135936060013592509050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7057611c70611c3f565b604051601f8501601f19908116603f01168101908282118183101715611c9857611c98611c3f565b81604052809350858152868686011115611cb157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cdd57600080fd5b813567ffffffffffffffff811115611cf457600080fd5b8201601f81018413611d0557600080fd5b6118a684823560208401611c55565b600060208284031215611d2657600080fd5b6112d982611b8b565b60008060408385031215611d4257600080fd5b50508035926020909101359150565b600080600060608486031215611d6657600080fd5b505081359360208301359350604090920135919050565b80358015158114611ba257600080fd5b60008060408385031215611da057600080fd5b611da983611b8b565b9150611db760208401611d7d565b90509250929050565b60008060008060808587031215611dd657600080fd5b611ddf85611b8b565b9350611ded60208601611b8b565b925060408501359150606085013567ffffffffffffffff811115611e1057600080fd5b8501601f81018713611e2157600080fd5b611e3087823560208401611c55565b91505092959194509250565b600080600060408486031215611e5157600080fd5b83359250602084013567ffffffffffffffff80821115611e7057600080fd5b818601915086601f830112611e8457600080fd5b813581811115611e9357600080fd5b8760208260051b8501011115611ea857600080fd5b6020830194508093505050509250925092565b60008060408385031215611ece57600080fd5b611ed783611b8b565b9150611db760208401611b8b565b600060208284031215611ef757600080fd5b6112d982611d7d565b600181811c90821680611f1457607f821691505b602082108103611f3457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610c2457600081815260208120601f850160051c81016020861015611f965750805b601f850160051c820191505b81811015610b1c57828155600101611fa2565b815167ffffffffffffffff811115611fcf57611fcf611c3f565b611fe381611fdd8454611f00565b84611f6f565b602080601f83116001811461201857600084156120005750858301515b600019600386901b1c1916600185901b178555610b1c565b600085815260208120601f198616915b8281101561204757888601518255948401946001909101908401612028565b50858210156120655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561080157610801612075565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b60208082526025908201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206040820152644d7563682160d81b606082015260800190565b808202811582820484141761080157610801612075565b6000845160206121398285838a01611b0f565b85519184019161214c8184848a01611b0f565b855492019160009061215d81611f00565b60018281168015612175576001811461218a576121b6565b60ff19841687528215158302870194506121b6565b896000528560002060005b848110156121ae57815489820152908301908701612195565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f990830184611b33565b9695505050505050565b60006020828403121561221557600080fd5b81516112d981611adc565b634e487b7160e01b600052603260045260246000fd5b60006001820161224857612248612075565b506001019056fea26469706673582212203469a26edbd86bec0d5c2e03280e2761a8e08c9aebba6043de2aa45c66a3bae764736f6c63430008110033697066733a2f2f62616679626569647268783735736b6d3368327a736e786d7a6e346b35666279697668746466356e68627a687432646a67366e32336e3470726f692f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102725760003560e01c80637c928fe91161014f578063bf0d96c3116100c1578063db4bec441161007a578063db4bec44146106f2578063e7b99ec71461071f578063e985e9c514610735578063f19e75d414610755578063f1a7e04414610775578063f2fde38b1461079557600080fd5b8063bf0d96c31461065e578063c668286214610674578063c87b56dd14610689578063d2cab056146106a9578063d5abeb01146106bc578063da3ef23f146106d257600080fd5b80638da5cb5b116101135780638da5cb5b146105ab57806395d89b41146105c9578063a0712d68146105de578063a22cb465146105f1578063b5b1cd7c14610611578063b88d4fde1461063e57600080fd5b80637c928fe91461051f5780637cb647591461053f5780637dc429751461055f5780637f6486a8146105755780638693da201461059557600080fd5b806342842e0e116101e857806362ad68aa116101ac57806362ad68aa1461047b5780636352211e146104955780636c0360eb146104b557806370a08231146104ca578063715018a6146104ea5780637696e088146104ff57600080fd5b806342842e0e146103e257806346ad0bdd14610402578063485a68a31461041857806355f804b31461042e57806361c0b6a01461044e57600080fd5b80631e6d487a1161023a5780631e6d487a1461034b57806323b872dd146103615780632569aed2146103815780632eb4a7ab146103975780633ccfd60b146103ad5780633e5597f9146103c257600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806318160ddd14610328575b600080fd5b34801561028357600080fd5b50610297610292366004611af2565b6107b5565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610807565b6040516102a39190611b5f565b3480156102da57600080fd5b506102ee6102e9366004611b72565b610899565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004611ba7565b6108dd565b005b34801561033457600080fd5b5061033d61097d565b6040519081526020016102a3565b34801561035757600080fd5b5061033d60115481565b34801561036d57600080fd5b5061032661037c366004611bd1565b61098b565b34801561038d57600080fd5b5061033d60125481565b3480156103a357600080fd5b5061033d60135481565b3480156103b957600080fd5b50610326610b24565b3480156103ce57600080fd5b506103266103dd366004611c0d565b610bcb565b3480156103ee57600080fd5b506103266103fd366004611bd1565b610c09565b34801561040e57600080fd5b5061033d60105481565b34801561042457600080fd5b5061033d60165481565b34801561043a57600080fd5b50610326610449366004611ccb565b610c29565b34801561045a57600080fd5b5061033d610469366004611d14565b600b6020526000908152604090205481565b34801561048757600080fd5b506018546102979060ff1681565b3480156104a157600080fd5b506102ee6104b0366004611b72565b610c63565b3480156104c157600080fd5b506102c1610c6e565b3480156104d657600080fd5b5061033d6104e5366004611d14565b610cfc565b3480156104f657600080fd5b50610326610d4b565b34801561050b57600080fd5b5061032661051a366004611d2f565b610d81565b34801561052b57600080fd5b5061032661053a366004611b72565b610db6565b34801561054b57600080fd5b5061032661055a366004611b72565b610eac565b34801561056b57600080fd5b5061033d60155481565b34801561058157600080fd5b50610326610590366004611d51565b610edb565b3480156105a157600080fd5b5061033d600f5481565b3480156105b757600080fd5b506008546001600160a01b03166102ee565b3480156105d557600080fd5b506102c1610f13565b6103266105ec366004611b72565b610f22565b3480156105fd57600080fd5b5061032661060c366004611d8d565b611126565b34801561061d57600080fd5b5061033d61062c366004611d14565b600a6020526000908152604090205481565b34801561064a57600080fd5b50610326610659366004611dc0565b6111bb565b34801561066a57600080fd5b5061033d60145481565b34801561068057600080fd5b506102c1611205565b34801561069557600080fd5b506102c16106a4366004611b72565b611212565b6103266106b7366004611e3c565b6112e0565b3480156106c857600080fd5b5061033d60175481565b3480156106de57600080fd5b506103266106ed366004611ccb565b61150d565b3480156106fe57600080fd5b5061033d61070d366004611d14565b60096020526000908152604090205481565b34801561072b57600080fd5b5061033d600e5481565b34801561074157600080fd5b50610297610750366004611ebb565b611543565b34801561076157600080fd5b50610326610770366004611b72565b611571565b34801561078157600080fd5b50610326610790366004611ee5565b6115dd565b3480156107a157600080fd5b506103266107b0366004611d14565b61161a565b60006301ffc9a760e01b6001600160e01b0319831614806107e657506380ac58cd60e01b6001600160e01b03198316145b806108015750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461081690611f00565b80601f016020809104026020016040519081016040528092919081815260200182805461084290611f00565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b60006108a4826116b2565b6108c1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108e882610c63565b9050336001600160a01b03821614610921576109048133611543565b610921576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600154600054036000190190565b6000610996826116e7565b9050836001600160a01b0316816001600160a01b0316146109c95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a16576109f98633611543565b610a1657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3d57604051633a954ecd60e21b815260040160405180910390fd5b8015610a4857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610ada57600184016000818152600460205260408120549003610ad8576000548114610ad85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610b575760405162461bcd60e51b8152600401610b4e90611f3a565b60405180910390fd5b6000610b6b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bb5576040519150601f19603f3d011682016040523d82523d6000602084013e610bba565b606091505b5050905080610bc857600080fd5b50565b6008546001600160a01b03163314610bf55760405162461bcd60e51b8152600401610b4e90611f3a565b601493909355601591909155601655601955565b610c24838383604051806020016040528060008152506111bb565b505050565b6008546001600160a01b03163314610c535760405162461bcd60e51b8152600401610b4e90611f3a565b600c610c5f8282611fb5565b5050565b6000610801826116e7565b600c8054610c7b90611f00565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790611f00565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b60006001600160a01b038216610d25576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d755760405162461bcd60e51b8152600401610b4e90611f3a565b610d7f6000611756565b565b6008546001600160a01b03163314610dab5760405162461bcd60e51b8152600401610b4e90611f3a565b600e91909155600f55565b6000610dc061097d565b90506012544210158015610dd6575060185460ff165b610e165760405162461bcd60e51b815260206004820152601160248201527053616c65204e6f7420537461727465642160781b6044820152606401610b4e565b601754610e23838361208b565b1115610e415760405162461bcd60e51b8152600401610b4e9061209e565b601654336000908152600b6020526040902054610e5f90849061208b565b1115610e7d5760405162461bcd60e51b8152600401610b4e906120ca565b336000908152600b602052604081208054849290610e9c90849061208b565b90915550610c5f905033836117a8565b6008546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610b4e90611f3a565b601355565b6008546001600160a01b03163314610f055760405162461bcd60e51b8152600401610b4e90611f3a565b601192909255601255601055565b60606003805461081690611f00565b6000610f2c61097d565b90506011544210158015610f4257506012544211155b610f8e5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632053616c65204469646e277420537461727465642059657421006044820152606401610b4e565b601954811115610fe05760405162461bcd60e51b815260206004820152601c60248201527f43616e2774204d696e742c20506c656173652054727920416761696e000000006044820152606401610b4e565b601754610fed838361208b565b111561100b5760405162461bcd60e51b8152600401610b4e9061209e565b601554336000908152600a602052604090205461102990849061208b565b11156110475760405162461bcd60e51b8152600401610b4e906120ca565b6015548211156110b55760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610b4e565b81600f546110c3919061210f565b3410156111075760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610b4e565b336000908152600a602052604081208054849290610e9c90849061208b565b336001600160a01b0383160361114f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111c684848461098b565b6001600160a01b0383163b156111ff576111e2848484846117c2565b6111ff576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d8054610c7b90611f00565b606061121d826116b2565b6112815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b4e565b600061128b6118ae565b905060008151116112ab57604051806020016040528060008152506112d9565b806112b5846118bd565b600d6040516020016112c993929190612126565b6040516020818303038152906040525b9392505050565b60006112ea61097d565b6017549091506112fa858361208b565b11156113185760405162461bcd60e51b8152600401610b4e9061209e565b601054421015801561132c57506011544211155b6113835760405162461bcd60e51b815260206004820152602260248201527f57686974656c6973742053616c65204469646e27742053746172746564205965604482015261742160f01b6064820152608401610b4e565b601454336000908152600960205260409020546113a190869061208b565b11156113bf5760405162461bcd60e51b8152600401610b4e906120ca565b83600e546113cd919061210f565b3410156114115760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610b4e565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061148b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354915084905061190c565b6114d75760405162461bcd60e51b815260206004820152601760248201527f596f75277265204e6f742057686974656c6973746564210000000000000000006044820152606401610b4e565b33600090815260096020526040812080548792906114f690849061208b565b90915550611506905033866117a8565b5050505050565b6008546001600160a01b031633146115375760405162461bcd60e51b8152600401610b4e90611f3a565b600d610c5f8282611fb5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461159b5760405162461bcd60e51b8152600401610b4e90611f3a565b60006115a561097d565b6017549091506115b5838361208b565b11156115d35760405162461bcd60e51b8152600401610b4e9061209e565b610c5f33836117a8565b6008546001600160a01b031633146116075760405162461bcd60e51b8152600401610b4e90611f3a565b6018805460ff1916911515919091179055565b6008546001600160a01b031633146116445760405162461bcd60e51b8152600401610b4e90611f3a565b6001600160a01b0381166116a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b4e565b610bc881611756565b6000816001111580156116c6575060005482105b8015610801575050600090815260046020526040902054600160e01b161590565b6000818060011161173d5760005481101561173d5760008181526004602052604081205490600160e01b8216900361173b575b806000036112d957506000190160008181526004602052604090205461171a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5f828260405180602001604052806000815250611922565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117f79033908990889088906004016121c6565b6020604051808303816000875af1925050508015611832575060408051601f3d908101601f1916820190925261182f91810190612203565b60015b611890573d808015611860576040519150601f19603f3d011682016040523d82523d6000602084013e611865565b606091505b508051600003611888576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461081690611f00565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118fa57600183039250600a81066030018353600a90046118dc565b50819003601f19909101908152919050565b6000826119198584611988565b14949350505050565b61192c83836119fc565b6001600160a01b0383163b15610c24576000548281035b61195660008683806001019450866117c2565b611973576040516368d2bf6b60e11b815260040160405180910390fd5b81811061194357816000541461150657600080fd5b600081815b84518110156119f45760008582815181106119aa576119aa612220565b602002602001015190508083116119d057600083815260208290526040902092506119e1565b600081815260208490526040902092505b50806119ec81612236565b91505061198d565b509392505050565b6000546001600160a01b038316611a2557604051622e076360e81b815260040160405180910390fd5b81600003611a465760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a905760005550505050565b6001600160e01b031981168114610bc857600080fd5b600060208284031215611b0457600080fd5b81356112d981611adc565b60005b83811015611b2a578181015183820152602001611b12565b50506000910152565b60008151808452611b4b816020860160208601611b0f565b601f01601f19169290920160200192915050565b6020815260006112d96020830184611b33565b600060208284031215611b8457600080fd5b5035919050565b80356001600160a01b0381168114611ba257600080fd5b919050565b60008060408385031215611bba57600080fd5b611bc383611b8b565b946020939093013593505050565b600080600060608486031215611be657600080fd5b611bef84611b8b565b9250611bfd60208501611b8b565b9150604084013590509250925092565b60008060008060808587031215611c2357600080fd5b5050823594602084013594506040840135936060013592509050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7057611c70611c3f565b604051601f8501601f19908116603f01168101908282118183101715611c9857611c98611c3f565b81604052809350858152868686011115611cb157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cdd57600080fd5b813567ffffffffffffffff811115611cf457600080fd5b8201601f81018413611d0557600080fd5b6118a684823560208401611c55565b600060208284031215611d2657600080fd5b6112d982611b8b565b60008060408385031215611d4257600080fd5b50508035926020909101359150565b600080600060608486031215611d6657600080fd5b505081359360208301359350604090920135919050565b80358015158114611ba257600080fd5b60008060408385031215611da057600080fd5b611da983611b8b565b9150611db760208401611d7d565b90509250929050565b60008060008060808587031215611dd657600080fd5b611ddf85611b8b565b9350611ded60208601611b8b565b925060408501359150606085013567ffffffffffffffff811115611e1057600080fd5b8501601f81018713611e2157600080fd5b611e3087823560208401611c55565b91505092959194509250565b600080600060408486031215611e5157600080fd5b83359250602084013567ffffffffffffffff80821115611e7057600080fd5b818601915086601f830112611e8457600080fd5b813581811115611e9357600080fd5b8760208260051b8501011115611ea857600080fd5b6020830194508093505050509250925092565b60008060408385031215611ece57600080fd5b611ed783611b8b565b9150611db760208401611b8b565b600060208284031215611ef757600080fd5b6112d982611d7d565b600181811c90821680611f1457607f821691505b602082108103611f3457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610c2457600081815260208120601f850160051c81016020861015611f965750805b601f850160051c820191505b81811015610b1c57828155600101611fa2565b815167ffffffffffffffff811115611fcf57611fcf611c3f565b611fe381611fdd8454611f00565b84611f6f565b602080601f83116001811461201857600084156120005750858301515b600019600386901b1c1916600185901b178555610b1c565b600085815260208120601f198616915b8281101561204757888601518255948401946001909101908401612028565b50858210156120655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561080157610801612075565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b60208082526025908201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206040820152644d7563682160d81b606082015260800190565b808202811582820484141761080157610801612075565b6000845160206121398285838a01611b0f565b85519184019161214c8184848a01611b0f565b855492019160009061215d81611f00565b60018281168015612175576001811461218a576121b6565b60ff19841687528215158302870194506121b6565b896000528560002060005b848110156121ae57815489820152908301908701612195565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f990830184611b33565b9695505050505050565b60006020828403121561221557600080fd5b81516112d981611adc565b634e487b7160e01b600052603260045260246000fd5b60006001820161224857612248612075565b506001019056fea26469706673582212203469a26edbd86bec0d5c2e03280e2761a8e08c9aebba6043de2aa45c66a3bae764736f6c63430008110033

Deployed Bytecode Sourcemap

133:5296:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:2;;;;;;;;;;-1:-1:-1;5653:607:2;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;5653:607:2;;;;;;;;11161:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13048:200::-;;;;;;;;;;-1:-1:-1;13048:200:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:6;;;1679:51;;1667:2;1652:18;13048:200:2;1533:203:6;12611:376:2;;;;;;;;;;-1:-1:-1;12611:376:2;;;;;:::i;:::-;;:::i;:::-;;4736:309;;;;;;;;;;;;;:::i;:::-;;;2324:25:6;;;2312:2;2297:18;4736:309:2;2178:177:6;581:43:1;;;;;;;;;;;;;;;;22055:2739:2;;;;;;;;;;-1:-1:-1;22055:2739:2;;;;;:::i;:::-;;:::i;654:41:1:-;;;;;;;;;;;;;;;;727:25;;;;;;;;;;;;;;;;5283:144;;;;;;;;;;;;;:::i;4292:234::-;;;;;;;;;;-1:-1:-1;4292:234:1;;;;;:::i;:::-;;:::i;13912:179:2:-;;;;;;;;;;-1:-1:-1;13912:179:2;;;;;:::i;:::-;;:::i;508:46:1:-;;;;;;;;;;;;;;;;830:26;;;;;;;;;;;;;;;;5023:102;;;;;;;;;;-1:-1:-1;5023:102:1;;;;;:::i;:::-;;:::i;290:46::-;;;;;;;;;;-1:-1:-1;290:46:1;;;;;:::i;:::-;;;;;;;;;;;;;;899:34;;;;;;;;;;-1:-1:-1;899:34:1;;;;;;;;10957:142:2;;;;;;;;;;-1:-1:-1;10957:142:2;;;;;:::i;:::-;;:::i;344:21:1:-;;;;;;;;;;;;;:::i;6319:221:2:-;;;;;;;;;;-1:-1:-1;6319:221:2;;;;;:::i;:::-;;:::i;1628:101:5:-;;;;;;;;;;;;;:::i;4106:180:1:-;;;;;;;;;;-1:-1:-1;4106:180:1;;;;;:::i;:::-;;:::i;2683:443::-;;;;;;;;;;-1:-1:-1;2683:443:1;;;;;:::i;:::-;;:::i;4532:102::-;;;;;;;;;;-1:-1:-1;4532:102:1;;;;;:::i;:::-;;:::i;795:29::-;;;;;;;;;;;;;;;;4763:254;;;;;;;;;;-1:-1:-1;4763:254:1;;;;;:::i;:::-;;:::i;464:38::-;;;;;;;;;;;;;;;;996:85:5;;;;;;;;;;-1:-1:-1;1068:6:5;;-1:-1:-1;;;;;1068:6:5;996:85;;11323:102:2;;;;;;;;;;;;;:::i;1952:726:1:-;;;;;;:::i;:::-;;:::i;13315:303:2:-;;;;;;;;;;-1:-1:-1;13315:303:2;;;;;:::i;:::-;;:::i;236:48:1:-;;;;;;;;;;-1:-1:-1;236:48:1;;;;;:::i;:::-;;;;;;;;;;;;;;14157:388:2;;;;;;;;;;-1:-1:-1;14157:388:2;;;;;:::i;:::-;;:::i;758:31:1:-;;;;;;;;;;;;;;;;371:37;;;;;;;;;;;;;:::i;3481:619::-;;;;;;;;;;-1:-1:-1;3481:619:1;;;;;:::i;:::-;;:::i;1143:803::-;;;;;;:::i;:::-;;:::i;862:31::-;;;;;;;;;;;;;;;;5131:146;;;;;;;;;;-1:-1:-1;5131:146:1;;;;;:::i;:::-;;:::i;179:51::-;;;;;;;;;;-1:-1:-1;179:51:1;;;;;:::i;:::-;;;;;;;;;;;;;;414:44;;;;;;;;;;;;;;;;13684:162:2;;;;;;;;;;-1:-1:-1;13684:162:2;;;;;:::i;:::-;;:::i;3132:213:1:-;;;;;;;;;;-1:-1:-1;3132:213:1;;;;;:::i;:::-;;:::i;4640:116::-;;;;;;;;;;-1:-1:-1;4640:116:1;;;;;:::i;:::-;;:::i;1878:232:5:-;;;;;;;;;;-1:-1:-1;1878:232:5;;;;;:::i;:::-;;:::i;5653:607:2:-;5738:4;-1:-1:-1;;;;;;;;;6033:25:2;;;;:101;;-1:-1:-1;;;;;;;;;;6109:25:2;;;6033:101;:177;;;-1:-1:-1;;;;;;;;;;6185:25:2;;;6033:177;6014:196;5653:607;-1:-1:-1;;5653:607:2:o;11161:98::-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;-1:-1:-1;;;13165:34:2;;;;;;;;;;;13135:64;-1:-1:-1;13217:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;13217:24:2;;13048:200::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;-1:-1:-1;32960:10:2;-1:-1:-1;;;;;12730:28:2;;;12726:172;;12777:44;12794:5;32960:10;13684:162;:::i;12777:44::-;12772:126;;12848:35;;-1:-1:-1;;;12848:35:2;;;;;;;;;;;12772:126;12908:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12908:29:2;-1:-1:-1;;;;;12908:29:2;;;;;;;;;12952:28;;12908:24;;12952:28;;;;;;;12673:314;12611:376;;:::o;4736:309::-;4358:1;4998:12;4789:7;4982:13;:28;-1:-1:-1;;4982:46:2;;4736:309::o;22055:2739::-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;-1:-1:-1;;;;;22256:45:2;22272:19;-1:-1:-1;;;;;22256:45:2;;22252:86;;22310:28;;-1:-1:-1;;;22310:28:2;;;;;;;;;;;22252:86;22350:27;20821:21;;;20652:15;20862:4;20855:36;20943:4;20927:21;;21031:26;;32960:10;21766:30;;;-1:-1:-1;;;;;21468:26:2;;21745:19;;;21742:55;22526:173;;22612:43;22629:4;32960:10;13684:162;:::i;22612:43::-;22607:92;;22664:35;;-1:-1:-1;;;22664:35:2;;;;;;;;;;;22607:92;-1:-1:-1;;;;;22714:16:2;;22710:52;;22739:23;;-1:-1:-1;;;22739:23:2;;;;;;;;;;;22710:52;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;-1:-1:-1;;;;;23429:24:2;;;;;;;:18;:24;;;;;;23427:26;;-1:-1:-1;;23427:26:2;;;23497:22;;;;;;;;;23495:24;;-1:-1:-1;23495:24:2;;;10863:11;10839:22;10835:40;10822:62;-1:-1:-1;;;10822:62:2;23783:26;;;;:17;:26;;;;;:171;;;;-1:-1:-1;;;24071:46:2;;:51;;24067:616;;24174:1;24164:11;;24142:19;24295:30;;;:17;:30;;;;;;:35;;24291:378;;24431:13;;24416:11;:28;24412:239;;24576:30;;;;:17;:30;;;;;:52;;;24412:239;24124:559;24067:616;24727:7;24723:2;-1:-1:-1;;;;;24708:27:2;24717:4;-1:-1:-1;;;;;24708:27:2;;;;;;;;;;;24745:42;22174:2620;;;22055:2739;;;:::o;5283:144:1:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;;;;;;;;;5331:7:1::1;5352;1068:6:5::0;;-1:-1:-1;;;;;1068:6:5;;996:85;5352:7:1::1;-1:-1:-1::0;;;;;5344:21:1::1;5373;5344:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5330:69;;;5417:2;5409:11;;;::::0;::::1;;5320:107;5283:144::o:0;4292:234::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4409:12:1::1;:25:::0;;;;4444:9:::1;:19:::0;;;;4473:7:::1;:18:::0;4501:7:::1;:18:::0;4292:234::o;13912:179:2:-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;5023:102:1:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;5097:7:1::1;:21;5107:11:::0;5097:7;:21:::1;:::i;:::-;;5023:102:::0;:::o;10957:142:2:-;11021:7;11063:27;11082:7;11063:18;:27::i;344:21:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6319:221:2:-;6383:7;-1:-1:-1;;;;;6406:19:2;;6402:60;;6434:28;;-1:-1:-1;;;6434:28:2;;;;;;;;;;;6402:60;-1:-1:-1;;;;;;6479:25:2;;;;;:18;:25;;;;;;1022:13;6479:54;;6319:221::o;1628:101:5:-;1068:6;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;4106:180:1:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4215:13:1::1;:30:::0;;;;4255:10:::1;:24:::0;4106:180::o;2683:443::-;2736:14;2753:13;:11;:13::i;:::-;2736:30;;2803:13;;2784:15;:32;;:51;;;;-1:-1:-1;2820:15:1;;;;2784:51;2776:81;;;;-1:-1:-1;;;2776:81:1;;11036:2:6;2776:81:1;;;11018:21:6;11075:2;11055:18;;;11048:30;-1:-1:-1;;;11094:18:6;;;11087:47;11151:18;;2776:81:1;10834:341:6;2776:81:1;2896:9;;2875:17;2884:8;2875:6;:17;:::i;:::-;:30;;2867:61;;;;-1:-1:-1;;;2867:61:1;;;;;;;:::i;:::-;2984:7;;2958:10;2946:23;;;;:11;:23;;;;;;:34;;2972:8;;2946:34;:::i;:::-;:45;;2938:95;;;;-1:-1:-1;;;2938:95:1;;;;;;;:::i;:::-;3055:10;3043:23;;;;:11;:23;;;;;:35;;3070:8;;3043:23;:35;;3070:8;;3043:35;:::i;:::-;;;;-1:-1:-1;3088:31:1;;-1:-1:-1;3098:10:1;3110:8;3088:9;:31::i;4532:102::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4603:10:1::1;:24:::0;4532:102::o;4763:254::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4886:15:1::1;:34:::0;;;;4930:13:::1;:30:::0;4970:18:::1;:40:::0;4763:254::o;11323:102:2:-;11379:13;11411:7;11404:14;;;;;:::i;1952:726:1:-;2011:14;2028:13;:11;:13::i;:::-;2011:30;;2078:15;;2059;:34;;:70;;;;;2116:13;;2097:15;:32;;2059:70;2051:114;;;;-1:-1:-1;;;2051:114:1;;12397:2:6;2051:114:1;;;12379:21:6;12436:2;12416:18;;;12409:30;12475:33;12455:18;;;12448:61;12526:18;;2051:114:1;12195:355:6;2051:114:1;2193:7;;2183:6;:17;;2175:58;;;;-1:-1:-1;;;2175:58:1;;12757:2:6;2175:58:1;;;12739:21:6;12796:2;12776:18;;;12769:30;12835;12815:18;;;12808:58;12883:18;;2175:58:1;12555:352:6;2175:58:1;2272:9;;2251:17;2260:8;2251:6;:17;:::i;:::-;:30;;2243:61;;;;-1:-1:-1;;;2243:61:1;;;;;;;:::i;:::-;2362:9;;2336:10;2322:25;;;;:13;:25;;;;;;:36;;2350:8;;2322:36;:::i;:::-;:49;;2314:99;;;;-1:-1:-1;;;2314:99:1;;;;;;;:::i;:::-;2443:9;;2431:8;:21;;2423:85;;;;-1:-1:-1;;;2423:85:1;;13114:2:6;2423:85:1;;;13096:21:6;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;-1:-1:-1;;;13243:18:6;;;13236:49;13302:19;;2423:85:1;12912:415:6;2423:85:1;2552:8;2539:10;;:21;;;;:::i;:::-;2526:9;:34;;2518:65;;;;-1:-1:-1;;;2518:65:1;;13707:2:6;2518:65:1;;;13689:21:6;13746:2;13726:18;;;13719:30;-1:-1:-1;;;13765:18:6;;;13758:48;13823:18;;2518:65:1;13505:342:6;2518:65:1;2607:10;2593:25;;;;:13;:25;;;;;:37;;2622:8;;2593:25;:37;;2622:8;;2593:37;:::i;13315:303:2:-;32960:10;-1:-1:-1;;;;;13413:31:2;;;13409:61;;13453:17;;-1:-1:-1;;;13453:17:2;;;;;;;;;;;13409:61;32960:10;13481:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;13481:49:2;;;;;;;;;;;;:60;;-1:-1:-1;;13481:60:2;;;;;;;;;;13556:55;;540:41:6;;;13481:49:2;;32960:10;13556:55;;513:18:6;13556:55:2;;;;;;;13315:303;;:::o;14157:388::-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;-1:-1:-1;;;;;14363:14:2;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;-1:-1:-1;;;14484:40:2;;;;;;;;;;;14396:143;14157:388;;;;:::o;371:37:1:-;;;;;;;:::i;3481:619::-;3594:13;3644:16;3652:7;3644;:16::i;:::-;3623:110;;;;-1:-1:-1;;;3623:110:1;;14054:2:6;3623:110:1;;;14036:21:6;14093:2;14073:18;;;14066:30;14132:34;14112:18;;;14105:62;-1:-1:-1;;;14183:18:6;;;14176:45;14238:19;;3623:110:1;13852:411:6;3623:110:1;3744:28;3775:10;:8;:10::i;:::-;3744:41;;3845:1;3820:14;3814:28;:32;:279;;;;;;;;;;;;;;;;;3935:14;3975:18;3985:7;3975:9;:18::i;:::-;4019:13;3893:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3814:279;3795:298;3481:619;-1:-1:-1;;;3481:619:1:o;1143:803::-;1262:14;1279:13;:11;:13::i;:::-;1331:9;;1262:30;;-1:-1:-1;1310:17:1;1319:8;1262:30;1310:17;:::i;:::-;:30;;1302:61;;;;-1:-1:-1;;;1302:61:1;;;;;;;:::i;:::-;1400:18;;1381:15;:37;;:75;;;;;1441:15;;1422;:34;;1381:75;1373:122;;;;-1:-1:-1;;;1373:122:1;;15731:2:6;1373:122:1;;;15713:21:6;15770:2;15750:18;;;15743:30;15809:34;15789:18;;;15782:62;-1:-1:-1;;;15860:18:6;;;15853:32;15902:19;;1373:122:1;15529:398:6;1373:122:1;1556:12;;1530:10;1513:28;;;;:16;:28;;;;;;:39;;1544:8;;1513:39;:::i;:::-;:55;;1505:105;;;;-1:-1:-1;;;1505:105:1;;;;;;;:::i;:::-;1657:8;1641:13;;:24;;;;:::i;:::-;1628:9;:37;;1620:68;;;;-1:-1:-1;;;1620:68:1;;13707:2:6;1620:68:1;;;13689:21:6;13746:2;13726:18;;;13719:30;-1:-1:-1;;;13765:18:6;;;13758:48;13823:18;;1620:68:1;13505:342:6;1620:68:1;1723:28;;-1:-1:-1;;1740:10:1;16081:2:6;16077:15;16073:53;1723:28:1;;;16061:66:6;1698:12:1;;16143::6;;1723:28:1;;;;;;;;;;;;1713:39;;;;;;1698:54;;1770:50;1789:12;;1770:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1803:10:1;;;-1:-1:-1;1815:4:1;;-1:-1:-1;1770:18:1;:50::i;:::-;1762:86;;;;-1:-1:-1;;;1762:86:1;;16368:2:6;1762:86:1;;;16350:21:6;16407:2;16387:18;;;16380:30;16446:25;16426:18;;;16419:53;16489:18;;1762:86:1;16166:347:6;1762:86:1;1875:10;1858:28;;;;:16;:28;;;;;:40;;1890:8;;1858:28;:40;;1890:8;;1858:40;:::i;:::-;;;;-1:-1:-1;1908:31:1;;-1:-1:-1;1918:10:1;1930:8;1908:9;:31::i;:::-;1252:694;;1143:803;;;:::o;5131:146::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;5237:13:1::1;:33;5253:17:::0;5237:13;:33:::1;:::i;13684:162:2:-:0;-1:-1:-1;;;;;13804:25:2;;;13781:4;13804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13684:162::o;3132:213:1:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;3196:14:1::1;3213:13;:11;:13::i;:::-;3265:9;::::0;3196:30;;-1:-1:-1;3244:17:1::1;3253:8:::0;3196:30;3244:17:::1;:::i;:::-;:30;;3236:61;;;;-1:-1:-1::0;;;3236:61:1::1;;;;;;;:::i;:::-;3307:31;3317:10;3329:8;3307:9;:31::i;4640:116::-:0;1068:6:5;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4715:15:1::1;:34:::0;;-1:-1:-1;;4715:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;4640:116::o;1878:232:5:-;1068:6;;-1:-1:-1;;;;;1068:6:5;32960:10:2;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:5;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:5;;16720:2:6;1958:107:5::1;::::0;::::1;16702:21:6::0;16759:2;16739:18;;;16732:30;16798:34;16778:18;;;16771:62;-1:-1:-1;;;16849:18:6;;;16842:36;16895:19;;1958:107:5::1;16518:402:6::0;1958:107:5::1;2075:28;2094:8;2075:18;:28::i;14791:268:2:-:0;14848:4;14902:7;4358:1;14883:26;;:65;;;;;14935:13;;14925:7;:23;14883:65;:150;;;;-1:-1:-1;;14985:26:2;;;;:17;:26;;;;;;-1:-1:-1;;;14985:43:2;:48;;14791:268::o;7949:1105::-;8016:7;8050;;4358:1;8096:23;8092:898;;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:23;;;:17;:23;;;;;;;-1:-1:-1;;;8289:23:2;;:28;;8285:687;;8800:111;8807:6;8817:1;8807:11;8800:111;;-1:-1:-1;;;8877:6:2;8859:25;;;;:17;:25;;;;;;8800:111;;8285:687;8163:827;8137:853;9016:31;;-1:-1:-1;;;9016:31:2;;;;;;;;;;;2264:187:5;2356:6;;;-1:-1:-1;;;;;2372:17:5;;;-1:-1:-1;;;;;;2372:17:5;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;15138:102:2:-;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;28649:697::-;28827:88;;-1:-1:-1;;;28827:88:2;;28807:4;;-1:-1:-1;;;;;28827:45:2;;;;;:88;;32960:10;;28894:4;;28900:7;;28909:5;;28827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28827:88:2;;;;;;;;-1:-1:-1;;28827:88:2;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29105:6;:13;29122:1;29105:18;29101:229;;29150:40;;-1:-1:-1;;;29150:40:2;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;-1:-1:-1;;;;;;28983:64:2;-1:-1:-1;;;28983:64:2;;-1:-1:-1;28823:517:2;28649:697;;;;;;:::o;3367:106:1:-;3427:13;3459:7;3452:14;;;;;:::i;33078:1920:2:-;33541:4;33535:11;;33548:3;33531:21;;33624:17;;;;34307:11;;;34188:5;34437:2;34451;34441:13;;34433:22;34307:11;34420:36;34491:2;34481:13;;34082:682;34509:4;34082:682;;;34695:1;34690:3;34686:11;34679:18;;34745:2;34739:4;34735:13;34731:2;34727:22;34722:3;34714:36;34602:2;34592:13;;34082:682;;;-1:-1:-1;34792:13:2;;;-1:-1:-1;;34905:12:2;;;34963:19;;;34905:12;33078:1920;-1:-1:-1;33078:1920:2:o;1069:184:4:-;1190:4;1242;1213:25;1226:5;1233:4;1213:12;:25::i;:::-;:33;;1069:184;-1:-1:-1;;;;1069:184:4:o;15641:661:2:-;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;-1:-1:-1;;;;;15817:14:2;;;:19;15813:473;;15856:11;15870:13;15917:14;;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;-1:-1:-1;;;16076:40:2;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;1604:662:4;1687:7;1729:4;1687:7;1743:488;1767:5;:12;1763:1;:16;1743:488;;;1800:20;1823:5;1829:1;1823:8;;;;;;;;:::i;:::-;;;;;;;1800:31;;1865:12;1849;:28;1845:376;;2340:13;2388:15;;;2423:4;2416:15;;;2469:4;2453:21;;1975:57;;1845:376;;;2340:13;2388:15;;;2423:4;2416:15;;;2469:4;2453:21;;2149:57;;1845:376;-1:-1:-1;1781:3:4;;;;:::i;:::-;;;;1743:488;;;-1:-1:-1;2247:12:4;1604:662;-1:-1:-1;;;1604:662:4:o;16563:1492:2:-;16627:20;16650:13;-1:-1:-1;;;;;16677:16:2;;16673:48;;16702:19;;-1:-1:-1;;;16702:19:2;;;;;;;;;;;16673:48;16735:8;16747:1;16735:13;16731:44;;16757:18;;-1:-1:-1;;;16757:18:2;;;;;;;;;;;16731:44;-1:-1:-1;;;;;17250:22:2;;;;;;:18;:22;;1156:2;17250:22;;:70;;17288:31;17276:44;;17250:70;;;10863:11;10839:22;10835:40;-1:-1:-1;12522:15:2;;12497:23;12493:45;10832:51;10822:62;17556:31;;;;:17;:31;;;;;:170;17574:12;17799:23;;;17836:99;17862:35;;17887:9;;;;;-1:-1:-1;;;;;17862:35:2;;;17879:1;;17862:35;;17879:1;;17862:35;17930:3;17920:7;:13;17836:99;;17949:13;:19;-1:-1:-1;13912:179:2;;;:::o;14:131:6:-;-1:-1:-1;;;;;;88:32:6;;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:6;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:6;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:6: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:6;;1348:180;-1:-1:-1;1348:180:6:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:6;;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:6:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2875:385::-;2961:6;2969;2977;2985;3038:3;3026:9;3017:7;3013:23;3009:33;3006:53;;;3055:1;3052;3045:12;3006:53;-1:-1:-1;;3078:23:6;;;3148:2;3133:18;;3120:32;;-1:-1:-1;3199:2:6;3184:18;;3171:32;;3250:2;3235:18;3222:32;;-1:-1:-1;2875:385:6;-1:-1:-1;2875:385:6:o;3265:127::-;3326:10;3321:3;3317:20;3314:1;3307:31;3357:4;3354:1;3347:15;3381:4;3378:1;3371:15;3397:632;3462:5;3492:18;3533:2;3525:6;3522:14;3519:40;;;3539:18;;:::i;:::-;3614:2;3608:9;3582:2;3668:15;;-1:-1:-1;;3664:24:6;;;3690:2;3660:33;3656:42;3644:55;;;3714:18;;;3734:22;;;3711:46;3708:72;;;3760:18;;:::i;:::-;3800:10;3796:2;3789:22;3829:6;3820:15;;3859:6;3851;3844:22;3899:3;3890:6;3885:3;3881:16;3878:25;3875:45;;;3916:1;3913;3906:12;3875:45;3966:6;3961:3;3954:4;3946:6;3942:17;3929:44;4021:1;4014:4;4005:6;3997;3993:19;3989:30;3982:41;;;;3397:632;;;;;:::o;4034:451::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4212:9;4199:23;4245:18;4237:6;4234:30;4231:50;;;4277:1;4274;4267:12;4231:50;4300:22;;4353:4;4345:13;;4341:27;-1:-1:-1;4331:55:6;;4382:1;4379;4372:12;4331:55;4405:74;4471:7;4466:2;4453:16;4448:2;4444;4440:11;4405:74;:::i;4490:186::-;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4641:29;4660:9;4641:29;:::i;4681:248::-;4749:6;4757;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;-1:-1:-1;;4849:23:6;;;4919:2;4904:18;;;4891:32;;-1:-1:-1;4681:248:6:o;5119:316::-;5196:6;5204;5212;5265:2;5253:9;5244:7;5240:23;5236:32;5233:52;;;5281:1;5278;5271:12;5233:52;-1:-1:-1;;5304:23:6;;;5374:2;5359:18;;5346:32;;-1:-1:-1;5425:2:6;5410:18;;;5397:32;;5119:316;-1:-1:-1;5119:316:6:o;5440:160::-;5505:20;;5561:13;;5554:21;5544:32;;5534:60;;5590:1;5587;5580:12;5605:254;5670:6;5678;5731:2;5719:9;5710:7;5706:23;5702:32;5699:52;;;5747:1;5744;5737:12;5699:52;5770:29;5789:9;5770:29;:::i;:::-;5760:39;;5818:35;5849:2;5838:9;5834:18;5818:35;:::i;:::-;5808:45;;5605:254;;;;;:::o;5864:667::-;5959:6;5967;5975;5983;6036:3;6024:9;6015:7;6011:23;6007:33;6004:53;;;6053:1;6050;6043:12;6004:53;6076:29;6095:9;6076:29;:::i;:::-;6066:39;;6124:38;6158:2;6147:9;6143:18;6124:38;:::i;:::-;6114:48;;6209:2;6198:9;6194:18;6181:32;6171:42;;6264:2;6253:9;6249:18;6236:32;6291:18;6283:6;6280:30;6277:50;;;6323:1;6320;6313:12;6277:50;6346:22;;6399:4;6391:13;;6387:27;-1:-1:-1;6377:55:6;;6428:1;6425;6418:12;6377:55;6451:74;6517:7;6512:2;6499:16;6494:2;6490;6486:11;6451:74;:::i;:::-;6441:84;;;5864:667;;;;;;;:::o;6536:683::-;6631:6;6639;6647;6700:2;6688:9;6679:7;6675:23;6671:32;6668:52;;;6716:1;6713;6706:12;6668:52;6752:9;6739:23;6729:33;;6813:2;6802:9;6798:18;6785:32;6836:18;6877:2;6869:6;6866:14;6863:34;;;6893:1;6890;6883:12;6863:34;6931:6;6920:9;6916:22;6906:32;;6976:7;6969:4;6965:2;6961:13;6957:27;6947:55;;6998:1;6995;6988:12;6947:55;7038:2;7025:16;7064:2;7056:6;7053:14;7050:34;;;7080:1;7077;7070:12;7050:34;7133:7;7128:2;7118:6;7115:1;7111:14;7107:2;7103:23;7099:32;7096:45;7093:65;;;7154:1;7151;7144:12;7093:65;7185:2;7181;7177:11;7167:21;;7207:6;7197:16;;;;;6536:683;;;;;:::o;7224:260::-;7292:6;7300;7353:2;7341:9;7332:7;7328:23;7324:32;7321:52;;;7369:1;7366;7359:12;7321:52;7392:29;7411:9;7392:29;:::i;:::-;7382:39;;7440:38;7474:2;7463:9;7459:18;7440:38;:::i;7489:180::-;7545:6;7598:2;7586:9;7577:7;7573:23;7569:32;7566:52;;;7614:1;7611;7604:12;7566:52;7637:26;7653:9;7637:26;:::i;7674:380::-;7753:1;7749:12;;;;7796;;;7817:61;;7871:4;7863:6;7859:17;7849:27;;7817:61;7924:2;7916:6;7913:14;7893:18;7890:38;7887:161;;7970:10;7965:3;7961:20;7958:1;7951:31;8005:4;8002:1;7995:15;8033:4;8030:1;8023:15;7887:161;;7674:380;;;:::o;8059:356::-;8261:2;8243:21;;;8280:18;;;8273:30;8339:34;8334:2;8319:18;;8312:62;8406:2;8391:18;;8059:356::o;8756:545::-;8858:2;8853:3;8850:11;8847:448;;;8894:1;8919:5;8915:2;8908:17;8964:4;8960:2;8950:19;9034:2;9022:10;9018:19;9015:1;9011:27;9005:4;9001:38;9070:4;9058:10;9055:20;9052:47;;;-1:-1:-1;9093:4:6;9052:47;9148:2;9143:3;9139:12;9136:1;9132:20;9126:4;9122:31;9112:41;;9203:82;9221:2;9214:5;9211:13;9203:82;;;9266:17;;;9247:1;9236:13;9203:82;;9477:1352;9603:3;9597:10;9630:18;9622:6;9619:30;9616:56;;;9652:18;;:::i;:::-;9681:97;9771:6;9731:38;9763:4;9757:11;9731:38;:::i;:::-;9725:4;9681:97;:::i;:::-;9833:4;;9897:2;9886:14;;9914:1;9909:663;;;;10616:1;10633:6;10630:89;;;-1:-1:-1;10685:19:6;;;10679:26;10630:89;-1:-1:-1;;9434:1:6;9430:11;;;9426:24;9422:29;9412:40;9458:1;9454:11;;;9409:57;10732:81;;9879:944;;9909:663;8703:1;8696:14;;;8740:4;8727:18;;-1:-1:-1;;9945:20:6;;;10063:236;10077:7;10074:1;10071:14;10063:236;;;10166:19;;;10160:26;10145:42;;10258:27;;;;10226:1;10214:14;;;;10093:19;;10063:236;;;10067:3;10327:6;10318:7;10315:19;10312:201;;;10388:19;;;10382:26;-1:-1:-1;;10471:1:6;10467:14;;;10483:3;10463:24;10459:37;10455:42;10440:58;10425:74;;10312:201;-1:-1:-1;;;;;10559:1:6;10543:14;;;10539:22;10526:36;;-1:-1:-1;9477:1352:6:o;11180:127::-;11241:10;11236:3;11232:20;11229:1;11222:31;11272:4;11269:1;11262:15;11296:4;11293:1;11286:15;11312:125;11377:9;;;11398:10;;;11395:36;;;11411:18;;:::i;11442:342::-;11644:2;11626:21;;;11683:2;11663:18;;;11656:30;-1:-1:-1;;;11717:2:6;11702:18;;11695:48;11775:2;11760:18;;11442:342::o;11789:401::-;11991:2;11973:21;;;12030:2;12010:18;;;12003:30;12069:34;12064:2;12049:18;;12042:62;-1:-1:-1;;;12135:2:6;12120:18;;12113:35;12180:3;12165:19;;11789:401::o;13332:168::-;13405:9;;;13436;;13453:15;;;13447:22;;13433:37;13423:71;;13474:18;;:::i;14268:1256::-;14492:3;14530:6;14524:13;14556:4;14569:64;14626:6;14621:3;14616:2;14608:6;14604:15;14569:64;:::i;:::-;14696:13;;14655:16;;;;14718:68;14696:13;14655:16;14753:15;;;14718:68;:::i;:::-;14875:13;;14808:20;;;14848:1;;14913:36;14875:13;14913:36;:::i;:::-;14968:1;14985:18;;;15012:141;;;;15167:1;15162:337;;;;14978:521;;15012:141;-1:-1:-1;;15047:24:6;;15033:39;;15124:16;;15117:24;15103:39;;15092:51;;;-1:-1:-1;15012:141:6;;15162:337;15193:6;15190:1;15183:17;15241:2;15238:1;15228:16;15266:1;15280:169;15294:8;15291:1;15288:15;15280:169;;;15376:14;;15361:13;;;15354:37;15419:16;;;;15311:10;;15280:169;;;15284:3;;15480:8;15473:5;15469:20;15462:27;;14978:521;-1:-1:-1;15515:3:6;;14268:1256;-1:-1:-1;;;;;;;;;;14268:1256:6:o;16925:489::-;-1:-1:-1;;;;;17194:15:6;;;17176:34;;17246:15;;17241:2;17226:18;;17219:43;17293:2;17278:18;;17271:34;;;17341:3;17336:2;17321:18;;17314:31;;;17119:4;;17362:46;;17388:19;;17380:6;17362:46;:::i;:::-;17354:54;16925:489;-1:-1:-1;;;;;;16925:489:6:o;17419:249::-;17488:6;17541:2;17529:9;17520:7;17516:23;17512:32;17509:52;;;17557:1;17554;17547:12;17509:52;17589:9;17583:16;17608:30;17632:5;17608:30;:::i;17673:127::-;17734:10;17729:3;17725:20;17722:1;17715:31;17765:4;17762:1;17755:15;17789:4;17786:1;17779:15;17805:135;17844:3;17865:17;;;17862:43;;17885:18;;:::i;:::-;-1:-1:-1;17932:1:6;17921:13;;17805:135::o

Swarm Source

ipfs://3469a26edbd86bec0d5c2e03280e2761a8e08c9aebba6043de2aa45c66a3bae7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.