ETH Price: $3,719.00 (+3.49%)

Contract

0x2F8D29FE4CB2c7836D2678FFc344904cc46ebe37
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Safe Transfer Fr...206374312024-08-29 23:10:3593 days ago1724973035IN
0x2F8D29FE...cc46ebe37
0 ETH0.000074831.13956018
Set Approval For...193286602024-02-28 21:18:23276 days ago1709155103IN
0x2F8D29FE...cc46ebe37
0 ETH0.0011081545.88843179
Safe Transfer Fr...190995852024-01-27 18:04:35308 days ago1706378675IN
0x2F8D29FE...cc46ebe37
0 ETH0.001086615.55842276
Safe Transfer Fr...171862042023-05-04 8:45:59576 days ago1683189959IN
0x2F8D29FE...cc46ebe37
0 ETH0.0036011851.05530577
Safe Transfer Fr...167250142023-02-28 6:55:35641 days ago1677567335IN
0x2F8D29FE...cc46ebe37
0 ETH0.0011759917.89320358
Set Approval For...165109942023-01-29 7:29:47671 days ago1674977387IN
0x2F8D29FE...cc46ebe37
0 ETH0.0006385413.86310807
Transfer Ownersh...161439092022-12-09 1:35:59722 days ago1670549759IN
0x2F8D29FE...cc46ebe37
0 ETH0.0004048414.13006622
Set Approval For...154389622022-08-30 7:01:43823 days ago1661842903IN
0x2F8D29FE...cc46ebe37
0 ETH0.000398088.64256043
Set Approval For...154276282022-08-28 11:50:08825 days ago1661687408IN
0x2F8D29FE...cc46ebe37
0 ETH0.000214874.66490197
Set Approval For...153435212022-08-15 2:48:41838 days ago1660531721IN
0x2F8D29FE...cc46ebe37
0 ETH0.0007691716.66856823
Set Approval For...153217272022-08-11 16:21:56842 days ago1660234916IN
0x2F8D29FE...cc46ebe37
0 ETH0.0017073137.0664366
Set Approval For...152919582022-08-07 0:22:20846 days ago1659831740IN
0x2F8D29FE...cc46ebe37
0 ETH0.000283976.16512801
Safe Transfer Fr...152735482022-08-04 3:39:42849 days ago1659584382IN
0x2F8D29FE...cc46ebe37
0 ETH0.000415436.37254903
Transfer From152418442022-07-30 5:00:35854 days ago1659157235IN
0x2F8D29FE...cc46ebe37
0 ETH0.000388365.78288893
Set Approval For...152220922022-07-27 3:22:20857 days ago1658892140IN
0x2F8D29FE...cc46ebe37
0 ETH0.000385658.3728046
Set Approval For...151949522022-07-22 21:42:49862 days ago1658526169IN
0x2F8D29FE...cc46ebe37
0 ETH0.0003340213.7838834
Set Approval For...151520842022-07-16 6:23:45868 days ago1657952625IN
0x2F8D29FE...cc46ebe37
0 ETH0.0006870914.91707596
Set Approval For...151458542022-07-15 7:18:41869 days ago1657869521IN
0x2F8D29FE...cc46ebe37
0 ETH0.0007681816.647201
Set Approval For...151169822022-07-10 20:19:46874 days ago1657484386IN
0x2F8D29FE...cc46ebe37
0 ETH0.0013825830.01643386
Set Approval For...151169822022-07-10 20:19:46874 days ago1657484386IN
0x2F8D29FE...cc46ebe37
0 ETH0.0013825830.01643386
Set Approval For...151169822022-07-10 20:19:46874 days ago1657484386IN
0x2F8D29FE...cc46ebe37
0 ETH0.0013825830.01643386
Set Approval For...151169822022-07-10 20:19:46874 days ago1657484386IN
0x2F8D29FE...cc46ebe37
0 ETH0.0013825830.01643386
Set Approval For...151169822022-07-10 20:19:46874 days ago1657484386IN
0x2F8D29FE...cc46ebe37
0 ETH0.0013825830.01643386
Set Approval For...151059952022-07-09 3:39:43875 days ago1657337983IN
0x2F8D29FE...cc46ebe37
0 ETH0.0005686112.32236511
Set Approval For...151059952022-07-09 3:39:43875 days ago1657337983IN
0x2F8D29FE...cc46ebe37
0 ETH0.0005831712.66087716
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
150846012022-07-05 20:01:31879 days ago1657051291
0x2F8D29FE...cc46ebe37
1.257 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Tatoes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
pragma solidity ^0.8.0;
interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
pragma solidity ^0.8.0;
interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
pragma solidity ^0.8.0;
interface IERC721 is IERC165 {
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );
    function balanceOf(address owner) external view returns (uint256 balance);
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    function approve(address to, uint256 tokenId) external;
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);
    function setApprovalForAll(address operator, bool _approved) external;
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
pragma solidity ^0.8.0;
interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
pragma solidity ^0.8.0;
interface IERC721Enumerable is IERC721 {
    function totalSupply() external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256);
    function tokenByIndex(uint256 index) external view returns (uint256);
}
pragma solidity ^0.8.1;
library Address {
    function isContract(address account) internal view returns (bool) {

        return account.code.length > 0;
    }
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            if (returndata.length > 0) {

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );
    constructor() {
        _setOwner(_msgSender());
    }
    function owner() public view virtual returns (address) {
        return _owner;
    }
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    function toString(uint256 value) internal pure returns (string memory) {
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
abstract contract ERC165 is IERC165 {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    // word because each write operation emits an extra SLOAD to first read the
    // back. This is the compiler's defense against contract upgrades and

    // but in exchange the refund on every call to nonReentrant will be lower in
    // transaction's gas, it is best to keep them low in cases like this one, to
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }
    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
        _status = _ENTERED;

        _;
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity ^0.8.0;
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;
    string private _name;
    string private _symbol;
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;
    mapping(address => AddressData) private _addressData;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);
        _approve(address(0), tokenId, prevOwnership.addr);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    uint256 public nextOwnerToExplicitlySet = 0;
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}



