ETH Price: $3,099.98 (+1.06%)
Gas: 17 Gwei

Token

AniCatsWorld (ACW)
 

Overview

Max Total Supply

1,250 ACW

Holders

389

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ACW
0x73ea52b81cf18c6db256518576ba23a4e89eecda
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AniCats is an animated generative NFT collection and a key to the future play-to-earn AniCats World metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AniCatsWorld

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : AniCatsWorld.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract AniCatsWorld is ERC721, Ownable {
    uint constant public TICKET_ID = 0;

    uint constant public MAX_SUPPLY = 9000; // 9000 unique AniCats will be in total.
    uint constant public PRICE = 0.07 ether; // 0.07 ETH + gas per transaction
    uint constant public PRESALE_PRICE = 0.065 ether; // 0.07 ETH + gas per transaction
    uint constant public PRESALE_PER_TX_LIMIT = 10; // Up to 10 AniCats per transaction during the presale.
    uint constant public PRESALE_PER_WALLET_LIMIT = 10; // Up to 10 AniCats per unique wallet during the presale.
    uint constant public MINT_PER_TX_LIMIT = 20; // Up to 20 AniCats per transaction.
    
    string private _apiURI = "https://anicats.herokuapp.com/token/";
    uint public reservedTokensLimit = 200; // 200 AniCats will be reserved for marketing needs.

    uint public claimLimit = 874;
    uint public presaleTokensLimit = 3426;

    bool public isClaimingAvailable = false;
    bool public isMintingAvailable = false;
    bool public isPresaleAvailable = false;

    uint public tokensMinted = 0;
    uint public presaleTokensMinted = 0;

    mapping(address => bool) public presaleList;
    mapping(address => uint) public claimedWithMintpass;

    IERC1155 public mintPassContract = IERC1155(0x942c4199312902B45e8032051Ebad08be34a318c); // AniCats Mintpass https://anicats.world/
    IERC721 public friendContract = ERC721(0x1A92f7381B9F03921564a437210bB9396471050C); // Cool Cats https://www.coolcatsnft.com/

    constructor() ERC721("AniCatsWorld", "ACW") {
        mintNFTs(1);
    }

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

    function setBaseURI(string memory uri) external onlyOwner {
        _apiURI = uri;
    }

    function startClaimAndPresale() external onlyOwner {
        isClaimingAvailable = true;
        isPresaleAvailable = true;
    }
    
    function setIsMintingAvailable(bool state) external onlyOwner {
        isMintingAvailable = state;
    }
    function setIsClaimingAvailable(bool state) external onlyOwner {
        isClaimingAvailable = state;
    }
    function setIsPresaleAvailable(bool state) external onlyOwner {
        isPresaleAvailable = state;
        if (state == false) {
            presaleTokensLimit = presaleTokensMinted;
        }
    }

    function giveAway(address to, uint256 amount) external onlyOwner {
        require(amount <= reservedTokensLimit, "Not enough reserve left for team");
        uint fromToken = tokensMinted + 1;
        tokensMinted += amount;
        for (uint i = 0; i < amount; i++) {
            _mint(to, fromToken + i);
        }
        reservedTokensLimit -= amount;
    }

    // Giveaway from Claim bucket
    function claimGiveAway(address to, uint amount) external onlyOwner() {
        require(amount <= claimLimit, "All mintpasses were claimed");

        claimedWithMintpass[to] += amount;
        claimLimit -= amount;
        mintNFTs(amount);
    }

    function withdraw(address to) external onlyOwner {
        uint balance = address(this).balance;
        payable(to).transfer(balance);
    }
    // endregion

    // Presale helper methods region
    function addToPresale(address wallet) public onlyOwner() {
        presaleList[wallet] = true;
    }

    function removeFromPresale(address wallet) public onlyOwner() {
        presaleList[wallet] = false;
    }
    
    function addToPresaleMany(address[] memory wallets) public onlyOwner() {
        for(uint256 i = 0; i < wallets.length; i++) {
            addToPresale(wallets[i]);
        }
    }

    function removeFromPresaleMany(address[] memory wallets) public onlyOwner() {
        for(uint256 i = 0; i < wallets.length; i++) {
            removeFromPresale(wallets[i]);
        }
    }
    // endregion

    // Claim a token using Mintpass ticket
    function claim(uint amount) external {
        require(isClaimingAvailable, "Claiming is not available");
        require(amount <= claimLimit, "All mintpasses were claimed");

        uint tickets = mintPassContract.balanceOf(msg.sender, TICKET_ID);
        require(claimedWithMintpass[msg.sender] + amount <= tickets, "Insufficient Mintpasses balance");
        claimedWithMintpass[msg.sender] += amount;
        claimLimit -= amount;
        mintNFTs(amount);
    }

    function mintPrice(uint amount) public pure returns (uint) {
        return amount * PRICE;
    }
    function presaleMintPrice(uint amount) public pure returns (uint) {
        return amount * PRESALE_PRICE;
    }

    // Main sale mint
    function mint(uint amount) external payable {
        require(isMintingAvailable, "Minting is not available");
        require(tokensMinted + amount <= MAX_SUPPLY - reservedTokensLimit - claimLimit, "Tokens supply reached limit");
        require(amount > 0 && amount <= MINT_PER_TX_LIMIT, "Can only mint 20 tokens at a time");
        require(mintPrice(amount) == msg.value, "Wrong ethers value");

        mintNFTs(amount);
    }

    // Presale mint
    function presaleMint(uint amount) external payable {
        require(isPresaleAvailable, "Presale is not available");
        require(presaleTokensMinted + amount <= presaleTokensLimit, "Presale tokens supply reached limit"); // Only presale token validation
        require(tokensMinted + amount <= MAX_SUPPLY - reservedTokensLimit, "Tokens supply reached limit"); // Total tokens validation
        require(amount > 0 && amount <= PRESALE_PER_TX_LIMIT, "Can only mint 10 tokens at a time");
    
        require(presaleAllowedForWallet(msg.sender), "Sorry you are not on the presale list");
        require(presaleMintPrice(amount) == msg.value, "Wrong ethers value");
        require(balanceOf(msg.sender) + amount <= PRESALE_PER_WALLET_LIMIT + claimedWithMintpass[msg.sender], "Can only mint 10 tokens during the presale per wallet");
        
        presaleTokensMinted += amount;
        mintNFTs(amount);
    }

    // Validate if sender owns a mintpass or a friend collection token (Cool Cats) or in the presale list
    function presaleAllowedForWallet(address wallet) public view returns(bool) {
        return presaleList[wallet] ||
               friendContract.balanceOf(wallet) > 0 ||
               mintPassContract.balanceOf(wallet, TICKET_ID) > 0;
    }

    function mintNFTs(uint amount) internal {
        uint fromToken = tokensMinted + 1;
        tokensMinted += amount;
        for (uint i = 0; i < amount; i++) {
            _mint(msg.sender, fromToken + i);
        }
    }
    
    function totalSupply() external view returns (uint) {
        return tokensMinted;
    }
}

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

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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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 {}
}

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

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

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

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_TX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PER_TX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PER_WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TICKET_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"addToPresaleMany","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimGiveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedWithMintpass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"friendContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"isClaimingAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPassContract","outputs":[{"internalType":"contract IERC1155","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"presaleAllowedForWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"presaleTokensLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeFromPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"removeFromPresaleMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensLimit","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":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsClaimingAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsMintingAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsPresaleAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startClaimAndPresale","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":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806024815260200162005ae7602491396007908051906020019062000035929190620005cd565b5060c860085561036a600955610d62600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600c556000600d5573942c4199312902b45e8032051ebad08be34a318c601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731a92f7381b9f03921564a437210bb9396471050c601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200015957600080fd5b506040518060400160405280600c81526020017f416e6943617473576f726c6400000000000000000000000000000000000000008152506040518060400160405280600381526020017f41435700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001de929190620005cd565b508060019080519060200190620001f7929190620005cd565b5050506200021a6200020e6200023260201b60201c565b6200023a60201b60201c565b6200022c60016200030060201b60201c565b620008bb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001600c5462000313919062000720565b905081600c600082825462000329919062000720565b9250508190555060005b8281101562000371576200035b3382846200034f919062000720565b6200037660201b60201c565b80806200036890620007bd565b91505062000333565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e090620006ed565b60405180910390fd5b620003fa816200055c60201b60201c565b156200043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043490620006cb565b60405180910390fd5b6200045160008383620005c860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004a3919062000720565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b828054620005db9062000787565b90600052602060002090601f016020900481019282620005ff57600085556200064b565b82601f106200061a57805160ff19168380011785556200064b565b828001600101855582156200064b579182015b828111156200064a5782518255916020019190600101906200062d565b5b5090506200065a91906200065e565b5090565b5b80821115620006795760008160009055506001016200065f565b5090565b60006200068c601c836200070f565b9150620006998262000869565b602082019050919050565b6000620006b36020836200070f565b9150620006c08262000892565b602082019050919050565b60006020820190508181036000830152620006e6816200067d565b9050919050565b600060208201905081810360008301526200070881620006a4565b9050919050565b600082825260208201905092915050565b60006200072d826200077d565b91506200073a836200077d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200077257620007716200080b565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620007a057607f821691505b60208210811415620007b757620007b66200083a565b5b50919050565b6000620007ca826200077d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200080057620007ff6200080b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b61521c80620008cb6000396000f3fe6080604052600436106103355760003560e01c80636e91259a116101ab578063be610676116100f7578063df24781811610095578063e985e9c51161006f578063e985e9c514610bf0578063f1b8c8d114610c2d578063f2fde38b14610c56578063fa4e9df214610c7f57610335565b8063df24781814610b5f578063e44ddc2214610b88578063e6a72acf14610bb357610335565b8063c9b298f1116100d1578063c9b298f114610ac8578063ca80014414610ae4578063cb56039a14610b0d578063d6fe030a14610b3657610335565b8063be61067614610a37578063c026f04d14610a62578063c87b56dd14610a8b57610335565b80638d859f3e11610164578063a0712d681161013e578063a0712d681461098c578063a22cb465146109a8578063ab997095146109d1578063b88d4fde14610a0e57610335565b80638d859f3e1461090b5780638da5cb5b1461093657806395d89b411461096157610335565b80636e91259a1461080d57806370a0823114610838578063715018a61461087557806379aa49c81461088c5780638166f39b146108b757806388657c7a146108e057610335565b8063380f91e61161028557806355f804b3116102235780636352211e116101fd5780636352211e1461076357806367c756c9146107a05780636aeb0526146107cb5780636de9f32b146107e257610335565b806355f804b3146106e45780635d8c96c81461070d57806362dc6e211461073857610335565b8063433900db1161025f578063433900db1461063a57806343bd42f91461066557806345d510071461069057806351cff8d9146106bb57610335565b8063380f91e6146105bb5780633a3543a4146105e657806342842e0e1461061157610335565b806318160ddd116102f25780632c10c779116102cc5780632c10c779146104ff578063328a274d1461052a57806332cb6b0c14610567578063379607f51461059257610335565b806318160ddd146104825780631dc9de59146104ad57806323b872dd146104d657610335565b806301ffc9a71461033a57806303b3f6ef1461037757806306fdde03146103b4578063081812fc146103df578063095ea7b31461041c57806312fb92e014610445575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190613b00565b610ca8565b60405161036e919061417e565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906138ef565b610d8a565b6040516103ab9190614591565b60405180910390f35b3480156103c057600080fd5b506103c9610da2565b6040516103d691906141cf565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190613b93565b610e34565b60405161041391906140ee565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613a5a565b610eb9565b005b34801561045157600080fd5b5061046c600480360381019061046791906138ef565b610fd1565b604051610479919061417e565b60405180910390f35b34801561048e57600080fd5b50610497610ff1565b6040516104a49190614591565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613ad7565b610ffb565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190613954565b6110ab565b005b34801561050b57600080fd5b5061051461110b565b604051610521919061417e565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c91906138ef565b61111e565b60405161055e919061417e565b60405180910390f35b34801561057357600080fd5b5061057c6112e0565b6040516105899190614591565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613b93565b6112e6565b005b3480156105c757600080fd5b506105d0611534565b6040516105dd919061417e565b60405180910390f35b3480156105f257600080fd5b506105fb611547565b6040516106089190614199565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613954565b61156d565b005b34801561064657600080fd5b5061064f61158d565b60405161065c9190614591565b60405180910390f35b34801561067157600080fd5b5061067a611593565b6040516106879190614591565b60405180910390f35b34801561069c57600080fd5b506106a5611598565b6040516106b29190614591565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906138ef565b61159d565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613b52565b611669565b005b34801561071957600080fd5b506107226116ff565b60405161072f9190614591565b60405180910390f35b34801561074457600080fd5b5061074d611705565b60405161075a9190614591565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613b93565b611710565b60405161079791906140ee565b60405180910390f35b3480156107ac57600080fd5b506107b56117c2565b6040516107c29190614591565b60405180910390f35b3480156107d757600080fd5b506107e06117c8565b005b3480156107ee57600080fd5b506107f761187c565b6040516108049190614591565b60405180910390f35b34801561081957600080fd5b50610822611882565b60405161082f91906141b4565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906138ef565b6118a8565b60405161086c9190614591565b60405180910390f35b34801561088157600080fd5b5061088a611960565b005b34801561089857600080fd5b506108a16119e8565b6040516108ae9190614591565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906138ef565b6119ed565b005b3480156108ec57600080fd5b506108f5611ac4565b604051610902919061417e565b60405180910390f35b34801561091757600080fd5b50610920611ad7565b60405161092d9190614591565b60405180910390f35b34801561094257600080fd5b5061094b611ae2565b60405161095891906140ee565b60405180910390f35b34801561096d57600080fd5b50610976611b0c565b60405161098391906141cf565b60405180910390f35b6109a660048036038101906109a19190613b93565b611b9e565b005b3480156109b457600080fd5b506109cf60048036038101906109ca9190613a1e565b611cff565b005b3480156109dd57600080fd5b506109f860048036038101906109f39190613b93565b611e80565b604051610a059190614591565b60405180910390f35b348015610a1a57600080fd5b50610a356004803603810190610a3091906139a3565b611e9c565b005b348015610a4357600080fd5b50610a4c611efe565b604051610a599190614591565b60405180910390f35b348015610a6e57600080fd5b50610a896004803603810190610a849190613a96565b611f04565b005b348015610a9757600080fd5b50610ab26004803603810190610aad9190613b93565b611fec565b604051610abf91906141cf565b60405180910390f35b610ae26004803603810190610add9190613b93565b612093565b005b348015610af057600080fd5b50610b0b6004803603810190610b069190613a5a565b61233b565b005b348015610b1957600080fd5b50610b346004803603810190610b2f9190613a5a565b61247a565b005b348015610b4257600080fd5b50610b5d6004803603810190610b589190613ad7565b6125b7565b005b348015610b6b57600080fd5b50610b866004803603810190610b819190613ad7565b612650565b005b348015610b9457600080fd5b50610b9d6126e9565b604051610baa9190614591565b60405180910390f35b348015610bbf57600080fd5b50610bda6004803603810190610bd59190613b93565b6126ee565b604051610be79190614591565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190613918565b61270a565b604051610c24919061417e565b60405180910390f35b348015610c3957600080fd5b50610c546004803603810190610c4f91906138ef565b61279e565b005b348015610c6257600080fd5b50610c7d6004803603810190610c7891906138ef565b612875565b005b348015610c8b57600080fd5b50610ca66004803603810190610ca19190613a96565b61296d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d835750610d8282612a55565b5b9050919050565b600f6020528060005260406000206000915090505481565b606060008054610db1906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddd906148b5565b8015610e2a5780601f10610dff57610100808354040283529160200191610e2a565b820191906000526020600020905b815481529060010190602001808311610e0d57829003601f168201915b5050505050905090565b6000610e3f82612abf565b610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906143f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec482611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614471565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f54612b2b565b73ffffffffffffffffffffffffffffffffffffffff161480610f835750610f8281610f7d612b2b565b61270a565b5b610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990614331565b60405180910390fd5b610fcc8383612b33565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600c54905090565b611003612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611021611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90614411565b60405180910390fd5b80600b60026101000a81548160ff0219169083151502179055506000151581151514156110a857600d54600a819055505b50565b6110bc6110b6612b2b565b82612bec565b6110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906144b1565b60405180910390fd5b611106838383612cca565b505050565b600b60019054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061122257506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016111d091906140ee565b60206040518083038186803b1580156111e857600080fd5b505afa1580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190613bbc565b115b806112d957506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e8460006040518363ffffffff1660e01b8152600401611287929190614155565b60206040518083038186803b15801561129f57600080fd5b505afa1580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190613bbc565b115b9050919050565b61232881565b600b60009054906101000a900460ff16611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906144f1565b60405180910390fd5b60095481111561137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190614491565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b81526004016113d9929190614155565b60206040518083038186803b1580156113f157600080fd5b505afa158015611405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114299190613bbc565b90508082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147791906146a2565b11156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906142d1565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150791906146a2565b9250508190555081600960008282546115209190614783565b9250508190555061153082612f26565b5050565b600b60029054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61158883838360405180602001604052806000815250611e9c565b505050565b600a5481565b600a81565b601481565b6115a5612b2b565b73ffffffffffffffffffffffffffffffffffffffff166115c3611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090614411565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611664573d6000803e3d6000fd5b505050565b611671612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661168f611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90614411565b60405180910390fd5b80600790805190602001906116fb929190613668565b5050565b600d5481565b66e6ed27d666800081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614371565b60405180910390fd5b80915050919050565b60085481565b6117d0612b2b565b73ffffffffffffffffffffffffffffffffffffffff166117ee611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90614411565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b600c5481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090614351565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611968612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611986611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614411565b60405180910390fd5b6119e66000612f8a565b565b600a81565b6119f5612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611a13611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090614411565b60405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900460ff1681565b66f8b0a10e47000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b1b906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b47906148b5565b8015611b945780601f10611b6957610100808354040283529160200191611b94565b820191906000526020600020905b815481529060010190602001808311611b7757829003601f168201915b5050505050905090565b600b60019054906101000a900460ff16611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490614531565b60405180910390fd5b600954600854612328611c009190614783565b611c0a9190614783565b81600c54611c1891906146a2565b1115611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c50906143b1565b60405180910390fd5b600081118015611c6a575060148111155b611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090614311565b60405180910390fd5b34611cb3826126ee565b14611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614571565b60405180910390fd5b611cfc81612f26565b50565b611d07612b2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c906142b1565b60405180910390fd5b8060056000611d82612b2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e2f612b2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e74919061417e565b60405180910390a35050565b600066e6ed27d666800082611e959190614729565b9050919050565b611ead611ea7612b2b565b83612bec565b611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906144b1565b60405180910390fd5b611ef884848484613050565b50505050565b60095481565b611f0c612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611f2a611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7790614411565b60405180910390fd5b60005b8151811015611fe857611fd5828281518110611fc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161279e565b8080611fe090614918565b915050611f83565b5050565b6060611ff782612abf565b612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614451565b60405180910390fd5b60006120406130ac565b90506000815111612060576040518060200160405280600081525061208b565b8061206a8461313e565b60405160200161207b9291906140ca565b6040516020818303038152906040525b915050919050565b600b60029054906101000a900460ff166120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614511565b60405180910390fd5b600a5481600d546120f391906146a2565b1115612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b906141f1565b60405180910390fd5b6008546123286121449190614783565b81600c5461215291906146a2565b1115612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a906143b1565b60405180910390fd5b6000811180156121a45750600a8111155b6121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da90614551565b60405180910390fd5b6121ec3361111e565b61222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290614391565b60405180910390fd5b3461223582611e80565b14612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90614571565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a6122c191906146a2565b816122cb336118a8565b6122d591906146a2565b1115612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d906144d1565b60405180910390fd5b80600d600082825461232891906146a2565b9250508190555061233881612f26565b50565b612343612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612361611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614411565b60405180910390fd5b6008548111156123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f390614271565b60405180910390fd5b60006001600c5461240d91906146a2565b905081600c600082825461242191906146a2565b9250508190555060005b8281101561245b5761244884828461244391906146a2565b6132eb565b808061245390614918565b91505061242b565b50816008600082825461246e9190614783565b92505081905550505050565b612482612b2b565b73ffffffffffffffffffffffffffffffffffffffff166124a0611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed90614411565b60405180910390fd5b60095481111561253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614491565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258a91906146a2565b9250508190555080600960008282546125a39190614783565b925050819055506125b381612f26565b5050565b6125bf612b2b565b73ffffffffffffffffffffffffffffffffffffffff166125dd611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a90614411565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b612658612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612676611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146126cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c390614411565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b600081565b600066f8b0a10e470000826127039190614729565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127a6612b2b565b73ffffffffffffffffffffffffffffffffffffffff166127c4611ae2565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614411565b60405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61287d612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661289b611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890614411565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890614231565b60405180910390fd5b61296a81612f8a565b50565b612975612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612993611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614411565b60405180910390fd5b60005b8151811015612a5157612a3e828281518110612a31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516119ed565b8080612a4990614918565b9150506129ec565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ba683611710565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bf782612abf565b612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d906142f1565b60405180910390fd5b6000612c4183611710565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cb057508373ffffffffffffffffffffffffffffffffffffffff16612c9884610e34565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cc15750612cc0818561270a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cea82611710565b73ffffffffffffffffffffffffffffffffffffffff1614612d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3790614431565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614291565b60405180910390fd5b612dbb8383836134b9565b612dc6600082612b33565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e169190614783565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e6d91906146a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006001600c54612f3791906146a2565b905081600c6000828254612f4b91906146a2565b9250508190555060005b82811015612f8557612f72338284612f6d91906146a2565b6132eb565b8080612f7d90614918565b915050612f55565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61305b848484612cca565b613067848484846134be565b6130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d90614211565b60405180910390fd5b50505050565b6060600780546130bb906148b5565b80601f01602080910402602001604051908101604052809291908181526020018280546130e7906148b5565b80156131345780601f1061310957610100808354040283529160200191613134565b820191906000526020600020905b81548152906001019060200180831161311757829003601f168201915b5050505050905090565b60606000821415613186576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e6565b600082905060005b600082146131b85780806131a190614918565b915050600a826131b191906146f8565b915061318e565b60008167ffffffffffffffff8111156131fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561322c5781602001600182028036833780820191505090505b5090505b600085146132df576001826132459190614783565b9150600a856132549190614961565b603061326091906146a2565b60f81b81838151811061329c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d891906146f8565b9450613230565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613352906143d1565b60405180910390fd5b61336481612abf565b156133a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339b90614251565b60405180910390fd5b6133b0600083836134b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461340091906146a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006134df8473ffffffffffffffffffffffffffffffffffffffff16613655565b15613648578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613508612b2b565b8786866040518563ffffffff1660e01b815260040161352a9493929190614109565b602060405180830381600087803b15801561354457600080fd5b505af192505050801561357557506040513d601f19601f820116820180604052508101906135729190613b29565b60015b6135f8573d80600081146135a5576040519150601f19603f3d011682016040523d82523d6000602084013e6135aa565b606091505b506000815114156135f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e790614211565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061364d565b600190505b949350505050565b600080823b905060008111915050919050565b828054613674906148b5565b90600052602060002090601f01602090048101928261369657600085556136dd565b82601f106136af57805160ff19168380011785556136dd565b828001600101855582156136dd579182015b828111156136dc5782518255916020019190600101906136c1565b5b5090506136ea91906136ee565b5090565b5b808211156137075760008160009055506001016136ef565b5090565b600061371e613719846145d1565b6145ac565b9050808382526020820190508285602086028201111561373d57600080fd5b60005b8581101561376d578161375388826137f3565b845260208401935060208301925050600181019050613740565b5050509392505050565b600061378a613785846145fd565b6145ac565b9050828152602081018484840111156137a257600080fd5b6137ad848285614873565b509392505050565b60006137c86137c38461462e565b6145ac565b9050828152602081018484840111156137e057600080fd5b6137eb848285614873565b509392505050565b6000813590506138028161518a565b92915050565b600082601f83011261381957600080fd5b813561382984826020860161370b565b91505092915050565b600081359050613841816151a1565b92915050565b600081359050613856816151b8565b92915050565b60008151905061386b816151b8565b92915050565b600082601f83011261388257600080fd5b8135613892848260208601613777565b91505092915050565b600082601f8301126138ac57600080fd5b81356138bc8482602086016137b5565b91505092915050565b6000813590506138d4816151cf565b92915050565b6000815190506138e9816151cf565b92915050565b60006020828403121561390157600080fd5b600061390f848285016137f3565b91505092915050565b6000806040838503121561392b57600080fd5b6000613939858286016137f3565b925050602061394a858286016137f3565b9150509250929050565b60008060006060848603121561396957600080fd5b6000613977868287016137f3565b9350506020613988868287016137f3565b9250506040613999868287016138c5565b9150509250925092565b600080600080608085870312156139b957600080fd5b60006139c7878288016137f3565b94505060206139d8878288016137f3565b93505060406139e9878288016138c5565b925050606085013567ffffffffffffffff811115613a0657600080fd5b613a1287828801613871565b91505092959194509250565b60008060408385031215613a3157600080fd5b6000613a3f858286016137f3565b9250506020613a5085828601613832565b9150509250929050565b60008060408385031215613a6d57600080fd5b6000613a7b858286016137f3565b9250506020613a8c858286016138c5565b9150509250929050565b600060208284031215613aa857600080fd5b600082013567ffffffffffffffff811115613ac257600080fd5b613ace84828501613808565b91505092915050565b600060208284031215613ae957600080fd5b6000613af784828501613832565b91505092915050565b600060208284031215613b1257600080fd5b6000613b2084828501613847565b91505092915050565b600060208284031215613b3b57600080fd5b6000613b498482850161385c565b91505092915050565b600060208284031215613b6457600080fd5b600082013567ffffffffffffffff811115613b7e57600080fd5b613b8a8482850161389b565b91505092915050565b600060208284031215613ba557600080fd5b6000613bb3848285016138c5565b91505092915050565b600060208284031215613bce57600080fd5b6000613bdc848285016138da565b91505092915050565b613bee816147b7565b82525050565b613bfd816147c9565b82525050565b6000613c0e8261465f565b613c188185614675565b9350613c28818560208601614882565b613c3181614a4e565b840191505092915050565b613c458161482b565b82525050565b613c548161484f565b82525050565b6000613c658261466a565b613c6f8185614686565b9350613c7f818560208601614882565b613c8881614a4e565b840191505092915050565b6000613c9e8261466a565b613ca88185614697565b9350613cb8818560208601614882565b80840191505092915050565b6000613cd1602383614686565b9150613cdc82614a5f565b604082019050919050565b6000613cf4603283614686565b9150613cff82614aae565b604082019050919050565b6000613d17602683614686565b9150613d2282614afd565b604082019050919050565b6000613d3a601c83614686565b9150613d4582614b4c565b602082019050919050565b6000613d5d602083614686565b9150613d6882614b75565b602082019050919050565b6000613d80602483614686565b9150613d8b82614b9e565b604082019050919050565b6000613da3601983614686565b9150613dae82614bed565b602082019050919050565b6000613dc6601f83614686565b9150613dd182614c16565b602082019050919050565b6000613de9602c83614686565b9150613df482614c3f565b604082019050919050565b6000613e0c602183614686565b9150613e1782614c8e565b604082019050919050565b6000613e2f603883614686565b9150613e3a82614cdd565b604082019050919050565b6000613e52602a83614686565b9150613e5d82614d2c565b604082019050919050565b6000613e75602983614686565b9150613e8082614d7b565b604082019050919050565b6000613e98602583614686565b9150613ea382614dca565b604082019050919050565b6000613ebb601b83614686565b9150613ec682614e19565b602082019050919050565b6000613ede602083614686565b9150613ee982614e42565b602082019050919050565b6000613f01602c83614686565b9150613f0c82614e6b565b604082019050919050565b6000613f24602083614686565b9150613f2f82614eba565b602082019050919050565b6000613f47602983614686565b9150613f5282614ee3565b604082019050919050565b6000613f6a602f83614686565b9150613f7582614f32565b604082019050919050565b6000613f8d602183614686565b9150613f9882614f81565b604082019050919050565b6000613fb0601b83614686565b9150613fbb82614fd0565b602082019050919050565b6000613fd3603183614686565b9150613fde82614ff9565b604082019050919050565b6000613ff6603583614686565b915061400182615048565b604082019050919050565b6000614019601983614686565b915061402482615097565b602082019050919050565b600061403c601883614686565b9150614047826150c0565b602082019050919050565b600061405f601883614686565b915061406a826150e9565b602082019050919050565b6000614082602183614686565b915061408d82615112565b604082019050919050565b60006140a5601283614686565b91506140b082615161565b602082019050919050565b6140c481614821565b82525050565b60006140d68285613c93565b91506140e28284613c93565b91508190509392505050565b60006020820190506141036000830184613be5565b92915050565b600060808201905061411e6000830187613be5565b61412b6020830186613be5565b61413860408301856140bb565b818103606083015261414a8184613c03565b905095945050505050565b600060408201905061416a6000830185613be5565b61417760208301846140bb565b9392505050565b60006020820190506141936000830184613bf4565b92915050565b60006020820190506141ae6000830184613c3c565b92915050565b60006020820190506141c96000830184613c4b565b92915050565b600060208201905081810360008301526141e98184613c5a565b905092915050565b6000602082019050818103600083015261420a81613cc4565b9050919050565b6000602082019050818103600083015261422a81613ce7565b9050919050565b6000602082019050818103600083015261424a81613d0a565b9050919050565b6000602082019050818103600083015261426a81613d2d565b9050919050565b6000602082019050818103600083015261428a81613d50565b9050919050565b600060208201905081810360008301526142aa81613d73565b9050919050565b600060208201905081810360008301526142ca81613d96565b9050919050565b600060208201905081810360008301526142ea81613db9565b9050919050565b6000602082019050818103600083015261430a81613ddc565b9050919050565b6000602082019050818103600083015261432a81613dff565b9050919050565b6000602082019050818103600083015261434a81613e22565b9050919050565b6000602082019050818103600083015261436a81613e45565b9050919050565b6000602082019050818103600083015261438a81613e68565b9050919050565b600060208201905081810360008301526143aa81613e8b565b9050919050565b600060208201905081810360008301526143ca81613eae565b9050919050565b600060208201905081810360008301526143ea81613ed1565b9050919050565b6000602082019050818103600083015261440a81613ef4565b9050919050565b6000602082019050818103600083015261442a81613f17565b9050919050565b6000602082019050818103600083015261444a81613f3a565b9050919050565b6000602082019050818103600083015261446a81613f5d565b9050919050565b6000602082019050818103600083015261448a81613f80565b9050919050565b600060208201905081810360008301526144aa81613fa3565b9050919050565b600060208201905081810360008301526144ca81613fc6565b9050919050565b600060208201905081810360008301526144ea81613fe9565b9050919050565b6000602082019050818103600083015261450a8161400c565b9050919050565b6000602082019050818103600083015261452a8161402f565b9050919050565b6000602082019050818103600083015261454a81614052565b9050919050565b6000602082019050818103600083015261456a81614075565b9050919050565b6000602082019050818103600083015261458a81614098565b9050919050565b60006020820190506145a660008301846140bb565b92915050565b60006145b66145c7565b90506145c282826148e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156145ec576145eb614a1f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561461857614617614a1f565b5b61462182614a4e565b9050602081019050919050565b600067ffffffffffffffff82111561464957614648614a1f565b5b61465282614a4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146ad82614821565b91506146b883614821565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146ed576146ec614992565b5b828201905092915050565b600061470382614821565b915061470e83614821565b92508261471e5761471d6149c1565b5b828204905092915050565b600061473482614821565b915061473f83614821565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561477857614777614992565b5b828202905092915050565b600061478e82614821565b915061479983614821565b9250828210156147ac576147ab614992565b5b828203905092915050565b60006147c282614801565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148368261483d565b9050919050565b600061484882614801565b9050919050565b600061485a82614861565b9050919050565b600061486c82614801565b9050919050565b82818337600083830152505050565b60005b838110156148a0578082015181840152602081019050614885565b838111156148af576000848401525b50505050565b600060028204905060018216806148cd57607f821691505b602082108114156148e1576148e06149f0565b5b50919050565b6148f082614a4e565b810181811067ffffffffffffffff8211171561490f5761490e614a1f565b5b80604052505050565b600061492382614821565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495657614955614992565b5b600182019050919050565b600061496c82614821565b915061497783614821565b925082614987576149866149c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f50726573616c6520746f6b656e7320737570706c792072656163686564206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e74204d696e747061737365732062616c616e636500600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f536f72727920796f7520617265206e6f74206f6e207468652070726573616c6560008201527f206c697374000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e7320737570706c792072656163686564206c696d69740000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c206d696e74706173736573207765726520636c61696d65640000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320647572696e67207460008201527f68652070726573616c65207065722077616c6c65740000000000000000000000602082015250565b7f436c61696d696e67206973206e6f7420617661696c61626c6500000000000000600082015250565b7f50726573616c65206973206e6f7420617661696c61626c650000000000000000600082015250565b7f4d696e74696e67206973206e6f7420617661696c61626c650000000000000000600082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f57726f6e67206574686572732076616c75650000000000000000000000000000600082015250565b615193816147b7565b811461519e57600080fd5b50565b6151aa816147c9565b81146151b557600080fd5b50565b6151c1816147d5565b81146151cc57600080fd5b50565b6151d881614821565b81146151e357600080fd5b5056fea264697066735822122068cf6e795e4af68f7334ef93999ee8dee76abcb64c678cf0752fe16cd02f7e4764736f6c6343000804003368747470733a2f2f616e69636174732e6865726f6b756170702e636f6d2f746f6b656e2f

Deployed Bytecode

0x6080604052600436106103355760003560e01c80636e91259a116101ab578063be610676116100f7578063df24781811610095578063e985e9c51161006f578063e985e9c514610bf0578063f1b8c8d114610c2d578063f2fde38b14610c56578063fa4e9df214610c7f57610335565b8063df24781814610b5f578063e44ddc2214610b88578063e6a72acf14610bb357610335565b8063c9b298f1116100d1578063c9b298f114610ac8578063ca80014414610ae4578063cb56039a14610b0d578063d6fe030a14610b3657610335565b8063be61067614610a37578063c026f04d14610a62578063c87b56dd14610a8b57610335565b80638d859f3e11610164578063a0712d681161013e578063a0712d681461098c578063a22cb465146109a8578063ab997095146109d1578063b88d4fde14610a0e57610335565b80638d859f3e1461090b5780638da5cb5b1461093657806395d89b411461096157610335565b80636e91259a1461080d57806370a0823114610838578063715018a61461087557806379aa49c81461088c5780638166f39b146108b757806388657c7a146108e057610335565b8063380f91e61161028557806355f804b3116102235780636352211e116101fd5780636352211e1461076357806367c756c9146107a05780636aeb0526146107cb5780636de9f32b146107e257610335565b806355f804b3146106e45780635d8c96c81461070d57806362dc6e211461073857610335565b8063433900db1161025f578063433900db1461063a57806343bd42f91461066557806345d510071461069057806351cff8d9146106bb57610335565b8063380f91e6146105bb5780633a3543a4146105e657806342842e0e1461061157610335565b806318160ddd116102f25780632c10c779116102cc5780632c10c779146104ff578063328a274d1461052a57806332cb6b0c14610567578063379607f51461059257610335565b806318160ddd146104825780631dc9de59146104ad57806323b872dd146104d657610335565b806301ffc9a71461033a57806303b3f6ef1461037757806306fdde03146103b4578063081812fc146103df578063095ea7b31461041c57806312fb92e014610445575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190613b00565b610ca8565b60405161036e919061417e565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906138ef565b610d8a565b6040516103ab9190614591565b60405180910390f35b3480156103c057600080fd5b506103c9610da2565b6040516103d691906141cf565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190613b93565b610e34565b60405161041391906140ee565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613a5a565b610eb9565b005b34801561045157600080fd5b5061046c600480360381019061046791906138ef565b610fd1565b604051610479919061417e565b60405180910390f35b34801561048e57600080fd5b50610497610ff1565b6040516104a49190614591565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613ad7565b610ffb565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190613954565b6110ab565b005b34801561050b57600080fd5b5061051461110b565b604051610521919061417e565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c91906138ef565b61111e565b60405161055e919061417e565b60405180910390f35b34801561057357600080fd5b5061057c6112e0565b6040516105899190614591565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613b93565b6112e6565b005b3480156105c757600080fd5b506105d0611534565b6040516105dd919061417e565b60405180910390f35b3480156105f257600080fd5b506105fb611547565b6040516106089190614199565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613954565b61156d565b005b34801561064657600080fd5b5061064f61158d565b60405161065c9190614591565b60405180910390f35b34801561067157600080fd5b5061067a611593565b6040516106879190614591565b60405180910390f35b34801561069c57600080fd5b506106a5611598565b6040516106b29190614591565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906138ef565b61159d565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613b52565b611669565b005b34801561071957600080fd5b506107226116ff565b60405161072f9190614591565b60405180910390f35b34801561074457600080fd5b5061074d611705565b60405161075a9190614591565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613b93565b611710565b60405161079791906140ee565b60405180910390f35b3480156107ac57600080fd5b506107b56117c2565b6040516107c29190614591565b60405180910390f35b3480156107d757600080fd5b506107e06117c8565b005b3480156107ee57600080fd5b506107f761187c565b6040516108049190614591565b60405180910390f35b34801561081957600080fd5b50610822611882565b60405161082f91906141b4565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906138ef565b6118a8565b60405161086c9190614591565b60405180910390f35b34801561088157600080fd5b5061088a611960565b005b34801561089857600080fd5b506108a16119e8565b6040516108ae9190614591565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906138ef565b6119ed565b005b3480156108ec57600080fd5b506108f5611ac4565b604051610902919061417e565b60405180910390f35b34801561091757600080fd5b50610920611ad7565b60405161092d9190614591565b60405180910390f35b34801561094257600080fd5b5061094b611ae2565b60405161095891906140ee565b60405180910390f35b34801561096d57600080fd5b50610976611b0c565b60405161098391906141cf565b60405180910390f35b6109a660048036038101906109a19190613b93565b611b9e565b005b3480156109b457600080fd5b506109cf60048036038101906109ca9190613a1e565b611cff565b005b3480156109dd57600080fd5b506109f860048036038101906109f39190613b93565b611e80565b604051610a059190614591565b60405180910390f35b348015610a1a57600080fd5b50610a356004803603810190610a3091906139a3565b611e9c565b005b348015610a4357600080fd5b50610a4c611efe565b604051610a599190614591565b60405180910390f35b348015610a6e57600080fd5b50610a896004803603810190610a849190613a96565b611f04565b005b348015610a9757600080fd5b50610ab26004803603810190610aad9190613b93565b611fec565b604051610abf91906141cf565b60405180910390f35b610ae26004803603810190610add9190613b93565b612093565b005b348015610af057600080fd5b50610b0b6004803603810190610b069190613a5a565b61233b565b005b348015610b1957600080fd5b50610b346004803603810190610b2f9190613a5a565b61247a565b005b348015610b4257600080fd5b50610b5d6004803603810190610b589190613ad7565b6125b7565b005b348015610b6b57600080fd5b50610b866004803603810190610b819190613ad7565b612650565b005b348015610b9457600080fd5b50610b9d6126e9565b604051610baa9190614591565b60405180910390f35b348015610bbf57600080fd5b50610bda6004803603810190610bd59190613b93565b6126ee565b604051610be79190614591565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190613918565b61270a565b604051610c24919061417e565b60405180910390f35b348015610c3957600080fd5b50610c546004803603810190610c4f91906138ef565b61279e565b005b348015610c6257600080fd5b50610c7d6004803603810190610c7891906138ef565b612875565b005b348015610c8b57600080fd5b50610ca66004803603810190610ca19190613a96565b61296d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d835750610d8282612a55565b5b9050919050565b600f6020528060005260406000206000915090505481565b606060008054610db1906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddd906148b5565b8015610e2a5780601f10610dff57610100808354040283529160200191610e2a565b820191906000526020600020905b815481529060010190602001808311610e0d57829003601f168201915b5050505050905090565b6000610e3f82612abf565b610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906143f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec482611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614471565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f54612b2b565b73ffffffffffffffffffffffffffffffffffffffff161480610f835750610f8281610f7d612b2b565b61270a565b5b610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990614331565b60405180910390fd5b610fcc8383612b33565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600c54905090565b611003612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611021611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90614411565b60405180910390fd5b80600b60026101000a81548160ff0219169083151502179055506000151581151514156110a857600d54600a819055505b50565b6110bc6110b6612b2b565b82612bec565b6110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906144b1565b60405180910390fd5b611106838383612cca565b505050565b600b60019054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061122257506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016111d091906140ee565b60206040518083038186803b1580156111e857600080fd5b505afa1580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190613bbc565b115b806112d957506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e8460006040518363ffffffff1660e01b8152600401611287929190614155565b60206040518083038186803b15801561129f57600080fd5b505afa1580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190613bbc565b115b9050919050565b61232881565b600b60009054906101000a900460ff16611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906144f1565b60405180910390fd5b60095481111561137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190614491565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b81526004016113d9929190614155565b60206040518083038186803b1580156113f157600080fd5b505afa158015611405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114299190613bbc565b90508082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147791906146a2565b11156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906142d1565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150791906146a2565b9250508190555081600960008282546115209190614783565b9250508190555061153082612f26565b5050565b600b60029054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61158883838360405180602001604052806000815250611e9c565b505050565b600a5481565b600a81565b601481565b6115a5612b2b565b73ffffffffffffffffffffffffffffffffffffffff166115c3611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090614411565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611664573d6000803e3d6000fd5b505050565b611671612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661168f611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90614411565b60405180910390fd5b80600790805190602001906116fb929190613668565b5050565b600d5481565b66e6ed27d666800081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614371565b60405180910390fd5b80915050919050565b60085481565b6117d0612b2b565b73ffffffffffffffffffffffffffffffffffffffff166117ee611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90614411565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b600c5481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090614351565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611968612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611986611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614411565b60405180910390fd5b6119e66000612f8a565b565b600a81565b6119f5612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611a13611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090614411565b60405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900460ff1681565b66f8b0a10e47000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b1b906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b47906148b5565b8015611b945780601f10611b6957610100808354040283529160200191611b94565b820191906000526020600020905b815481529060010190602001808311611b7757829003601f168201915b5050505050905090565b600b60019054906101000a900460ff16611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490614531565b60405180910390fd5b600954600854612328611c009190614783565b611c0a9190614783565b81600c54611c1891906146a2565b1115611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c50906143b1565b60405180910390fd5b600081118015611c6a575060148111155b611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090614311565b60405180910390fd5b34611cb3826126ee565b14611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614571565b60405180910390fd5b611cfc81612f26565b50565b611d07612b2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c906142b1565b60405180910390fd5b8060056000611d82612b2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e2f612b2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e74919061417e565b60405180910390a35050565b600066e6ed27d666800082611e959190614729565b9050919050565b611ead611ea7612b2b565b83612bec565b611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906144b1565b60405180910390fd5b611ef884848484613050565b50505050565b60095481565b611f0c612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611f2a611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7790614411565b60405180910390fd5b60005b8151811015611fe857611fd5828281518110611fc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161279e565b8080611fe090614918565b915050611f83565b5050565b6060611ff782612abf565b612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614451565b60405180910390fd5b60006120406130ac565b90506000815111612060576040518060200160405280600081525061208b565b8061206a8461313e565b60405160200161207b9291906140ca565b6040516020818303038152906040525b915050919050565b600b60029054906101000a900460ff166120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614511565b60405180910390fd5b600a5481600d546120f391906146a2565b1115612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b906141f1565b60405180910390fd5b6008546123286121449190614783565b81600c5461215291906146a2565b1115612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a906143b1565b60405180910390fd5b6000811180156121a45750600a8111155b6121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da90614551565b60405180910390fd5b6121ec3361111e565b61222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290614391565b60405180910390fd5b3461223582611e80565b14612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90614571565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a6122c191906146a2565b816122cb336118a8565b6122d591906146a2565b1115612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d906144d1565b60405180910390fd5b80600d600082825461232891906146a2565b9250508190555061233881612f26565b50565b612343612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612361611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614411565b60405180910390fd5b6008548111156123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f390614271565b60405180910390fd5b60006001600c5461240d91906146a2565b905081600c600082825461242191906146a2565b9250508190555060005b8281101561245b5761244884828461244391906146a2565b6132eb565b808061245390614918565b91505061242b565b50816008600082825461246e9190614783565b92505081905550505050565b612482612b2b565b73ffffffffffffffffffffffffffffffffffffffff166124a0611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed90614411565b60405180910390fd5b60095481111561253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614491565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258a91906146a2565b9250508190555080600960008282546125a39190614783565b925050819055506125b381612f26565b5050565b6125bf612b2b565b73ffffffffffffffffffffffffffffffffffffffff166125dd611ae2565b73ffffffffffffffffffffffffffffffffffffffff1614612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a90614411565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b612658612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612676611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146126cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c390614411565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b600081565b600066f8b0a10e470000826127039190614729565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127a6612b2b565b73ffffffffffffffffffffffffffffffffffffffff166127c4611ae2565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614411565b60405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61287d612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661289b611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890614411565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890614231565b60405180910390fd5b61296a81612f8a565b50565b612975612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612993611ae2565b73ffffffffffffffffffffffffffffffffffffffff16146129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614411565b60405180910390fd5b60005b8151811015612a5157612a3e828281518110612a31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516119ed565b8080612a4990614918565b9150506129ec565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ba683611710565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bf782612abf565b612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d906142f1565b60405180910390fd5b6000612c4183611710565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cb057508373ffffffffffffffffffffffffffffffffffffffff16612c9884610e34565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cc15750612cc0818561270a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cea82611710565b73ffffffffffffffffffffffffffffffffffffffff1614612d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3790614431565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614291565b60405180910390fd5b612dbb8383836134b9565b612dc6600082612b33565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e169190614783565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e6d91906146a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006001600c54612f3791906146a2565b905081600c6000828254612f4b91906146a2565b9250508190555060005b82811015612f8557612f72338284612f6d91906146a2565b6132eb565b8080612f7d90614918565b915050612f55565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61305b848484612cca565b613067848484846134be565b6130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d90614211565b60405180910390fd5b50505050565b6060600780546130bb906148b5565b80601f01602080910402602001604051908101604052809291908181526020018280546130e7906148b5565b80156131345780601f1061310957610100808354040283529160200191613134565b820191906000526020600020905b81548152906001019060200180831161311757829003601f168201915b5050505050905090565b60606000821415613186576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e6565b600082905060005b600082146131b85780806131a190614918565b915050600a826131b191906146f8565b915061318e565b60008167ffffffffffffffff8111156131fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561322c5781602001600182028036833780820191505090505b5090505b600085146132df576001826132459190614783565b9150600a856132549190614961565b603061326091906146a2565b60f81b81838151811061329c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d891906146f8565b9450613230565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613352906143d1565b60405180910390fd5b61336481612abf565b156133a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339b90614251565b60405180910390fd5b6133b0600083836134b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461340091906146a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006134df8473ffffffffffffffffffffffffffffffffffffffff16613655565b15613648578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613508612b2b565b8786866040518563ffffffff1660e01b815260040161352a9493929190614109565b602060405180830381600087803b15801561354457600080fd5b505af192505050801561357557506040513d601f19601f820116820180604052508101906135729190613b29565b60015b6135f8573d80600081146135a5576040519150601f19603f3d011682016040523d82523d6000602084013e6135aa565b606091505b506000815114156135f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e790614211565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061364d565b600190505b949350505050565b600080823b905060008111915050919050565b828054613674906148b5565b90600052602060002090601f01602090048101928261369657600085556136dd565b82601f106136af57805160ff19168380011785556136dd565b828001600101855582156136dd579182015b828111156136dc5782518255916020019190600101906136c1565b5b5090506136ea91906136ee565b5090565b5b808211156137075760008160009055506001016136ef565b5090565b600061371e613719846145d1565b6145ac565b9050808382526020820190508285602086028201111561373d57600080fd5b60005b8581101561376d578161375388826137f3565b845260208401935060208301925050600181019050613740565b5050509392505050565b600061378a613785846145fd565b6145ac565b9050828152602081018484840111156137a257600080fd5b6137ad848285614873565b509392505050565b60006137c86137c38461462e565b6145ac565b9050828152602081018484840111156137e057600080fd5b6137eb848285614873565b509392505050565b6000813590506138028161518a565b92915050565b600082601f83011261381957600080fd5b813561382984826020860161370b565b91505092915050565b600081359050613841816151a1565b92915050565b600081359050613856816151b8565b92915050565b60008151905061386b816151b8565b92915050565b600082601f83011261388257600080fd5b8135613892848260208601613777565b91505092915050565b600082601f8301126138ac57600080fd5b81356138bc8482602086016137b5565b91505092915050565b6000813590506138d4816151cf565b92915050565b6000815190506138e9816151cf565b92915050565b60006020828403121561390157600080fd5b600061390f848285016137f3565b91505092915050565b6000806040838503121561392b57600080fd5b6000613939858286016137f3565b925050602061394a858286016137f3565b9150509250929050565b60008060006060848603121561396957600080fd5b6000613977868287016137f3565b9350506020613988868287016137f3565b9250506040613999868287016138c5565b9150509250925092565b600080600080608085870312156139b957600080fd5b60006139c7878288016137f3565b94505060206139d8878288016137f3565b93505060406139e9878288016138c5565b925050606085013567ffffffffffffffff811115613a0657600080fd5b613a1287828801613871565b91505092959194509250565b60008060408385031215613a3157600080fd5b6000613a3f858286016137f3565b9250506020613a5085828601613832565b9150509250929050565b60008060408385031215613a6d57600080fd5b6000613a7b858286016137f3565b9250506020613a8c858286016138c5565b9150509250929050565b600060208284031215613aa857600080fd5b600082013567ffffffffffffffff811115613ac257600080fd5b613ace84828501613808565b91505092915050565b600060208284031215613ae957600080fd5b6000613af784828501613832565b91505092915050565b600060208284031215613b1257600080fd5b6000613b2084828501613847565b91505092915050565b600060208284031215613b3b57600080fd5b6000613b498482850161385c565b91505092915050565b600060208284031215613b6457600080fd5b600082013567ffffffffffffffff811115613b7e57600080fd5b613b8a8482850161389b565b91505092915050565b600060208284031215613ba557600080fd5b6000613bb3848285016138c5565b91505092915050565b600060208284031215613bce57600080fd5b6000613bdc848285016138da565b91505092915050565b613bee816147b7565b82525050565b613bfd816147c9565b82525050565b6000613c0e8261465f565b613c188185614675565b9350613c28818560208601614882565b613c3181614a4e565b840191505092915050565b613c458161482b565b82525050565b613c548161484f565b82525050565b6000613c658261466a565b613c6f8185614686565b9350613c7f818560208601614882565b613c8881614a4e565b840191505092915050565b6000613c9e8261466a565b613ca88185614697565b9350613cb8818560208601614882565b80840191505092915050565b6000613cd1602383614686565b9150613cdc82614a5f565b604082019050919050565b6000613cf4603283614686565b9150613cff82614aae565b604082019050919050565b6000613d17602683614686565b9150613d2282614afd565b604082019050919050565b6000613d3a601c83614686565b9150613d4582614b4c565b602082019050919050565b6000613d5d602083614686565b9150613d6882614b75565b602082019050919050565b6000613d80602483614686565b9150613d8b82614b9e565b604082019050919050565b6000613da3601983614686565b9150613dae82614bed565b602082019050919050565b6000613dc6601f83614686565b9150613dd182614c16565b602082019050919050565b6000613de9602c83614686565b9150613df482614c3f565b604082019050919050565b6000613e0c602183614686565b9150613e1782614c8e565b604082019050919050565b6000613e2f603883614686565b9150613e3a82614cdd565b604082019050919050565b6000613e52602a83614686565b9150613e5d82614d2c565b604082019050919050565b6000613e75602983614686565b9150613e8082614d7b565b604082019050919050565b6000613e98602583614686565b9150613ea382614dca565b604082019050919050565b6000613ebb601b83614686565b9150613ec682614e19565b602082019050919050565b6000613ede602083614686565b9150613ee982614e42565b602082019050919050565b6000613f01602c83614686565b9150613f0c82614e6b565b604082019050919050565b6000613f24602083614686565b9150613f2f82614eba565b602082019050919050565b6000613f47602983614686565b9150613f5282614ee3565b604082019050919050565b6000613f6a602f83614686565b9150613f7582614f32565b604082019050919050565b6000613f8d602183614686565b9150613f9882614f81565b604082019050919050565b6000613fb0601b83614686565b9150613fbb82614fd0565b602082019050919050565b6000613fd3603183614686565b9150613fde82614ff9565b604082019050919050565b6000613ff6603583614686565b915061400182615048565b604082019050919050565b6000614019601983614686565b915061402482615097565b602082019050919050565b600061403c601883614686565b9150614047826150c0565b602082019050919050565b600061405f601883614686565b915061406a826150e9565b602082019050919050565b6000614082602183614686565b915061408d82615112565b604082019050919050565b60006140a5601283614686565b91506140b082615161565b602082019050919050565b6140c481614821565b82525050565b60006140d68285613c93565b91506140e28284613c93565b91508190509392505050565b60006020820190506141036000830184613be5565b92915050565b600060808201905061411e6000830187613be5565b61412b6020830186613be5565b61413860408301856140bb565b818103606083015261414a8184613c03565b905095945050505050565b600060408201905061416a6000830185613be5565b61417760208301846140bb565b9392505050565b60006020820190506141936000830184613bf4565b92915050565b60006020820190506141ae6000830184613c3c565b92915050565b60006020820190506141c96000830184613c4b565b92915050565b600060208201905081810360008301526141e98184613c5a565b905092915050565b6000602082019050818103600083015261420a81613cc4565b9050919050565b6000602082019050818103600083015261422a81613ce7565b9050919050565b6000602082019050818103600083015261424a81613d0a565b9050919050565b6000602082019050818103600083015261426a81613d2d565b9050919050565b6000602082019050818103600083015261428a81613d50565b9050919050565b600060208201905081810360008301526142aa81613d73565b9050919050565b600060208201905081810360008301526142ca81613d96565b9050919050565b600060208201905081810360008301526142ea81613db9565b9050919050565b6000602082019050818103600083015261430a81613ddc565b9050919050565b6000602082019050818103600083015261432a81613dff565b9050919050565b6000602082019050818103600083015261434a81613e22565b9050919050565b6000602082019050818103600083015261436a81613e45565b9050919050565b6000602082019050818103600083015261438a81613e68565b9050919050565b600060208201905081810360008301526143aa81613e8b565b9050919050565b600060208201905081810360008301526143ca81613eae565b9050919050565b600060208201905081810360008301526143ea81613ed1565b9050919050565b6000602082019050818103600083015261440a81613ef4565b9050919050565b6000602082019050818103600083015261442a81613f17565b9050919050565b6000602082019050818103600083015261444a81613f3a565b9050919050565b6000602082019050818103600083015261446a81613f5d565b9050919050565b6000602082019050818103600083015261448a81613f80565b9050919050565b600060208201905081810360008301526144aa81613fa3565b9050919050565b600060208201905081810360008301526144ca81613fc6565b9050919050565b600060208201905081810360008301526144ea81613fe9565b9050919050565b6000602082019050818103600083015261450a8161400c565b9050919050565b6000602082019050818103600083015261452a8161402f565b9050919050565b6000602082019050818103600083015261454a81614052565b9050919050565b6000602082019050818103600083015261456a81614075565b9050919050565b6000602082019050818103600083015261458a81614098565b9050919050565b60006020820190506145a660008301846140bb565b92915050565b60006145b66145c7565b90506145c282826148e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156145ec576145eb614a1f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561461857614617614a1f565b5b61462182614a4e565b9050602081019050919050565b600067ffffffffffffffff82111561464957614648614a1f565b5b61465282614a4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146ad82614821565b91506146b883614821565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146ed576146ec614992565b5b828201905092915050565b600061470382614821565b915061470e83614821565b92508261471e5761471d6149c1565b5b828204905092915050565b600061473482614821565b915061473f83614821565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561477857614777614992565b5b828202905092915050565b600061478e82614821565b915061479983614821565b9250828210156147ac576147ab614992565b5b828203905092915050565b60006147c282614801565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148368261483d565b9050919050565b600061484882614801565b9050919050565b600061485a82614861565b9050919050565b600061486c82614801565b9050919050565b82818337600083830152505050565b60005b838110156148a0578082015181840152602081019050614885565b838111156148af576000848401525b50505050565b600060028204905060018216806148cd57607f821691505b602082108114156148e1576148e06149f0565b5b50919050565b6148f082614a4e565b810181811067ffffffffffffffff8211171561490f5761490e614a1f565b5b80604052505050565b600061492382614821565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495657614955614992565b5b600182019050919050565b600061496c82614821565b915061497783614821565b925082614987576149866149c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f50726573616c6520746f6b656e7320737570706c792072656163686564206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e74204d696e747061737365732062616c616e636500600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f536f72727920796f7520617265206e6f74206f6e207468652070726573616c6560008201527f206c697374000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e7320737570706c792072656163686564206c696d69740000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c206d696e74706173736573207765726520636c61696d65640000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320647572696e67207460008201527f68652070726573616c65207065722077616c6c65740000000000000000000000602082015250565b7f436c61696d696e67206973206e6f7420617661696c61626c6500000000000000600082015250565b7f50726573616c65206973206e6f7420617661696c61626c650000000000000000600082015250565b7f4d696e74696e67206973206e6f7420617661696c61626c650000000000000000600082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f57726f6e67206574686572732076616c75650000000000000000000000000000600082015250565b615193816147b7565b811461519e57600080fd5b50565b6151aa816147c9565b81146151b557600080fd5b50565b6151c1816147d5565b81146151cc57600080fd5b50565b6151d881614821565b81146151e357600080fd5b5056fea264697066735822122068cf6e795e4af68f7334ef93999ee8dee76abcb64c678cf0752fe16cd02f7e4764736f6c63430008040033

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.