ETH Price: $2,396.88 (+3.07%)

Token

R Planet (RPlanet)
 

Overview

Max Total Supply

76 RPlanet

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
urtooslow.eth
Balance
1 RPlanet
0x702f99334E19c045a35Ca22F2274EC49Ca002d94
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Genesis

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Genesis.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';

contract Genesis is ERC721Enumerable, Ownable {
    using Strings for uint256;

    // Total number of tokenIds minted
    uint256 public tokenIDs = 6;

    // Variables for metadata links
    string _baseTokenURI;

    // Variables for the token
    // Constant number for how many NFTs an address is allowed to mint.
    uint256 private constant maxNumberUserCanMint = 3;
    // Max Supply of the NFT
    uint256 public constant maxSupply = 8888;
    uint256 public ownerMints = 0;
    uint256 public constant ownerMintsMax = 201;

    address public crossmintAddress;

    // Constant values
    uint256 public constant costPerToken = 0.08 ether;

    // public key for signing
    address internal constant publicKey = 0x91e5a1F35F883F86dAc54F5E1F170f142F58AB21;

    // This is ESG's Gnosis Safe Wallet
    address public constant legendaryWallet = 0x4AAe0981Ec489eE1710C6cB1F6b203ab6e020754; 

    constructor() ERC721('R Planet', 'RPlanet') {
        _safeMint(legendaryWallet, 1);
        _safeMint(legendaryWallet, 2);
        _safeMint(legendaryWallet, 3);
        _safeMint(legendaryWallet, 4);
        _safeMint(legendaryWallet, 5);
        _safeMint(legendaryWallet, 6);
        _baseTokenURI = 'https://rplanet-placeholder.s3.amazonaws.com/metadata/';
        setCrossmintAddress(0xdAb1a1854214684acE522439684a145E62505233);

        _transferOwnership(0x962c53CC0d27Bc962b68E25bA51E2e412Bf5ff91);
    }

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

    function setBaseURI(string memory _uri) public onlyOwner {
        _baseTokenURI = _uri;
    }

    // Function to make sure we still have NFTs in stock prior to minting
    modifier isMintValid(uint256 count) {
        require(tokenIDs < maxSupply, 'No tokenIDs left!');
        require(balanceOf(msg.sender) <= maxNumberUserCanMint && count <= maxNumberUserCanMint, 'A user can only mint 3 NFTs!');
        require(msg.value >= costPerToken * count, 'Value of funds not correct!');
        _;
    }

    function mint(
        uint256 count,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) public payable isMintValid(count) {
        // Verify that the signature was signed using our server private key
        require(verifySignedAddress(_v, _r, _s), 'Unable to verify server signature!');

        for (uint i = 0; i < count; i++) {
            tokenIDs++;
            _safeMint(msg.sender, tokenIDs);
        }

        require(balanceOf(msg.sender) <= maxNumberUserCanMint, 'A user can only mint 3 NFTs!');
    }

    function crossmint(address mintTo, uint256 _count) public payable {
        require(costPerToken * _count >= msg.value, "Incorrect ETH value sent");
        require(tokenIDs + _count <= maxSupply, "No more left");
        require(balanceOf(mintTo) <= maxNumberUserCanMint && _count <= maxNumberUserCanMint, 'A user can only mint 3 NFTs!');

        // 0xdAb1a1854214684acE522439684a145E62505233
        require(msg.sender == crossmintAddress,
            "This function is for Crossmint only."
        );

        for (uint i = 0; i < _count; i++) {
            tokenIDs++;
            _safeMint(mintTo, tokenIDs);
        }

        require(balanceOf(mintTo) <= maxNumberUserCanMint, 'A user can only mint 3 NFTs!');
    }

    // The Project Management team will be participating in the private
    // sale and will be minting NFTs for team allocation, partner appreciation,
    // corp treasury, and partnership allocations.
    function ownerOnlyMint(uint256 _count) public payable onlyOwner {
        ownerMints += _count;

        require(ownerMints <= ownerMintsMax, "no more mints");

        for (uint i = 0; i < _count; i++) {
            tokenIDs++;
            _safeMint(legendaryWallet, tokenIDs);
        }

        require(tokenIDs < maxSupply, 'No tokenIDs left!');
    }


    // include a setting function so that you can change this later
    function setCrossmintAddress(address _crossmintAddress) public onlyOwner {
        crossmintAddress = _crossmintAddress;
    }

    // Function to verify that the signature was signed using our server private key
    function verifySignedAddress(
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) internal view returns (bool) {
        if (uint256(_s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return false;
        }
        if (_v != 27 && _v != 28) {
            return false;
        }

        bytes memory prefix = '\x19Ethereum Signed Message:\n32';
        bytes32 prefixedHashMessage = keccak256(abi.encodePacked(prefix, keccak256(abi.encodePacked(msg.sender))));
        address signer = ecrecover(prefixedHashMessage, _v, _r, _s);
        return signer == publicKey;
    }

    function withdraw() public onlyOwner payable {
        (bool os, ) = legendaryWallet.call{value: address(this).balance}('');
        require(os, 'Withdraw unsuccessful');
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 9 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintTo","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"crossmintAddress","outputs":[{"internalType":"address","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legendaryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMintsMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"ownerOnlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crossmintAddress","type":"address"}],"name":"setCrossmintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIDs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526006600b556000600d553480156200001b57600080fd5b506040518060400160405280600881526020017f5220506c616e65740000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f52506c616e6574000000000000000000000000000000000000000000000000008152508160009080519060200190620000a092919062000e90565b508060019080519060200190620000b992919062000e90565b505050620000dc620000d06200024860201b60201c565b6200025060201b60201c565b62000103734aae0981ec489ee1710c6cb1f6b203ab6e02075460016200031660201b60201c565b6200012a734aae0981ec489ee1710c6cb1f6b203ab6e02075460026200031660201b60201c565b62000151734aae0981ec489ee1710c6cb1f6b203ab6e02075460036200031660201b60201c565b62000178734aae0981ec489ee1710c6cb1f6b203ab6e02075460046200031660201b60201c565b6200019f734aae0981ec489ee1710c6cb1f6b203ab6e02075460056200031660201b60201c565b620001c6734aae0981ec489ee1710c6cb1f6b203ab6e02075460066200031660201b60201c565b60405180606001604052806036815260200162005e2a60369139600c9080519060200190620001f792919062000e90565b506200021d73dab1a1854214684ace522439684a145e625052336200033c60201b60201c565b6200024273962c53cc0d27bc962b68e25ba51e2e412bf5ff916200025060201b60201c565b620014e4565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003388282604051806020016040528060008152506200040f60201b60201c565b5050565b6200034c6200024860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003726200047d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c29062001185565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620004218383620004a760201b60201c565b620004366000848484620006a160201b60201c565b62000478576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046f90620010fd565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200051a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005119062001163565b60405180910390fd5b6200052b816200085b60201b60201c565b156200056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000565906200111f565b60405180910390fd5b6200058260008383620008c760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005d49190620011d4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200069d6000838362000a0e60201b60201c565b5050565b6000620006cf8473ffffffffffffffffffffffffffffffffffffffff1662000a1360201b6200199c1760201c565b156200084e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007016200024860201b60201c565b8786866040518563ffffffff1660e01b8152600401620007259493929190620010a9565b602060405180830381600087803b1580156200074057600080fd5b505af19250505080156200077457506040513d601f19601f8201168201806040525081019062000771919062000f57565b60015b620007fd573d8060008114620007a7576040519150601f19603f3d011682016040523d82523d6000602084013e620007ac565b606091505b50600081511415620007f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ec90620010fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000853565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008df83838362000a3660201b620019bf1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200092c57620009268162000a3b60201b60201c565b62000974565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009735762000972838262000a8460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c157620009bb8162000c0160201b60201c565b62000a09565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a085762000a07828262000d4960201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a9e8462000dd560201b620012911760201c565b62000aaa919062001231565b905060006007600084815260200190815260200160002054905081811462000b90576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c17919062001231565b905060006009600084815260200190815260200160002054905060006008838154811062000c6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000cb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000d618362000dd560201b620012911760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e409062001141565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e9e906200130c565b90600052602060002090601f01602090048101928262000ec2576000855562000f0e565b82601f1062000edd57805160ff191683800117855562000f0e565b8280016001018555821562000f0e579182015b8281111562000f0d57825182559160200191906001019062000ef0565b5b50905062000f1d919062000f21565b5090565b5b8082111562000f3c57600081600090555060010162000f22565b5090565b60008151905062000f5181620014ca565b92915050565b60006020828403121562000f6a57600080fd5b600062000f7a8482850162000f40565b91505092915050565b62000f8e816200126c565b82525050565b600062000fa182620011a7565b62000fad8185620011b2565b935062000fbf818560208601620012d6565b62000fca81620013a0565b840191505092915050565b600062000fe4603283620011c3565b915062000ff182620013b1565b604082019050919050565b60006200100b601c83620011c3565b9150620010188262001400565b602082019050919050565b600062001032602a83620011c3565b91506200103f8262001429565b604082019050919050565b600062001059602083620011c3565b9150620010668262001478565b602082019050919050565b600062001080602083620011c3565b91506200108d82620014a1565b602082019050919050565b620010a381620012cc565b82525050565b6000608082019050620010c0600083018762000f83565b620010cf602083018662000f83565b620010de604083018562001098565b8181036060830152620010f2818462000f94565b905095945050505050565b60006020820190508181036000830152620011188162000fd5565b9050919050565b600060208201905081810360008301526200113a8162000ffc565b9050919050565b600060208201905081810360008301526200115c8162001023565b9050919050565b600060208201905081810360008301526200117e816200104a565b9050919050565b60006020820190508181036000830152620011a08162001071565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620011e182620012cc565b9150620011ee83620012cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001226576200122562001342565b5b828201905092915050565b60006200123e82620012cc565b91506200124b83620012cc565b92508282101562001261576200126062001342565b5b828203905092915050565b60006200127982620012ac565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620012f6578082015181840152602081019050620012d9565b8381111562001306576000848401525b50505050565b600060028204905060018216806200132557607f821691505b602082108114156200133c576200133b62001371565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620014d58162001280565b8114620014e157600080fd5b50565b61493680620014f46000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610698578063d5abeb01146106d5578063e985e9c514610700578063f2fde38b1461073d576101e3565b8063a22cb465146105ff578063a897367b14610628578063aeffe13414610644578063b88d4fde1461066f576101e3565b80637d8afe04116100d15780637d8afe04146105555780638da5cb5b1461058057806395d89b41146105ab57806399755624146105d6576101e3565b80636352211e1461049957806370a08231146104d6578063715018a6146105135780637286c5d51461052a576101e3565b80633ba523c71161017a57806355f804b31161014957806355f804b3146103fe57806358891a37146104275780635b2a55e4146104435780636327c7741461046e576101e3565b80633ba523c7146103635780633ccfd60b1461038e57806342842e0e146103985780634f6ccce7146103c1576101e3565b806310aec4a6116101b657806310aec4a6146102b657806318160ddd146102d257806323b872dd146102fd5780632f745c5914610326576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613204565b610766565b60405161021c9190613927565b60405180910390f35b34801561023157600080fd5b5061023a6107e0565b6040516102479190613987565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613297565b610872565b60405161028491906138c0565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906131c8565b6108f7565b005b6102d060048036038101906102cb91906132c0565b610a0f565b005b3480156102de57600080fd5b506102e7610be5565b6040516102f49190613d09565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906130c2565b610bf2565b005b34801561033257600080fd5b5061034d600480360381019061034891906131c8565b610c52565b60405161035a9190613d09565b60405180910390f35b34801561036f57600080fd5b50610378610cf7565b6040516103859190613d09565b60405180910390f35b610396610d03565b005b3480156103a457600080fd5b506103bf60048036038101906103ba91906130c2565b610e42565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613297565b610e62565b6040516103f59190613d09565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613256565b610ef9565b005b610441600480360381019061043c91906131c8565b610f8f565b005b34801561044f57600080fd5b506104586111b3565b60405161046591906138c0565b60405180910390f35b34801561047a57600080fd5b506104836111d9565b6040516104909190613d09565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613297565b6111df565b6040516104cd91906138c0565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f8919061305d565b611291565b60405161050a9190613d09565b60405180910390f35b34801561051f57600080fd5b50610528611349565b005b34801561053657600080fd5b5061053f6113d1565b60405161054c91906138c0565b60405180910390f35b34801561056157600080fd5b5061056a6113e9565b6040516105779190613d09565b60405180910390f35b34801561058c57600080fd5b506105956113ee565b6040516105a291906138c0565b60405180910390f35b3480156105b757600080fd5b506105c0611418565b6040516105cd9190613987565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f8919061305d565b6114aa565b005b34801561060b57600080fd5b506106266004803603810190610621919061318c565b61156a565b005b610642600480360381019061063d9190613297565b611580565b005b34801561065057600080fd5b506106596116fb565b6040516106669190613d09565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190613111565b611701565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613297565b611763565b6040516106cc9190613987565b60405180910390f35b3480156106e157600080fd5b506106ea61180a565b6040516106f79190613d09565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613086565b611810565b6040516107349190613927565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f919061305d565b6118a4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d957506107d8826119c4565b5b9050919050565b6060600080546107ef90613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613fdb565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611aa6565b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390613bc9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610902826111df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90613c49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610992611b12565b73ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0816109bb611b12565b611810565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790613b09565b60405180910390fd5b610a0a8383611b1a565b505050565b836122b8600b5410610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613ba9565b60405180910390fd5b6003610a6133611291565b11158015610a70575060038111155b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613a09565b60405180910390fd5b8067011c37937e080000610ac39190613e80565b341015610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90613b29565b60405180910390fd5b610b10848484611bd3565b610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613ae9565b60405180910390fd5b60005b85811015610b9157600b6000815480929190610b6d9061403e565b9190505550610b7e33600b54611d5f565b8080610b899061403e565b915050610b52565b506003610b9d33611291565b1115610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a09565b60405180910390fd5b5050505050565b6000600880549050905090565b610c03610bfd611b12565b82611d7d565b610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990613ca9565b60405180910390fd5b610c4d838383611e5b565b505050565b6000610c5d83611291565b8210610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c95906139c9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b67011c37937e08000081565b610d0b611b12565b73ffffffffffffffffffffffffffffffffffffffff16610d296113ee565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613c09565b60405180910390fd5b6000734aae0981ec489ee1710c6cb1f6b203ab6e02075473ffffffffffffffffffffffffffffffffffffffff1647604051610db9906138ab565b60006040518083038185875af1925050503d8060008114610df6576040519150601f19603f3d011682016040523d82523d6000602084013e610dfb565b606091505b5050905080610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613c69565b60405180910390fd5b50565b610e5d83838360405180602001604052806000815250611701565b505050565b6000610e6c610be5565b8210610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490613cc9565b60405180910390fd5b60088281548110610ee7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f01611b12565b73ffffffffffffffffffffffffffffffffffffffff16610f1f6113ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613c09565b60405180910390fd5b80600c9080519060200190610f8b929190612e57565b5050565b348167011c37937e080000610fa49190613e80565b1015610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90613ce9565b60405180910390fd5b6122b881600b54610ff69190613df9565b1115611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90613be9565b60405180910390fd5b600361104283611291565b11158015611051575060038111155b611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790613a09565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611117906139a9565b60405180910390fd5b60005b8181101561116257600b600081548092919061113e9061403e565b919050555061114f83600b54611d5f565b808061115a9061403e565b915050611123565b50600361116e83611291565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613a09565b60405180910390fd5b5050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90613b69565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613b49565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611351611b12565b73ffffffffffffffffffffffffffffffffffffffff1661136f6113ee565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613c09565b60405180910390fd5b6113cf60006120c2565b565b734aae0981ec489ee1710c6cb1f6b203ab6e02075481565b60c981565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461142790613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461145390613fdb565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b5050505050905090565b6114b2611b12565b73ffffffffffffffffffffffffffffffffffffffff166114d06113ee565b73ffffffffffffffffffffffffffffffffffffffff1614611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90613c09565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61157c611575611b12565b8383612188565b5050565b611588611b12565b73ffffffffffffffffffffffffffffffffffffffff166115a66113ee565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613c09565b60405180910390fd5b80600d600082825461160e9190613df9565b9250508190555060c9600d54111561165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613c89565b60405180910390fd5b60005b818110156116b157600b60008154809291906116799061403e565b919050555061169e734aae0981ec489ee1710c6cb1f6b203ab6e020754600b54611d5f565b80806116a99061403e565b91505061165e565b506122b8600b54106116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613ba9565b60405180910390fd5b50565b600b5481565b61171261170c611b12565b83611d7d565b611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613ca9565b60405180910390fd5b61175d848484846122f5565b50505050565b606061176e82611aa6565b6117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613c29565b60405180910390fd5b60006117b7612351565b905060008151116117d75760405180602001604052806000815250611802565b806117e1846123e3565b6040516020016117f2929190613887565b6040516020818303038152906040525b915050919050565b6122b881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118ac611b12565b73ffffffffffffffffffffffffffffffffffffffff166118ca6113ee565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613a29565b60405180910390fd5b611999816120c2565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a9f5750611a9e82612590565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b8d836111df565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611c095760009050611d58565b601b8460ff1614158015611c215750601c8460ff1614155b15611c2f5760009050611d58565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008133604051602001611c7d9190613844565b60405160208183030381529060405280519060200120604051602001611ca492919061385f565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051611ce19493929190613942565b6020604051602081039080840390855afa158015611d03573d6000803e3d6000fd5b5050506020604051035190507391e5a1f35f883f86dac54f5e1f170f142f58ab2173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161493505050505b9392505050565b611d798282604051806020016040528060008152506125fa565b5050565b6000611d8882611aa6565b611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90613ac9565b60405180910390fd5b6000611dd2836111df565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e145750611e138185611810565b5b80611e5257508373ffffffffffffffffffffffffffffffffffffffff16611e3a84610872565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e7b826111df565b73ffffffffffffffffffffffffffffffffffffffff1614611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613a49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613a89565b60405180910390fd5b611f4c838383612655565b611f57600082611b1a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa79190613eda565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffe9190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bd838383612769565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613aa9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e89190613927565b60405180910390a3505050565b612300848484611e5b565b61230c8484848461276e565b61234b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612342906139e9565b60405180910390fd5b50505050565b6060600c805461236090613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461238c90613fdb565b80156123d95780601f106123ae576101008083540402835291602001916123d9565b820191906000526020600020905b8154815290600101906020018083116123bc57829003601f168201915b5050505050905090565b6060600082141561242b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061258b565b600082905060005b6000821461245d5780806124469061403e565b915050600a826124569190613e4f565b9150612433565b60008167ffffffffffffffff81111561249f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124d15781602001600182028036833780820191505090505b5090505b60008514612584576001826124ea9190613eda565b9150600a856124f991906140b5565b60306125059190613df9565b60f81b818381518110612541577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561257d9190613e4f565b94506124d5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126048383612905565b612611600084848461276e565b612650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612647906139e9565b60405180910390fd5b505050565b6126608383836119bf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126a35761269e81612adf565b6126e2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126e1576126e08382612b28565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127255761272081612c95565b612764565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612763576127628282612dd8565b5b5b505050565b505050565b600061278f8473ffffffffffffffffffffffffffffffffffffffff1661199c565b156128f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b8611b12565b8786866040518563ffffffff1660e01b81526004016127da94939291906138db565b602060405180830381600087803b1580156127f457600080fd5b505af192505050801561282557506040513d601f19601f82011682018060405250810190612822919061322d565b60015b6128a8573d8060008114612855576040519150601f19603f3d011682016040523d82523d6000602084013e61285a565b606091505b506000815114156128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906139e9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c90613b89565b60405180910390fd5b61297e81611aa6565b156129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b590613a69565b60405180910390fd5b6129ca60008383612655565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1a9190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612adb60008383612769565b5050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b3584611291565b612b3f9190613eda565b9050600060076000848152602001908152602001600020549050818114612c24576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ca99190613eda565b9050600060096000848152602001908152602001600020549050600060088381548110612cff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612de383611291565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e6390613fdb565b90600052602060002090601f016020900481019282612e855760008555612ecc565b82601f10612e9e57805160ff1916838001178555612ecc565b82800160010185558215612ecc579182015b82811115612ecb578251825591602001919060010190612eb0565b5b509050612ed99190612edd565b5090565b5b80821115612ef6576000816000905550600101612ede565b5090565b6000612f0d612f0884613d49565b613d24565b905082815260208101848484011115612f2557600080fd5b612f30848285613f99565b509392505050565b6000612f4b612f4684613d7a565b613d24565b905082815260208101848484011115612f6357600080fd5b612f6e848285613f99565b509392505050565b600081359050612f8581614876565b92915050565b600081359050612f9a8161488d565b92915050565b600081359050612faf816148a4565b92915050565b600081359050612fc4816148bb565b92915050565b600081519050612fd9816148bb565b92915050565b600082601f830112612ff057600080fd5b8135613000848260208601612efa565b91505092915050565b600082601f83011261301a57600080fd5b813561302a848260208601612f38565b91505092915050565b600081359050613042816148d2565b92915050565b600081359050613057816148e9565b92915050565b60006020828403121561306f57600080fd5b600061307d84828501612f76565b91505092915050565b6000806040838503121561309957600080fd5b60006130a785828601612f76565b92505060206130b885828601612f76565b9150509250929050565b6000806000606084860312156130d757600080fd5b60006130e586828701612f76565b93505060206130f686828701612f76565b925050604061310786828701613033565b9150509250925092565b6000806000806080858703121561312757600080fd5b600061313587828801612f76565b945050602061314687828801612f76565b935050604061315787828801613033565b925050606085013567ffffffffffffffff81111561317457600080fd5b61318087828801612fdf565b91505092959194509250565b6000806040838503121561319f57600080fd5b60006131ad85828601612f76565b92505060206131be85828601612f8b565b9150509250929050565b600080604083850312156131db57600080fd5b60006131e985828601612f76565b92505060206131fa85828601613033565b9150509250929050565b60006020828403121561321657600080fd5b600061322484828501612fb5565b91505092915050565b60006020828403121561323f57600080fd5b600061324d84828501612fca565b91505092915050565b60006020828403121561326857600080fd5b600082013567ffffffffffffffff81111561328257600080fd5b61328e84828501613009565b91505092915050565b6000602082840312156132a957600080fd5b60006132b784828501613033565b91505092915050565b600080600080608085870312156132d657600080fd5b60006132e487828801613033565b94505060206132f587828801613048565b935050604061330687828801612fa0565b925050606061331787828801612fa0565b91505092959194509250565b61332c81613f0e565b82525050565b61334361333e82613f0e565b614087565b82525050565b61335281613f20565b82525050565b61336181613f2c565b82525050565b61337861337382613f2c565b614099565b82525050565b600061338982613dab565b6133938185613dc1565b93506133a3818560208601613fa8565b6133ac816141a2565b840191505092915050565b60006133c282613dab565b6133cc8185613dd2565b93506133dc818560208601613fa8565b80840191505092915050565b60006133f382613db6565b6133fd8185613ddd565b935061340d818560208601613fa8565b613416816141a2565b840191505092915050565b600061342c82613db6565b6134368185613dee565b9350613446818560208601613fa8565b80840191505092915050565b600061345f602483613ddd565b915061346a826141c0565b604082019050919050565b6000613482602b83613ddd565b915061348d8261420f565b604082019050919050565b60006134a5603283613ddd565b91506134b08261425e565b604082019050919050565b60006134c8601c83613ddd565b91506134d3826142ad565b602082019050919050565b60006134eb602683613ddd565b91506134f6826142d6565b604082019050919050565b600061350e602583613ddd565b915061351982614325565b604082019050919050565b6000613531601c83613ddd565b915061353c82614374565b602082019050919050565b6000613554602483613ddd565b915061355f8261439d565b604082019050919050565b6000613577601983613ddd565b9150613582826143ec565b602082019050919050565b600061359a602c83613ddd565b91506135a582614415565b604082019050919050565b60006135bd602283613ddd565b91506135c882614464565b604082019050919050565b60006135e0603883613ddd565b91506135eb826144b3565b604082019050919050565b6000613603601b83613ddd565b915061360e82614502565b602082019050919050565b6000613626602a83613ddd565b91506136318261452b565b604082019050919050565b6000613649602983613ddd565b91506136548261457a565b604082019050919050565b600061366c602083613ddd565b9150613677826145c9565b602082019050919050565b600061368f601183613ddd565b915061369a826145f2565b602082019050919050565b60006136b2602c83613ddd565b91506136bd8261461b565b604082019050919050565b60006136d5600c83613ddd565b91506136e08261466a565b602082019050919050565b60006136f8602083613ddd565b915061370382614693565b602082019050919050565b600061371b602f83613ddd565b9150613726826146bc565b604082019050919050565b600061373e602183613ddd565b91506137498261470b565b604082019050919050565b6000613761601583613ddd565b915061376c8261475a565b602082019050919050565b6000613784600d83613ddd565b915061378f82614783565b602082019050919050565b60006137a7600083613dd2565b91506137b2826147ac565b600082019050919050565b60006137ca603183613ddd565b91506137d5826147af565b604082019050919050565b60006137ed602c83613ddd565b91506137f8826147fe565b604082019050919050565b6000613810601883613ddd565b915061381b8261484d565b602082019050919050565b61382f81613f82565b82525050565b61383e81613f8c565b82525050565b60006138508284613332565b60148201915081905092915050565b600061386b82856133b7565b91506138778284613367565b6020820191508190509392505050565b60006138938285613421565b915061389f8284613421565b91508190509392505050565b60006138b68261379a565b9150819050919050565b60006020820190506138d56000830184613323565b92915050565b60006080820190506138f06000830187613323565b6138fd6020830186613323565b61390a6040830185613826565b818103606083015261391c818461337e565b905095945050505050565b600060208201905061393c6000830184613349565b92915050565b60006080820190506139576000830187613358565b6139646020830186613835565b6139716040830185613358565b61397e6060830184613358565b95945050505050565b600060208201905081810360008301526139a181846133e8565b905092915050565b600060208201905081810360008301526139c281613452565b9050919050565b600060208201905081810360008301526139e281613475565b9050919050565b60006020820190508181036000830152613a0281613498565b9050919050565b60006020820190508181036000830152613a22816134bb565b9050919050565b60006020820190508181036000830152613a42816134de565b9050919050565b60006020820190508181036000830152613a6281613501565b9050919050565b60006020820190508181036000830152613a8281613524565b9050919050565b60006020820190508181036000830152613aa281613547565b9050919050565b60006020820190508181036000830152613ac28161356a565b9050919050565b60006020820190508181036000830152613ae28161358d565b9050919050565b60006020820190508181036000830152613b02816135b0565b9050919050565b60006020820190508181036000830152613b22816135d3565b9050919050565b60006020820190508181036000830152613b42816135f6565b9050919050565b60006020820190508181036000830152613b6281613619565b9050919050565b60006020820190508181036000830152613b828161363c565b9050919050565b60006020820190508181036000830152613ba28161365f565b9050919050565b60006020820190508181036000830152613bc281613682565b9050919050565b60006020820190508181036000830152613be2816136a5565b9050919050565b60006020820190508181036000830152613c02816136c8565b9050919050565b60006020820190508181036000830152613c22816136eb565b9050919050565b60006020820190508181036000830152613c428161370e565b9050919050565b60006020820190508181036000830152613c6281613731565b9050919050565b60006020820190508181036000830152613c8281613754565b9050919050565b60006020820190508181036000830152613ca281613777565b9050919050565b60006020820190508181036000830152613cc2816137bd565b9050919050565b60006020820190508181036000830152613ce2816137e0565b9050919050565b60006020820190508181036000830152613d0281613803565b9050919050565b6000602082019050613d1e6000830184613826565b92915050565b6000613d2e613d3f565b9050613d3a828261400d565b919050565b6000604051905090565b600067ffffffffffffffff821115613d6457613d63614173565b5b613d6d826141a2565b9050602081019050919050565b600067ffffffffffffffff821115613d9557613d94614173565b5b613d9e826141a2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0482613f82565b9150613e0f83613f82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4457613e436140e6565b5b828201905092915050565b6000613e5a82613f82565b9150613e6583613f82565b925082613e7557613e74614115565b5b828204905092915050565b6000613e8b82613f82565b9150613e9683613f82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ecf57613ece6140e6565b5b828202905092915050565b6000613ee582613f82565b9150613ef083613f82565b925082821015613f0357613f026140e6565b5b828203905092915050565b6000613f1982613f62565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fc6578082015181840152602081019050613fab565b83811115613fd5576000848401525b50505050565b60006002820490506001821680613ff357607f821691505b6020821081141561400757614006614144565b5b50919050565b614016826141a2565b810181811067ffffffffffffffff8211171561403557614034614173565b5b80604052505050565b600061404982613f82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561407c5761407b6140e6565b5b600182019050919050565b6000614092826140a3565b9050919050565b6000819050919050565b60006140ae826141b3565b9050919050565b60006140c082613f82565b91506140cb83613f82565b9250826140db576140da614115565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60008201527f6e6c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4120757365722063616e206f6e6c79206d696e742033204e4654732100000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f556e61626c6520746f2076657269667920736572766572207369676e6174757260008201527f6521000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f56616c7565206f662066756e6473206e6f7420636f7272656374210000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f20746f6b656e494473206c65667421000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265206c6566740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f6e6f206d6f7265206d696e747300000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b61487f81613f0e565b811461488a57600080fd5b50565b61489681613f20565b81146148a157600080fd5b50565b6148ad81613f2c565b81146148b857600080fd5b50565b6148c481613f36565b81146148cf57600080fd5b50565b6148db81613f82565b81146148e657600080fd5b50565b6148f281613f8c565b81146148fd57600080fd5b5056fea2646970667358221220b3a6d9df7ae8cc49a5c5fa33a529ec3db117d16f1111e6d6a297aaf37e13427d64736f6c6343000804003368747470733a2f2f72706c616e65742d706c616365686f6c6465722e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610698578063d5abeb01146106d5578063e985e9c514610700578063f2fde38b1461073d576101e3565b8063a22cb465146105ff578063a897367b14610628578063aeffe13414610644578063b88d4fde1461066f576101e3565b80637d8afe04116100d15780637d8afe04146105555780638da5cb5b1461058057806395d89b41146105ab57806399755624146105d6576101e3565b80636352211e1461049957806370a08231146104d6578063715018a6146105135780637286c5d51461052a576101e3565b80633ba523c71161017a57806355f804b31161014957806355f804b3146103fe57806358891a37146104275780635b2a55e4146104435780636327c7741461046e576101e3565b80633ba523c7146103635780633ccfd60b1461038e57806342842e0e146103985780634f6ccce7146103c1576101e3565b806310aec4a6116101b657806310aec4a6146102b657806318160ddd146102d257806323b872dd146102fd5780632f745c5914610326576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613204565b610766565b60405161021c9190613927565b60405180910390f35b34801561023157600080fd5b5061023a6107e0565b6040516102479190613987565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613297565b610872565b60405161028491906138c0565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906131c8565b6108f7565b005b6102d060048036038101906102cb91906132c0565b610a0f565b005b3480156102de57600080fd5b506102e7610be5565b6040516102f49190613d09565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906130c2565b610bf2565b005b34801561033257600080fd5b5061034d600480360381019061034891906131c8565b610c52565b60405161035a9190613d09565b60405180910390f35b34801561036f57600080fd5b50610378610cf7565b6040516103859190613d09565b60405180910390f35b610396610d03565b005b3480156103a457600080fd5b506103bf60048036038101906103ba91906130c2565b610e42565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613297565b610e62565b6040516103f59190613d09565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613256565b610ef9565b005b610441600480360381019061043c91906131c8565b610f8f565b005b34801561044f57600080fd5b506104586111b3565b60405161046591906138c0565b60405180910390f35b34801561047a57600080fd5b506104836111d9565b6040516104909190613d09565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613297565b6111df565b6040516104cd91906138c0565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f8919061305d565b611291565b60405161050a9190613d09565b60405180910390f35b34801561051f57600080fd5b50610528611349565b005b34801561053657600080fd5b5061053f6113d1565b60405161054c91906138c0565b60405180910390f35b34801561056157600080fd5b5061056a6113e9565b6040516105779190613d09565b60405180910390f35b34801561058c57600080fd5b506105956113ee565b6040516105a291906138c0565b60405180910390f35b3480156105b757600080fd5b506105c0611418565b6040516105cd9190613987565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f8919061305d565b6114aa565b005b34801561060b57600080fd5b506106266004803603810190610621919061318c565b61156a565b005b610642600480360381019061063d9190613297565b611580565b005b34801561065057600080fd5b506106596116fb565b6040516106669190613d09565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190613111565b611701565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613297565b611763565b6040516106cc9190613987565b60405180910390f35b3480156106e157600080fd5b506106ea61180a565b6040516106f79190613d09565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613086565b611810565b6040516107349190613927565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f919061305d565b6118a4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d957506107d8826119c4565b5b9050919050565b6060600080546107ef90613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613fdb565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611aa6565b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390613bc9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610902826111df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90613c49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610992611b12565b73ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0816109bb611b12565b611810565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790613b09565b60405180910390fd5b610a0a8383611b1a565b505050565b836122b8600b5410610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613ba9565b60405180910390fd5b6003610a6133611291565b11158015610a70575060038111155b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613a09565b60405180910390fd5b8067011c37937e080000610ac39190613e80565b341015610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90613b29565b60405180910390fd5b610b10848484611bd3565b610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613ae9565b60405180910390fd5b60005b85811015610b9157600b6000815480929190610b6d9061403e565b9190505550610b7e33600b54611d5f565b8080610b899061403e565b915050610b52565b506003610b9d33611291565b1115610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a09565b60405180910390fd5b5050505050565b6000600880549050905090565b610c03610bfd611b12565b82611d7d565b610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990613ca9565b60405180910390fd5b610c4d838383611e5b565b505050565b6000610c5d83611291565b8210610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c95906139c9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b67011c37937e08000081565b610d0b611b12565b73ffffffffffffffffffffffffffffffffffffffff16610d296113ee565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613c09565b60405180910390fd5b6000734aae0981ec489ee1710c6cb1f6b203ab6e02075473ffffffffffffffffffffffffffffffffffffffff1647604051610db9906138ab565b60006040518083038185875af1925050503d8060008114610df6576040519150601f19603f3d011682016040523d82523d6000602084013e610dfb565b606091505b5050905080610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613c69565b60405180910390fd5b50565b610e5d83838360405180602001604052806000815250611701565b505050565b6000610e6c610be5565b8210610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490613cc9565b60405180910390fd5b60088281548110610ee7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f01611b12565b73ffffffffffffffffffffffffffffffffffffffff16610f1f6113ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613c09565b60405180910390fd5b80600c9080519060200190610f8b929190612e57565b5050565b348167011c37937e080000610fa49190613e80565b1015610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90613ce9565b60405180910390fd5b6122b881600b54610ff69190613df9565b1115611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90613be9565b60405180910390fd5b600361104283611291565b11158015611051575060038111155b611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790613a09565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611117906139a9565b60405180910390fd5b60005b8181101561116257600b600081548092919061113e9061403e565b919050555061114f83600b54611d5f565b808061115a9061403e565b915050611123565b50600361116e83611291565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613a09565b60405180910390fd5b5050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90613b69565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613b49565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611351611b12565b73ffffffffffffffffffffffffffffffffffffffff1661136f6113ee565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613c09565b60405180910390fd5b6113cf60006120c2565b565b734aae0981ec489ee1710c6cb1f6b203ab6e02075481565b60c981565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461142790613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461145390613fdb565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b5050505050905090565b6114b2611b12565b73ffffffffffffffffffffffffffffffffffffffff166114d06113ee565b73ffffffffffffffffffffffffffffffffffffffff1614611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90613c09565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61157c611575611b12565b8383612188565b5050565b611588611b12565b73ffffffffffffffffffffffffffffffffffffffff166115a66113ee565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613c09565b60405180910390fd5b80600d600082825461160e9190613df9565b9250508190555060c9600d54111561165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613c89565b60405180910390fd5b60005b818110156116b157600b60008154809291906116799061403e565b919050555061169e734aae0981ec489ee1710c6cb1f6b203ab6e020754600b54611d5f565b80806116a99061403e565b91505061165e565b506122b8600b54106116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613ba9565b60405180910390fd5b50565b600b5481565b61171261170c611b12565b83611d7d565b611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613ca9565b60405180910390fd5b61175d848484846122f5565b50505050565b606061176e82611aa6565b6117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613c29565b60405180910390fd5b60006117b7612351565b905060008151116117d75760405180602001604052806000815250611802565b806117e1846123e3565b6040516020016117f2929190613887565b6040516020818303038152906040525b915050919050565b6122b881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118ac611b12565b73ffffffffffffffffffffffffffffffffffffffff166118ca6113ee565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613a29565b60405180910390fd5b611999816120c2565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a9f5750611a9e82612590565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b8d836111df565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611c095760009050611d58565b601b8460ff1614158015611c215750601c8460ff1614155b15611c2f5760009050611d58565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008133604051602001611c7d9190613844565b60405160208183030381529060405280519060200120604051602001611ca492919061385f565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051611ce19493929190613942565b6020604051602081039080840390855afa158015611d03573d6000803e3d6000fd5b5050506020604051035190507391e5a1f35f883f86dac54f5e1f170f142f58ab2173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161493505050505b9392505050565b611d798282604051806020016040528060008152506125fa565b5050565b6000611d8882611aa6565b611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90613ac9565b60405180910390fd5b6000611dd2836111df565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e145750611e138185611810565b5b80611e5257508373ffffffffffffffffffffffffffffffffffffffff16611e3a84610872565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e7b826111df565b73ffffffffffffffffffffffffffffffffffffffff1614611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613a49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613a89565b60405180910390fd5b611f4c838383612655565b611f57600082611b1a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa79190613eda565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffe9190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bd838383612769565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613aa9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e89190613927565b60405180910390a3505050565b612300848484611e5b565b61230c8484848461276e565b61234b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612342906139e9565b60405180910390fd5b50505050565b6060600c805461236090613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461238c90613fdb565b80156123d95780601f106123ae576101008083540402835291602001916123d9565b820191906000526020600020905b8154815290600101906020018083116123bc57829003601f168201915b5050505050905090565b6060600082141561242b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061258b565b600082905060005b6000821461245d5780806124469061403e565b915050600a826124569190613e4f565b9150612433565b60008167ffffffffffffffff81111561249f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124d15781602001600182028036833780820191505090505b5090505b60008514612584576001826124ea9190613eda565b9150600a856124f991906140b5565b60306125059190613df9565b60f81b818381518110612541577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561257d9190613e4f565b94506124d5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126048383612905565b612611600084848461276e565b612650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612647906139e9565b60405180910390fd5b505050565b6126608383836119bf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126a35761269e81612adf565b6126e2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126e1576126e08382612b28565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127255761272081612c95565b612764565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612763576127628282612dd8565b5b5b505050565b505050565b600061278f8473ffffffffffffffffffffffffffffffffffffffff1661199c565b156128f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b8611b12565b8786866040518563ffffffff1660e01b81526004016127da94939291906138db565b602060405180830381600087803b1580156127f457600080fd5b505af192505050801561282557506040513d601f19601f82011682018060405250810190612822919061322d565b60015b6128a8573d8060008114612855576040519150601f19603f3d011682016040523d82523d6000602084013e61285a565b606091505b506000815114156128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906139e9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c90613b89565b60405180910390fd5b61297e81611aa6565b156129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b590613a69565b60405180910390fd5b6129ca60008383612655565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1a9190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612adb60008383612769565b5050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b3584611291565b612b3f9190613eda565b9050600060076000848152602001908152602001600020549050818114612c24576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ca99190613eda565b9050600060096000848152602001908152602001600020549050600060088381548110612cff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612de383611291565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e6390613fdb565b90600052602060002090601f016020900481019282612e855760008555612ecc565b82601f10612e9e57805160ff1916838001178555612ecc565b82800160010185558215612ecc579182015b82811115612ecb578251825591602001919060010190612eb0565b5b509050612ed99190612edd565b5090565b5b80821115612ef6576000816000905550600101612ede565b5090565b6000612f0d612f0884613d49565b613d24565b905082815260208101848484011115612f2557600080fd5b612f30848285613f99565b509392505050565b6000612f4b612f4684613d7a565b613d24565b905082815260208101848484011115612f6357600080fd5b612f6e848285613f99565b509392505050565b600081359050612f8581614876565b92915050565b600081359050612f9a8161488d565b92915050565b600081359050612faf816148a4565b92915050565b600081359050612fc4816148bb565b92915050565b600081519050612fd9816148bb565b92915050565b600082601f830112612ff057600080fd5b8135613000848260208601612efa565b91505092915050565b600082601f83011261301a57600080fd5b813561302a848260208601612f38565b91505092915050565b600081359050613042816148d2565b92915050565b600081359050613057816148e9565b92915050565b60006020828403121561306f57600080fd5b600061307d84828501612f76565b91505092915050565b6000806040838503121561309957600080fd5b60006130a785828601612f76565b92505060206130b885828601612f76565b9150509250929050565b6000806000606084860312156130d757600080fd5b60006130e586828701612f76565b93505060206130f686828701612f76565b925050604061310786828701613033565b9150509250925092565b6000806000806080858703121561312757600080fd5b600061313587828801612f76565b945050602061314687828801612f76565b935050604061315787828801613033565b925050606085013567ffffffffffffffff81111561317457600080fd5b61318087828801612fdf565b91505092959194509250565b6000806040838503121561319f57600080fd5b60006131ad85828601612f76565b92505060206131be85828601612f8b565b9150509250929050565b600080604083850312156131db57600080fd5b60006131e985828601612f76565b92505060206131fa85828601613033565b9150509250929050565b60006020828403121561321657600080fd5b600061322484828501612fb5565b91505092915050565b60006020828403121561323f57600080fd5b600061324d84828501612fca565b91505092915050565b60006020828403121561326857600080fd5b600082013567ffffffffffffffff81111561328257600080fd5b61328e84828501613009565b91505092915050565b6000602082840312156132a957600080fd5b60006132b784828501613033565b91505092915050565b600080600080608085870312156132d657600080fd5b60006132e487828801613033565b94505060206132f587828801613048565b935050604061330687828801612fa0565b925050606061331787828801612fa0565b91505092959194509250565b61332c81613f0e565b82525050565b61334361333e82613f0e565b614087565b82525050565b61335281613f20565b82525050565b61336181613f2c565b82525050565b61337861337382613f2c565b614099565b82525050565b600061338982613dab565b6133938185613dc1565b93506133a3818560208601613fa8565b6133ac816141a2565b840191505092915050565b60006133c282613dab565b6133cc8185613dd2565b93506133dc818560208601613fa8565b80840191505092915050565b60006133f382613db6565b6133fd8185613ddd565b935061340d818560208601613fa8565b613416816141a2565b840191505092915050565b600061342c82613db6565b6134368185613dee565b9350613446818560208601613fa8565b80840191505092915050565b600061345f602483613ddd565b915061346a826141c0565b604082019050919050565b6000613482602b83613ddd565b915061348d8261420f565b604082019050919050565b60006134a5603283613ddd565b91506134b08261425e565b604082019050919050565b60006134c8601c83613ddd565b91506134d3826142ad565b602082019050919050565b60006134eb602683613ddd565b91506134f6826142d6565b604082019050919050565b600061350e602583613ddd565b915061351982614325565b604082019050919050565b6000613531601c83613ddd565b915061353c82614374565b602082019050919050565b6000613554602483613ddd565b915061355f8261439d565b604082019050919050565b6000613577601983613ddd565b9150613582826143ec565b602082019050919050565b600061359a602c83613ddd565b91506135a582614415565b604082019050919050565b60006135bd602283613ddd565b91506135c882614464565b604082019050919050565b60006135e0603883613ddd565b91506135eb826144b3565b604082019050919050565b6000613603601b83613ddd565b915061360e82614502565b602082019050919050565b6000613626602a83613ddd565b91506136318261452b565b604082019050919050565b6000613649602983613ddd565b91506136548261457a565b604082019050919050565b600061366c602083613ddd565b9150613677826145c9565b602082019050919050565b600061368f601183613ddd565b915061369a826145f2565b602082019050919050565b60006136b2602c83613ddd565b91506136bd8261461b565b604082019050919050565b60006136d5600c83613ddd565b91506136e08261466a565b602082019050919050565b60006136f8602083613ddd565b915061370382614693565b602082019050919050565b600061371b602f83613ddd565b9150613726826146bc565b604082019050919050565b600061373e602183613ddd565b91506137498261470b565b604082019050919050565b6000613761601583613ddd565b915061376c8261475a565b602082019050919050565b6000613784600d83613ddd565b915061378f82614783565b602082019050919050565b60006137a7600083613dd2565b91506137b2826147ac565b600082019050919050565b60006137ca603183613ddd565b91506137d5826147af565b604082019050919050565b60006137ed602c83613ddd565b91506137f8826147fe565b604082019050919050565b6000613810601883613ddd565b915061381b8261484d565b602082019050919050565b61382f81613f82565b82525050565b61383e81613f8c565b82525050565b60006138508284613332565b60148201915081905092915050565b600061386b82856133b7565b91506138778284613367565b6020820191508190509392505050565b60006138938285613421565b915061389f8284613421565b91508190509392505050565b60006138b68261379a565b9150819050919050565b60006020820190506138d56000830184613323565b92915050565b60006080820190506138f06000830187613323565b6138fd6020830186613323565b61390a6040830185613826565b818103606083015261391c818461337e565b905095945050505050565b600060208201905061393c6000830184613349565b92915050565b60006080820190506139576000830187613358565b6139646020830186613835565b6139716040830185613358565b61397e6060830184613358565b95945050505050565b600060208201905081810360008301526139a181846133e8565b905092915050565b600060208201905081810360008301526139c281613452565b9050919050565b600060208201905081810360008301526139e281613475565b9050919050565b60006020820190508181036000830152613a0281613498565b9050919050565b60006020820190508181036000830152613a22816134bb565b9050919050565b60006020820190508181036000830152613a42816134de565b9050919050565b60006020820190508181036000830152613a6281613501565b9050919050565b60006020820190508181036000830152613a8281613524565b9050919050565b60006020820190508181036000830152613aa281613547565b9050919050565b60006020820190508181036000830152613ac28161356a565b9050919050565b60006020820190508181036000830152613ae28161358d565b9050919050565b60006020820190508181036000830152613b02816135b0565b9050919050565b60006020820190508181036000830152613b22816135d3565b9050919050565b60006020820190508181036000830152613b42816135f6565b9050919050565b60006020820190508181036000830152613b6281613619565b9050919050565b60006020820190508181036000830152613b828161363c565b9050919050565b60006020820190508181036000830152613ba28161365f565b9050919050565b60006020820190508181036000830152613bc281613682565b9050919050565b60006020820190508181036000830152613be2816136a5565b9050919050565b60006020820190508181036000830152613c02816136c8565b9050919050565b60006020820190508181036000830152613c22816136eb565b9050919050565b60006020820190508181036000830152613c428161370e565b9050919050565b60006020820190508181036000830152613c6281613731565b9050919050565b60006020820190508181036000830152613c8281613754565b9050919050565b60006020820190508181036000830152613ca281613777565b9050919050565b60006020820190508181036000830152613cc2816137bd565b9050919050565b60006020820190508181036000830152613ce2816137e0565b9050919050565b60006020820190508181036000830152613d0281613803565b9050919050565b6000602082019050613d1e6000830184613826565b92915050565b6000613d2e613d3f565b9050613d3a828261400d565b919050565b6000604051905090565b600067ffffffffffffffff821115613d6457613d63614173565b5b613d6d826141a2565b9050602081019050919050565b600067ffffffffffffffff821115613d9557613d94614173565b5b613d9e826141a2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0482613f82565b9150613e0f83613f82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4457613e436140e6565b5b828201905092915050565b6000613e5a82613f82565b9150613e6583613f82565b925082613e7557613e74614115565b5b828204905092915050565b6000613e8b82613f82565b9150613e9683613f82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ecf57613ece6140e6565b5b828202905092915050565b6000613ee582613f82565b9150613ef083613f82565b925082821015613f0357613f026140e6565b5b828203905092915050565b6000613f1982613f62565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fc6578082015181840152602081019050613fab565b83811115613fd5576000848401525b50505050565b60006002820490506001821680613ff357607f821691505b6020821081141561400757614006614144565b5b50919050565b614016826141a2565b810181811067ffffffffffffffff8211171561403557614034614173565b5b80604052505050565b600061404982613f82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561407c5761407b6140e6565b5b600182019050919050565b6000614092826140a3565b9050919050565b6000819050919050565b60006140ae826141b3565b9050919050565b60006140c082613f82565b91506140cb83613f82565b9250826140db576140da614115565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60008201527f6e6c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4120757365722063616e206f6e6c79206d696e742033204e4654732100000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f556e61626c6520746f2076657269667920736572766572207369676e6174757260008201527f6521000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f56616c7565206f662066756e6473206e6f7420636f7272656374210000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f20746f6b656e494473206c65667421000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265206c6566740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f6e6f206d6f7265206d696e747300000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b61487f81613f0e565b811461488a57600080fd5b50565b61489681613f20565b81146148a157600080fd5b50565b6148ad81613f2c565b81146148b857600080fd5b50565b6148c481613f36565b81146148cf57600080fd5b50565b6148db81613f82565b81146148e657600080fd5b50565b6148f281613f8c565b81146148fd57600080fd5b5056fea2646970667358221220b3a6d9df7ae8cc49a5c5fa33a529ec3db117d16f1111e6d6a297aaf37e13427d64736f6c63430008040033

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.