contract Tatoes is Ownable, ERC721A, ReentrancyGuard {

    bool public publicSale = false;
    uint256 public maxPerTx = 20; 
    uint256 public OwnerMint = 250;
    uint256 public maxPerAddress = 100;
    uint256 public maxToken = 7777;
    uint256 public price = 0.003 ether;
    string private _baseTokenURI;

    mapping (address => bool) public freeMinted;

    constructor() ERC721A("Tatoes", "Tatoes", OwnerMint, maxToken){}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

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

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory _tokenURI = super.tokenURI(tokenId);
        return
            bytes(_tokenURI).length > 0
                ? string(abi.encodePacked(_tokenURI, ".json"))
                : "";
    }

    
    function mint(uint256 quantity) external payable callerIsUser {
        require(publicSale, "SALE_HAS_NOT_STARTED_YET");
        require(numberMinted(msg.sender) + quantity <= maxPerAddress, "PER_WALLET_LIMIT_REACHED");
        require(quantity > 0, "INVALID_QUANTITY");
        require(quantity <= maxPerTx, "CANNOT_MINT_THAT_MANY");
        require(totalSupply() + quantity <= maxToken, "NOT_ENOUGH_SUPPLY_TO_MINT_DESIRED_AMOUNT");
        if(freeMinted[msg.sender]){
            require(msg.value >= price * quantity, "INVALID_ETH");
        }else{
            require(msg.value >= (price * quantity) - price, "INVALID_ETH");
            freeMinted[msg.sender] = true;
        }
        _safeMint(msg.sender, quantity);
    }

    function ownerMint(address _address, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= OwnerMint, "NOT_ENOUGH_SUPPLY_TO_GIVEAWAY_DESIRED_AMOUNT");
        _safeMint(_address, quantity);
    }

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

    function setPrice(uint256 _NewPrice) external onlyOwner {
        price = _NewPrice;
    }

    function flipPublicSaleState() external onlyOwner {
        publicSale = !publicSale;
    }


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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OwnerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NewPrice","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006001819055600855600a805460ff191690556014600b5560fa600c556064600d55611e61600e55660aa87bee538000600f553480156200004557600080fd5b50604051806040016040528060068152602001655461746f657360d01b815250604051806040016040528060068152602001655461746f657360d01b815250600c54600e54620000a46200009e620001b560201b60201c565b620001b9565b60008111620001115760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001735760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000108565b83516200018890600290602087019062000209565b5082516200019e90600390602086019062000209565b5060a09190915260805250506001600955620002ec565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200021790620002af565b90600052602060002090601f0160209004810192826200023b576000855562000286565b82601f106200025657805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028657825182559160200191906001019062000269565b506200029492915062000298565b5090565b5b8082111562000294576000815560010162000299565b600181811c90821680620002c457607f821691505b60208210811415620002e657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516125cb6200031d6000396000818161176c015281816117960152611bbb0152600050506125cb6000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063d7224ba01161006f578063d7224ba0146105ce578063dc33e681146105e4578063e985e9c514610604578063f2fde38b1461064d578063f968adbe1461066d57600080fd5b8063a22cb46514610558578063b88d4fde14610578578063c87b56dd14610598578063ca69e323146105b857600080fd5b80639231ab2a116100e75780639231ab2a146104b757806395d89b4114610505578063a035b1fe1461051a578063a0712d6814610530578063a10866ef1461054357600080fd5b806370a0823114610444578063715018a6146104645780638da5cb5b1461047957806391b7f5ed1461049757600080fd5b8063389fcf061161019b578063484b973c1161016a578063484b973c146103ae5780634f6ccce7146103ce57806355f804b3146103ee5780636352211e1461040e578063639814e01461042e57600080fd5b8063389fcf06146103335780633ccfd60b146103635780633cfbab7e1461037857806342842e0e1461038e57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632f745c59146102f957806333bc1c5c1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b5061022961022436600461215e565b610683565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106f0565b60405161023591906122e4565b34801561026c57600080fd5b5061028061027b36600461220a565b610782565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612134565b610812565b005b3480156102c657600080fd5b506001545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611fe0565b61092a565b34801561030557600080fd5b506102cb610314366004612134565b610935565b34801561032557600080fd5b50600a546102299060ff1681565b34801561033f57600080fd5b5061022961034e366004611f92565b60116020526000908152604090205460ff1681565b34801561036f57600080fd5b506102b8610aae565b34801561038457600080fd5b506102cb600c5481565b34801561039a57600080fd5b506102b86103a9366004611fe0565b610b07565b3480156103ba57600080fd5b506102b86103c9366004612134565b610b22565b3480156103da57600080fd5b506102cb6103e936600461220a565b610bd4565b3480156103fa57600080fd5b506102b8610409366004612198565b610c3d565b34801561041a57600080fd5b5061028061042936600461220a565b610c73565b34801561043a57600080fd5b506102cb600d5481565b34801561045057600080fd5b506102cb61045f366004611f92565b610c85565b34801561047057600080fd5b506102b8610d16565b34801561048557600080fd5b506000546001600160a01b0316610280565b3480156104a357600080fd5b506102b86104b236600461220a565b610d4c565b3480156104c357600080fd5b506104d76104d236600461220a565b610d7b565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610235565b34801561051157600080fd5b50610253610d98565b34801561052657600080fd5b506102cb600f5481565b6102b861053e36600461220a565b610da7565b34801561054f57600080fd5b506102b8611091565b34801561056457600080fd5b506102b86105733660046120f8565b6110cf565b34801561058457600080fd5b506102b861059336600461201c565b611194565b3480156105a457600080fd5b506102536105b336600461220a565b6111cd565b3480156105c457600080fd5b506102cb600e5481565b3480156105da57600080fd5b506102cb60085481565b3480156105f057600080fd5b506102cb6105ff366004611f92565b611249565b34801561061057600080fd5b5061022961061f366004611fad565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065957600080fd5b506102b8610668366004611f92565b611254565b34801561067957600080fd5b506102cb600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106b457506001600160e01b03198216635b5e139f60e01b145b806106cf57506001600160e01b0319821663780e9d6360e01b145b806106ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ff906124bd565b80601f016020809104026020016040519081016040528092919081815260200182805461072b906124bd565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b600061078f826001541190565b6107f65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081d82610c73565b9050806001600160a01b0316836001600160a01b0316141561088c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107ed565b336001600160a01b03821614806108a857506108a8813361061f565b61091a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ed565b6109258383836112ec565b505050565b610925838383611348565b600061094083610c85565b82106109995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107ed565b60006109a460015490565b905060008060005b83811015610a4e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ff57805192505b876001600160a01b0316836001600160a01b03161415610a3b5786841415610a2d575093506106ea92505050565b83610a37816124f8565b9450505b5080610a46816124f8565b9150506109ac565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107ed565b6000546001600160a01b03163314610ad85760405162461bcd60e51b81526004016107ed906122f7565b60405133904780156108fc02916000818181858888f19350505050158015610b04573d6000803e3d6000fd5b50565b61092583838360405180602001604052806000815250611194565b6000546001600160a01b03163314610b4c5760405162461bcd60e51b81526004016107ed906122f7565b600c5481610b5960015490565b610b6391906123f0565b1115610bc65760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b60648201526084016107ed565b610bd082826116d0565b5050565b6000610bdf60015490565b8210610c395760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107ed565b5090565b6000546001600160a01b03163314610c675760405162461bcd60e51b81526004016107ed906122f7565b61092560108383611ee6565b6000610c7e826116ea565b5192915050565b60006001600160a01b038216610cf15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107ed565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610d405760405162461bcd60e51b81526004016107ed906122f7565b610d4a6000611894565b565b6000546001600160a01b03163314610d765760405162461bcd60e51b81526004016107ed906122f7565b600f55565b60408051808201909152600080825260208201526106ea826116ea565b6060600380546106ff906124bd565b323314610df65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107ed565b600a5460ff16610e485760405162461bcd60e51b815260206004820152601860248201527f53414c455f4841535f4e4f545f535441525445445f594554000000000000000060448201526064016107ed565b600d5481610e5533611249565b610e5f91906123f0565b1115610ead5760405162461bcd60e51b815260206004820152601860248201527f5045525f57414c4c45545f4c494d49545f52454143484544000000000000000060448201526064016107ed565b60008111610ef05760405162461bcd60e51b815260206004820152601060248201526f494e56414c49445f5155414e5449545960801b60448201526064016107ed565b600b54811115610f3a5760405162461bcd60e51b815260206004820152601560248201527443414e4e4f545f4d494e545f544841545f4d414e5960581b60448201526064016107ed565b600e5481610f4760015490565b610f5191906123f0565b1115610fb05760405162461bcd60e51b815260206004820152602860248201527f4e4f545f454e4f5547485f535550504c595f544f5f4d494e545f4445534952456044820152671117d05353d5539560c21b60648201526084016107ed565b3360009081526011602052604090205460ff16156110185780600f54610fd6919061241c565b3410156110135760405162461bcd60e51b815260206004820152600b60248201526a0929cac82989288be8aa8960ab1b60448201526064016107ed565b611087565b600f54611025828261241c565b61102f9190612463565b34101561106c5760405162461bcd60e51b815260206004820152600b60248201526a0929cac82989288be8aa8960ab1b60448201526064016107ed565b336000908152601160205260409020805460ff191660011790555b610b0433826116d0565b6000546001600160a01b031633146110bb5760405162461bcd60e51b81526004016107ed906122f7565b600a805460ff19811660ff90911615179055565b6001600160a01b0382163314156111285760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ed565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119f848484611348565b6111ab848484846118e4565b6111c75760405162461bcd60e51b81526004016107ed9061237b565b50505050565b60606111da826001541190565b6111f65760405162461bcd60e51b81526004016107ed9061232c565b6000611201836119f2565b905060008151116112215760405180602001604052806000815250611242565b80604051602001611232919061227e565b6040516020818303038152906040525b9392505050565b60006106ea82611a60565b6000546001600160a01b0316331461127e5760405162461bcd60e51b81526004016107ed906122f7565b6001600160a01b0381166112e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b610b0481611894565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611353826116ea565b80519091506000906001600160a01b0316336001600160a01b0316148061138a57503361137f84610782565b6001600160a01b0316145b8061139c5750815161139c903361061f565b9050806114065760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107ed565b846001600160a01b031682600001516001600160a01b03161461147a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107ed565b6001600160a01b0384166114de5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107ed565b6114ee60008484600001516112ec565b6001600160a01b03851660009081526005602052604081208054600192906115209084906001600160801b031661243b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261156c918591166123ce565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556115f48460016123f0565b6000818152600460205260409020549091506001600160a01b03166116865761161e816001541190565b156116865760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610bd0828260405180602001604052806000815250611afe565b6040805180820190915260008082526020820152611709826001541190565b6117685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107ed565b60007f000000000000000000000000000000000000000000000000000000000000000083106117c9576117bb7f000000000000000000000000000000000000000000000000000000000000000084612463565b6117c69060016123f0565b90505b825b818110611833576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561182057949350505050565b508061182b816124a6565b9150506117cb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107ed565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156119e657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119289033908990889088906004016122a7565b602060405180830381600087803b15801561194257600080fd5b505af1925050508015611972575060408051601f3d908101601f1916820190925261196f9181019061217b565b60015b6119cc573d8080156119a0576040519150601f19603f3d011682016040523d82523d6000602084013e6119a5565b606091505b5080516119c45760405162461bcd60e51b81526004016107ed9061237b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ea565b5060015b949350505050565b60606119ff826001541190565b611a1b5760405162461bcd60e51b81526004016107ed9061232c565b6000611a25611dd9565b90506000815111611a455760405180602001604052806000815250611242565b80611a4f84611de8565b60405160200161123292919061224f565b60006001600160a01b038216611ad25760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107ed565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611b615760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107ed565b611b6c816001541190565b15611bb95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107ed565b7f0000000000000000000000000000000000000000000000000000000000000000831115611c345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107ed565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c909087906123ce565b6001600160801b03168152602001858360200151611cae91906123ce565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611dce5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d9260008884886118e4565b611dae5760405162461bcd60e51b81526004016107ed9061237b565b81611db8816124f8565b9250508080611dc6906124f8565b915050611d45565b5060018190556116c8565b6060601080546106ff906124bd565b606081611e0c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e365780611e20816124f8565b9150611e2f9050600a83612408565b9150611e10565b60008167ffffffffffffffff811115611e5157611e51612569565b6040519080825280601f01601f191660200182016040528015611e7b576020820181803683370190505b5090505b84156119ea57611e90600183612463565b9150611e9d600a86612513565b611ea89060306123f0565b60f81b818381518110611ebd57611ebd612553565b60200101906001600160f81b031916908160001a905350611edf600a86612408565b9450611e7f565b828054611ef2906124bd565b90600052602060002090601f016020900481019282611f145760008555611f5a565b82601f10611f2d5782800160ff19823516178555611f5a565b82800160010185558215611f5a579182015b82811115611f5a578235825591602001919060010190611f3f565b50610c399291505b80821115610c395760008155600101611f62565b80356001600160a01b0381168114611f8d57600080fd5b919050565b600060208284031215611fa457600080fd5b61124282611f76565b60008060408385031215611fc057600080fd5b611fc983611f76565b9150611fd760208401611f76565b90509250929050565b600080600060608486031215611ff557600080fd5b611ffe84611f76565b925061200c60208501611f76565b9150604084013590509250925092565b6000806000806080858703121561203257600080fd5b61203b85611f76565b935061204960208601611f76565b925060408501359150606085013567ffffffffffffffff8082111561206d57600080fd5b818701915087601f83011261208157600080fd5b81358181111561209357612093612569565b604051601f8201601f19908116603f011681019083821181831017156120bb576120bb612569565b816040528281528a60208487010111156120d457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561210b57600080fd5b61211483611f76565b91506020830135801515811461212957600080fd5b809150509250929050565b6000806040838503121561214757600080fd5b61215083611f76565b946020939093013593505050565b60006020828403121561217057600080fd5b81356112428161257f565b60006020828403121561218d57600080fd5b81516112428161257f565b600080602083850312156121ab57600080fd5b823567ffffffffffffffff808211156121c357600080fd5b818501915085601f8301126121d757600080fd5b8135818111156121e657600080fd5b8660208285010111156121f857600080fd5b60209290920196919550909350505050565b60006020828403121561221c57600080fd5b5035919050565b6000815180845261223b81602086016020860161247a565b601f01601f19169290920160200192915050565b6000835161226181846020880161247a565b83519083019061227581836020880161247a565b01949350505050565b6000825161229081846020870161247a565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122da90830184612223565b9695505050505050565b6020815260006112426020830184612223565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561227557612275612527565b6000821982111561240357612403612527565b500190565b6000826124175761241761253d565b500490565b600081600019048311821515161561243657612436612527565b500290565b60006001600160801b038381169083168181101561245b5761245b612527565b039392505050565b60008282101561247557612475612527565b500390565b60005b8381101561249557818101518382015260200161247d565b838111156111c75750506000910152565b6000816124b5576124b5612527565b506000190190565b600181811c908216806124d157607f821691505b602082108114156124f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250c5761250c612527565b5060010190565b6000826125225761252261253d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0457600080fdfea26469706673582212205c6d50e43a0c46948ee3f1e9566ccdae0ab89ce4e249b32ec23e69969a3236de64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063d7224ba01161006f578063d7224ba0146105ce578063dc33e681146105e4578063e985e9c514610604578063f2fde38b1461064d578063f968adbe1461066d57600080fd5b8063a22cb46514610558578063b88d4fde14610578578063c87b56dd14610598578063ca69e323146105b857600080fd5b80639231ab2a116100e75780639231ab2a146104b757806395d89b4114610505578063a035b1fe1461051a578063a0712d6814610530578063a10866ef1461054357600080fd5b806370a0823114610444578063715018a6146104645780638da5cb5b1461047957806391b7f5ed1461049757600080fd5b8063389fcf061161019b578063484b973c1161016a578063484b973c146103ae5780634f6ccce7146103ce57806355f804b3146103ee5780636352211e1461040e578063639814e01461042e57600080fd5b8063389fcf06146103335780633ccfd60b146103635780633cfbab7e1461037857806342842e0e1461038e57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632f745c59146102f957806333bc1c5c1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b5061022961022436600461215e565b610683565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106f0565b60405161023591906122e4565b34801561026c57600080fd5b5061028061027b36600461220a565b610782565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612134565b610812565b005b3480156102c657600080fd5b506001545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611fe0565b61092a565b34801561030557600080fd5b506102cb610314366004612134565b610935565b34801561032557600080fd5b50600a546102299060ff1681565b34801561033f57600080fd5b5061022961034e366004611f92565b60116020526000908152604090205460ff1681565b34801561036f57600080fd5b506102b8610aae565b34801561038457600080fd5b506102cb600c5481565b34801561039a57600080fd5b506102b86103a9366004611fe0565b610b07565b3480156103ba57600080fd5b506102b86103c9366004612134565b610b22565b3480156103da57600080fd5b506102cb6103e936600461220a565b610bd4565b3480156103fa57600080fd5b506102b8610409366004612198565b610c3d565b34801561041a57600080fd5b5061028061042936600461220a565b610c73565b34801561043a57600080fd5b506102cb600d5481565b34801561045057600080fd5b506102cb61045f366004611f92565b610c85565b34801561047057600080fd5b506102b8610d16565b34801561048557600080fd5b506000546001600160a01b0316610280565b3480156104a357600080fd5b506102b86104b236600461220a565b610d4c565b3480156104c357600080fd5b506104d76104d236600461220a565b610d7b565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610235565b34801561051157600080fd5b50610253610d98565b34801561052657600080fd5b506102cb600f5481565b6102b861053e36600461220a565b610da7565b34801561054f57600080fd5b506102b8611091565b34801561056457600080fd5b506102b86105733660046120f8565b6110cf565b34801561058457600080fd5b506102b861059336600461201c565b611194565b3480156105a457600080fd5b506102536105b336600461220a565b6111cd565b3480156105c457600080fd5b506102cb600e5481565b3480156105da57600080fd5b506102cb60085481565b3480156105f057600080fd5b506102cb6105ff366004611f92565b611249565b34801561061057600080fd5b5061022961061f366004611fad565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065957600080fd5b506102b8610668366004611f92565b611254565b34801561067957600080fd5b506102cb600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106b457506001600160e01b03198216635b5e139f60e01b145b806106cf57506001600160e01b0319821663780e9d6360e01b145b806106ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ff906124bd565b80601f016020809104026020016040519081016040528092919081815260200182805461072b906124bd565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b600061078f826001541190565b6107f65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081d82610c73565b9050806001600160a01b0316836001600160a01b0316141561088c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107ed565b336001600160a01b03821614806108a857506108a8813361061f565b61091a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ed565b6109258383836112ec565b505050565b610925838383611348565b600061094083610c85565b82106109995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107ed565b60006109a460015490565b905060008060005b83811015610a4e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ff57805192505b876001600160a01b0316836001600160a01b03161415610a3b5786841415610a2d575093506106ea92505050565b83610a37816124f8565b9450505b5080610a46816124f8565b9150506109ac565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107ed565b6000546001600160a01b03163314610ad85760405162461bcd60e51b81526004016107ed906122f7565b60405133904780156108fc02916000818181858888f19350505050158015610b04573d6000803e3d6000fd5b50565b61092583838360405180602001604052806000815250611194565b6000546001600160a01b03163314610b4c5760405162461bcd60e51b81526004016107ed906122f7565b600c5481610b5960015490565b610b6391906123f0565b1115610bc65760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b60648201526084016107ed565b610bd082826116d0565b5050565b6000610bdf60015490565b8210610c395760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107ed565b5090565b6000546001600160a01b03163314610c675760405162461bcd60e51b81526004016107ed906122f7565b61092560108383611ee6565b6000610c7e826116ea565b5192915050565b60006001600160a01b038216610cf15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107ed565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610d405760405162461bcd60e51b81526004016107ed906122f7565b610d4a6000611894565b565b6000546001600160a01b03163314610d765760405162461bcd60e51b81526004016107ed906122f7565b600f55565b60408051808201909152600080825260208201526106ea826116ea565b6060600380546106ff906124bd565b323314610df65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107ed565b600a5460ff16610e485760405162461bcd60e51b815260206004820152601860248201527f53414c455f4841535f4e4f545f535441525445445f594554000000000000000060448201526064016107ed565b600d5481610e5533611249565b610e5f91906123f0565b1115610ead5760405162461bcd60e51b815260206004820152601860248201527f5045525f57414c4c45545f4c494d49545f52454143484544000000000000000060448201526064016107ed565b60008111610ef05760405162461bcd60e51b815260206004820152601060248201526f494e56414c49445f5155414e5449545960801b60448201526064016107ed565b600b54811115610f3a5760405162461bcd60e51b815260206004820152601560248201527443414e4e4f545f4d494e545f544841545f4d414e5960581b60448201526064016107ed565b600e5481610f4760015490565b610f5191906123f0565b1115610fb05760405162461bcd60e51b815260206004820152602860248201527f4e4f545f454e4f5547485f535550504c595f544f5f4d494e545f4445534952456044820152671117d05353d5539560c21b60648201526084016107ed565b3360009081526011602052604090205460ff16156110185780600f54610fd6919061241c565b3410156110135760405162461bcd60e51b815260206004820152600b60248201526a0929cac82989288be8aa8960ab1b60448201526064016107ed565b611087565b600f54611025828261241c565b61102f9190612463565b34101561106c5760405162461bcd60e51b815260206004820152600b60248201526a0929cac82989288be8aa8960ab1b60448201526064016107ed565b336000908152601160205260409020805460ff191660011790555b610b0433826116d0565b6000546001600160a01b031633146110bb5760405162461bcd60e51b81526004016107ed906122f7565b600a805460ff19811660ff90911615179055565b6001600160a01b0382163314156111285760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ed565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119f848484611348565b6111ab848484846118e4565b6111c75760405162461bcd60e51b81526004016107ed9061237b565b50505050565b60606111da826001541190565b6111f65760405162461bcd60e51b81526004016107ed9061232c565b6000611201836119f2565b905060008151116112215760405180602001604052806000815250611242565b80604051602001611232919061227e565b6040516020818303038152906040525b9392505050565b60006106ea82611a60565b6000546001600160a01b0316331461127e5760405162461bcd60e51b81526004016107ed906122f7565b6001600160a01b0381166112e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b610b0481611894565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611353826116ea565b80519091506000906001600160a01b0316336001600160a01b0316148061138a57503361137f84610782565b6001600160a01b0316145b8061139c5750815161139c903361061f565b9050806114065760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107ed565b846001600160a01b031682600001516001600160a01b03161461147a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107ed565b6001600160a01b0384166114de5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107ed565b6114ee60008484600001516112ec565b6001600160a01b03851660009081526005602052604081208054600192906115209084906001600160801b031661243b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261156c918591166123ce565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556115f48460016123f0565b6000818152600460205260409020549091506001600160a01b03166116865761161e816001541190565b156116865760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610bd0828260405180602001604052806000815250611afe565b6040805180820190915260008082526020820152611709826001541190565b6117685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107ed565b60007f00000000000000000000000000000000000000000000000000000000000000fa83106117c9576117bb7f00000000000000000000000000000000000000000000000000000000000000fa84612463565b6117c69060016123f0565b90505b825b818110611833576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561182057949350505050565b508061182b816124a6565b9150506117cb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107ed565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156119e657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119289033908990889088906004016122a7565b602060405180830381600087803b15801561194257600080fd5b505af1925050508015611972575060408051601f3d908101601f1916820190925261196f9181019061217b565b60015b6119cc573d8080156119a0576040519150601f19603f3d011682016040523d82523d6000602084013e6119a5565b606091505b5080516119c45760405162461bcd60e51b81526004016107ed9061237b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ea565b5060015b949350505050565b60606119ff826001541190565b611a1b5760405162461bcd60e51b81526004016107ed9061232c565b6000611a25611dd9565b90506000815111611a455760405180602001604052806000815250611242565b80611a4f84611de8565b60405160200161123292919061224f565b60006001600160a01b038216611ad25760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107ed565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611b615760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107ed565b611b6c816001541190565b15611bb95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107ed565b7f00000000000000000000000000000000000000000000000000000000000000fa831115611c345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107ed565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c909087906123ce565b6001600160801b03168152602001858360200151611cae91906123ce565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611dce5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d9260008884886118e4565b611dae5760405162461bcd60e51b81526004016107ed9061237b565b81611db8816124f8565b9250508080611dc6906124f8565b915050611d45565b5060018190556116c8565b6060601080546106ff906124bd565b606081611e0c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e365780611e20816124f8565b9150611e2f9050600a83612408565b9150611e10565b60008167ffffffffffffffff811115611e5157611e51612569565b6040519080825280601f01601f191660200182016040528015611e7b576020820181803683370190505b5090505b84156119ea57611e90600183612463565b9150611e9d600a86612513565b611ea89060306123f0565b60f81b818381518110611ebd57611ebd612553565b60200101906001600160f81b031916908160001a905350611edf600a86612408565b9450611e7f565b828054611ef2906124bd565b90600052602060002090601f016020900481019282611f145760008555611f5a565b82601f10611f2d5782800160ff19823516178555611f5a565b82800160010185558215611f5a579182015b82811115611f5a578235825591602001919060010190611f3f565b50610c399291505b80821115610c395760008155600101611f62565b80356001600160a01b0381168114611f8d57600080fd5b919050565b600060208284031215611fa457600080fd5b61124282611f76565b60008060408385031215611fc057600080fd5b611fc983611f76565b9150611fd760208401611f76565b90509250929050565b600080600060608486031215611ff557600080fd5b611ffe84611f76565b925061200c60208501611f76565b9150604084013590509250925092565b6000806000806080858703121561203257600080fd5b61203b85611f76565b935061204960208601611f76565b925060408501359150606085013567ffffffffffffffff8082111561206d57600080fd5b818701915087601f83011261208157600080fd5b81358181111561209357612093612569565b604051601f8201601f19908116603f011681019083821181831017156120bb576120bb612569565b816040528281528a60208487010111156120d457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561210b57600080fd5b61211483611f76565b91506020830135801515811461212957600080fd5b809150509250929050565b6000806040838503121561214757600080fd5b61215083611f76565b946020939093013593505050565b60006020828403121561217057600080fd5b81356112428161257f565b60006020828403121561218d57600080fd5b81516112428161257f565b600080602083850312156121ab57600080fd5b823567ffffffffffffffff808211156121c357600080fd5b818501915085601f8301126121d757600080fd5b8135818111156121e657600080fd5b8660208285010111156121f857600080fd5b60209290920196919550909350505050565b60006020828403121561221c57600080fd5b5035919050565b6000815180845261223b81602086016020860161247a565b601f01601f19169290920160200192915050565b6000835161226181846020880161247a565b83519083019061227581836020880161247a565b01949350505050565b6000825161229081846020870161247a565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122da90830184612223565b9695505050505050565b6020815260006112426020830184612223565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561227557612275612527565b6000821982111561240357612403612527565b500190565b6000826124175761241761253d565b500490565b600081600019048311821515161561243657612436612527565b500290565b60006001600160801b038381169083168181101561245b5761245b612527565b039392505050565b60008282101561247557612475612527565b500390565b60005b8381101561249557818101518382015260200161247d565b838111156111c75750506000910152565b6000816124b5576124b5612527565b506000190190565b600181811c908216806124d157607f821691505b602082108114156124f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250c5761250c612527565b5060010190565b6000826125225761252261253d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0457600080fdfea26469706673582212205c6d50e43a0c46948ee3f1e9566ccdae0ab89ce4e249b32ec23e69969a3236de64736f6c63430008070033

