ETH Price: $3,074.23 (+0.83%)
Gas: 4 Gwei

Token

Rugzuki (RUGZUKI)
 

Overview

Max Total Supply

3,000 RUGZUKI

Holders

606

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ghoxtcat.eth
Balance
5 RUGZUKI
0x60b27b6aca4d8613123eef40fe8147b4e416a322
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Rugzuki

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 12: Rugzuki.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721A.sol";

contract Rugzuki is ERC721A, Ownable {

    uint256 public price = 0.01 ether;
    uint256 public maxTotalSupply = 10000;
    uint256 public saleStartTime;
    string private baseURI;

    constructor() ERC721A("Rugzuki", "RUGZUKI") {
        saleStartTime = block.timestamp;
    }

    modifier mintableSupply(uint256 _quantity) {
        require(
            totalSupply() + _quantity <= maxTotalSupply,
            "Over maximum supply."
        );
        _;
    }

    modifier saleActive() {
        require(
            saleStartTime <= block.timestamp,
            "Sale not start yet."
        );
        _;
    }

    function setSaleTime(uint256 _time) external onlyOwner {
        saleStartTime = _time;
    }

    function mintRugzuki(uint256 _quantity)
        external
        payable
        saleActive
        mintableSupply(_quantity)
    {
        require(msg.value >= price * _quantity, "Insufficent funds.");
        
        _safeMint(msg.sender, _quantity);
    }


    function setMintPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 12: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 12: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol";
import "./Strings.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./IERC721Receiver.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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 TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 5 of 12: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 12: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 7 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 12: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // 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);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    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);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintRugzuki","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","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"}]

