ETH Price: $3,157.66 (+2.84%)
Gas: 1 Gwei

Token

Worst Side (WS)
 

Overview

Max Total Supply

1,000 WS

Holders

195

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WS
0x64da2d523bc4e83d8b3972d2c90ec02158c1a854
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:
WorstSideNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : WorstSideNFT.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract WorstSideNFT is ERC721,Ownable{
    using Strings for uint256;


    uint256 public mintPublicPrice;
    uint256 public mintPillPrice;
    uint256 public mintApePrice;
    uint256 public totalSupply;
    uint256 public maxSupply;
    string internal baseURI;
    string public baseExtension = ".json";
    bool public isPillMintEnable;
    bool public isPublicMintEnable;
    bool public isApeMintEnable;
    address[]  pilltedAddresses;
    address[]  apelistedAddresses;
    bool public revealed = true;
    string public notRevealedUri;

    constructor(
    ) payable ERC721("Worst Side","WS"){
        setBaseURI("ipfs://Qmd6HW9PDihvwLsP6rMyakhA4HRypQunRGmXCK8D7ZSoJb/");
        setNotRevealedURI("https://ipfs.infura.io/ipfs/QmUzJZhYL9pdLxqqzkmovvXZmJaBdpoSgHEm1MYMGYhivW");

        mintApePrice = 0.01 ether;
        mintPillPrice = 0.015 ether;
        mintPublicPrice = 0.02 ether;
        totalSupply = 0;
        maxSupply = 1000;

    }
    function worstMint(uint256 quantity_) public onlyOwner{

        for(uint256 i=0;i<quantity_; i ++){
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }
    }

    function setCostApe(uint256 _cost) public onlyOwner {
        mintApePrice = _cost;
    }
    function setCostPill(uint256 _cost) public onlyOwner {
        mintPillPrice = _cost;
    }
    function setCostPublic(uint256 _cost) public onlyOwner {
        mintPublicPrice = _cost;
    }

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

    function reveal() public onlyOwner {
        revealed = false;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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



    function setIsApeMintEnabled() public onlyOwner{
        isApeMintEnable = true;
        if(isApeMintEnable==true){
            isPillMintEnable = false;
            isPublicMintEnable = false;
        }
    }
    function setIsPillMintEnabled() public onlyOwner{
        isPillMintEnable = true;
        if(isPillMintEnable==true){
            isApeMintEnable = false;
            isPublicMintEnable = false;
        }
    }
    function setIsPublicMintEnabled() public onlyOwner{
        isPublicMintEnable = true;
        if(isPublicMintEnable==true){
            isApeMintEnable = false;
            isPillMintEnable = false;
        }
    }

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

        if(revealed == true) {
            return notRevealedUri;
        }else{
            return string(abi.encodePacked(baseURI, Strings.toString(tokenId_),baseExtension));
        }
    }

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

    function isPillted(address _user) public view returns (bool) {
        for (uint i = 0; i < pilltedAddresses.length; i++) {
            if (pilltedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }
    function isApelisted(address _user) public view returns (bool) {
        for (uint i = 0; i < apelistedAddresses.length; i++) {
            if (apelistedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    function pillUsers(address[] calldata _users) public onlyOwner {
        pilltedAddresses = _users;
    }
    function apelistUsers(address[] calldata _users) public onlyOwner {
        apelistedAddresses = _users;
    }

    function mint(uint256 quantity_) public payable{
        require(isPublicMintEnable,"minting not enable");
        require(msg.value == quantity_ * mintPublicPrice,"wrong mint value");
        require(totalSupply + quantity_ <= maxSupply,"supply not enough");
        require(quantity_ <= 5,"max unit mint per transection");
        for(uint256 i=0;i<quantity_; i ++){
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }
    }

    function pillMint(uint256 quantity_) public payable{
        require(isPillMintEnable,"pill minting not enable");
        require(isPillted(msg.sender) || isApelisted(msg.sender), "user is not pillted");
        require(msg.value == quantity_ * mintPillPrice,"wrong mint value");
        require(totalSupply + quantity_ <= maxSupply,"supply not enough");
        require(quantity_ <= 5,"max unit mint per transection");
        for(uint256 i=0;i<quantity_; i ++){
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }

    }

    function apeMint(uint256 quantity_) public payable{
        require(isApeMintEnable,"Ape minting not enable");
        require(isApelisted(msg.sender), "user is not Apelisted");
        require(msg.value == quantity_ * mintApePrice,"wrong mint value");
        require(totalSupply + quantity_ <= maxSupply,"supply not enough");
        require(quantity_ <= 5,"max unit mint per transection");
        for(uint256 i=0;i<quantity_; i ++){
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }

    }


}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 5 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 6 of 11 : 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 11 : 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 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 11 : 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 11 of 11 : 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"apeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"apelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isApeMintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isApelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPillMintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isPillted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintApePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPillPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"pillMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"pillUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostApe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsApeMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsPillMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"worstMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620003a3565b506001601160006101000a81548160ff0219169083151502179055506040518060400160405280600a81526020017f576f7273742053696465000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f57530000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f1929190620003a3565b5080600190805190602001906200010a929190620003a3565b5050506200012d62000121620001c260201b60201c565b620001ca60201b60201c565b62000157604051806060016040528060368152602001620048da603691396200029060201b60201c565b620001816040518060800160405280604a815260200162004910604a9139620002bc60201b60201c565b662386f26fc1000060098190555066354a6ba7a1800060088190555066470de4df8200006007819055506000600a819055506103e8600b819055506200053b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a0620002e860201b60201c565b80600c9080519060200190620002b8929190620003a3565b5050565b620002cc620002e860201b60201c565b8060129080519060200190620002e4929190620003a3565b5050565b620002f8620001c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031e6200037960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e906200047a565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b190620004ad565b90600052602060002090601f016020900481019282620003d5576000855562000421565b82601f10620003f057805160ff191683800117855562000421565b8280016001018555821562000421579182015b828111156200042057825182559160200191906001019062000403565b5b50905062000430919062000434565b5090565b5b808211156200044f57600081600090555060010162000435565b5090565b6000620004626020836200049c565b91506200046f8262000512565b602082019050919050565b60006020820190508181036000830152620004958162000453565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004c657607f821691505b60208210811415620004dd57620004dc620004e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61438f806200054b6000396000f3fe6080604052600436106102725760003560e01c806389f0d4011161014f578063bd79eb13116100c1578063e985e9c51161007a578063e985e9c5146108db578063f2996fed14610918578063f2c4ce1e1461092f578063f2fde38b14610958578063f6c26d1814610981578063fcd9ad40146109ac57610272565b8063bd79eb13146107d8578063c6682862146107f4578063c87b56dd1461081f578063d5abeb011461085c578063de8d9bde14610887578063e6b4d88e146108c457610272565b8063a22cb46511610113578063a22cb465146106de578063a475b5dd14610707578063a98534911461071e578063b25f8fb314610749578063b88d4fde14610772578063bc65a3691461079b57610272565b806389f0d401146106185780638adc5b28146106435780638da5cb5b1461066c57806395d89b4114610697578063a0712d68146106c257610272565b80632f9a7c58116101e857806355f804b3116101ac57806355f804b3146105175780636352211e1461054057806366d2d3b81461057d5780636cfec76a146105a857806370a08231146105c4578063715018a61461060157610272565b80632f9a7c58146104585780633ccfd60b1461048157806342842e0e1461049857806345b3ed52146104c157806351830227146104ec57610272565b806318160ddd1161023a57806318160ddd14610370578063187660921461039b5780631c50a27b146103b25780632220f05f146103dd5780632259099b1461040657806323b872dd1461042f57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612ffd565b6109d5565b6040516102ab9190613611565b60405180910390f35b3480156102c057600080fd5b506102c9610ab7565b6040516102d6919061362c565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906130a0565b610b49565b60405161031391906135aa565b60405180910390f35b34801561032857600080fd5b50610331610b8f565b60405161033e919061362c565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612f70565b610c1d565b005b34801561037c57600080fd5b50610385610d35565b604051610392919061392e565b60405180910390f35b3480156103a757600080fd5b506103b0610d3b565b005b3480156103be57600080fd5b506103c7610db3565b6040516103d49190613611565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906130a0565b610dc6565b005b34801561041257600080fd5b5061042d600480360381019061042891906130a0565b610dd8565b005b34801561043b57600080fd5b5061045660048036038101906104519190612e5a565b610dea565b005b34801561046457600080fd5b5061047f600480360381019061047a91906130a0565b610e4a565b005b34801561048d57600080fd5b50610496610e5c565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612e5a565b610f1a565b005b3480156104cd57600080fd5b506104d6610f3a565b6040516104e3919061392e565b60405180910390f35b3480156104f857600080fd5b50610501610f40565b60405161050e9190613611565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613057565b610f53565b005b34801561054c57600080fd5b50610567600480360381019061056291906130a0565b610f75565b60405161057491906135aa565b60405180910390f35b34801561058957600080fd5b50610592611027565b60405161059f9190613611565b60405180910390f35b6105c260048036038101906105bd91906130a0565b61103a565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612ded565b61120e565b6040516105f8919061392e565b60405180910390f35b34801561060d57600080fd5b506106166112c6565b005b34801561062457600080fd5b5061062d6112da565b60405161063a9190613611565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906130a0565b6112ed565b005b34801561067857600080fd5b5061068161134d565b60405161068e91906135aa565b60405180910390f35b3480156106a357600080fd5b506106ac611377565b6040516106b9919061362c565b60405180910390f35b6106dc60048036038101906106d791906130a0565b611409565b005b3480156106ea57600080fd5b5061070560048036038101906107009190612f30565b611595565b005b34801561071357600080fd5b5061071c6115ab565b005b34801561072a57600080fd5b506107336115d0565b604051610740919061392e565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fb0565b6115d6565b005b34801561077e57600080fd5b5061079960048036038101906107949190612ead565b6115f4565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190612ded565b611656565b6040516107cf9190613611565b60405180910390f35b6107f260048036038101906107ed91906130a0565b611705565b005b34801561080057600080fd5b506108096118e9565b604051610816919061362c565b60405180910390f35b34801561082b57600080fd5b50610846600480360381019061084191906130a0565b611977565b604051610853919061362c565b60405180910390f35b34801561086857600080fd5b50610871611aa5565b60405161087e919061392e565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190612ded565b611aab565b6040516108bb9190613611565b60405180910390f35b3480156108d057600080fd5b506108d9611b5a565b005b3480156108e757600080fd5b5061090260048036038101906108fd9190612e1a565b611bd2565b60405161090f9190613611565b60405180910390f35b34801561092457600080fd5b5061092d611c66565b005b34801561093b57600080fd5b5061095660048036038101906109519190613057565b611cde565b005b34801561096457600080fd5b5061097f600480360381019061097a9190612ded565b611d00565b005b34801561098d57600080fd5b50610996611d84565b6040516109a3919061392e565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190612fb0565b611d8a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab05750610aaf82611da8565b5b9050919050565b606060008054610ac690613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290613bfe565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b5482611e12565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610b9c90613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc890613bfe565b8015610c155780601f10610bea57610100808354040283529160200191610c15565b820191906000526020600020905b815481529060010190602001808311610bf857829003601f168201915b505050505081565b6000610c2882610f75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906138ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb8611e5d565b73ffffffffffffffffffffffffffffffffffffffff161480610ce75750610ce681610ce1611e5d565b611bd2565b5b610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061378e565b60405180910390fd5b610d308383611e65565b505050565b600a5481565b610d43611f1e565b6001600e60006101000a81548160ff02191690831515021790555060011515600e60009054906101000a900460ff1615151415610db1576000600e60026101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055505b565b600e60009054906101000a900460ff1681565b610dce611f1e565b8060098190555050565b610de0611f1e565b8060088190555050565b610dfb610df5611e5d565b82611f9c565b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906138ee565b60405180910390fd5b610e45838383612031565b505050565b610e52611f1e565b8060078190555050565b610e64611f1e565b6000610e6e61134d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e9190613595565b60006040518083038185875af1925050503d8060008114610ece576040519150601f19603f3d011682016040523d82523d6000602084013e610ed3565b606091505b5050905080610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e9061390e565b60405180910390fd5b50565b610f35838383604051806020016040528060008152506115f4565b505050565b60085481565b601160009054906101000a900460ff1681565b610f5b611f1e565b80600c9080519060200190610f71929190612b0b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110159061388e565b60405180910390fd5b80915050919050565b600e60029054906101000a900460ff1681565b600e60029054906101000a900460ff16611089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110809061384e565b60405180910390fd5b61109233611656565b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c89061382e565b60405180910390fd5b600954816110df9190613aba565b3414611120576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111179061364e565b60405180910390fd5b600b5481600a546111319190613a33565b1115611172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111699061370e565b60405180910390fd5b60058111156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad906138ce565b60405180910390fd5b60005b8181101561120a5760006001600a546111d29190613a33565b9050600a60008154809291906111e790613c61565b91905055506111f63382612298565b50808061120290613c61565b9150506111b9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112769061376e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ce611f1e565b6112d860006122b6565b565b600e60019054906101000a900460ff1681565b6112f5611f1e565b60005b818110156113495760006001600a546113119190613a33565b9050600a600081548092919061132690613c61565b91905055506113353382612298565b50808061134190613c61565b9150506112f8565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461138690613bfe565b80601f01602080910402602001604051908101604052809291908181526020018280546113b290613bfe565b80156113ff5780601f106113d4576101008083540402835291602001916113ff565b820191906000526020600020905b8154815290600101906020018083116113e257829003601f168201915b5050505050905090565b600e60019054906101000a900460ff16611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906136ee565b60405180910390fd5b600754816114669190613aba565b34146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061364e565b60405180910390fd5b600b5481600a546114b89190613a33565b11156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f09061370e565b60405180910390fd5b600581111561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906138ce565b60405180910390fd5b60005b818110156115915760006001600a546115599190613a33565b9050600a600081548092919061156e90613c61565b919050555061157d3382612298565b50808061158990613c61565b915050611540565b5050565b6115a76115a0611e5d565b838361237c565b5050565b6115b3611f1e565b6000601160006101000a81548160ff021916908315150217905550565b60095481565b6115de611f1e565b8181600f91906115ef929190612b91565b505050565b6116056115ff611e5d565b83611f9c565b611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906138ee565b60405180910390fd5b611650848484846124e9565b50505050565b600080600090505b6010805490508110156116fa578273ffffffffffffffffffffffffffffffffffffffff166010828154811061169657611695613d68565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116e7576001915050611700565b80806116f290613c61565b91505061165e565b50600090505b919050565b600e60009054906101000a900460ff16611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b9061386e565b60405180910390fd5b61175d33611aab565b8061176d575061176c33611656565b5b6117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906137ce565b60405180910390fd5b600854816117ba9190613aba565b34146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061364e565b60405180910390fd5b600b5481600a5461180c9190613a33565b111561184d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118449061370e565b60405180910390fd5b6005811115611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906138ce565b60405180910390fd5b60005b818110156118e55760006001600a546118ad9190613a33565b9050600a60008154809291906118c290613c61565b91905055506118d13382612298565b5080806118dd90613c61565b915050611894565b5050565b600d80546118f690613bfe565b80601f016020809104026020016040519081016040528092919081815260200182805461192290613bfe565b801561196f5780601f106119445761010080835404028352916020019161196f565b820191906000526020600020905b81548152906001019060200180831161195257829003601f168201915b505050505081565b606061198282612545565b6119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b89061380e565b60405180910390fd5b60011515601160009054906101000a900460ff1615151415611a6f57601280546119ea90613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1690613bfe565b8015611a635780601f10611a3857610100808354040283529160200191611a63565b820191906000526020600020905b815481529060010190602001808311611a4657829003601f168201915b50505050509050611aa0565b600c611a7a836125b1565b600d604051602001611a8e93929190613564565b60405160208183030381529060405290505b919050565b600b5481565b600080600090505b600f80549050811015611b4f578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110611aeb57611aea613d68565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611b3c576001915050611b55565b8080611b4790613c61565b915050611ab3565b50600090505b919050565b611b62611f1e565b6001600e60026101000a81548160ff02191690831515021790555060011515600e60029054906101000a900460ff1615151415611bd0576000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055505b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c6e611f1e565b6001600e60016101000a81548160ff02191690831515021790555060011515600e60019054906101000a900460ff1615151415611cdc576000600e60026101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055505b565b611ce6611f1e565b8060129080519060200190611cfc929190612b0b565b5050565b611d08611f1e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f9061368e565b60405180910390fd5b611d81816122b6565b50565b60075481565b611d92611f1e565b818160109190611da3929190612b91565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e1b81612545565b611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e519061388e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ed883610f75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f26611e5d565b73ffffffffffffffffffffffffffffffffffffffff16611f4461134d565b73ffffffffffffffffffffffffffffffffffffffff1614611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f91906137ee565b60405180910390fd5b565b600080611fa883610f75565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fea5750611fe98185611bd2565b5b8061202857508373ffffffffffffffffffffffffffffffffffffffff1661201084610b49565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205182610f75565b73ffffffffffffffffffffffffffffffffffffffff16146120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e906136ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e9061372e565b60405180910390fd5b612122838383612712565b61212d600082611e65565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217d9190613b14565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d49190613a33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612293838383612717565b505050565b6122b282826040518060200160405280600081525061271c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e29061374e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124dc9190613611565b60405180910390a3505050565b6124f4848484612031565b61250084848484612777565b61253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369061366e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008214156125f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270d565b600082905060005b6000821461262b57808061261490613c61565b915050600a826126249190613a89565b9150612601565b60008167ffffffffffffffff81111561264757612646613d97565b5b6040519080825280601f01601f1916602001820160405280156126795781602001600182028036833780820191505090505b5090505b60008514612706576001826126929190613b14565b9150600a856126a19190613caa565b60306126ad9190613a33565b60f81b8183815181106126c3576126c2613d68565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ff9190613a89565b945061267d565b8093505050505b919050565b505050565b505050565b612726838361290e565b6127336000848484612777565b612772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127699061366e565b60405180910390fd5b505050565b60006127988473ffffffffffffffffffffffffffffffffffffffff16612ae8565b15612901578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127c1611e5d565b8786866040518563ffffffff1660e01b81526004016127e394939291906135c5565b602060405180830381600087803b1580156127fd57600080fd5b505af192505050801561282e57506040513d601f19601f8201168201806040525081019061282b919061302a565b60015b6128b1573d806000811461285e576040519150601f19603f3d011682016040523d82523d6000602084013e612863565b606091505b506000815114156128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a09061366e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612906565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561297e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612975906137ae565b60405180910390fd5b61298781612545565b156129c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be906136ce565b60405180910390fd5b6129d360008383612712565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a239190613a33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ae460008383612717565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b1790613bfe565b90600052602060002090601f016020900481019282612b395760008555612b80565b82601f10612b5257805160ff1916838001178555612b80565b82800160010185558215612b80579182015b82811115612b7f578251825591602001919060010190612b64565b5b509050612b8d9190612c31565b5090565b828054828255906000526020600020908101928215612c20579160200282015b82811115612c1f57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612bb1565b5b509050612c2d9190612c31565b5090565b5b80821115612c4a576000816000905550600101612c32565b5090565b6000612c61612c5c8461396e565b613949565b905082815260208101848484011115612c7d57612c7c613dd5565b5b612c88848285613bbc565b509392505050565b6000612ca3612c9e8461399f565b613949565b905082815260208101848484011115612cbf57612cbe613dd5565b5b612cca848285613bbc565b509392505050565b600081359050612ce1816142fd565b92915050565b60008083601f840112612cfd57612cfc613dcb565b5b8235905067ffffffffffffffff811115612d1a57612d19613dc6565b5b602083019150836020820283011115612d3657612d35613dd0565b5b9250929050565b600081359050612d4c81614314565b92915050565b600081359050612d618161432b565b92915050565b600081519050612d768161432b565b92915050565b600082601f830112612d9157612d90613dcb565b5b8135612da1848260208601612c4e565b91505092915050565b600082601f830112612dbf57612dbe613dcb565b5b8135612dcf848260208601612c90565b91505092915050565b600081359050612de781614342565b92915050565b600060208284031215612e0357612e02613ddf565b5b6000612e1184828501612cd2565b91505092915050565b60008060408385031215612e3157612e30613ddf565b5b6000612e3f85828601612cd2565b9250506020612e5085828601612cd2565b9150509250929050565b600080600060608486031215612e7357612e72613ddf565b5b6000612e8186828701612cd2565b9350506020612e9286828701612cd2565b9250506040612ea386828701612dd8565b9150509250925092565b60008060008060808587031215612ec757612ec6613ddf565b5b6000612ed587828801612cd2565b9450506020612ee687828801612cd2565b9350506040612ef787828801612dd8565b925050606085013567ffffffffffffffff811115612f1857612f17613dda565b5b612f2487828801612d7c565b91505092959194509250565b60008060408385031215612f4757612f46613ddf565b5b6000612f5585828601612cd2565b9250506020612f6685828601612d3d565b9150509250929050565b60008060408385031215612f8757612f86613ddf565b5b6000612f9585828601612cd2565b9250506020612fa685828601612dd8565b9150509250929050565b60008060208385031215612fc757612fc6613ddf565b5b600083013567ffffffffffffffff811115612fe557612fe4613dda565b5b612ff185828601612ce7565b92509250509250929050565b60006020828403121561301357613012613ddf565b5b600061302184828501612d52565b91505092915050565b6000602082840312156130405761303f613ddf565b5b600061304e84828501612d67565b91505092915050565b60006020828403121561306d5761306c613ddf565b5b600082013567ffffffffffffffff81111561308b5761308a613dda565b5b61309784828501612daa565b91505092915050565b6000602082840312156130b6576130b5613ddf565b5b60006130c484828501612dd8565b91505092915050565b6130d681613b48565b82525050565b6130e581613b5a565b82525050565b60006130f6826139e5565b61310081856139fb565b9350613110818560208601613bcb565b61311981613de4565b840191505092915050565b600061312f826139f0565b6131398185613a17565b9350613149818560208601613bcb565b61315281613de4565b840191505092915050565b6000613168826139f0565b6131728185613a28565b9350613182818560208601613bcb565b80840191505092915050565b6000815461319b81613bfe565b6131a58186613a28565b945060018216600081146131c057600181146131d157613204565b60ff19831686528186019350613204565b6131da856139d0565b60005b838110156131fc578154818901526001820191506020810190506131dd565b838801955050505b50505092915050565b600061321a601083613a17565b915061322582613df5565b602082019050919050565b600061323d603283613a17565b915061324882613e1e565b604082019050919050565b6000613260602683613a17565b915061326b82613e6d565b604082019050919050565b6000613283602583613a17565b915061328e82613ebc565b604082019050919050565b60006132a6601c83613a17565b91506132b182613f0b565b602082019050919050565b60006132c9601283613a17565b91506132d482613f34565b602082019050919050565b60006132ec601183613a17565b91506132f782613f5d565b602082019050919050565b600061330f602483613a17565b915061331a82613f86565b604082019050919050565b6000613332601983613a17565b915061333d82613fd5565b602082019050919050565b6000613355602983613a17565b915061336082613ffe565b604082019050919050565b6000613378603e83613a17565b91506133838261404d565b604082019050919050565b600061339b602083613a17565b91506133a68261409c565b602082019050919050565b60006133be601383613a17565b91506133c9826140c5565b602082019050919050565b60006133e1602083613a17565b91506133ec826140ee565b602082019050919050565b6000613404602f83613a17565b915061340f82614117565b604082019050919050565b6000613427601583613a17565b915061343282614166565b602082019050919050565b600061344a601683613a17565b91506134558261418f565b602082019050919050565b600061346d601783613a17565b9150613478826141b8565b602082019050919050565b6000613490601883613a17565b915061349b826141e1565b602082019050919050565b60006134b3602183613a17565b91506134be8261420a565b604082019050919050565b60006134d6600083613a0c565b91506134e182614259565b600082019050919050565b60006134f9601d83613a17565b91506135048261425c565b602082019050919050565b600061351c602e83613a17565b915061352782614285565b604082019050919050565b600061353f600f83613a17565b915061354a826142d4565b602082019050919050565b61355e81613bb2565b82525050565b6000613570828661318e565b915061357c828561315d565b9150613588828461318e565b9150819050949350505050565b60006135a0826134c9565b9150819050919050565b60006020820190506135bf60008301846130cd565b92915050565b60006080820190506135da60008301876130cd565b6135e760208301866130cd565b6135f46040830185613555565b818103606083015261360681846130eb565b905095945050505050565b600060208201905061362660008301846130dc565b92915050565b600060208201905081810360008301526136468184613124565b905092915050565b600060208201905081810360008301526136678161320d565b9050919050565b6000602082019050818103600083015261368781613230565b9050919050565b600060208201905081810360008301526136a781613253565b9050919050565b600060208201905081810360008301526136c781613276565b9050919050565b600060208201905081810360008301526136e781613299565b9050919050565b60006020820190508181036000830152613707816132bc565b9050919050565b60006020820190508181036000830152613727816132df565b9050919050565b6000602082019050818103600083015261374781613302565b9050919050565b6000602082019050818103600083015261376781613325565b9050919050565b6000602082019050818103600083015261378781613348565b9050919050565b600060208201905081810360008301526137a78161336b565b9050919050565b600060208201905081810360008301526137c78161338e565b9050919050565b600060208201905081810360008301526137e7816133b1565b9050919050565b60006020820190508181036000830152613807816133d4565b9050919050565b60006020820190508181036000830152613827816133f7565b9050919050565b600060208201905081810360008301526138478161341a565b9050919050565b600060208201905081810360008301526138678161343d565b9050919050565b6000602082019050818103600083015261388781613460565b9050919050565b600060208201905081810360008301526138a781613483565b9050919050565b600060208201905081810360008301526138c7816134a6565b9050919050565b600060208201905081810360008301526138e7816134ec565b9050919050565b600060208201905081810360008301526139078161350f565b9050919050565b6000602082019050818103600083015261392781613532565b9050919050565b60006020820190506139436000830184613555565b92915050565b6000613953613964565b905061395f8282613c30565b919050565b6000604051905090565b600067ffffffffffffffff82111561398957613988613d97565b5b61399282613de4565b9050602081019050919050565b600067ffffffffffffffff8211156139ba576139b9613d97565b5b6139c382613de4565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3e82613bb2565b9150613a4983613bb2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7e57613a7d613cdb565b5b828201905092915050565b6000613a9482613bb2565b9150613a9f83613bb2565b925082613aaf57613aae613d0a565b5b828204905092915050565b6000613ac582613bb2565b9150613ad083613bb2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b0957613b08613cdb565b5b828202905092915050565b6000613b1f82613bb2565b9150613b2a83613bb2565b925082821015613b3d57613b3c613cdb565b5b828203905092915050565b6000613b5382613b92565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be9578082015181840152602081019050613bce565b83811115613bf8576000848401525b50505050565b60006002820490506001821680613c1657607f821691505b60208210811415613c2a57613c29613d39565b5b50919050565b613c3982613de4565b810181811067ffffffffffffffff82111715613c5857613c57613d97565b5b80604052505050565b6000613c6c82613bb2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9f57613c9e613cdb565b5b600182019050919050565b6000613cb582613bb2565b9150613cc083613bb2565b925082613cd057613ccf613d0a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e74696e67206e6f7420656e61626c650000000000000000000000000000600082015250565b7f737570706c79206e6f7420656e6f756768000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f75736572206973206e6f742070696c6c74656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f75736572206973206e6f74204170656c69737465640000000000000000000000600082015250565b7f417065206d696e74696e67206e6f7420656e61626c6500000000000000000000600082015250565b7f70696c6c206d696e74696e67206e6f7420656e61626c65000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6d617820756e6974206d696e7420706572207472616e73656374696f6e000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b61430681613b48565b811461431157600080fd5b50565b61431d81613b5a565b811461432857600080fd5b50565b61433481613b66565b811461433f57600080fd5b50565b61434b81613bb2565b811461435657600080fd5b5056fea2646970667358221220872a6e2c994dbece87d0c70f28a360cb75554adaa56f0d120a11c3fbd8e4d97964736f6c63430008070033697066733a2f2f516d64364857395044696876774c735036724d79616b6841344852797051756e52476d58434b3844375a536f4a622f68747470733a2f2f697066732e696e667572612e696f2f697066732f516d557a4a5a68594c3970644c7871717a6b6d6f7676585a6d4a614264706f536748456d314d594d475968697657

Deployed Bytecode

0x6080604052600436106102725760003560e01c806389f0d4011161014f578063bd79eb13116100c1578063e985e9c51161007a578063e985e9c5146108db578063f2996fed14610918578063f2c4ce1e1461092f578063f2fde38b14610958578063f6c26d1814610981578063fcd9ad40146109ac57610272565b8063bd79eb13146107d8578063c6682862146107f4578063c87b56dd1461081f578063d5abeb011461085c578063de8d9bde14610887578063e6b4d88e146108c457610272565b8063a22cb46511610113578063a22cb465146106de578063a475b5dd14610707578063a98534911461071e578063b25f8fb314610749578063b88d4fde14610772578063bc65a3691461079b57610272565b806389f0d401146106185780638adc5b28146106435780638da5cb5b1461066c57806395d89b4114610697578063a0712d68146106c257610272565b80632f9a7c58116101e857806355f804b3116101ac57806355f804b3146105175780636352211e1461054057806366d2d3b81461057d5780636cfec76a146105a857806370a08231146105c4578063715018a61461060157610272565b80632f9a7c58146104585780633ccfd60b1461048157806342842e0e1461049857806345b3ed52146104c157806351830227146104ec57610272565b806318160ddd1161023a57806318160ddd14610370578063187660921461039b5780631c50a27b146103b25780632220f05f146103dd5780632259099b1461040657806323b872dd1461042f57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612ffd565b6109d5565b6040516102ab9190613611565b60405180910390f35b3480156102c057600080fd5b506102c9610ab7565b6040516102d6919061362c565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906130a0565b610b49565b60405161031391906135aa565b60405180910390f35b34801561032857600080fd5b50610331610b8f565b60405161033e919061362c565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612f70565b610c1d565b005b34801561037c57600080fd5b50610385610d35565b604051610392919061392e565b60405180910390f35b3480156103a757600080fd5b506103b0610d3b565b005b3480156103be57600080fd5b506103c7610db3565b6040516103d49190613611565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906130a0565b610dc6565b005b34801561041257600080fd5b5061042d600480360381019061042891906130a0565b610dd8565b005b34801561043b57600080fd5b5061045660048036038101906104519190612e5a565b610dea565b005b34801561046457600080fd5b5061047f600480360381019061047a91906130a0565b610e4a565b005b34801561048d57600080fd5b50610496610e5c565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612e5a565b610f1a565b005b3480156104cd57600080fd5b506104d6610f3a565b6040516104e3919061392e565b60405180910390f35b3480156104f857600080fd5b50610501610f40565b60405161050e9190613611565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613057565b610f53565b005b34801561054c57600080fd5b50610567600480360381019061056291906130a0565b610f75565b60405161057491906135aa565b60405180910390f35b34801561058957600080fd5b50610592611027565b60405161059f9190613611565b60405180910390f35b6105c260048036038101906105bd91906130a0565b61103a565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612ded565b61120e565b6040516105f8919061392e565b60405180910390f35b34801561060d57600080fd5b506106166112c6565b005b34801561062457600080fd5b5061062d6112da565b60405161063a9190613611565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906130a0565b6112ed565b005b34801561067857600080fd5b5061068161134d565b60405161068e91906135aa565b60405180910390f35b3480156106a357600080fd5b506106ac611377565b6040516106b9919061362c565b60405180910390f35b6106dc60048036038101906106d791906130a0565b611409565b005b3480156106ea57600080fd5b5061070560048036038101906107009190612f30565b611595565b005b34801561071357600080fd5b5061071c6115ab565b005b34801561072a57600080fd5b506107336115d0565b604051610740919061392e565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fb0565b6115d6565b005b34801561077e57600080fd5b5061079960048036038101906107949190612ead565b6115f4565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190612ded565b611656565b6040516107cf9190613611565b60405180910390f35b6107f260048036038101906107ed91906130a0565b611705565b005b34801561080057600080fd5b506108096118e9565b604051610816919061362c565b60405180910390f35b34801561082b57600080fd5b50610846600480360381019061084191906130a0565b611977565b604051610853919061362c565b60405180910390f35b34801561086857600080fd5b50610871611aa5565b60405161087e919061392e565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190612ded565b611aab565b6040516108bb9190613611565b60405180910390f35b3480156108d057600080fd5b506108d9611b5a565b005b3480156108e757600080fd5b5061090260048036038101906108fd9190612e1a565b611bd2565b60405161090f9190613611565b60405180910390f35b34801561092457600080fd5b5061092d611c66565b005b34801561093b57600080fd5b5061095660048036038101906109519190613057565b611cde565b005b34801561096457600080fd5b5061097f600480360381019061097a9190612ded565b611d00565b005b34801561098d57600080fd5b50610996611d84565b6040516109a3919061392e565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190612fb0565b611d8a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab05750610aaf82611da8565b5b9050919050565b606060008054610ac690613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290613bfe565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b5482611e12565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610b9c90613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc890613bfe565b8015610c155780601f10610bea57610100808354040283529160200191610c15565b820191906000526020600020905b815481529060010190602001808311610bf857829003601f168201915b505050505081565b6000610c2882610f75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906138ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb8611e5d565b73ffffffffffffffffffffffffffffffffffffffff161480610ce75750610ce681610ce1611e5d565b611bd2565b5b610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061378e565b60405180910390fd5b610d308383611e65565b505050565b600a5481565b610d43611f1e565b6001600e60006101000a81548160ff02191690831515021790555060011515600e60009054906101000a900460ff1615151415610db1576000600e60026101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055505b565b600e60009054906101000a900460ff1681565b610dce611f1e565b8060098190555050565b610de0611f1e565b8060088190555050565b610dfb610df5611e5d565b82611f9c565b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906138ee565b60405180910390fd5b610e45838383612031565b505050565b610e52611f1e565b8060078190555050565b610e64611f1e565b6000610e6e61134d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e9190613595565b60006040518083038185875af1925050503d8060008114610ece576040519150601f19603f3d011682016040523d82523d6000602084013e610ed3565b606091505b5050905080610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e9061390e565b60405180910390fd5b50565b610f35838383604051806020016040528060008152506115f4565b505050565b60085481565b601160009054906101000a900460ff1681565b610f5b611f1e565b80600c9080519060200190610f71929190612b0b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110159061388e565b60405180910390fd5b80915050919050565b600e60029054906101000a900460ff1681565b600e60029054906101000a900460ff16611089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110809061384e565b60405180910390fd5b61109233611656565b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c89061382e565b60405180910390fd5b600954816110df9190613aba565b3414611120576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111179061364e565b60405180910390fd5b600b5481600a546111319190613a33565b1115611172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111699061370e565b60405180910390fd5b60058111156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad906138ce565b60405180910390fd5b60005b8181101561120a5760006001600a546111d29190613a33565b9050600a60008154809291906111e790613c61565b91905055506111f63382612298565b50808061120290613c61565b9150506111b9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112769061376e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ce611f1e565b6112d860006122b6565b565b600e60019054906101000a900460ff1681565b6112f5611f1e565b60005b818110156113495760006001600a546113119190613a33565b9050600a600081548092919061132690613c61565b91905055506113353382612298565b50808061134190613c61565b9150506112f8565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461138690613bfe565b80601f01602080910402602001604051908101604052809291908181526020018280546113b290613bfe565b80156113ff5780601f106113d4576101008083540402835291602001916113ff565b820191906000526020600020905b8154815290600101906020018083116113e257829003601f168201915b5050505050905090565b600e60019054906101000a900460ff16611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906136ee565b60405180910390fd5b600754816114669190613aba565b34146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061364e565b60405180910390fd5b600b5481600a546114b89190613a33565b11156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f09061370e565b60405180910390fd5b600581111561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906138ce565b60405180910390fd5b60005b818110156115915760006001600a546115599190613a33565b9050600a600081548092919061156e90613c61565b919050555061157d3382612298565b50808061158990613c61565b915050611540565b5050565b6115a76115a0611e5d565b838361237c565b5050565b6115b3611f1e565b6000601160006101000a81548160ff021916908315150217905550565b60095481565b6115de611f1e565b8181600f91906115ef929190612b91565b505050565b6116056115ff611e5d565b83611f9c565b611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906138ee565b60405180910390fd5b611650848484846124e9565b50505050565b600080600090505b6010805490508110156116fa578273ffffffffffffffffffffffffffffffffffffffff166010828154811061169657611695613d68565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116e7576001915050611700565b80806116f290613c61565b91505061165e565b50600090505b919050565b600e60009054906101000a900460ff16611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b9061386e565b60405180910390fd5b61175d33611aab565b8061176d575061176c33611656565b5b6117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906137ce565b60405180910390fd5b600854816117ba9190613aba565b34146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061364e565b60405180910390fd5b600b5481600a5461180c9190613a33565b111561184d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118449061370e565b60405180910390fd5b6005811115611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906138ce565b60405180910390fd5b60005b818110156118e55760006001600a546118ad9190613a33565b9050600a60008154809291906118c290613c61565b91905055506118d13382612298565b5080806118dd90613c61565b915050611894565b5050565b600d80546118f690613bfe565b80601f016020809104026020016040519081016040528092919081815260200182805461192290613bfe565b801561196f5780601f106119445761010080835404028352916020019161196f565b820191906000526020600020905b81548152906001019060200180831161195257829003601f168201915b505050505081565b606061198282612545565b6119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b89061380e565b60405180910390fd5b60011515601160009054906101000a900460ff1615151415611a6f57601280546119ea90613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1690613bfe565b8015611a635780601f10611a3857610100808354040283529160200191611a63565b820191906000526020600020905b815481529060010190602001808311611a4657829003601f168201915b50505050509050611aa0565b600c611a7a836125b1565b600d604051602001611a8e93929190613564565b60405160208183030381529060405290505b919050565b600b5481565b600080600090505b600f80549050811015611b4f578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110611aeb57611aea613d68565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611b3c576001915050611b55565b8080611b4790613c61565b915050611ab3565b50600090505b919050565b611b62611f1e565b6001600e60026101000a81548160ff02191690831515021790555060011515600e60029054906101000a900460ff1615151415611bd0576000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055505b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c6e611f1e565b6001600e60016101000a81548160ff02191690831515021790555060011515600e60019054906101000a900460ff1615151415611cdc576000600e60026101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055505b565b611ce6611f1e565b8060129080519060200190611cfc929190612b0b565b5050565b611d08611f1e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f9061368e565b60405180910390fd5b611d81816122b6565b50565b60075481565b611d92611f1e565b818160109190611da3929190612b91565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e1b81612545565b611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e519061388e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ed883610f75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f26611e5d565b73ffffffffffffffffffffffffffffffffffffffff16611f4461134d565b73ffffffffffffffffffffffffffffffffffffffff1614611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f91906137ee565b60405180910390fd5b565b600080611fa883610f75565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fea5750611fe98185611bd2565b5b8061202857508373ffffffffffffffffffffffffffffffffffffffff1661201084610b49565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205182610f75565b73ffffffffffffffffffffffffffffffffffffffff16146120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e906136ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e9061372e565b60405180910390fd5b612122838383612712565b61212d600082611e65565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217d9190613b14565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d49190613a33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612293838383612717565b505050565b6122b282826040518060200160405280600081525061271c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e29061374e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124dc9190613611565b60405180910390a3505050565b6124f4848484612031565b61250084848484612777565b61253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369061366e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008214156125f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270d565b600082905060005b6000821461262b57808061261490613c61565b915050600a826126249190613a89565b9150612601565b60008167ffffffffffffffff81111561264757612646613d97565b5b6040519080825280601f01601f1916602001820160405280156126795781602001600182028036833780820191505090505b5090505b60008514612706576001826126929190613b14565b9150600a856126a19190613caa565b60306126ad9190613a33565b60f81b8183815181106126c3576126c2613d68565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ff9190613a89565b945061267d565b8093505050505b919050565b505050565b505050565b612726838361290e565b6127336000848484612777565b612772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127699061366e565b60405180910390fd5b505050565b60006127988473ffffffffffffffffffffffffffffffffffffffff16612ae8565b15612901578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127c1611e5d565b8786866040518563ffffffff1660e01b81526004016127e394939291906135c5565b602060405180830381600087803b1580156127fd57600080fd5b505af192505050801561282e57506040513d601f19601f8201168201806040525081019061282b919061302a565b60015b6128b1573d806000811461285e576040519150601f19603f3d011682016040523d82523d6000602084013e612863565b606091505b506000815114156128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a09061366e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612906565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561297e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612975906137ae565b60405180910390fd5b61298781612545565b156129c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be906136ce565b60405180910390fd5b6129d360008383612712565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a239190613a33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ae460008383612717565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b1790613bfe565b90600052602060002090601f016020900481019282612b395760008555612b80565b82601f10612b5257805160ff1916838001178555612b80565b82800160010185558215612b80579182015b82811115612b7f578251825591602001919060010190612b64565b5b509050612b8d9190612c31565b5090565b828054828255906000526020600020908101928215612c20579160200282015b82811115612c1f57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612bb1565b5b509050612c2d9190612c31565b5090565b5b80821115612c4a576000816000905550600101612c32565b5090565b6000612c61612c5c8461396e565b613949565b905082815260208101848484011115612c7d57612c7c613dd5565b5b612c88848285613bbc565b509392505050565b6000612ca3612c9e8461399f565b613949565b905082815260208101848484011115612cbf57612cbe613dd5565b5b612cca848285613bbc565b509392505050565b600081359050612ce1816142fd565b92915050565b60008083601f840112612cfd57612cfc613dcb565b5b8235905067ffffffffffffffff811115612d1a57612d19613dc6565b5b602083019150836020820283011115612d3657612d35613dd0565b5b9250929050565b600081359050612d4c81614314565b92915050565b600081359050612d618161432b565b92915050565b600081519050612d768161432b565b92915050565b600082601f830112612d9157612d90613dcb565b5b8135612da1848260208601612c4e565b91505092915050565b600082601f830112612dbf57612dbe613dcb565b5b8135612dcf848260208601612c90565b91505092915050565b600081359050612de781614342565b92915050565b600060208284031215612e0357612e02613ddf565b5b6000612e1184828501612cd2565b91505092915050565b60008060408385031215612e3157612e30613ddf565b5b6000612e3f85828601612cd2565b9250506020612e5085828601612cd2565b9150509250929050565b600080600060608486031215612e7357612e72613ddf565b5b6000612e8186828701612cd2565b9350506020612e9286828701612cd2565b9250506040612ea386828701612dd8565b9150509250925092565b60008060008060808587031215612ec757612ec6613ddf565b5b6000612ed587828801612cd2565b9450506020612ee687828801612cd2565b9350506040612ef787828801612dd8565b925050606085013567ffffffffffffffff811115612f1857612f17613dda565b5b612f2487828801612d7c565b91505092959194509250565b60008060408385031215612f4757612f46613ddf565b5b6000612f5585828601612cd2565b9250506020612f6685828601612d3d565b9150509250929050565b60008060408385031215612f8757612f86613ddf565b5b6000612f9585828601612cd2565b9250506020612fa685828601612dd8565b9150509250929050565b60008060208385031215612fc757612fc6613ddf565b5b600083013567ffffffffffffffff811115612fe557612fe4613dda565b5b612ff185828601612ce7565b92509250509250929050565b60006020828403121561301357613012613ddf565b5b600061302184828501612d52565b91505092915050565b6000602082840312156130405761303f613ddf565b5b600061304e84828501612d67565b91505092915050565b60006020828403121561306d5761306c613ddf565b5b600082013567ffffffffffffffff81111561308b5761308a613dda565b5b61309784828501612daa565b91505092915050565b6000602082840312156130b6576130b5613ddf565b5b60006130c484828501612dd8565b91505092915050565b6130d681613b48565b82525050565b6130e581613b5a565b82525050565b60006130f6826139e5565b61310081856139fb565b9350613110818560208601613bcb565b61311981613de4565b840191505092915050565b600061312f826139f0565b6131398185613a17565b9350613149818560208601613bcb565b61315281613de4565b840191505092915050565b6000613168826139f0565b6131728185613a28565b9350613182818560208601613bcb565b80840191505092915050565b6000815461319b81613bfe565b6131a58186613a28565b945060018216600081146131c057600181146131d157613204565b60ff19831686528186019350613204565b6131da856139d0565b60005b838110156131fc578154818901526001820191506020810190506131dd565b838801955050505b50505092915050565b600061321a601083613a17565b915061322582613df5565b602082019050919050565b600061323d603283613a17565b915061324882613e1e565b604082019050919050565b6000613260602683613a17565b915061326b82613e6d565b604082019050919050565b6000613283602583613a17565b915061328e82613ebc565b604082019050919050565b60006132a6601c83613a17565b91506132b182613f0b565b602082019050919050565b60006132c9601283613a17565b91506132d482613f34565b602082019050919050565b60006132ec601183613a17565b91506132f782613f5d565b602082019050919050565b600061330f602483613a17565b915061331a82613f86565b604082019050919050565b6000613332601983613a17565b915061333d82613fd5565b602082019050919050565b6000613355602983613a17565b915061336082613ffe565b604082019050919050565b6000613378603e83613a17565b91506133838261404d565b604082019050919050565b600061339b602083613a17565b91506133a68261409c565b602082019050919050565b60006133be601383613a17565b91506133c9826140c5565b602082019050919050565b60006133e1602083613a17565b91506133ec826140ee565b602082019050919050565b6000613404602f83613a17565b915061340f82614117565b604082019050919050565b6000613427601583613a17565b915061343282614166565b602082019050919050565b600061344a601683613a17565b91506134558261418f565b602082019050919050565b600061346d601783613a17565b9150613478826141b8565b602082019050919050565b6000613490601883613a17565b915061349b826141e1565b602082019050919050565b60006134b3602183613a17565b91506134be8261420a565b604082019050919050565b60006134d6600083613a0c565b91506134e182614259565b600082019050919050565b60006134f9601d83613a17565b91506135048261425c565b602082019050919050565b600061351c602e83613a17565b915061352782614285565b604082019050919050565b600061353f600f83613a17565b915061354a826142d4565b602082019050919050565b61355e81613bb2565b82525050565b6000613570828661318e565b915061357c828561315d565b9150613588828461318e565b9150819050949350505050565b60006135a0826134c9565b9150819050919050565b60006020820190506135bf60008301846130cd565b92915050565b60006080820190506135da60008301876130cd565b6135e760208301866130cd565b6135f46040830185613555565b818103606083015261360681846130eb565b905095945050505050565b600060208201905061362660008301846130dc565b92915050565b600060208201905081810360008301526136468184613124565b905092915050565b600060208201905081810360008301526136678161320d565b9050919050565b6000602082019050818103600083015261368781613230565b9050919050565b600060208201905081810360008301526136a781613253565b9050919050565b600060208201905081810360008301526136c781613276565b9050919050565b600060208201905081810360008301526136e781613299565b9050919050565b60006020820190508181036000830152613707816132bc565b9050919050565b60006020820190508181036000830152613727816132df565b9050919050565b6000602082019050818103600083015261374781613302565b9050919050565b6000602082019050818103600083015261376781613325565b9050919050565b6000602082019050818103600083015261378781613348565b9050919050565b600060208201905081810360008301526137a78161336b565b9050919050565b600060208201905081810360008301526137c78161338e565b9050919050565b600060208201905081810360008301526137e7816133b1565b9050919050565b60006020820190508181036000830152613807816133d4565b9050919050565b60006020820190508181036000830152613827816133f7565b9050919050565b600060208201905081810360008301526138478161341a565b9050919050565b600060208201905081810360008301526138678161343d565b9050919050565b6000602082019050818103600083015261388781613460565b9050919050565b600060208201905081810360008301526138a781613483565b9050919050565b600060208201905081810360008301526138c7816134a6565b9050919050565b600060208201905081810360008301526138e7816134ec565b9050919050565b600060208201905081810360008301526139078161350f565b9050919050565b6000602082019050818103600083015261392781613532565b9050919050565b60006020820190506139436000830184613555565b92915050565b6000613953613964565b905061395f8282613c30565b919050565b6000604051905090565b600067ffffffffffffffff82111561398957613988613d97565b5b61399282613de4565b9050602081019050919050565b600067ffffffffffffffff8211156139ba576139b9613d97565b5b6139c382613de4565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3e82613bb2565b9150613a4983613bb2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7e57613a7d613cdb565b5b828201905092915050565b6000613a9482613bb2565b9150613a9f83613bb2565b925082613aaf57613aae613d0a565b5b828204905092915050565b6000613ac582613bb2565b9150613ad083613bb2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b0957613b08613cdb565b5b828202905092915050565b6000613b1f82613bb2565b9150613b2a83613bb2565b925082821015613b3d57613b3c613cdb565b5b828203905092915050565b6000613b5382613b92565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be9578082015181840152602081019050613bce565b83811115613bf8576000848401525b50505050565b60006002820490506001821680613c1657607f821691505b60208210811415613c2a57613c29613d39565b5b50919050565b613c3982613de4565b810181811067ffffffffffffffff82111715613c5857613c57613d97565b5b80604052505050565b6000613c6c82613bb2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9f57613c9e613cdb565b5b600182019050919050565b6000613cb582613bb2565b9150613cc083613bb2565b925082613cd057613ccf613d0a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e74696e67206e6f7420656e61626c650000000000000000000000000000600082015250565b7f737570706c79206e6f7420656e6f756768000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f75736572206973206e6f742070696c6c74656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f75736572206973206e6f74204170656c69737465640000000000000000000000600082015250565b7f417065206d696e74696e67206e6f7420656e61626c6500000000000000000000600082015250565b7f70696c6c206d696e74696e67206e6f7420656e61626c65000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6d617820756e6974206d696e7420706572207472616e73656374696f6e000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b61430681613b48565b811461431157600080fd5b50565b61431d81613b5a565b811461432857600080fd5b50565b61433481613b66565b811461433f57600080fd5b50565b61434b81613bb2565b811461435657600080fd5b5056fea2646970667358221220872a6e2c994dbece87d0c70f28a360cb75554adaa56f0d120a11c3fbd8e4d97964736f6c63430008070033

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.