ETH Price: $3,386.69 (-1.48%)
Gas: 1 Gwei

Token

InvisiblePets (PETS)
 

Overview

Max Total Supply

4,761 PETS

Holders

1,324

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PETS
0xde2b46c6c4ae04c7da19486c509b361e8110803a
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:
InvisiblePets

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : InvisiblePets.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

/*

.___            .__       ._____.   .__           __________        __          
|   | _______  _|__| _____|__\_ |__ |  |   ____   \______   \ _____/  |_  ______
|   |/    \  \/ /  |/  ___/  || __ \|  | _/ __ \   |     ___// __ \   __\/  ___/
|   |   |  \   /|  |\___ \|  || \_\ \  |_\  ___/   |    |   \  ___/|  |  \___ \ 
|___|___|  /\_/ |__/____  >__||___  /____/\___  >  |____|    \___  >__| /____  >
         \/             \/        \/          \/                 \/          \/ 

*/

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./ERC721A.sol";

contract InvisiblePets is ERC721A, Ownable, Pausable {
    using SafeMath for uint256;

    uint public MAX_SUPPLY = 5000;
    uint public PRICE = 0.055 ether;
    string public BASE_URI = "ipfs://QmNZCfuYdRwchx1ng9sBP1DNYHXtUh8zzWBZod2yemVeFr/";

    uint public RESERVE_SUPPLY = 100;
    
    constructor() ERC721A("InvisiblePets", "PETS") {
        reserve(RESERVE_SUPPLY);
        _pause();
    }

    function updateBaseUri(string memory baseUri) public onlyOwner {
        BASE_URI = baseUri;
    }
    
    function update(uint maxSupply, uint price, string memory baseUri) public onlyOwner {
        MAX_SUPPLY = maxSupply;
        PRICE = price;
        BASE_URI = baseUri;
    }

    function reserve(uint256 quantity) public onlyOwner {
        secureMint(quantity);
    }

    function mint(uint256 quantity) external payable whenNotPaused {
        require(PRICE * quantity <= msg.value, "Insufficient funds sent");
        secureMint(quantity);
    }

    function secureMint(uint256 quantity) internal {
        require(quantity > 0, "Quantity cannot be zero");
        require(totalSupply().add(quantity) < MAX_SUPPLY, "No items left to mint");
        _safeMint(msg.sender, quantity);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

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

File 2 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // 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) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @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) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        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.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

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

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _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 > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(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) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = 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 ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // 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**256.
        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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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('ERC721A: transfer to non ERC721Receiver implementer');
                } 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.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 6 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 7 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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);

    /**
     * @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 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 12 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261138860085566c3663566a580006009556040518060600160405280603681526020016200550260369139600a90805190602001906200004692919062000a6e565b506064600b553480156200005957600080fd5b506040518060400160405280600d81526020017f496e76697369626c6550657473000000000000000000000000000000000000008152506040518060400160405280600481526020017f50455453000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000de92919062000a6e565b508060029080519060200190620000f792919062000a6e565b5050506200011a6200010e6200015e60201b60201c565b6200016660201b60201c565b6000600760146101000a81548160ff02191690831515021790555062000148600b546200022c60201b60201c565b62000158620002cf60201b60201c565b620011b9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023c6200015e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002626200038760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b29062000b7f565b60405180910390fd5b620002cc81620003b160201b60201c565b50565b620002df6200047b60201b60201c565b1562000322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003199062000bf1565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200036e6200015e60201b60201c565b6040516200037d919062000c58565b60405180910390a1565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111620003f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ee9062000cc5565b60405180910390fd5b60085462000423826200040f6200049260201b60201c565b6200049b60201b620018731790919060201c565b1062000466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045d9062000d37565b60405180910390fd5b620004783382620004b360201b60201c565b50565b6000600760149054906101000a900460ff16905090565b60008054905090565b60008183620004ab919062000d92565b905092915050565b620004d5828260405180602001604052806000815250620004d960201b60201c565b5050565b620004ee8383836001620004f360201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200056c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005639062000e65565b60405180910390fd5b6000841415620005b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005aa9062000efd565b60405180910390fd5b620005c860008683876200089560201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200087057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156200085a576200081760008884886200089b60201b60201c565b62000859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008509062000f95565b60405180910390fd5b5b8180600101925050808060010191505062000796565b5080600081905550506200088e600086838762000a4560201b60201c565b5050505050565b50505050565b6000620008c98473ffffffffffffffffffffffffffffffffffffffff1662000a4b60201b620018891760201c565b1562000a38578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008fb6200015e60201b60201c565b8786866040518563ffffffff1660e01b81526004016200091f94939291906200106c565b6020604051808303816000875af19250505080156200095e57506040513d601f19601f820116820180604052508101906200095b919062001122565b60015b620009e7573d806000811462000991576040519150601f19603f3d011682016040523d82523d6000602084013e62000996565b606091505b50600081511415620009df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d69062000f95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000a3d565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000a7c9062001183565b90600052602060002090601f01602090048101928262000aa0576000855562000aec565b82601f1062000abb57805160ff191683800117855562000aec565b8280016001018555821562000aec579182015b8281111562000aeb57825182559160200191906001019062000ace565b5b50905062000afb919062000aff565b5090565b5b8082111562000b1a57600081600090555060010162000b00565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b6760208362000b1e565b915062000b748262000b2f565b602082019050919050565b6000602082019050818103600083015262000b9a8162000b58565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000bd960108362000b1e565b915062000be68262000ba1565b602082019050919050565b6000602082019050818103600083015262000c0c8162000bca565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c408262000c13565b9050919050565b62000c528162000c33565b82525050565b600060208201905062000c6f600083018462000c47565b92915050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b600062000cad60178362000b1e565b915062000cba8262000c75565b602082019050919050565b6000602082019050818103600083015262000ce08162000c9e565b9050919050565b7f4e6f206974656d73206c65667420746f206d696e740000000000000000000000600082015250565b600062000d1f60158362000b1e565b915062000d2c8262000ce7565b602082019050919050565b6000602082019050818103600083015262000d528162000d10565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d9f8262000d59565b915062000dac8362000d59565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de45762000de362000d63565b5b828201905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000e4d60218362000b1e565b915062000e5a8262000def565b604082019050919050565b6000602082019050818103600083015262000e808162000e3e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600062000ee560288362000b1e565b915062000ef28262000e87565b604082019050919050565b6000602082019050818103600083015262000f188162000ed6565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600062000f7d60338362000b1e565b915062000f8a8262000f1f565b604082019050919050565b6000602082019050818103600083015262000fb08162000f6e565b9050919050565b62000fc28162000d59565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200100457808201518184015260208101905062000fe7565b8381111562001014576000848401525b50505050565b6000601f19601f8301169050919050565b6000620010388262000fc8565b62001044818562000fd3565b93506200105681856020860162000fe4565b62001061816200101a565b840191505092915050565b600060808201905062001083600083018762000c47565b62001092602083018662000c47565b620010a1604083018562000fb7565b8181036060830152620010b581846200102b565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620010fc81620010c5565b81146200110857600080fd5b50565b6000815190506200111c81620010f1565b92915050565b6000602082840312156200113b576200113a620010c0565b5b60006200114b848285016200110b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200119c57607f821691505b60208210811415620011b357620011b262001154565b5b50919050565b61433980620011c96000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063d753fd2511610064578063d753fd2514610677578063dbddb26a146106a0578063e985e9c5146106cb578063f2fde38b14610708576101d8565b8063a22cb465146105bd578063aa66797b146105e6578063b88d4fde14610611578063c87b56dd1461063a576101d8565b80638d859f3e116100d15780638d859f3e146105205780638da5cb5b1461054b57806395d89b4114610576578063a0712d68146105a1576101d8565b806370a082311461048c578063715018a6146104c9578063819b25ba146104e05780638456cb5914610509576101d8565b806332cb6b0c1161017a57806342842e0e1161014957806342842e0e146103be5780634f6ccce7146103e75780635c975abb146104245780636352211e1461044f576101d8565b806332cb6b0c1461033c57806339f7e37f146103675780633ccfd60b146103905780633f4ba83a146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632f745c59146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612bed565b610731565b6040516102119190612c35565b60405180910390f35b34801561022657600080fd5b5061022f61087b565b60405161023c9190612ce9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d41565b61090d565b6040516102799190612daf565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612df6565b610992565b005b3480156102b757600080fd5b506102c0610aab565b6040516102cd9190612e45565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612e60565b610ab4565b005b34801561030b57600080fd5b5061032660048036038101906103219190612df6565b610ac4565b6040516103339190612e45565b60405180910390f35b34801561034857600080fd5b50610351610cb6565b60405161035e9190612e45565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612fe8565b610cbc565b005b34801561039c57600080fd5b506103a5610d52565b005b3480156103b357600080fd5b506103bc610e1d565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612e60565b610ea3565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612d41565b610ec3565b60405161041b9190612e45565b60405180910390f35b34801561043057600080fd5b50610439610f16565b6040516104469190612c35565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612d41565b610f2d565b6040516104839190612daf565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190613031565b610f43565b6040516104c09190612e45565b60405180910390f35b3480156104d557600080fd5b506104de61102c565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612d41565b6110b4565b005b34801561051557600080fd5b5061051e61113c565b005b34801561052c57600080fd5b506105356111c2565b6040516105429190612e45565b60405180910390f35b34801561055757600080fd5b506105606111c8565b60405161056d9190612daf565b60405180910390f35b34801561058257600080fd5b5061058b6111f2565b6040516105989190612ce9565b60405180910390f35b6105bb60048036038101906105b69190612d41565b611284565b005b3480156105c957600080fd5b506105e460048036038101906105df919061308a565b611328565b005b3480156105f257600080fd5b506105fb6114a9565b6040516106089190612e45565b60405180910390f35b34801561061d57600080fd5b506106386004803603810190610633919061316b565b6114af565b005b34801561064657600080fd5b50610661600480360381019061065c9190612d41565b61150b565b60405161066e9190612ce9565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906131ee565b6115b3565b005b3480156106ac57600080fd5b506106b5611659565b6040516106c29190612ce9565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed919061325d565b6116e7565b6040516106ff9190612c35565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613031565b61177b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108745750610873826118ac565b5b9050919050565b60606001805461088a906132cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906132cc565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611916565b610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e90613370565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099d82610f2d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590613402565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d611923565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a5b81610a56611923565b6116e7565b5b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613494565b60405180910390fd5b610aa683838361192b565b505050565b60008054905090565b610abf8383836119dd565b505050565b6000610acf83610f43565b8210610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790613526565b60405180910390fd5b6000610b1a610aab565b905060008060005b83811015610c74576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c665786841415610c5d578195505050505050610cb0565b83806001019450505b508080600101915050610b22565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906135b8565b60405180910390fd5b92915050565b60085481565b610cc4611923565b73ffffffffffffffffffffffffffffffffffffffff16610ce26111c8565b73ffffffffffffffffffffffffffffffffffffffff1614610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613624565b60405180910390fd5b80600a9080519060200190610d4e929190612aa4565b5050565b610d5a611923565b73ffffffffffffffffffffffffffffffffffffffff16610d786111c8565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613624565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e19573d6000803e3d6000fd5b5050565b610e25611923565b73ffffffffffffffffffffffffffffffffffffffff16610e436111c8565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613624565b60405180910390fd5b610ea1611f1d565b565b610ebe838383604051806020016040528060008152506114af565b505050565b6000610ecd610aab565b8210610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906136b6565b60405180910390fd5b819050919050565b6000600760149054906101000a900460ff16905090565b6000610f3882611fbf565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613748565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611034611923565b73ffffffffffffffffffffffffffffffffffffffff166110526111c8565b73ffffffffffffffffffffffffffffffffffffffff16146110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90613624565b60405180910390fd5b6110b26000612159565b565b6110bc611923565b73ffffffffffffffffffffffffffffffffffffffff166110da6111c8565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613624565b60405180910390fd5b6111398161221f565b50565b611144611923565b73ffffffffffffffffffffffffffffffffffffffff166111626111c8565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613624565b60405180910390fd5b6111c06122cc565b565b60095481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611201906132cc565b80601f016020809104026020016040519081016040528092919081815260200182805461122d906132cc565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050905090565b61128c610f16565b156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c3906137b4565b60405180910390fd5b34816009546112db9190613803565b111561131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906138a9565b60405180910390fd5b6113258161221f565b50565b611330611923565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613915565b60405180910390fd5b80600660006113ab611923565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611458611923565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149d9190612c35565b60405180910390a35050565b600b5481565b6114ba8484846119dd565b6114c68484848461236f565b611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906139a7565b60405180910390fd5b50505050565b606061151682611916565b611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613a39565b60405180910390fd5b600061155f6124f7565b905060008151141561158057604051806020016040528060008152506115ab565b8061158a84612589565b60405160200161159b929190613a95565b6040516020818303038152906040525b915050919050565b6115bb611923565b73ffffffffffffffffffffffffffffffffffffffff166115d96111c8565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690613624565b60405180910390fd5b826008819055508160098190555080600a9080519060200190611653929190612aa4565b50505050565b600a8054611666906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611692906132cc565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611783611923565b73ffffffffffffffffffffffffffffffffffffffff166117a16111c8565b73ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613624565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613b2b565b60405180910390fd5b61187081612159565b50565b600081836118819190613b4b565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119e882611fbf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a0f611923565b73ffffffffffffffffffffffffffffffffffffffff161480611a6b5750611a34611923565b73ffffffffffffffffffffffffffffffffffffffff16611a538461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a875750611a868260000151611a81611923565b6116e7565b5b905080611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613c13565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613d37565b60405180910390fd5b611bb885858560016126ea565b611bc8600084846000015161192b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ead57611e0c81611916565b15611eac5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f1685858560016126f0565b5050505050565b611f25610f16565b611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90613da3565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fa8611923565b604051611fb59190612daf565b60405180910390a1565b611fc7612b2a565b611fd082611916565b61200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613e35565b60405180910390fd5b60008290505b60008110612118576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612109578092505050612154565b50808060019003915050612015565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90613ec7565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008111612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990613f33565b60405180910390fd5b60085461227f82612271610aab565b61187390919063ffffffff16565b106122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690613f9f565b60405180910390fd5b6122c933826126f6565b50565b6122d4610f16565b15612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b906137b4565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612358611923565b6040516123659190612daf565b60405180910390a1565b60006123908473ffffffffffffffffffffffffffffffffffffffff16611889565b156124ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b9611923565b8786866040518563ffffffff1660e01b81526004016123db9493929190614014565b6020604051808303816000875af192505050801561241757506040513d601f19601f820116820180604052508101906124149190614075565b60015b61249a573d8060008114612447576040519150601f19603f3d011682016040523d82523d6000602084013e61244c565b606091505b50600081511415612492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612489906139a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ef565b600190505b949350505050565b6060600a8054612506906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054612532906132cc565b801561257f5780601f106125545761010080835404028352916020019161257f565b820191906000526020600020905b81548152906001019060200180831161256257829003601f168201915b5050505050905090565b606060008214156125d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e5565b600082905060005b600082146126035780806125ec906140a2565b915050600a826125fc919061411a565b91506125d9565b60008167ffffffffffffffff81111561261f5761261e612ebd565b5b6040519080825280601f01601f1916602001820160405280156126515781602001600182028036833780820191505090505b5090505b600085146126de5760018261266a919061414b565b9150600a85612679919061417f565b60306126859190613b4b565b60f81b81838151811061269b5761269a6141b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d7919061411a565b9450612655565b8093505050505b919050565b50505050565b50505050565b612710828260405180602001604052806000815250612714565b5050565b6127218383836001612726565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279390614251565b60405180910390fd5b60008414156127e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d7906142e3565b60405180910390fd5b6127ed60008683876126ea565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a8757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a7257612a32600088848861236f565b612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906139a7565b60405180910390fd5b5b818060010192505080806001019150506129bb565b508060008190555050612a9d60008683876126f0565b5050505050565b828054612ab0906132cc565b90600052602060002090601f016020900481019282612ad25760008555612b19565b82601f10612aeb57805160ff1916838001178555612b19565b82800160010185558215612b19579182015b82811115612b18578251825591602001919060010190612afd565b5b509050612b269190612b64565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b7d576000816000905550600101612b65565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bca81612b95565b8114612bd557600080fd5b50565b600081359050612be781612bc1565b92915050565b600060208284031215612c0357612c02612b8b565b5b6000612c1184828501612bd8565b91505092915050565b60008115159050919050565b612c2f81612c1a565b82525050565b6000602082019050612c4a6000830184612c26565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c8a578082015181840152602081019050612c6f565b83811115612c99576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cbb82612c50565b612cc58185612c5b565b9350612cd5818560208601612c6c565b612cde81612c9f565b840191505092915050565b60006020820190508181036000830152612d038184612cb0565b905092915050565b6000819050919050565b612d1e81612d0b565b8114612d2957600080fd5b50565b600081359050612d3b81612d15565b92915050565b600060208284031215612d5757612d56612b8b565b5b6000612d6584828501612d2c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9982612d6e565b9050919050565b612da981612d8e565b82525050565b6000602082019050612dc46000830184612da0565b92915050565b612dd381612d8e565b8114612dde57600080fd5b50565b600081359050612df081612dca565b92915050565b60008060408385031215612e0d57612e0c612b8b565b5b6000612e1b85828601612de1565b9250506020612e2c85828601612d2c565b9150509250929050565b612e3f81612d0b565b82525050565b6000602082019050612e5a6000830184612e36565b92915050565b600080600060608486031215612e7957612e78612b8b565b5b6000612e8786828701612de1565b9350506020612e9886828701612de1565b9250506040612ea986828701612d2c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ef582612c9f565b810181811067ffffffffffffffff82111715612f1457612f13612ebd565b5b80604052505050565b6000612f27612b81565b9050612f338282612eec565b919050565b600067ffffffffffffffff821115612f5357612f52612ebd565b5b612f5c82612c9f565b9050602081019050919050565b82818337600083830152505050565b6000612f8b612f8684612f38565b612f1d565b905082815260208101848484011115612fa757612fa6612eb8565b5b612fb2848285612f69565b509392505050565b600082601f830112612fcf57612fce612eb3565b5b8135612fdf848260208601612f78565b91505092915050565b600060208284031215612ffe57612ffd612b8b565b5b600082013567ffffffffffffffff81111561301c5761301b612b90565b5b61302884828501612fba565b91505092915050565b60006020828403121561304757613046612b8b565b5b600061305584828501612de1565b91505092915050565b61306781612c1a565b811461307257600080fd5b50565b6000813590506130848161305e565b92915050565b600080604083850312156130a1576130a0612b8b565b5b60006130af85828601612de1565b92505060206130c085828601613075565b9150509250929050565b600067ffffffffffffffff8211156130e5576130e4612ebd565b5b6130ee82612c9f565b9050602081019050919050565b600061310e613109846130ca565b612f1d565b90508281526020810184848401111561312a57613129612eb8565b5b613135848285612f69565b509392505050565b600082601f83011261315257613151612eb3565b5b81356131628482602086016130fb565b91505092915050565b6000806000806080858703121561318557613184612b8b565b5b600061319387828801612de1565b94505060206131a487828801612de1565b93505060406131b587828801612d2c565b925050606085013567ffffffffffffffff8111156131d6576131d5612b90565b5b6131e28782880161313d565b91505092959194509250565b60008060006060848603121561320757613206612b8b565b5b600061321586828701612d2c565b935050602061322686828701612d2c565b925050604084013567ffffffffffffffff81111561324757613246612b90565b5b61325386828701612fba565b9150509250925092565b6000806040838503121561327457613273612b8b565b5b600061328285828601612de1565b925050602061329385828601612de1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132e457607f821691505b602082108114156132f8576132f761329d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061335a602d83612c5b565b9150613365826132fe565b604082019050919050565b600060208201905081810360008301526133898161334d565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ec602283612c5b565b91506133f782613390565b604082019050919050565b6000602082019050818103600083015261341b816133df565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061347e603983612c5b565b915061348982613422565b604082019050919050565b600060208201905081810360008301526134ad81613471565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613510602283612c5b565b915061351b826134b4565b604082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006135a2602e83612c5b565b91506135ad82613546565b604082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061360e602083612c5b565b9150613619826135d8565b602082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006136a0602383612c5b565b91506136ab82613644565b604082019050919050565b600060208201905081810360008301526136cf81613693565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613732602b83612c5b565b915061373d826136d6565b604082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061379e601083612c5b565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061380e82612d0b565b915061381983612d0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613852576138516137d4565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000613893601783612c5b565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006138ff601a83612c5b565b915061390a826138c9565b602082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613991603383612c5b565b915061399c82613935565b604082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a23602f83612c5b565b9150613a2e826139c7565b604082019050919050565b60006020820190508181036000830152613a5281613a16565b9050919050565b600081905092915050565b6000613a6f82612c50565b613a798185613a59565b9350613a89818560208601612c6c565b80840191505092915050565b6000613aa18285613a64565b9150613aad8284613a64565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b15602683612c5b565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b6000613b5682612d0b565b9150613b6183612d0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9657613b956137d4565b5b828201905092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613bfd603283612c5b565b9150613c0882613ba1565b604082019050919050565b60006020820190508181036000830152613c2c81613bf0565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613c8f602683612c5b565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d21602583612c5b565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613d8d601483612c5b565b9150613d9882613d57565b602082019050919050565b60006020820190508181036000830152613dbc81613d80565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613e1f602a83612c5b565b9150613e2a82613dc3565b604082019050919050565b60006020820190508181036000830152613e4e81613e12565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613eb1602f83612c5b565b9150613ebc82613e55565b604082019050919050565b60006020820190508181036000830152613ee081613ea4565b9050919050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b6000613f1d601783612c5b565b9150613f2882613ee7565b602082019050919050565b60006020820190508181036000830152613f4c81613f10565b9050919050565b7f4e6f206974656d73206c65667420746f206d696e740000000000000000000000600082015250565b6000613f89601583612c5b565b9150613f9482613f53565b602082019050919050565b60006020820190508181036000830152613fb881613f7c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fe682613fbf565b613ff08185613fca565b9350614000818560208601612c6c565b61400981612c9f565b840191505092915050565b60006080820190506140296000830187612da0565b6140366020830186612da0565b6140436040830185612e36565b81810360608301526140558184613fdb565b905095945050505050565b60008151905061406f81612bc1565b92915050565b60006020828403121561408b5761408a612b8b565b5b600061409984828501614060565b91505092915050565b60006140ad82612d0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140e0576140df6137d4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061412582612d0b565b915061413083612d0b565b9250826141405761413f6140eb565b5b828204905092915050565b600061415682612d0b565b915061416183612d0b565b925082821015614174576141736137d4565b5b828203905092915050565b600061418a82612d0b565b915061419583612d0b565b9250826141a5576141a46140eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061423b602183612c5b565b9150614246826141df565b604082019050919050565b6000602082019050818103600083015261426a8161422e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006142cd602883612c5b565b91506142d882614271565b604082019050919050565b600060208201905081810360008301526142fc816142c0565b905091905056fea2646970667358221220899b8d020c29e6b81c94ca1fdbb592bddd163f31b4ab476edccf139bb75d288064736f6c634300080c0033697066733a2f2f516d4e5a43667559645277636878316e673973425031444e594858745568387a7a57425a6f643279656d566546722f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063d753fd2511610064578063d753fd2514610677578063dbddb26a146106a0578063e985e9c5146106cb578063f2fde38b14610708576101d8565b8063a22cb465146105bd578063aa66797b146105e6578063b88d4fde14610611578063c87b56dd1461063a576101d8565b80638d859f3e116100d15780638d859f3e146105205780638da5cb5b1461054b57806395d89b4114610576578063a0712d68146105a1576101d8565b806370a082311461048c578063715018a6146104c9578063819b25ba146104e05780638456cb5914610509576101d8565b806332cb6b0c1161017a57806342842e0e1161014957806342842e0e146103be5780634f6ccce7146103e75780635c975abb146104245780636352211e1461044f576101d8565b806332cb6b0c1461033c57806339f7e37f146103675780633ccfd60b146103905780633f4ba83a146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632f745c59146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612bed565b610731565b6040516102119190612c35565b60405180910390f35b34801561022657600080fd5b5061022f61087b565b60405161023c9190612ce9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d41565b61090d565b6040516102799190612daf565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612df6565b610992565b005b3480156102b757600080fd5b506102c0610aab565b6040516102cd9190612e45565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612e60565b610ab4565b005b34801561030b57600080fd5b5061032660048036038101906103219190612df6565b610ac4565b6040516103339190612e45565b60405180910390f35b34801561034857600080fd5b50610351610cb6565b60405161035e9190612e45565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612fe8565b610cbc565b005b34801561039c57600080fd5b506103a5610d52565b005b3480156103b357600080fd5b506103bc610e1d565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612e60565b610ea3565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612d41565b610ec3565b60405161041b9190612e45565b60405180910390f35b34801561043057600080fd5b50610439610f16565b6040516104469190612c35565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612d41565b610f2d565b6040516104839190612daf565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190613031565b610f43565b6040516104c09190612e45565b60405180910390f35b3480156104d557600080fd5b506104de61102c565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612d41565b6110b4565b005b34801561051557600080fd5b5061051e61113c565b005b34801561052c57600080fd5b506105356111c2565b6040516105429190612e45565b60405180910390f35b34801561055757600080fd5b506105606111c8565b60405161056d9190612daf565b60405180910390f35b34801561058257600080fd5b5061058b6111f2565b6040516105989190612ce9565b60405180910390f35b6105bb60048036038101906105b69190612d41565b611284565b005b3480156105c957600080fd5b506105e460048036038101906105df919061308a565b611328565b005b3480156105f257600080fd5b506105fb6114a9565b6040516106089190612e45565b60405180910390f35b34801561061d57600080fd5b506106386004803603810190610633919061316b565b6114af565b005b34801561064657600080fd5b50610661600480360381019061065c9190612d41565b61150b565b60405161066e9190612ce9565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906131ee565b6115b3565b005b3480156106ac57600080fd5b506106b5611659565b6040516106c29190612ce9565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed919061325d565b6116e7565b6040516106ff9190612c35565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613031565b61177b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108745750610873826118ac565b5b9050919050565b60606001805461088a906132cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906132cc565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611916565b610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e90613370565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099d82610f2d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590613402565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d611923565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a5b81610a56611923565b6116e7565b5b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613494565b60405180910390fd5b610aa683838361192b565b505050565b60008054905090565b610abf8383836119dd565b505050565b6000610acf83610f43565b8210610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790613526565b60405180910390fd5b6000610b1a610aab565b905060008060005b83811015610c74576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c665786841415610c5d578195505050505050610cb0565b83806001019450505b508080600101915050610b22565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906135b8565b60405180910390fd5b92915050565b60085481565b610cc4611923565b73ffffffffffffffffffffffffffffffffffffffff16610ce26111c8565b73ffffffffffffffffffffffffffffffffffffffff1614610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613624565b60405180910390fd5b80600a9080519060200190610d4e929190612aa4565b5050565b610d5a611923565b73ffffffffffffffffffffffffffffffffffffffff16610d786111c8565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613624565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e19573d6000803e3d6000fd5b5050565b610e25611923565b73ffffffffffffffffffffffffffffffffffffffff16610e436111c8565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613624565b60405180910390fd5b610ea1611f1d565b565b610ebe838383604051806020016040528060008152506114af565b505050565b6000610ecd610aab565b8210610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906136b6565b60405180910390fd5b819050919050565b6000600760149054906101000a900460ff16905090565b6000610f3882611fbf565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613748565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611034611923565b73ffffffffffffffffffffffffffffffffffffffff166110526111c8565b73ffffffffffffffffffffffffffffffffffffffff16146110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90613624565b60405180910390fd5b6110b26000612159565b565b6110bc611923565b73ffffffffffffffffffffffffffffffffffffffff166110da6111c8565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613624565b60405180910390fd5b6111398161221f565b50565b611144611923565b73ffffffffffffffffffffffffffffffffffffffff166111626111c8565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613624565b60405180910390fd5b6111c06122cc565b565b60095481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611201906132cc565b80601f016020809104026020016040519081016040528092919081815260200182805461122d906132cc565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050905090565b61128c610f16565b156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c3906137b4565b60405180910390fd5b34816009546112db9190613803565b111561131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906138a9565b60405180910390fd5b6113258161221f565b50565b611330611923565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613915565b60405180910390fd5b80600660006113ab611923565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611458611923565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149d9190612c35565b60405180910390a35050565b600b5481565b6114ba8484846119dd565b6114c68484848461236f565b611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906139a7565b60405180910390fd5b50505050565b606061151682611916565b611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613a39565b60405180910390fd5b600061155f6124f7565b905060008151141561158057604051806020016040528060008152506115ab565b8061158a84612589565b60405160200161159b929190613a95565b6040516020818303038152906040525b915050919050565b6115bb611923565b73ffffffffffffffffffffffffffffffffffffffff166115d96111c8565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690613624565b60405180910390fd5b826008819055508160098190555080600a9080519060200190611653929190612aa4565b50505050565b600a8054611666906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611692906132cc565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611783611923565b73ffffffffffffffffffffffffffffffffffffffff166117a16111c8565b73ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613624565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613b2b565b60405180910390fd5b61187081612159565b50565b600081836118819190613b4b565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119e882611fbf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a0f611923565b73ffffffffffffffffffffffffffffffffffffffff161480611a6b5750611a34611923565b73ffffffffffffffffffffffffffffffffffffffff16611a538461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a875750611a868260000151611a81611923565b6116e7565b5b905080611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613c13565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613d37565b60405180910390fd5b611bb885858560016126ea565b611bc8600084846000015161192b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ead57611e0c81611916565b15611eac5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f1685858560016126f0565b5050505050565b611f25610f16565b611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90613da3565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fa8611923565b604051611fb59190612daf565b60405180910390a1565b611fc7612b2a565b611fd082611916565b61200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613e35565b60405180910390fd5b60008290505b60008110612118576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612109578092505050612154565b50808060019003915050612015565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90613ec7565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008111612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990613f33565b60405180910390fd5b60085461227f82612271610aab565b61187390919063ffffffff16565b106122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690613f9f565b60405180910390fd5b6122c933826126f6565b50565b6122d4610f16565b15612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b906137b4565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612358611923565b6040516123659190612daf565b60405180910390a1565b60006123908473ffffffffffffffffffffffffffffffffffffffff16611889565b156124ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b9611923565b8786866040518563ffffffff1660e01b81526004016123db9493929190614014565b6020604051808303816000875af192505050801561241757506040513d601f19601f820116820180604052508101906124149190614075565b60015b61249a573d8060008114612447576040519150601f19603f3d011682016040523d82523d6000602084013e61244c565b606091505b50600081511415612492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612489906139a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ef565b600190505b949350505050565b6060600a8054612506906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054612532906132cc565b801561257f5780601f106125545761010080835404028352916020019161257f565b820191906000526020600020905b81548152906001019060200180831161256257829003601f168201915b5050505050905090565b606060008214156125d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e5565b600082905060005b600082146126035780806125ec906140a2565b915050600a826125fc919061411a565b91506125d9565b60008167ffffffffffffffff81111561261f5761261e612ebd565b5b6040519080825280601f01601f1916602001820160405280156126515781602001600182028036833780820191505090505b5090505b600085146126de5760018261266a919061414b565b9150600a85612679919061417f565b60306126859190613b4b565b60f81b81838151811061269b5761269a6141b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d7919061411a565b9450612655565b8093505050505b919050565b50505050565b50505050565b612710828260405180602001604052806000815250612714565b5050565b6127218383836001612726565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279390614251565b60405180910390fd5b60008414156127e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d7906142e3565b60405180910390fd5b6127ed60008683876126ea565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a8757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a7257612a32600088848861236f565b612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906139a7565b60405180910390fd5b5b818060010192505080806001019150506129bb565b508060008190555050612a9d60008683876126f0565b5050505050565b828054612ab0906132cc565b90600052602060002090601f016020900481019282612ad25760008555612b19565b82601f10612aeb57805160ff1916838001178555612b19565b82800160010185558215612b19579182015b82811115612b18578251825591602001919060010190612afd565b5b509050612b269190612b64565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b7d576000816000905550600101612b65565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bca81612b95565b8114612bd557600080fd5b50565b600081359050612be781612bc1565b92915050565b600060208284031215612c0357612c02612b8b565b5b6000612c1184828501612bd8565b91505092915050565b60008115159050919050565b612c2f81612c1a565b82525050565b6000602082019050612c4a6000830184612c26565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c8a578082015181840152602081019050612c6f565b83811115612c99576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cbb82612c50565b612cc58185612c5b565b9350612cd5818560208601612c6c565b612cde81612c9f565b840191505092915050565b60006020820190508181036000830152612d038184612cb0565b905092915050565b6000819050919050565b612d1e81612d0b565b8114612d2957600080fd5b50565b600081359050612d3b81612d15565b92915050565b600060208284031215612d5757612d56612b8b565b5b6000612d6584828501612d2c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9982612d6e565b9050919050565b612da981612d8e565b82525050565b6000602082019050612dc46000830184612da0565b92915050565b612dd381612d8e565b8114612dde57600080fd5b50565b600081359050612df081612dca565b92915050565b60008060408385031215612e0d57612e0c612b8b565b5b6000612e1b85828601612de1565b9250506020612e2c85828601612d2c565b9150509250929050565b612e3f81612d0b565b82525050565b6000602082019050612e5a6000830184612e36565b92915050565b600080600060608486031215612e7957612e78612b8b565b5b6000612e8786828701612de1565b9350506020612e9886828701612de1565b9250506040612ea986828701612d2c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ef582612c9f565b810181811067ffffffffffffffff82111715612f1457612f13612ebd565b5b80604052505050565b6000612f27612b81565b9050612f338282612eec565b919050565b600067ffffffffffffffff821115612f5357612f52612ebd565b5b612f5c82612c9f565b9050602081019050919050565b82818337600083830152505050565b6000612f8b612f8684612f38565b612f1d565b905082815260208101848484011115612fa757612fa6612eb8565b5b612fb2848285612f69565b509392505050565b600082601f830112612fcf57612fce612eb3565b5b8135612fdf848260208601612f78565b91505092915050565b600060208284031215612ffe57612ffd612b8b565b5b600082013567ffffffffffffffff81111561301c5761301b612b90565b5b61302884828501612fba565b91505092915050565b60006020828403121561304757613046612b8b565b5b600061305584828501612de1565b91505092915050565b61306781612c1a565b811461307257600080fd5b50565b6000813590506130848161305e565b92915050565b600080604083850312156130a1576130a0612b8b565b5b60006130af85828601612de1565b92505060206130c085828601613075565b9150509250929050565b600067ffffffffffffffff8211156130e5576130e4612ebd565b5b6130ee82612c9f565b9050602081019050919050565b600061310e613109846130ca565b612f1d565b90508281526020810184848401111561312a57613129612eb8565b5b613135848285612f69565b509392505050565b600082601f83011261315257613151612eb3565b5b81356131628482602086016130fb565b91505092915050565b6000806000806080858703121561318557613184612b8b565b5b600061319387828801612de1565b94505060206131a487828801612de1565b93505060406131b587828801612d2c565b925050606085013567ffffffffffffffff8111156131d6576131d5612b90565b5b6131e28782880161313d565b91505092959194509250565b60008060006060848603121561320757613206612b8b565b5b600061321586828701612d2c565b935050602061322686828701612d2c565b925050604084013567ffffffffffffffff81111561324757613246612b90565b5b61325386828701612fba565b9150509250925092565b6000806040838503121561327457613273612b8b565b5b600061328285828601612de1565b925050602061329385828601612de1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132e457607f821691505b602082108114156132f8576132f761329d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061335a602d83612c5b565b9150613365826132fe565b604082019050919050565b600060208201905081810360008301526133898161334d565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ec602283612c5b565b91506133f782613390565b604082019050919050565b6000602082019050818103600083015261341b816133df565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061347e603983612c5b565b915061348982613422565b604082019050919050565b600060208201905081810360008301526134ad81613471565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613510602283612c5b565b915061351b826134b4565b604082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006135a2602e83612c5b565b91506135ad82613546565b604082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061360e602083612c5b565b9150613619826135d8565b602082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006136a0602383612c5b565b91506136ab82613644565b604082019050919050565b600060208201905081810360008301526136cf81613693565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613732602b83612c5b565b915061373d826136d6565b604082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061379e601083612c5b565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061380e82612d0b565b915061381983612d0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613852576138516137d4565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000613893601783612c5b565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006138ff601a83612c5b565b915061390a826138c9565b602082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613991603383612c5b565b915061399c82613935565b604082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a23602f83612c5b565b9150613a2e826139c7565b604082019050919050565b60006020820190508181036000830152613a5281613a16565b9050919050565b600081905092915050565b6000613a6f82612c50565b613a798185613a59565b9350613a89818560208601612c6c565b80840191505092915050565b6000613aa18285613a64565b9150613aad8284613a64565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b15602683612c5b565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b6000613b5682612d0b565b9150613b6183612d0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9657613b956137d4565b5b828201905092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613bfd603283612c5b565b9150613c0882613ba1565b604082019050919050565b60006020820190508181036000830152613c2c81613bf0565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613c8f602683612c5b565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d21602583612c5b565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613d8d601483612c5b565b9150613d9882613d57565b602082019050919050565b60006020820190508181036000830152613dbc81613d80565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613e1f602a83612c5b565b9150613e2a82613dc3565b604082019050919050565b60006020820190508181036000830152613e4e81613e12565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613eb1602f83612c5b565b9150613ebc82613e55565b604082019050919050565b60006020820190508181036000830152613ee081613ea4565b9050919050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b6000613f1d601783612c5b565b9150613f2882613ee7565b602082019050919050565b60006020820190508181036000830152613f4c81613f10565b9050919050565b7f4e6f206974656d73206c65667420746f206d696e740000000000000000000000600082015250565b6000613f89601583612c5b565b9150613f9482613f53565b602082019050919050565b60006020820190508181036000830152613fb881613f7c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fe682613fbf565b613ff08185613fca565b9350614000818560208601612c6c565b61400981612c9f565b840191505092915050565b60006080820190506140296000830187612da0565b6140366020830186612da0565b6140436040830185612e36565b81810360608301526140558184613fdb565b905095945050505050565b60008151905061406f81612bc1565b92915050565b60006020828403121561408b5761408a612b8b565b5b600061409984828501614060565b91505092915050565b60006140ad82612d0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140e0576140df6137d4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061412582612d0b565b915061413083612d0b565b9250826141405761413f6140eb565b5b828204905092915050565b600061415682612d0b565b915061416183612d0b565b925082821015614174576141736137d4565b5b828203905092915050565b600061418a82612d0b565b915061419583612d0b565b9250826141a5576141a46140eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061423b602183612c5b565b9150614246826141df565b604082019050919050565b6000602082019050818103600083015261426a8161422e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006142cd602883612c5b565b91506142d882614271565b604082019050919050565b600060208201905081810360008301526142fc816142c0565b905091905056fea2646970667358221220899b8d020c29e6b81c94ca1fdbb592bddd163f31b4ab476edccf139bb75d288064736f6c634300080c0033

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.