6080604052662386f26fc100006008556127106009553480156200002257600080fd5b50604051806040016040528060078152602001665275677a756b6960c81b815250604051806040016040528060078152602001665255475a554b4960c81b81525081600190805190602001906200007b9291906200010e565b508051620000919060029060208401906200010e565b505050620000ae620000a8620000b860201b60201c565b620000bc565b42600a55620001f1565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011c90620001b4565b90600052602060002090601f0160209004810192826200014057600085556200018b565b82601f106200015b57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018b5782518255916020019190600101906200016e565b50620001999291506200019d565b5090565b5b808211156200019957600081556001016200019e565b600181811c90821680620001c957607f821691505b60208210811415620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b611b7180620002016000396000f3fe60806040526004361061019c5760003560e01c80634f6ccce7116100ec578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610481578063e985e9c5146104a1578063f2fde38b146104ea578063f4a0a5281461050a57600080fd5b8063a035b1fe1461042b578063a22cb46514610441578063b88d4fde1461046157600080fd5b806370a08231116100c657806370a08231146103c3578063715018a6146103e35780638da5cb5b146103f857806395d89b411461041657600080fd5b80634f6ccce71461036357806355f804b3146103835780636352211e146103a357600080fd5b806323b872dd116101595780633bd2b67d116101335780633bd2b67d146102fb5780633ccfd60b1461031b578063427166e31461033057806342842e0e1461034357600080fd5b806323b872dd146102a55780632ab4d052146102c55780632f745c59146102db57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631cbaee2d1461028f575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611859565b61052a565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610597565b6040516101cd919061198d565b34801561020457600080fd5b506102186102133660046118dc565b610629565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461182f565b61066d565b005b34801561025e57600080fd5b506102816000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101cd565b34801561029b57600080fd5b50610281600a5481565b3480156102b157600080fd5b506102506102c036600461173b565b6106fb565b3480156102d157600080fd5b5061028160095481565b3480156102e757600080fd5b506102816102f636600461182f565b610706565b34801561030757600080fd5b506102506103163660046118dc565b610803565b34801561032757600080fd5b5061025061083b565b61025061033e3660046118dc565b6108f3565b34801561034f57600080fd5b5061025061035e36600461173b565b610a11565b34801561036f57600080fd5b5061028161037e3660046118dc565b610a2c565b34801561038f57600080fd5b5061025061039e366004611893565b610ad7565b3480156103af57600080fd5b506102186103be3660046118dc565b610b14565b3480156103cf57600080fd5b506102816103de3660046116ed565b610b26565b3480156103ef57600080fd5b50610250610b75565b34801561040457600080fd5b506007546001600160a01b0316610218565b34801561042257600080fd5b506101eb610bab565b34801561043757600080fd5b5061028160085481565b34801561044d57600080fd5b5061025061045c3660046117f3565b610bba565b34801561046d57600080fd5b5061025061047c366004611777565b610c50565b34801561048d57600080fd5b506101eb61049c3660046118dc565b610c8a565b3480156104ad57600080fd5b506101c16104bc366004611708565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104f657600080fd5b506102506105053660046116ed565b610d0f565b34801561051657600080fd5b506102506105253660046118dc565b610da7565b60006001600160e01b031982166380ac58cd60e01b148061055b57506001600160e01b03198216635b5e139f60e01b145b8061057657506001600160e01b0319821663780e9d6360e01b145b8061059157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105a690611a63565b80601f01602080910402602001604051908101604052809291908181526020018280546105d290611a63565b801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b600061063482610dd6565b610651576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061067882610b14565b9050806001600160a01b0316836001600160a01b031614156106ad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106cd57506106cb81336104bc565b155b156106eb576040516367d9dca160e11b815260040160405180910390fd5b6106f6838383610e0a565b505050565b6106f6838383610e66565b600061071183610b26565b8210610730576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156107fd57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906107a957506107f5565b80516001600160a01b0316156107be57805192505b876001600160a01b0316836001600160a01b031614156107f357868414156107ec5750935061059192505050565b6001909301925b505b600101610741565b50600080fd5b6007546001600160a01b031633146108365760405162461bcd60e51b815260040161082d906119a0565b60405180910390fd5b600a55565b6007546001600160a01b031633146108655760405162461bcd60e51b815260040161082d906119a0565b604051600090339047908381818185875af1925050503d80600081146108a7576040519150601f19603f3d011682016040523d82523d6000602084013e6108ac565b606091505b50509050806108f05760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161082d565b50565b42600a54111561093b5760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1039ba30b93a103cb2ba1760691b604482015260640161082d565b80600954816109626000546001600160801b03600160801b82048116918116919091031690565b61096c91906119d5565b11156109b15760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b604482015260640161082d565b816008546109bf9190611a01565b341015610a035760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b604482015260640161082d565b610a0d3383611085565b5050565b6106f683838360405180602001604052806000815250610c50565b600080546001600160801b031681805b82811015610abd57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ab45785831415610aad5750949350505050565b6001909201915b50600101610a3c565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b015760405162461bcd60e51b815260040161082d906119a0565b8051610a0d90600b9060208401906115c2565b6000610b1f8261109f565b5192915050565b60006001600160a01b038216610b4f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b9f5760405162461bcd60e51b815260040161082d906119a0565b610ba960006111c3565b565b6060600280546105a690611a63565b6001600160a01b038216331415610be45760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c5b848484610e66565b610c6784848484611215565b610c84576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c9582610dd6565b610cb257604051630a14c4b560e41b815260040160405180910390fd5b6000610cbc611324565b9050805160001415610cdd5760405180602001604052806000815250610d08565b80610ce784611333565b604051602001610cf8929190611921565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610d395760405162461bcd60e51b815260040161082d906119a0565b6001600160a01b038116610d9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082d565b6108f0816111c3565b6007546001600160a01b03163314610dd15760405162461bcd60e51b815260040161082d906119a0565b600855565b600080546001600160801b031682108015610591575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e718261109f565b80519091506000906001600160a01b0316336001600160a01b03161480610e9f57508151610e9f90336104bc565b80610eba575033610eaf84610629565b6001600160a01b0316145b905080610eda57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f0f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f3657604051633a954ecd60e21b815260040160405180910390fd5b610f466000848460000151610e0a565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661103b576000546001600160801b031681101561103b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a0d828260405180602001604052806000815250611431565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156111aa57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111a85780516001600160a01b03161561113e579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111a3579392505050565b61113e565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561131857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611259903390899088908890600401611950565b602060405180830381600087803b15801561127357600080fd5b505af19250505080156112a3575060408051601f3d908101601f191682019092526112a091810190611876565b60015b6112fe573d8080156112d1576040519150601f19603f3d011682016040523d82523d6000602084013e6112d6565b606091505b5080516112f6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061131c565b5060015b949350505050565b6060600b80546105a690611a63565b6060816113575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611381578061136b81611a9e565b915061137a9050600a836119ed565b915061135b565b60008167ffffffffffffffff81111561139c5761139c611b0f565b6040519080825280601f01601f1916602001820160405280156113c6576020820181803683370190505b5090505b841561131c576113db600183611a20565b91506113e8600a86611ab9565b6113f39060306119d5565b60f81b81838151811061140857611408611af9565b60200101906001600160f81b031916908160001a90535061142a600a866119ed565b94506113ca565b6106f683838360016000546001600160801b03166001600160a01b03851661146b57604051622e076360e81b815260040160405180910390fd5b836114895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561159c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561157257506115706000888488611215565b155b15611590576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161151b565b50600080546001600160801b0319166001600160801b039290921691909117905561107e565b8280546115ce90611a63565b90600052602060002090601f0160209004810192826115f05760008555611636565b82601f1061160957805160ff1916838001178555611636565b82800160010185558215611636579182015b8281111561163657825182559160200191906001019061161b565b50611642929150611646565b5090565b5b808211156116425760008155600101611647565b600067ffffffffffffffff8084111561167657611676611b0f565b604051601f8501601f19908116603f0116810190828211818310171561169e5761169e611b0f565b816040528093508581528686860111156116b757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116e857600080fd5b919050565b6000602082840312156116ff57600080fd5b610d08826116d1565b6000806040838503121561171b57600080fd5b611724836116d1565b9150611732602084016116d1565b90509250929050565b60008060006060848603121561175057600080fd5b611759846116d1565b9250611767602085016116d1565b9150604084013590509250925092565b6000806000806080858703121561178d57600080fd5b611796856116d1565b93506117a4602086016116d1565b925060408501359150606085013567ffffffffffffffff8111156117c757600080fd5b8501601f810187136117d857600080fd5b6117e78782356020840161165b565b91505092959194509250565b6000806040838503121561180657600080fd5b61180f836116d1565b91506020830135801515811461182457600080fd5b809150509250929050565b6000806040838503121561184257600080fd5b61184b836116d1565b946020939093013593505050565b60006020828403121561186b57600080fd5b8135610d0881611b25565b60006020828403121561188857600080fd5b8151610d0881611b25565b6000602082840312156118a557600080fd5b813567ffffffffffffffff8111156118bc57600080fd5b8201601f810184136118cd57600080fd5b61131c8482356020840161165b565b6000602082840312156118ee57600080fd5b5035919050565b6000815180845261190d816020860160208601611a37565b601f01601f19169290920160200192915050565b60008351611933818460208801611a37565b835190830190611947818360208801611a37565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611983908301846118f5565b9695505050505050565b602081526000610d0860208301846118f5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119e8576119e8611acd565b500190565b6000826119fc576119fc611ae3565b500490565b6000816000190483118215151615611a1b57611a1b611acd565b500290565b600082821015611a3257611a32611acd565b500390565b60005b83811015611a52578181015183820152602001611a3a565b83811115610c845750506000910152565b600181811c90821680611a7757607f821691505b60208210811415611a9857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ab257611ab2611acd565b5060010190565b600082611ac857611ac8611ae3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f057600080fdfea264697066735822122010dec005cf8365d0d751629576437dcc949392177bc776ac4d73861c275e389a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80634f6ccce7116100ec578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610481578063e985e9c5146104a1578063f2fde38b146104ea578063f4a0a5281461050a57600080fd5b8063a035b1fe1461042b578063a22cb46514610441578063b88d4fde1461046157600080fd5b806370a08231116100c657806370a08231146103c3578063715018a6146103e35780638da5cb5b146103f857806395d89b411461041657600080fd5b80634f6ccce71461036357806355f804b3146103835780636352211e146103a357600080fd5b806323b872dd116101595780633bd2b67d116101335780633bd2b67d146102fb5780633ccfd60b1461031b578063427166e31461033057806342842e0e1461034357600080fd5b806323b872dd146102a55780632ab4d052146102c55780632f745c59146102db57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631cbaee2d1461028f575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611859565b61052a565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610597565b6040516101cd919061198d565b34801561020457600080fd5b506102186102133660046118dc565b610629565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461182f565b61066d565b005b34801561025e57600080fd5b506102816000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101cd565b34801561029b57600080fd5b50610281600a5481565b3480156102b157600080fd5b506102506102c036600461173b565b6106fb565b3480156102d157600080fd5b5061028160095481565b3480156102e757600080fd5b506102816102f636600461182f565b610706565b34801561030757600080fd5b506102506103163660046118dc565b610803565b34801561032757600080fd5b5061025061083b565b61025061033e3660046118dc565b6108f3565b34801561034f57600080fd5b5061025061035e36600461173b565b610a11565b34801561036f57600080fd5b5061028161037e3660046118dc565b610a2c565b34801561038f57600080fd5b5061025061039e366004611893565b610ad7565b3480156103af57600080fd5b506102186103be3660046118dc565b610b14565b3480156103cf57600080fd5b506102816103de3660046116ed565b610b26565b3480156103ef57600080fd5b50610250610b75565b34801561040457600080fd5b506007546001600160a01b0316610218565b34801561042257600080fd5b506101eb610bab565b34801561043757600080fd5b5061028160085481565b34801561044d57600080fd5b5061025061045c3660046117f3565b610bba565b34801561046d57600080fd5b5061025061047c366004611777565b610c50565b34801561048d57600080fd5b506101eb61049c3660046118dc565b610c8a565b3480156104ad57600080fd5b506101c16104bc366004611708565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104f657600080fd5b506102506105053660046116ed565b610d0f565b34801561051657600080fd5b506102506105253660046118dc565b610da7565b60006001600160e01b031982166380ac58cd60e01b148061055b57506001600160e01b03198216635b5e139f60e01b145b8061057657506001600160e01b0319821663780e9d6360e01b145b8061059157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105a690611a63565b80601f01602080910402602001604051908101604052809291908181526020018280546105d290611a63565b801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b600061063482610dd6565b610651576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061067882610b14565b9050806001600160a01b0316836001600160a01b031614156106ad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106cd57506106cb81336104bc565b155b156106eb576040516367d9dca160e11b815260040160405180910390fd5b6106f6838383610e0a565b505050565b6106f6838383610e66565b600061071183610b26565b8210610730576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156107fd57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906107a957506107f5565b80516001600160a01b0316156107be57805192505b876001600160a01b0316836001600160a01b031614156107f357868414156107ec5750935061059192505050565b6001909301925b505b600101610741565b50600080fd5b6007546001600160a01b031633146108365760405162461bcd60e51b815260040161082d906119a0565b60405180910390fd5b600a55565b6007546001600160a01b031633146108655760405162461bcd60e51b815260040161082d906119a0565b604051600090339047908381818185875af1925050503d80600081146108a7576040519150601f19603f3d011682016040523d82523d6000602084013e6108ac565b606091505b50509050806108f05760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161082d565b50565b42600a54111561093b5760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1039ba30b93a103cb2ba1760691b604482015260640161082d565b80600954816109626000546001600160801b03600160801b82048116918116919091031690565b61096c91906119d5565b11156109b15760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b604482015260640161082d565b816008546109bf9190611a01565b341015610a035760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b604482015260640161082d565b610a0d3383611085565b5050565b6106f683838360405180602001604052806000815250610c50565b600080546001600160801b031681805b82811015610abd57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ab45785831415610aad5750949350505050565b6001909201915b50600101610a3c565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b015760405162461bcd60e51b815260040161082d906119a0565b8051610a0d90600b9060208401906115c2565b6000610b1f8261109f565b5192915050565b60006001600160a01b038216610b4f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b9f5760405162461bcd60e51b815260040161082d906119a0565b610ba960006111c3565b565b6060600280546105a690611a63565b6001600160a01b038216331415610be45760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c5b848484610e66565b610c6784848484611215565b610c84576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c9582610dd6565b610cb257604051630a14c4b560e41b815260040160405180910390fd5b6000610cbc611324565b9050805160001415610cdd5760405180602001604052806000815250610d08565b80610ce784611333565b604051602001610cf8929190611921565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610d395760405162461bcd60e51b815260040161082d906119a0565b6001600160a01b038116610d9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082d565b6108f0816111c3565b6007546001600160a01b03163314610dd15760405162461bcd60e51b815260040161082d906119a0565b600855565b600080546001600160801b031682108015610591575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e718261109f565b80519091506000906001600160a01b0316336001600160a01b03161480610e9f57508151610e9f90336104bc565b80610eba575033610eaf84610629565b6001600160a01b0316145b905080610eda57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f0f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f3657604051633a954ecd60e21b815260040160405180910390fd5b610f466000848460000151610e0a565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661103b576000546001600160801b031681101561103b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a0d828260405180602001604052806000815250611431565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156111aa57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111a85780516001600160a01b03161561113e579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111a3579392505050565b61113e565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561131857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611259903390899088908890600401611950565b602060405180830381600087803b15801561127357600080fd5b505af19250505080156112a3575060408051601f3d908101601f191682019092526112a091810190611876565b60015b6112fe573d8080156112d1576040519150601f19603f3d011682016040523d82523d6000602084013e6112d6565b606091505b5080516112f6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061131c565b5060015b949350505050565b6060600b80546105a690611a63565b6060816113575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611381578061136b81611a9e565b915061137a9050600a836119ed565b915061135b565b60008167ffffffffffffffff81111561139c5761139c611b0f565b6040519080825280601f01601f1916602001820160405280156113c6576020820181803683370190505b5090505b841561131c576113db600183611a20565b91506113e8600a86611ab9565b6113f39060306119d5565b60f81b81838151811061140857611408611af9565b60200101906001600160f81b031916908160001a90535061142a600a866119ed565b94506113ca565b6106f683838360016000546001600160801b03166001600160a01b03851661146b57604051622e076360e81b815260040160405180910390fd5b836114895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561159c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561157257506115706000888488611215565b155b15611590576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161151b565b50600080546001600160801b0319166001600160801b039290921691909117905561107e565b8280546115ce90611a63565b90600052602060002090601f0160209004810192826115f05760008555611636565b82601f1061160957805160ff1916838001178555611636565b82800160010185558215611636579182015b8281111561163657825182559160200191906001019061161b565b50611642929150611646565b5090565b5b808211156116425760008155600101611647565b600067ffffffffffffffff8084111561167657611676611b0f565b604051601f8501601f19908116603f0116810190828211818310171561169e5761169e611b0f565b816040528093508581528686860111156116b757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116e857600080fd5b919050565b6000602082840312156116ff57600080fd5b610d08826116d1565b6000806040838503121561171b57600080fd5b611724836116d1565b9150611732602084016116d1565b90509250929050565b60008060006060848603121561175057600080fd5b611759846116d1565b9250611767602085016116d1565b9150604084013590509250925092565b6000806000806080858703121561178d57600080fd5b611796856116d1565b93506117a4602086016116d1565b925060408501359150606085013567ffffffffffffffff8111156117c757600080fd5b8501601f810187136117d857600080fd5b6117e78782356020840161165b565b91505092959194509250565b6000806040838503121561180657600080fd5b61180f836116d1565b91506020830135801515811461182457600080fd5b809150509250929050565b6000806040838503121561184257600080fd5b61184b836116d1565b946020939093013593505050565b60006020828403121561186b57600080fd5b8135610d0881611b25565b60006020828403121561188857600080fd5b8151610d0881611b25565b6000602082840312156118a557600080fd5b813567ffffffffffffffff8111156118bc57600080fd5b8201601f810184136118cd57600080fd5b61131c8482356020840161165b565b6000602082840312156118ee57600080fd5b5035919050565b6000815180845261190d816020860160208601611a37565b601f01601f19169290920160200192915050565b60008351611933818460208801611a37565b835190830190611947818360208801611a37565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611983908301846118f5565b9695505050505050565b602081526000610d0860208301846118f5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119e8576119e8611acd565b500190565b6000826119fc576119fc611ae3565b500490565b6000816000190483118215151615611a1b57611a1b611acd565b500290565b600082821015611a3257611a32611acd565b500390565b60005b83811015611a52578181015183820152602001611a3a565b83811115610c845750506000910152565b600181811c90821680611a7757607f821691505b60208210811415611a9857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ab257611ab2611acd565b5060010190565b600082611ac857611ac8611ae3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f057600080fdfea264697066735822122010dec005cf8365d0d751629576437dcc949392177bc776ac4d73861c275e389a64736f6c63430008070033