Deployed Bytecode Sourcemap

23160:2900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13132:422;;;;;;;;;;-1:-1:-1;13132:422:0;;;;;:::i;:::-;;:::i;:::-;;;6072:14:1;;6065:22;6047:41;;6035:2;6020:18;13132:422:0;;;;;;;;14918:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16127:292::-;;;;;;;;;;-1:-1:-1;16127:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5370:32:1;;;5352:51;;5340:2;5325:18;16127:292:0;5206:203:1;15708:413:0;;;;;;;;;;-1:-1:-1;15708:413:0;;;;;:::i;:::-;;:::i;:::-;;11922:100;;;;;;;;;;-1:-1:-1;12002:12:0;;11922:100;;;18232:25:1;;;18220:2;18205:18;11922:100:0;18086:177:1;16962:162:0;;;;;;;;;;-1:-1:-1;16962:162:0;;;;;:::i;:::-;;:::i;12262:864::-;;;;;;;;;;-1:-1:-1;12262:864:0;;;;;:::i;:::-;;:::i;23222:30::-;;;;;;;;;;-1:-1:-1;23222:30:0;;;;;;;;23488:43;;;;;;;;;;-1:-1:-1;23488:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25948:109;;;;;;;;;;;;;:::i;23295:30::-;;;;;;;;;;;;;;;;17130:177;;;;;;;;;;-1:-1:-1;17130:177:0;;;;;:::i;:::-;;:::i;25274:227::-;;;;;;;;;;-1:-1:-1;25274:227:0;;;;;:::i;:::-;;:::i;12028:228::-;;;;;;;;;;-1:-1:-1;12028:228:0;;;;;:::i;:::-;;:::i;25834:106::-;;;;;;;;;;-1:-1:-1;25834:106:0;;;;;:::i;:::-;;:::i;14788:124::-;;;;;;;;;;-1:-1:-1;14788:124:0;;;;;:::i;:::-;;:::i;23332:34::-;;;;;;;;;;;;;;;;13560:258;;;;;;;;;;-1:-1:-1;13560:258:0;;;;;:::i;:::-;;:::i;7116:94::-;;;;;;;;;;;;;:::i;6897:87::-;;;;;;;;;;-1:-1:-1;6943:7:0;6970:6;-1:-1:-1;;;;;6970:6:0;6897:87;;25631:92;;;;;;;;;;-1:-1:-1;25631:92:0;;;;;:::i;:::-;;:::i;23862:167::-;;;;;;;;;;-1:-1:-1;23862:167:0;;;;;:::i;:::-;;:::i;:::-;;;;17951:13:1;;-1:-1:-1;;;;;17947:39:1;17929:58;;18047:4;18035:17;;;18029:24;18055:18;18025:49;18003:20;;;17996:79;;;;17902:18;23862:167:0;17721:360:1;15024:104:0;;;;;;;;;;;;;:::i;23410:34::-;;;;;;;;;;;;;;;;24525:741;;;;;;:::i;:::-;;:::i;25731:93::-;;;;;;;;;;;;;:::i;16425:311::-;;;;;;;;;;-1:-1:-1;16425:311:0;;;;;:::i;:::-;;:::i;17313:355::-;;;;;;;;;;-1:-1:-1;17313:355:0;;;;;:::i;:::-;;:::i;24037:474::-;;;;;;;;;;-1:-1:-1;24037:474:0;;;;;:::i;:::-;;:::i;23373:30::-;;;;;;;;;;;;;;;;20934:43;;;;;;;;;;;;;;;;23741:113;;;;;;;;;;-1:-1:-1;23741:113:0;;;;;:::i;:::-;;:::i;16742:214::-;;;;;;;;;;-1:-1:-1;16742:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;16913:25:0;;;16884:4;16913:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;16742:214;7216:229;;;;;;;;;;-1:-1:-1;7216:229:0;;;;;:::i;:::-;;:::i;23259:28::-;;;;;;;;;;;;;;;;13132:422;13279:4;-1:-1:-1;;;;;;13321:40:0;;-1:-1:-1;;;13321:40:0;;:105;;-1:-1:-1;;;;;;;13378:48:0;;-1:-1:-1;;;13378:48:0;13321:105;:172;;;-1:-1:-1;;;;;;;13443:50:0;;-1:-1:-1;;;13443:50:0;13321:172;:225;;;-1:-1:-1;;;;;;;;;;9588:40:0;;;13510:36;13301:245;13132:422;-1:-1:-1;;13132:422:0:o;14918:100::-;14972:13;15005:5;14998:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14918:100;:::o;16127:292::-;16231:7;16278:16;16286:7;17765:12;;-1:-1:-1;17755:22:0;17674:111;16278:16;16256:111;;;;-1:-1:-1;;;16256:111:0;;17106:2:1;16256:111:0;;;17088:21:1;17145:2;17125:18;;;17118:30;17184:34;17164:18;;;17157:62;-1:-1:-1;;;17235:18:1;;;17228:43;17288:19;;16256:111:0;;;;;;;;;-1:-1:-1;16387:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;16387:24:0;;16127:292::o;15708:413::-;15781:13;15797:24;15813:7;15797:15;:24::i;:::-;15781:40;;15846:5;-1:-1:-1;;;;;15840:11:0;:2;-1:-1:-1;;;;;15840:11:0;;;15832:58;;;;-1:-1:-1;;;15832:58:0;;13581:2:1;15832:58:0;;;13563:21:1;13620:2;13600:18;;;13593:30;13659:34;13639:18;;;13632:62;-1:-1:-1;;;13710:18:1;;;13703:32;13752:19;;15832:58:0;13379:398:1;15832:58:0;6484:10;-1:-1:-1;;;;;15925:21:0;;;;:62;;-1:-1:-1;15950:37:0;15967:5;6484:10;16742:214;:::i;15950:37::-;15903:169;;;;-1:-1:-1;;;15903:169:0;;10376:2:1;15903:169:0;;;10358:21:1;10415:2;10395:18;;;10388:30;10454:34;10434:18;;;10427:62;10525:27;10505:18;;;10498:55;10570:19;;15903:169:0;10174:421:1;15903:169:0;16085:28;16094:2;16098:7;16107:5;16085:8;:28::i;:::-;15770:351;15708:413;;:::o;16962:162::-;17088:28;17098:4;17104:2;17108:7;17088:9;:28::i;12262:864::-;12387:7;12428:16;12438:5;12428:9;:16::i;:::-;12420:5;:24;12412:71;;;;-1:-1:-1;;;12412:71:0;;6525:2:1;12412:71:0;;;6507:21:1;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:32;6696:19;;12412:71:0;6323:398:1;12412:71:0;12494:22;12519:13;12002:12;;;11922:100;12519:13;12494:38;;12543:19;12577:25;12631:9;12626:426;12650:14;12646:1;:18;12626:426;;;12686:31;12720:14;;;:11;:14;;;;;;;;;12686:48;;;;;;;;;-1:-1:-1;;;;;12686:48:0;;;;;-1:-1:-1;;;12686:48:0;;;;;;;;;;;;12753:28;12749:103;;12822:14;;;-1:-1:-1;12749:103:0;12891:5;-1:-1:-1;;;;;12870:26:0;:17;-1:-1:-1;;;;;12870:26:0;;12866:175;;;12936:5;12921:11;:20;12917:77;;;-1:-1:-1;12973:1:0;-1:-1:-1;12966:8:0;;-1:-1:-1;;;12966:8:0;12917:77;13012:13;;;;:::i;:::-;;;;12866:175;-1:-1:-1;12666:3:0;;;;:::i;:::-;;;;12626:426;;;-1:-1:-1;13062:56:0;;-1:-1:-1;;;13062:56:0;;16275:2:1;13062:56:0;;;16257:21:1;16314:2;16294:18;;;16287:30;16353:34;16333:18;;;16326:62;-1:-1:-1;;;16404:18:1;;;16397:44;16458:19;;13062:56:0;16073:410:1;25948:109:0;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;25998:51:::1;::::0;26006:10:::1;::::0;26027:21:::1;25998:51:::0;::::1;;;::::0;::::1;::::0;;;26027:21;26006:10;25998:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;25948:109::o:0;17130:177::-;17260:39;17277:4;17283:2;17287:7;17260:39;;;;;;;;;;;;:16;:39::i;25274:227::-;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;25395:9:::1;;25383:8;25367:13;12002:12:::0;;;11922:100;25367:13:::1;:24;;;;:::i;:::-;:37;;25359:94;;;::::0;-1:-1:-1;;;25359:94:0;;15517:2:1;25359:94:0::1;::::0;::::1;15499:21:1::0;15556:2;15536:18;;;15529:30;15595:34;15575:18;;;15568:62;-1:-1:-1;;;15646:18:1;;;15639:42;15698:19;;25359:94:0::1;15315:408:1::0;25359:94:0::1;25464:29;25474:8;25484;25464:9;:29::i;:::-;25274:227:::0;;:::o;12028:228::-;12131:7;12172:13;12002:12;;;11922:100;12172:13;12164:5;:21;12156:69;;;;-1:-1:-1;;;12156:69:0;;8436:2:1;12156:69:0;;;8418:21:1;8475:2;8455:18;;;8448:30;8514:34;8494:18;;;8487:62;-1:-1:-1;;;8565:18:1;;;8558:33;8608:19;;12156:69:0;8234:399:1;12156:69:0;-1:-1:-1;12243:5:0;12028:228::o;25834:106::-;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;25909:23:::1;:13;25925:7:::0;;25909:23:::1;:::i;14788:124::-:0;14852:7;14879:20;14891:7;14879:11;:20::i;:::-;:25;;14788:124;-1:-1:-1;;14788:124:0:o;13560:258::-;13624:7;-1:-1:-1;;;;;13666:19:0;;13644:112;;;;-1:-1:-1;;;13644:112:0;;10802:2:1;13644:112:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880:34;10860:18;;;10853:62;-1:-1:-1;;;10931:18:1;;;10924:41;10982:19;;13644:112:0;10600:407:1;13644:112:0;-1:-1:-1;;;;;;13782:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;13782:27:0;;13560:258::o;7116:94::-;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;7181:21:::1;7199:1;7181:9;:21::i;:::-;7116:94::o:0;25631:92::-;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;25698:5:::1;:17:::0;25631:92::o;23862:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;24001:20:0;24013:7;24001:11;:20::i;15024:104::-;15080:13;15113:7;15106:14;;;;;:::i;24525:741::-;23655:9;23668:10;23655:23;23647:66;;;;-1:-1:-1;;;23647:66:0;;9664:2:1;23647:66:0;;;9646:21:1;9703:2;9683:18;;;9676:30;9742:32;9722:18;;;9715:60;9792:18;;23647:66:0;9462:354:1;23647:66:0;24606:10:::1;::::0;::::1;;24598:47;;;::::0;-1:-1:-1;;;24598:47:0;;13984:2:1;24598:47:0::1;::::0;::::1;13966:21:1::0;14023:2;14003:18;;;13996:30;14062:26;14042:18;;;14035:54;14106:18;;24598:47:0::1;13782:348:1::0;24598:47:0::1;24703:13;;24691:8;24664:24;24677:10;24664:12;:24::i;:::-;:35;;;;:::i;:::-;:52;;24656:89;;;::::0;-1:-1:-1;;;24656:89:0;;10023:2:1;24656:89:0::1;::::0;::::1;10005:21:1::0;10062:2;10042:18;;;10035:30;10101:26;10081:18;;;10074:54;10145:18;;24656:89:0::1;9821:348:1::0;24656:89:0::1;24775:1;24764:8;:12;24756:41;;;::::0;-1:-1:-1;;;24756:41:0;;15930:2:1;24756:41:0::1;::::0;::::1;15912:21:1::0;15969:2;15949:18;;;15942:30;-1:-1:-1;;;15988:18:1;;;15981:46;16044:18;;24756:41:0::1;15728:340:1::0;24756:41:0::1;24828:8;;24816;:20;;24808:54;;;::::0;-1:-1:-1;;;24808:54:0;;6928:2:1;24808:54:0::1;::::0;::::1;6910:21:1::0;6967:2;6947:18;;;6940:30;-1:-1:-1;;;6986:18:1;;;6979:51;7047:18;;24808:54:0::1;6726:345:1::0;24808:54:0::1;24909:8;;24897;24881:13;12002:12:::0;;;11922:100;24881:13:::1;:24;;;;:::i;:::-;:36;;24873:89;;;::::0;-1:-1:-1;;;24873:89:0;;13172:2:1;24873:89:0::1;::::0;::::1;13154:21:1::0;13211:2;13191:18;;;13184:30;13250:34;13230:18;;;13223:62;-1:-1:-1;;;13301:18:1;;;13294:38;13349:19;;24873:89:0::1;12970:404:1::0;24873:89:0::1;24987:10;24976:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;24973:244;;;25043:8;25035:5;;:16;;;;:::i;:::-;25022:9;:29;;25014:53;;;::::0;-1:-1:-1;;;25014:53:0;;7685:2:1;25014:53:0::1;::::0;::::1;7667:21:1::0;7724:2;7704:18;;;7697:30;-1:-1:-1;;;7743:18:1;;;7736:41;7794:18;;25014:53:0::1;7483:335:1::0;25014:53:0::1;24973:244;;;25140:5;::::0;25120:16:::1;25128:8:::0;25140:5;25120:16:::1;:::i;:::-;25119:26;;;;:::i;:::-;25106:9;:39;;25098:63;;;::::0;-1:-1:-1;;;25098:63:0;;7685:2:1;25098:63:0::1;::::0;::::1;7667:21:1::0;7724:2;7704:18;;;7697:30;-1:-1:-1;;;7743:18:1;;;7736:41;7794:18;;25098:63:0::1;7483:335:1::0;25098:63:0::1;25187:10;25176:22;::::0;;;:10:::1;:22;::::0;;;;:29;;-1:-1:-1;;25176:29:0::1;25201:4;25176:29;::::0;;24973:244:::1;25227:31;25237:10;25249:8;25227:9;:31::i;25731:93::-:0;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;25806:10:::1;::::0;;-1:-1:-1;;25792:24:0;::::1;25806:10;::::0;;::::1;25805:11;25792:24;::::0;;25731:93::o;16425:311::-;-1:-1:-1;;;;;16543:24:0;;6484:10;16543:24;;16535:63;;;;-1:-1:-1;;;16535:63:0;;12398:2:1;16535:63:0;;;12380:21:1;12437:2;12417:18;;;12410:30;12476:28;12456:18;;;12449:56;12522:18;;16535:63:0;12196:350:1;16535:63:0;6484:10;16611:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;16611:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;16611:53:0;;;;;;;;;;16680:48;;6047:41:1;;;16611:42:0;;6484:10;16680:48;;6020:18:1;16680:48:0;;;;;;;16425:311;;:::o;17313:355::-;17472:28;17482:4;17488:2;17492:7;17472:9;:28::i;:::-;17533:48;17556:4;17562:2;17566:7;17575:5;17533:22;:48::i;:::-;17511:149;;;;-1:-1:-1;;;17511:149:0;;;;;;;:::i;:::-;17313:355;;;;:::o;24037:474::-;24155:13;24208:16;24216:7;17765:12;;-1:-1:-1;17755:22:0;17674:111;24208:16;24186:113;;;;-1:-1:-1;;;24186:113:0;;;;;;;:::i;:::-;24310:23;24336;24351:7;24336:14;:23::i;:::-;24310:49;;24416:1;24396:9;24390:23;:27;:113;;;;;;;;;;;;;;;;;24461:9;24444:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;24390:113;24370:133;24037:474;-1:-1:-1;;;24037:474:0:o;23741:113::-;23799:7;23826:20;23840:5;23826:13;:20::i;7216:229::-;6943:7;6970:6;-1:-1:-1;;;;;6970:6:0;6484:10;7030:23;7022:68;;;;-1:-1:-1;;;7022:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7319:22:0;::::1;7297:110;;;::::0;-1:-1:-1;;;7297:110:0;;7278:2:1;7297:110:0::1;::::0;::::1;7260:21:1::0;7317:2;7297:18;;;7290:30;7356:34;7336:18;;;7329:62;-1:-1:-1;;;7407:18:1;;;7400:36;7453:19;;7297:110:0::1;7076:402:1::0;7297:110:0::1;7418:19;7428:8;7418:9;:19::i;20730:196::-:0;20845:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20845:29:0;-1:-1:-1;;;;;20845:29:0;;;;;;;;;20890:28;;20845:24;;20890:28;;;;;;;20730:196;;;:::o;19184:1540::-;19299:35;19337:20;19349:7;19337:11;:20::i;:::-;19412:18;;19299:58;;-1:-1:-1;19370:22:0;;-1:-1:-1;;;;;19396:34:0;6484:10;-1:-1:-1;;;;;19396:34:0;;:87;;;-1:-1:-1;6484:10:0;19447:20;19459:7;19447:11;:20::i;:::-;-1:-1:-1;;;;;19447:36:0;;19396:87;:154;;;-1:-1:-1;19517:18:0;;19500:50;;6484:10;16742:214;:::i;19500:50::-;19370:181;;19586:17;19564:117;;;;-1:-1:-1;;;19564:117:0;;12753:2:1;19564:117:0;;;12735:21:1;12792:2;12772:18;;;12765:30;12831:34;12811:18;;;12804:62;-1:-1:-1;;;12882:18:1;;;12875:48;12940:19;;19564:117:0;12551:414:1;19564:117:0;19738:4;-1:-1:-1;;;;;19716:26:0;:13;:18;;;-1:-1:-1;;;;;19716:26:0;;19694:114;;;;-1:-1:-1;;;19694:114:0;;11214:2:1;19694:114:0;;;11196:21:1;11253:2;11233:18;;;11226:30;11292:34;11272:18;;;11265:62;-1:-1:-1;;;11343:18:1;;;11336:36;11389:19;;19694:114:0;11012:402:1;19694:114:0;-1:-1:-1;;;;;19827:16:0;;19819:66;;;;-1:-1:-1;;;19819:66:0;;8840:2:1;19819:66:0;;;8822:21:1;8879:2;8859:18;;;8852:30;8918:34;8898:18;;;8891:62;-1:-1:-1;;;8969:18:1;;;8962:35;9014:19;;19819:66:0;8638:401:1;19819:66:0;19952:49;19969:1;19973:7;19982:13;:18;;;19952:8;:49::i;:::-;-1:-1:-1;;;;;20014:18:0;;;;;;:12;:18;;;;;:31;;20044:1;;20014:18;:31;;20044:1;;-1:-1:-1;;;;;20014:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;20014:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20056:16:0;;-1:-1:-1;20056:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;20056:16:0;;:29;;-1:-1:-1;;20056:29:0;;:::i;:::-;;;-1:-1:-1;;;;;20056:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20119:43:0;;;;;;;;-1:-1:-1;;;;;20119:43:0;;;;;;20145:15;20119:43;;;;;;;;;-1:-1:-1;20096:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;20096:66:0;-1:-1:-1;;;;;;20096:66:0;;;;;;;;;;;20309:11;20108:7;-1:-1:-1;20309:11:0;:::i;:::-;20376:1;20335:24;;;:11;:24;;;;;:29;20287:33;;-1:-1:-1;;;;;;20335:29:0;20331:288;;20399:20;20407:11;17765:12;;-1:-1:-1;17755:22:0;17674:111;20399:20;20395:213;;;20467:125;;;;;;;;20504:18;;-1:-1:-1;;;;;20467:125:0;;;;;;20545:28;;;;20467:125;;;;;;;;;;-1:-1:-1;20440:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;20440:152:0;-1:-1:-1;;;;;;20440:152:0;;;;;;;;;;;;20395:213;20655:7;20651:2;-1:-1:-1;;;;;20636:27:0;20645:4;-1:-1:-1;;;;;20636:27:0;;;;;;;;;;;20674:42;19288:1436;;;19184:1540;;;:::o;17793:104::-;17862:27;17872:2;17876:8;17862:27;;;;;;;;;;;;:9;:27::i;14100:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;14235:16:0;14243:7;17765:12;;-1:-1:-1;17755:22:0;17674:111;14235:16;14227:71;;;;-1:-1:-1;;;14227:71:0;;8025:2:1;14227:71:0;;;8007:21:1;8064:2;8044:18;;;8037:30;8103:34;8083:18;;;8076:62;-1:-1:-1;;;8154:18:1;;;8147:40;8204:19;;14227:71:0;7823:406:1;14227:71:0;14311:26;14363:12;14352:7;:23;14348:103;;14413:22;14423:12;14413:7;:22;:::i;:::-;:26;;14438:1;14413:26;:::i;:::-;14392:47;;14348:103;14483:7;14463:242;14500:18;14492:4;:26;14463:242;;14543:31;14577:17;;;:11;:17;;;;;;;;;14543:51;;;;;;;;;-1:-1:-1;;;;;14543:51:0;;;;;-1:-1:-1;;;14543:51:0;;;;;;;;;;;;14613:28;14609:85;;14669:9;14100:682;-1:-1:-1;;;;14100:682:0:o;14609:85::-;-1:-1:-1;14520:6:0;;;;:::i;:::-;;;;14463:242;;;-1:-1:-1;14717:57:0;;-1:-1:-1;;;14717:57:0;;16690:2:1;14717:57:0;;;16672:21:1;16729:2;16709:18;;;16702:30;16768:34;16748:18;;;16741:62;-1:-1:-1;;;16819:18:1;;;16812:45;16874:19;;14717:57:0;16488:411:1;7453:173:0;7509:16;7528:6;;-1:-1:-1;;;;;7545:17:0;;;-1:-1:-1;;;;;;7545:17:0;;;;;;7578:40;;7528:6;;;;;;;7578:40;;7509:16;7578:40;7498:128;7453:173;:::o;21835:985::-;21990:4;-1:-1:-1;;;;;22011:13:0;;2496:19;:23;22007:806;;22064:175;;-1:-1:-1;;;22064:175:0;;-1:-1:-1;;;;;22064:36:0;;;;;:175;;6484:10;;22158:4;;22185:7;;22215:5;;22064:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22064:175:0;;;;;;;;-1:-1:-1;;22064:175:0;;;;;;;;;;;;:::i;:::-;;;22043:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22426:13:0;;22422:321;;22469:109;;-1:-1:-1;;;22469:109:0;;;;;;;:::i;22422:321::-;22693:6;22687:13;22678:6;22674:2;22670:15;22663:38;22043:715;-1:-1:-1;;;;;;22303:55:0;-1:-1:-1;;;22303:55:0;;-1:-1:-1;22296:62:0;;22007:806;-1:-1:-1;22797:4:0;22007:806;21835:985;;;;;;:::o;15134:468::-;15252:13;15305:16;15313:7;17765:12;;-1:-1:-1;17755:22:0;17674:111;15305:16;15283:113;;;;-1:-1:-1;;;15283:113:0;;;;;;;:::i;:::-;15409:21;15433:10;:8;:10::i;:::-;15409:34;;15498:1;15480:7;15474:21;:25;:120;;;;;;;;;;;;;;;;;15543:7;15552:18;:7;:16;:18::i;:::-;15526:45;;;;;;;;;:::i;13826:266::-;13887:7;-1:-1:-1;;;;;13929:19:0;;13907:118;;;;-1:-1:-1;;;13907:118:0;;9246:2:1;13907:118:0;;;9228:21:1;9285:2;9265:18;;;9258:30;9324:34;9304:18;;;9297:62;-1:-1:-1;;;9375:18:1;;;9368:47;9432:19;;13907:118:0;9044:413:1;13907:118:0;-1:-1:-1;;;;;;14051:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;14051:32:0;;-1:-1:-1;;;;;14051:32:0;;13826:266::o;17903:1275::-;18049:12;;-1:-1:-1;;;;;18080:16:0;;18072:62;;;;-1:-1:-1;;;18072:62:0;;15115:2:1;18072:62:0;;;15097:21:1;15154:2;15134:18;;;15127:30;15193:34;15173:18;;;15166:62;-1:-1:-1;;;15244:18:1;;;15237:31;15285:19;;18072:62:0;14913:397:1;18072:62:0;18154:21;18162:12;17765;;-1:-1:-1;17755:22:0;17674:111;18154:21;18153:22;18145:64;;;;-1:-1:-1;;;18145:64:0;;14757:2:1;18145:64:0;;;14739:21:1;14796:2;14776:18;;;14769:30;14835:31;14815:18;;;14808:59;14884:18;;18145:64:0;14555:353:1;18145:64:0;18240:12;18228:8;:24;;18220:71;;;;-1:-1:-1;;;18220:71:0;;17520:2:1;18220:71:0;;;17502:21:1;17559:2;17539:18;;;17532:30;17598:34;17578:18;;;17571:62;-1:-1:-1;;;17649:18:1;;;17642:32;17691:19;;18220:71:0;17318:398:1;18220:71:0;-1:-1:-1;;;;;18411:16:0;;18378:30;18411:16;;;:12;:16;;;;;;;;;18378:49;;;;;;;;;-1:-1:-1;;;;;18378:49:0;;;;;-1:-1:-1;;;18378:49:0;;;;;;;;;;;18457:135;;;;;;;;18483:19;;18378:49;;18457:135;;;18483:39;;18513:8;;18483:39;:::i;:::-;-1:-1:-1;;;;;18457:135:0;;;;;18572:8;18537:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;18457:135:0;;;;;;-1:-1:-1;;;;;18438:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;18438:154:0;;;;;;;;;;;;18631:43;;;;;;;;;;;18657:15;18631:43;;;;;;;;18603:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;18603:71:0;-1:-1:-1;;;;;;18603:71:0;;;;;;;;;;;;;;;;;;18615:12;;18735:325;18759:8;18755:1;:12;18735:325;;;18794:38;;18819:12;;-1:-1:-1;;;;;18794:38:0;;;18811:1;;18794:38;;18811:1;;18794:38;18873:59;18904:1;18908:2;18912:12;18926:5;18873:22;:59::i;:::-;18847:172;;;;-1:-1:-1;;;18847:172:0;;;;;;;:::i;:::-;19034:14;;;;:::i;:::-;;;;18769:3;;;;;:::i;:::-;;;;18735:325;;;-1:-1:-1;19072:12:0;:27;;;19110:60;17313:355;25509:114;25569:13;25602;25595:20;;;;;:::i;7798:656::-;7854:13;8008:10;8004:53;;-1:-1:-1;;8035:10:0;;;;;;;;;;;;-1:-1:-1;;;8035:10:0;;;;;7798:656::o;8004:53::-;8082:5;8067:12;8123:78;8130:9;;8123:78;;8156:8;;;;:::i;:::-;;-1:-1:-1;8179:10:0;;-1:-1:-1;8187:2:0;8179:10;;:::i;:::-;;;8123:78;;;8211:19;8243:6;8233:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8233:17:0;;8211:39;;8261:154;8268:10;;8261:154;;8295:11;8305:1;8295:11;;:::i;:::-;;-1:-1:-1;8364:10:0;8372:2;8364:5;:10;:::i;:::-;8351:24;;:2;:24;:::i;:::-;8338:39;;8321:6;8328;8321:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8321:56:0;;;;;;;;-1:-1:-1;8392:11:0;8401:2;8392:11;;:::i;:::-;;;8261:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;4758:443::-;4990:3;5028:6;5022:13;5044:53;5090:6;5085:3;5078:4;5070:6;5066:17;5044:53;:::i;:::-;-1:-1:-1;;;5119:16:1;;5144:22;;;-1:-1:-1;5193:1:1;5182:13;;4758:443;-1:-1:-1;4758:443:1:o;5414:488::-;-1:-1:-1;;;;;5683:15:1;;;5665:34;;5735:15;;5730:2;5715:18;;5708:43;5782:2;5767:18;;5760:34;;;5830:3;5825:2;5810:18;;5803:31;;;5608:4;;5851:45;;5876:19;;5868:6;5851:45;:::i;:::-;5843:53;5414:488;-1:-1:-1;;;;;;5414:488:1:o;6099:219::-;6248:2;6237:9;6230:21;6211:4;6268:44;6308:2;6297:9;6293:18;6285:6;6268:44;:::i;11419:356::-;11621:2;11603:21;;;11640:18;;;11633:30;11699:34;11694:2;11679:18;;11672:62;11766:2;11751:18;;11419:356::o;11780:411::-;11982:2;11964:21;;;12021:2;12001:18;;;11994:30;12060:34;12055:2;12040:18;;12033:62;-1:-1:-1;;;12126:2:1;12111:18;;12104:45;12181:3;12166:19;;11780:411::o;14135:415::-;14337:2;14319:21;;;14376:2;14356:18;;;14349:30;14415:34;14410:2;14395:18;;14388:62;-1:-1:-1;;;14481:2:1;14466:18;;14459:49;14540:3;14525:19;;14135:415::o;18268:253::-;18308:3;-1:-1:-1;;;;;18397:2:1;18394:1;18390:10;18427:2;18424:1;18420:10;18458:3;18454:2;18450:12;18445:3;18442:21;18439:47;;;18466:18;;:::i;18526:128::-;18566:3;18597:1;18593:6;18590:1;18587:13;18584:39;;;18603:18;;:::i;:::-;-1:-1:-1;18639:9:1;;18526:128::o;18659:120::-;18699:1;18725;18715:35;;18730:18;;:::i;:::-;-1:-1:-1;18764:9:1;;18659:120::o;18784:168::-;18824:7;18890:1;18886;18882:6;18878:14;18875:1;18872:21;18867:1;18860:9;18853:17;18849:45;18846:71;;;18897:18;;:::i;:::-;-1:-1:-1;18937:9:1;;18784:168::o;18957:246::-;18997:4;-1:-1:-1;;;;;19110:10:1;;;;19080;;19132:12;;;19129:38;;;19147:18;;:::i;:::-;19184:13;;18957:246;-1:-1:-1;;;18957:246:1:o;19208:125::-;19248:4;19276:1;19273;19270:8;19267:34;;;19281:18;;:::i;:::-;-1:-1:-1;19318:9:1;;19208:125::o;19338:258::-;19410:1;19420:113;19434:6;19431:1;19428:13;19420:113;;;19510:11;;;19504:18;19491:11;;;19484:39;19456:2;19449:10;19420:113;;;19551:6;19548:1;19545:13;19542:48;;;-1:-1:-1;;19586:1:1;19568:16;;19561:27;19338:258::o;19601:136::-;19640:3;19668:5;19658:39;;19677:18;;:::i;:::-;-1:-1:-1;;;19713:18:1;;19601:136::o;19742:380::-;19821:1;19817:12;;;;19864;;;19885:61;;19939:4;19931:6;19927:17;19917:27;;19885:61;19992:2;19984:6;19981:14;19961:18;19958:38;19955:161;;;20038:10;20033:3;20029:20;20026:1;20019:31;20073:4;20070:1;20063:15;20101:4;20098:1;20091:15;19955:161;;19742:380;;;:::o;20127:135::-;20166:3;-1:-1:-1;;20187:17:1;;20184:43;;;20207:18;;:::i;:::-;-1:-1:-1;20254:1:1;20243:13;;20127:135::o;20267:112::-;20299:1;20325;20315:35;;20330:18;;:::i;:::-;-1:-1:-1;20364:9:1;;20267:112::o;20384:127::-;20445:10;20440:3;20436:20;20433:1;20426:31;20476:4;20473:1;20466:15;20500:4;20497:1;20490:15;20516:127;20577:10;20572:3;20568:20;20565:1;20558:31;20608:4;20605:1;20598:15;20632:4;20629:1;20622:15;20648:127;20709:10;20704:3;20700:20;20697:1;20690:31;20740:4;20737:1;20730:15;20764:4;20761:1;20754:15;20780:127;20841:10;20836:3;20832:20;20829:1;20822:31;20872:4;20869:1;20862:15;20896:4;20893:1;20886:15;20912:131;-1:-1:-1;;;;;;20986:32:1;;20976:43;;20966:71;;21033:1;21030;21023:12

Swarm Source

ipfs://5c6d50e43a0c46948ee3f1e9566ccdae0ab89ce4e249b32ec23e69969a3236de

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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