Deployed Bytecode Sourcemap

114:1534:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:372:3;;;;;;;;;;-1:-1:-1;6201:372:3;;;;;:::i;:::-;;:::i;:::-;;;5856:14:12;;5849:22;5831:41;;5819:2;5804:18;6201:372:3;;;;;;;;8811:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10314:204::-;;;;;;;;;;-1:-1:-1;10314:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:12;;;5136:51;;5124:2;5109:18;10314:204:3;4990:203:12;9877:371:3;;;;;;;;;;-1:-1:-1;9877:371:3;;;;;:::i;:::-;;:::i;:::-;;3438:280;;;;;;;;;;;;3491:7;3683:12;-1:-1:-1;;;;;;;;3683:12:3;;;;3667:13;;;:28;;;;3660:35;;3438:280;;;;8410:25:12;;;8398:2;8383:18;3438:280:3;8264:177:12;244:28:10;;;;;;;;;;;;;;;;11171:170:3;;;;;;;;;;-1:-1:-1;11171:170:3;;;;;:::i;:::-;;:::i;200:37:10:-;;;;;;;;;;;;;;;;5024:1105:3;;;;;;;;;;-1:-1:-1;5024:1105:3;;;;;:::i;:::-;;:::i;769:95:10:-;;;;;;;;;;-1:-1:-1;769:95:10;;;;;:::i;:::-;;:::i;1472:173::-;;;;;;;;;;;;;:::i;872:268::-;;;;;;:::i;:::-;;:::i;11412:185:3:-;;;;;;;;;;-1:-1:-1;11412:185:3;;;;;:::i;:::-;;:::i;4011:713::-;;;;;;;;;;-1:-1:-1;4011:713:3;;;;;:::i;:::-;;:::i;1248:100:10:-;;;;;;;;;;-1:-1:-1;1248:100:10;;;;;:::i;:::-;;:::i;8620:124:3:-;;;;;;;;;;-1:-1:-1;8620:124:3;;;;;:::i;:::-;;:::i;6637:206::-;;;;;;;;;;-1:-1:-1;6637:206:3;;;;;:::i;:::-;;:::i;1650:94:9:-;;;;;;;;;;;;;:::i;999:87::-;;;;;;;;;;-1:-1:-1;1072:6:9;;-1:-1:-1;;;;;1072:6:9;999:87;;8980:104:3;;;;;;;;;;;;;:::i;160:33:10:-;;;;;;;;;;;;;;;;10590:279:3;;;;;;;;;;-1:-1:-1;10590:279:3;;;;;:::i;:::-;;:::i;11668:342::-;;;;;;;;;;-1:-1:-1;11668:342:3;;;;;:::i;:::-;;:::i;9155:318::-;;;;;;;;;;-1:-1:-1;9155:318:3;;;;;:::i;:::-;;:::i;10940:164::-;;;;;;;;;;-1:-1:-1;10940:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;11061:25:3;;;11037:4;11061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10940:164;1899:192:9;;;;;;;;;;-1:-1:-1;1899:192:9;;;;;:::i;:::-;;:::i;1150:90:10:-;;;;;;;;;;-1:-1:-1;1150:90:10;;;;;:::i;:::-;;:::i;6201:372:3:-;6303:4;-1:-1:-1;;;;;;6340:40:3;;-1:-1:-1;;;6340:40:3;;:105;;-1:-1:-1;;;;;;;6397:48:3;;-1:-1:-1;;;6397:48:3;6340:105;:172;;;-1:-1:-1;;;;;;;6462:50:3;;-1:-1:-1;;;6462:50:3;6340:172;:225;;;-1:-1:-1;;;;;;;;;;896:40:2;;;6529:36:3;6320:245;6201:372;-1:-1:-1;;6201:372:3:o;8811:100::-;8865:13;8898:5;8891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8811:100;:::o;10314:204::-;10382:7;10407:16;10415:7;10407;:16::i;:::-;10402:64;;10432:34;;-1:-1:-1;;;10432:34:3;;;;;;;;;;;10402:64;-1:-1:-1;10486:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;10486:24:3;;10314:204::o;9877:371::-;9950:13;9966:24;9982:7;9966:15;:24::i;:::-;9950:40;;10011:5;-1:-1:-1;;;;;10005:11:3;:2;-1:-1:-1;;;;;10005:11:3;;10001:48;;;10025:24;;-1:-1:-1;;;10025:24:3;;;;;;;;;;;10001:48;681:10:1;-1:-1:-1;;;;;10066:21:3;;;;;;:63;;-1:-1:-1;10092:37:3;10109:5;681:10:1;10940:164:3;:::i;10092:37::-;10091:38;10066:63;10062:138;;;10153:35;;-1:-1:-1;;;10153:35:3;;;;;;;;;;;10062:138;10212:28;10221:2;10225:7;10234:5;10212:8;:28::i;:::-;9939:309;9877:371;;:::o;11171:170::-;11305:28;11315:4;11321:2;11325:7;11305:9;:28::i;5024:1105::-;5113:7;5146:16;5156:5;5146:9;:16::i;:::-;5137:5;:25;5133:61;;5171:23;;-1:-1:-1;;;5171:23:3;;;;;;;;;;;5133:61;5205:22;5230:13;;-1:-1:-1;;;;;5230:13:3;;5205:22;;5480:557;5500:14;5496:1;:18;5480:557;;;5540:31;5574:14;;;:11;:14;;;;;;;;;5540:48;;;;;;;;;-1:-1:-1;;;;;5540:48:3;;;;-1:-1:-1;;;5540:48:3;;;;;;;;;;;-1:-1:-1;;;5540:48:3;;;;;;;;;;;;;;;;5607:73;;5652:8;;;5607:73;5702:14;;-1:-1:-1;;;;;5702:28:3;;5698:111;;5775:14;;;-1:-1:-1;5698:111:3;5852:5;-1:-1:-1;;;;;5831:26:3;:17;-1:-1:-1;;;;;5831:26:3;;5827:195;;;5901:5;5886:11;:20;5882:85;;;-1:-1:-1;5942:1:3;-1:-1:-1;5935:8:3;;-1:-1:-1;;;5935:8:3;5882:85;5989:13;;;;;5827:195;5521:516;5480:557;5516:3;;5480:557;;;;6113:8;;;769:95:10;1072:6:9;;-1:-1:-1;;;;;1072:6:9;681:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;;;;;;;;;835:13:10::1;:21:::0;769:95::o;1472:173::-;1072:6:9;;-1:-1:-1;;;;;1072:6:9;681:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1541:49:10::1;::::0;1523:12:::1;::::0;1541:10:::1;::::0;1564:21:::1;::::0;1523:12;1541:49;1523:12;1541:49;1564:21;1541:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1522:68;;;1609:7;1601:36;;;::::0;-1:-1:-1;;;1601:36:10;;8121:2:12;1601:36:10::1;::::0;::::1;8103:21:12::0;8160:2;8140:18;;;8133:30;-1:-1:-1;;;8179:18:12;;;8172:46;8235:18;;1601:36:10::1;7919:340:12::0;1601:36:10::1;1511:134;1472:173::o:0;872:268::-;679:15;662:13;;:32;;640:101;;;;-1:-1:-1;;;640:101:10;;7063:2:12;640:101:10;;;7045:21:12;7102:2;7082:18;;;7075:30;-1:-1:-1;;;7121:18:12;;;7114:49;7180:18;;640:101:10;6861:343:12;640:101:10;991:9:::1;517:14;;504:9;488:13;3491:7:3::0;3683:12;-1:-1:-1;;;;;;;;3683:12:3;;;;3667:13;;;:28;;;;3660:35;;3438:280;488:13:10::1;:25;;;;:::i;:::-;:43;;466:113;;;::::0;-1:-1:-1;;;466:113:10;;7411:2:12;466:113:10::1;::::0;::::1;7393:21:12::0;7450:2;7430:18;;;7423:30;-1:-1:-1;;;7469:18:12;;;7462:50;7529:18;;466:113:10::1;7209:344:12::0;466:113:10::1;1047:9:::2;1039:5;;:17;;;;:::i;:::-;1026:9;:30;;1018:61;;;::::0;-1:-1:-1;;;1018:61:10;;6716:2:12;1018:61:10::2;::::0;::::2;6698:21:12::0;6755:2;6735:18;;;6728:30;-1:-1:-1;;;6774:18:12;;;6767:48;6832:18;;1018:61:10::2;6514:342:12::0;1018:61:10::2;1100:32;1110:10;1122:9;1100;:32::i;:::-;752:1:::1;872:268:::0;:::o;11412:185:3:-;11550:39;11567:4;11573:2;11577:7;11550:39;;;;;;;;;;;;:16;:39::i;4011:713::-;4078:7;4123:13;;-1:-1:-1;;;;;4123:13:3;4078:7;;4337:328;4357:14;4353:1;:18;4337:328;;;4397:31;4431:14;;;:11;:14;;;;;;;;;4397:48;;;;;;;;;-1:-1:-1;;;;;4397:48:3;;;;-1:-1:-1;;;4397:48:3;;;;;;;;;;;-1:-1:-1;;;4397:48:3;;;;;;;;;;;;;;4464:186;;4529:5;4514:11;:20;4510:85;;;-1:-1:-1;4570:1:3;4011:713;-1:-1:-1;;;;4011:713:3:o;4510:85::-;4617:13;;;;;4464:186;-1:-1:-1;4373:3:3;;4337:328;;;;4693:23;;-1:-1:-1;;;4693:23:3;;;;;;;;;;;1248:100:10;1072:6:9;;-1:-1:-1;;;;;1072:6:9;681:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1322:18:10;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;8620:124:3:-:0;8684:7;8711:20;8723:7;8711:11;:20::i;:::-;:25;;8620:124;-1:-1:-1;;8620:124:3:o;6637:206::-;6701:7;-1:-1:-1;;;;;6725:19:3;;6721:60;;6753:28;;-1:-1:-1;;;6753:28:3;;;;;;;;;;;6721:60;-1:-1:-1;;;;;;6807:19:3;;;;;:12;:19;;;;;:27;;;;6637:206::o;1650:94:9:-;1072:6;;-1:-1:-1;;;;;1072:6:9;681:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;8980:104:3:-;9036:13;9069:7;9062:14;;;;;:::i;10590:279::-;-1:-1:-1;;;;;10681:24:3;;681:10:1;10681:24:3;10677:54;;;10714:17;;-1:-1:-1;;;10714:17:3;;;;;;;;;;;10677:54;681:10:1;10744:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10744:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;10744:53:3;;;;;;;;;;10813:48;;5831:41:12;;;10744:42:3;;681:10:1;10813:48:3;;5804:18:12;10813:48:3;;;;;;;10590:279;;:::o;11668:342::-;11835:28;11845:4;11851:2;11855:7;11835:9;:28::i;:::-;11879:48;11902:4;11908:2;11912:7;11921:5;11879:22;:48::i;:::-;11874:129;;11951:40;;-1:-1:-1;;;11951:40:3;;;;;;;;;;;11874:129;11668:342;;;;:::o;9155:318::-;9228:13;9259:16;9267:7;9259;:16::i;:::-;9254:59;;9284:29;;-1:-1:-1;;;9284:29:3;;;;;;;;;;;9254:59;9326:21;9350:10;:8;:10::i;:::-;9326:34;;9384:7;9378:21;9403:1;9378:26;;:87;;;;;;;;;;;;;;;;;9431:7;9440:18;:7;:16;:18::i;:::-;9414:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9378:87;9371:94;9155:318;-1:-1:-1;;;9155:318:3:o;1899:192:9:-;1072:6;;-1:-1:-1;;;;;1072:6:9;681:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:9;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:9;;6309:2:12;1980:73:9::1;::::0;::::1;6291:21:12::0;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:12;;;6431:36;6484:19;;1980:73:9::1;6107:402:12::0;1980:73:9::1;2064:19;2074:8;2064:9;:19::i;1150:90:10:-:0;1072:6:9;;-1:-1:-1;;;;;1072:6:9;681:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1218:5:10::1;:14:::0;1150:90::o;12265:144:3:-;12322:4;12356:13;;-1:-1:-1;;;;;12356:13:3;12346:23;;:55;;;;-1:-1:-1;;12374:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;12374:27:3;;;;12373:28;;12265:144::o;19481:196::-;19596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19596:29:3;-1:-1:-1;;;;;19596:29:3;;;;;;;;;19641:28;;19596:24;;19641:28;;;;;;;19481:196;;;:::o;14982:2112::-;15097:35;15135:20;15147:7;15135:11;:20::i;:::-;15210:18;;15097:58;;-1:-1:-1;15168:22:3;;-1:-1:-1;;;;;15194:34:3;681:10:1;-1:-1:-1;;;;;15194:34:3;;:101;;;-1:-1:-1;15262:18:3;;15245:50;;681:10:1;10940:164:3;:::i;15245:50::-;15194:154;;;-1:-1:-1;681:10:1;15312:20:3;15324:7;15312:11;:20::i;:::-;-1:-1:-1;;;;;15312:36:3;;15194:154;15168:181;;15367:17;15362:66;;15393:35;;-1:-1:-1;;;15393:35:3;;;;;;;;;;;15362:66;15465:4;-1:-1:-1;;;;;15443:26:3;:13;:18;;;-1:-1:-1;;;;;15443:26:3;;15439:67;;15478:28;;-1:-1:-1;;;15478:28:3;;;;;;;;;;;15439:67;-1:-1:-1;;;;;15521:16:3;;15517:52;;15546:23;;-1:-1:-1;;;15546:23:3;;;;;;;;;;;15517:52;15690:49;15707:1;15711:7;15720:13;:18;;;15690:8;:49::i;:::-;-1:-1:-1;;;;;16035:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;16035:31:3;;;;;;;-1:-1:-1;;16035:31:3;;;;;;;16081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;16081:29:3;;;;;;;;;;;16127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16172:61:3;;;;-1:-1:-1;;;16217:15:3;16172:61;;;;;;;;;;;16507:11;;;16537:24;;;;;:29;16507:11;;16537:29;16533:445;;16762:13;;-1:-1:-1;;;;;16762:13:3;16748:27;;16744:219;;;16832:18;;;16800:24;;;:11;:24;;;;;;;;:50;;16915:28;;;;16873:70;;-1:-1:-1;;;16873:70:3;-1:-1:-1;;;;;;16873:70:3;;;-1:-1:-1;;;;;16800:50:3;;;16873:70;;;;;;;16744:219;16010:979;17025:7;17021:2;-1:-1:-1;;;;;17006:27:3;17015:4;-1:-1:-1;;;;;17006:27:3;;;;;;;;;;;17044:42;15086:2008;;14982:2112;;;:::o;12417:104::-;12486:27;12496:2;12500:8;12486:27;;;;;;;;;;;;:9;:27::i;7475:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7641:13:3;;7585:7;;-1:-1:-1;;;;;7641:13:3;7634:20;;7630:861;;;7675:31;7709:17;;;:11;:17;;;;;;;;;7675:51;;;;;;;;;-1:-1:-1;;;;;7675:51:3;;;;-1:-1:-1;;;7675:51:3;;;;;;;;;;;-1:-1:-1;;;7675:51:3;;;;;;;;;;;;;;7745:731;;7795:14;;-1:-1:-1;;;;;7795:28:3;;7791:101;;7859:9;7475:1083;-1:-1:-1;;;7475:1083:3:o;7791:101::-;-1:-1:-1;;;8236:6:3;8281:17;;;;:11;:17;;;;;;;;;8269:29;;;;;;;;;-1:-1:-1;;;;;8269:29:3;;;;;-1:-1:-1;;;8269:29:3;;;;;;;;;;;-1:-1:-1;;;8269:29:3;;;;;;;;;;;;;8329:28;8325:109;;8397:9;7475:1083;-1:-1:-1;;;7475:1083:3:o;8325:109::-;8196:261;;;7656:835;7630:861;8519:31;;-1:-1:-1;;;8519:31:3;;;;;;;;;;;2099:173:9;2174:6;;;-1:-1:-1;;;;;2191:17:9;;;-1:-1:-1;;;;;;2191:17:9;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;20242:790:3:-;20397:4;-1:-1:-1;;;;;20418:13:3;;1066:20:0;1114:8;20414:611:3;;20454:72;;-1:-1:-1;;;20454:72:3;;-1:-1:-1;;;;;20454:36:3;;;;;:72;;681:10:1;;20505:4:3;;20511:7;;20520:5;;20454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20454:72:3;;;;;;;;-1:-1:-1;;20454:72:3;;;;;;;;;;;;:::i;:::-;;;20450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20700:13:3;;20696:259;;20750:40;;-1:-1:-1;;;20750:40:3;;;;;;;;;;;20696:259;20905:6;20899:13;20890:6;20886:2;20882:15;20875:38;20450:520;-1:-1:-1;;;;;;20577:55:3;-1:-1:-1;;;20577:55:3;;-1:-1:-1;20570:62:3;;20414:611;-1:-1:-1;21009:4:3;20414:611;20242:790;;;;;;:::o;1356:108:10:-;1416:13;1449:7;1442:14;;;;;:::i;288:723:11:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:11;;;;;;;;;;;;-1:-1:-1;;;592:10:11;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:11;;-1:-1:-1;744:2:11;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:11;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:11;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:11;;;;;;;;-1:-1:-1;949:11:11;958:2;949:11;;:::i;:::-;;;818:154;;12884:163:3;13007:32;13013:2;13017:8;13027:5;13034:4;13445:20;13468:13;-1:-1:-1;;;;;13468:13:3;-1:-1:-1;;;;;13496:16:3;;13492:48;;13521:19;;-1:-1:-1;;;13521:19:3;;;;;;;;;;;13492:48;13555:13;13551:44;;13577:18;;-1:-1:-1;;;13577:18:3;;;;;;;;;;;13551:44;-1:-1:-1;;;;;13947:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;14006:49:3;;13947:44;;;;;;;;14006:49;;;;-1:-1:-1;;13947:44:3;;;;;;14006:49;;;;;;;;;;;;;;;;14072:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14122:66:3;;;;-1:-1:-1;;;14172:15:3;14122:66;;;;;;;;;;;14072:25;;14257:328;14277:8;14273:1;:12;14257:328;;;14316:38;;14341:12;;-1:-1:-1;;;;;14316:38:3;;;14333:1;;14316:38;;14333:1;;14316:38;14377:4;:68;;;;;14386:59;14417:1;14421:2;14425:12;14439:5;14386:22;:59::i;:::-;14385:60;14377:68;14373:164;;;14477:40;;-1:-1:-1;;;14477:40:3;;;;;;;;;;;14373:164;14555:14;;;;;14287:3;14257:328;;;-1:-1:-1;14601:13:3;:37;;-1:-1:-1;;;;;;14601:37:3;-1:-1:-1;;;;;14601:37:3;;;;;;;;;;14660:60;11668:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:12;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:12;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:12;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:12;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:12:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:12;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:12;;3858:180;-1:-1:-1;3858:180:12:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:12;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:12:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:12:o;5198:488::-;-1:-1:-1;;;;;5467:15:12;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:12:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;7558:356::-;7760:2;7742:21;;;7779:18;;;7772:30;7838:34;7833:2;7818:18;;7811:62;7905:2;7890:18;;7558:356::o;8446:128::-;8486:3;8517:1;8513:6;8510:1;8507:13;8504:39;;;8523:18;;:::i;:::-;-1:-1:-1;8559:9:12;;8446:128::o;8579:120::-;8619:1;8645;8635:35;;8650:18;;:::i;:::-;-1:-1:-1;8684:9:12;;8579:120::o;8704:168::-;8744:7;8810:1;8806;8802:6;8798:14;8795:1;8792:21;8787:1;8780:9;8773:17;8769:45;8766:71;;;8817:18;;:::i;:::-;-1:-1:-1;8857:9:12;;8704:168::o;8877:125::-;8917:4;8945:1;8942;8939:8;8936:34;;;8950:18;;:::i;:::-;-1:-1:-1;8987:9:12;;8877:125::o;9007:258::-;9079:1;9089:113;9103:6;9100:1;9097:13;9089:113;;;9179:11;;;9173:18;9160:11;;;9153:39;9125:2;9118:10;9089:113;;;9220:6;9217:1;9214:13;9211:48;;;-1:-1:-1;;9255:1:12;9237:16;;9230:27;9007:258::o;9270:380::-;9349:1;9345:12;;;;9392;;;9413:61;;9467:4;9459:6;9455:17;9445:27;;9413:61;9520:2;9512:6;9509:14;9489:18;9486:38;9483:161;;;9566:10;9561:3;9557:20;9554:1;9547:31;9601:4;9598:1;9591:15;9629:4;9626:1;9619:15;9483:161;;9270:380;;;:::o;9655:135::-;9694:3;-1:-1:-1;;9715:17:12;;9712:43;;;9735:18;;:::i;:::-;-1:-1:-1;9782:1:12;9771:13;;9655:135::o;9795:112::-;9827:1;9853;9843:35;;9858:18;;:::i;:::-;-1:-1:-1;9892:9:12;;9795:112::o;9912:127::-;9973:10;9968:3;9964:20;9961:1;9954:31;10004:4;10001:1;9994:15;10028:4;10025:1;10018:15;10044:127;10105:10;10100:3;10096:20;10093:1;10086:31;10136:4;10133:1;10126:15;10160:4;10157:1;10150:15;10176:127;10237:10;10232:3;10228:20;10225:1;10218:31;10268:4;10265:1;10258:15;10292:4;10289:1;10282:15;10308:127;10369:10;10364:3;10360:20;10357:1;10350:31;10400:4;10397:1;10390:15;10424:4;10421:1;10414:15;10440:131;-1:-1:-1;;;;;;10514:32:12;;10504:43;;10494:71;;10561:1;10558;10551:12

Swarm Source

ipfs://10dec005cf8365d0d751629576437dcc949392177bc776ac4d73861c275e389a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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