ETH Price: $3,630.82 (+4.90%)
 

Overview

Max Total Supply

3,333 FKZ

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*💚️💚️🐸️🐸️💚️💚️.eth
Balance
10 FKZ
0x17c09406ca6e612893a104e4dd9b1bc55d4c1120
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:
FreakZoo

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : FreakZoo.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

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

contract FreakZoo is ERC721, Ownable { 
    
    string internal baseTokenURI = 'https://freakzoo.io/api/asset/';

    uint public price = 0.07 ether;
    uint public totalSupply = 3333;
    
    uint public nonce = 0;

    bool public mintOpen = false;
    bool public presaleOpen = true;
    
    mapping(address => uint[]) private ownership;
    mapping(address => bool) public whitelist;

    IERC20 public bnn;
    uint public bSupply = 333;
    uint public bnnNonce = 0;

    uint public bnnPrice = 6 ether;
    
    event Mint(address owner, uint qty);
    event Withdraw(uint amount);

    string private _phrase;
    
    constructor() ERC721("Freak Zoo", "FKZ") {

    }

    // setters

    function toggleMint() external onlyOwner {
        mintOpen = !mintOpen;
    }

    function togglePresale() external onlyOwner {
        presaleOpen = !presaleOpen;
    }

    function setPhrase(string calldata phrase) external onlyOwner {
        _phrase = phrase;
    }
    
    function addToPresale(address[] calldata whitelist_) external onlyOwner {
        for(uint i=0; i<whitelist_.length; i++){
            whitelist[whitelist_[i]] = true;
        }
    }
    
    function removeFromPresale(address[] calldata whitelist_) external onlyOwner {
        for(uint i=0; i<whitelist_.length; i++){
            whitelist[whitelist_[i]] = false;
        }
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }
    
    function getTokenIdsByOwner(address _owner) public view returns(uint[] memory) {
        return ownership[_owner];
    }

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

    // mint

    function giveaway(address to, uint qty) external onlyOwner {
        _mintTo(to, qty);
    }

    function buyPresale(uint qty) external payable {
        require(presaleOpen, "presale closed");
        require(whitelist[_msgSender()], "not in whitelist");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        _buy(qty);
    }
    
    function buy(uint qty, string calldata phrase) external payable {
        require(mintOpen, "mint closed");
        require(msg.value >= price * qty, "PAYMENT: invalid value");
        require(keccak256(bytes(phrase)) == keccak256(bytes(_phrase)), "mint error");
        _buy(qty);
    }

    function _buy(uint qty) internal {
        require(qty > 0, "TRANSACTION: qty of mints not alowed");
        _mintTo(_msgSender(), qty);
    }

    function _mintTo(address to, uint qty) internal {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            nonce++;
            _safeMint(to, nonce);
        }
    }

    // banana

    function setBnnAddress(address newAddress) public onlyOwner{
        bnn = IERC20(newAddress);
    }

    function setBnnPrice(uint newPrice) external onlyOwner {
        bnnPrice = newPrice;
    }

    function setBSupply(uint newSupply) external onlyOwner {
        bSupply = newSupply;
    }

    function buyUsingBnn(uint qty) external {
        require(mintOpen || presaleOpen, "closed");
        require(bnn.balanceOf(_msgSender()) >= qty * bnnPrice, "insufficient funds");
        require(bnn.allowance(_msgSender(), address(this)) >= qty * bnnPrice, "not allowed");
        require((qty + bnnNonce) <= bSupply, "sold out");
        bnnNonce += qty;
        bnn.transferFrom(_msgSender(), 0x3E4c18eb3a9115510d4Dbf0c9Cce015C6cacEC51, qty * bnnPrice);
        _mintTo(_msgSender(), qty);
    }

    // team
    
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(0xEd8fe1BB60036855895812e627B82161f4C5529e).transfer((balance * 35) / 100);
        payable(0xf99f2DF8fB2b8B873cFbD316296bA82ff55E03db).transfer((balance * 35) / 100);
        payable(0x3E4c18eb3a9115510d4Dbf0c9Cce015C6cacEC51).transfer((balance * 10) / 100);
        payable(0x0e1297F9014D0456492311884A0145FF0568808D).transfer((balance * 10) / 100);
        payable(0xdFeE4a9d467170a99D3dc34DFB6C041c4c803732).transfer(address(this).balance);
    }

    // ownership control
    
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        if(from != address(0)){
            uint[] memory tokens = ownership[from];
            for(uint i=0;i<tokens.length;i++){
                if(tokens[i] == tokenId){
                    ownership[from][i] = 999999999;
                    break;
                }
            }
        }
        if(to != address(0)){
            ownership[to].push(tokenId);
        }
    }
    
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 11 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address[]","name":"whitelist_","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bnn","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bnnNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bnnPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"string","name":"phrase","type":"string"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyUsingBnn","outputs":[],"stateMutability":"nonpayable","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"}],"name":"getTokenIdsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelist_","type":"address[]"}],"name":"removeFromPresale","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"newSupply","type":"uint256"}],"name":"setBSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setBnnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setBnnPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"phrase","type":"string"}],"name":"setPhrase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601e81526020017f68747470733a2f2f667265616b7a6f6f2e696f2f6170692f61737365742f0000815250600790805190602001906200005192919062000257565b5066f8b0a10e470000600855610d056009556000600a556000600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff02191690831515021790555061014d600f5560006010556753444835ec580000601155348015620000c257600080fd5b506040518060400160405280600981526020017f467265616b205a6f6f00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464b5a000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014792919062000257565b5080600190805190602001906200016092919062000257565b50505062000183620001776200018960201b60201c565b6200019160201b60201c565b6200036c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002659062000307565b90600052602060002090601f016020900481019282620002895760008555620002d5565b82601f10620002a457805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d4578251825591602001919060010190620002b7565b5b509050620002e49190620002e8565b5090565b5b8082111562000303576000816000905550600101620002e9565b5090565b600060028204905060018216806200032057607f821691505b602082108114156200033757620003366200033d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615159806200037c6000396000f3fe60806040526004361061025c5760003560e01c80638da5cb5b11610144578063b2ad9a4a116100b6578063d3dd5fe01161007a578063d3dd5fe01461089e578063d5fde6b8146108b5578063e4335cf2146108e0578063e985e9c51461090b578063f2fde38b14610948578063f7ea7a3d146109715761025c565b8063b2ad9a4a146107c8578063b7dc3b18146107f1578063b88d4fde1461080d578063bee6348a14610836578063c87b56dd146108615761025c565b80639b8362a8116101085780639b8362a8146106ce5780639c816955146106f7578063a035b1fe14610720578063a22cb4651461074b578063aef6ee1f14610774578063affed0e01461079d5761025c565b80638da5cb5b146105e957806391b7f5ed1461061457806392e7108d1461063d57806395d89b41146106665780639b19251a146106915761025c565b806334393743116101dd5780636352211e116101a15780636352211e146104c757806364db3627146105045780636970bb0a1461052f57806370a082311461056c578063715018a6146105a9578063810ff0b7146105c05761025c565b8063343937431461042b5780633ccfd60b146104425780633ffb94c61461045957806342842e0e1461048257806349c32217146104ab5761025c565b80630eef353d116102245780630eef353d1461035857806318160ddd1461038357806323b872dd146103ae57806324bbd049146103d757806330176e13146104025761025c565b806301ffc9a714610261578063050225ea1461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061395e565b61099a565b60405161029591906141b5565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906138a4565b610a7c565b005b3480156102d357600080fd5b506102dc610b06565b6040516102e991906141eb565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613a05565b610b98565b60405161032691906140cc565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906138a4565b610c1d565b005b34801561036457600080fd5b5061036d610d35565b60405161037a919061456d565b60405180910390f35b34801561038f57600080fd5b50610398610d3b565b6040516103a5919061456d565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061378e565b610d41565b005b3480156103e357600080fd5b506103ec610da1565b6040516103f991906141b5565b60405180910390f35b34801561040e57600080fd5b50610429600480360381019061042491906139b8565b610db4565b005b34801561043757600080fd5b50610440610e46565b005b34801561044e57600080fd5b50610457610eee565b005b34801561046557600080fd5b50610480600480360381019061047b9190613a05565b611199565b005b34801561048e57600080fd5b506104a960048036038101906104a4919061378e565b61121f565b005b6104c560048036038101906104c09190613a05565b61123f565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613a05565b61137c565b6040516104fb91906140cc565b60405180910390f35b34801561051057600080fd5b5061051961142e565b604051610526919061456d565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613721565b611434565b6040516105639190614193565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613721565b6114cb565b6040516105a0919061456d565b60405180910390f35b3480156105b557600080fd5b506105be611583565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906139b8565b61160b565b005b3480156105f557600080fd5b506105fe61169d565b60405161060b91906140cc565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613a05565b6116c7565b005b34801561064957600080fd5b50610664600480360381019061065f9190613721565b61174d565b005b34801561067257600080fd5b5061067b61180d565b60405161068891906141eb565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190613721565b61189f565b6040516106c591906141b5565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190613a05565b6118bf565b005b34801561070357600080fd5b5061071e600480360381019061071991906138e4565b611c82565b005b34801561072c57600080fd5b50610735611da3565b604051610742919061456d565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613864565b611da9565b005b34801561078057600080fd5b5061079b600480360381019061079691906138e4565b611f2a565b005b3480156107a957600080fd5b506107b261204b565b6040516107bf919061456d565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a05565b612051565b005b61080b60048036038101906108069190613a5f565b6120d7565b005b34801561081957600080fd5b50610834600480360381019061082f91906137e1565b6121f3565b005b34801561084257600080fd5b5061084b612255565b60405161085891906141b5565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613a05565b612268565b60405161089591906141eb565b60405180910390f35b3480156108aa57600080fd5b506108b361230f565b005b3480156108c157600080fd5b506108ca6123b7565b6040516108d7919061456d565b60405180910390f35b3480156108ec57600080fd5b506108f56123bd565b60405161090291906141d0565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d919061374e565b6123e3565b60405161093f91906141b5565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613721565b612477565b005b34801561097d57600080fd5b5061099860048036038101906109939190613a05565b61256f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a755750610a74826125f5565b5b9050919050565b610a8461265f565b73ffffffffffffffffffffffffffffffffffffffff16610aa261169d565b73ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef9061444d565b60405180910390fd5b610b028282612667565b5050565b606060008054610b1590614869565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4190614869565b8015610b8e5780601f10610b6357610100808354040283529160200191610b8e565b820191906000526020600020905b815481529060010190602001808311610b7157829003601f168201915b5050505050905090565b6000610ba382612700565b610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd99061442d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c288261137c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906144ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb861265f565b73ffffffffffffffffffffffffffffffffffffffff161480610ce75750610ce681610ce161265f565b6123e3565b5b610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906143ad565b60405180910390fd5b610d30838361276c565b505050565b60115481565b60095481565b610d52610d4c61265f565b82612825565b610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d889061450d565b60405180910390fd5b610d9c838383612903565b505050565b600b60009054906101000a900460ff1681565b610dbc61265f565b73ffffffffffffffffffffffffffffffffffffffff16610dda61169d565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e279061444d565b60405180910390fd5b818160079190610e419291906134cf565b505050565b610e4e61265f565b73ffffffffffffffffffffffffffffffffffffffff16610e6c61169d565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb99061444d565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610ef661265f565b73ffffffffffffffffffffffffffffffffffffffff16610f1461169d565b73ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061444d565b60405180910390fd5b600047905073ed8fe1bb60036855895812e627b82161f4c5529e73ffffffffffffffffffffffffffffffffffffffff166108fc6064602384610fac9190614701565b610fb691906146d0565b9081150290604051600060405180830381858888f19350505050158015610fe1573d6000803e3d6000fd5b5073f99f2df8fb2b8b873cfbd316296ba82ff55e03db73ffffffffffffffffffffffffffffffffffffffff166108fc606460238461101f9190614701565b61102991906146d0565b9081150290604051600060405180830381858888f19350505050158015611054573d6000803e3d6000fd5b50733e4c18eb3a9115510d4dbf0c9cce015c6cacec5173ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846110929190614701565b61109c91906146d0565b9081150290604051600060405180830381858888f193505050501580156110c7573d6000803e3d6000fd5b50730e1297f9014d0456492311884a0145ff0568808d73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846111059190614701565b61110f91906146d0565b9081150290604051600060405180830381858888f1935050505015801561113a573d6000803e3d6000fd5b5073dfee4a9d467170a99d3dc34dfb6c041c4c80373273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611195573d6000803e3d6000fd5b5050565b6111a161265f565b73ffffffffffffffffffffffffffffffffffffffff166111bf61169d565b73ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061444d565b60405180910390fd5b8060118190555050565b61123a838383604051806020016040528060008152506121f3565b505050565b600b60019054906101000a900460ff1661128e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112859061428d565b60405180910390fd5b600d600061129a61265f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611321576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113189061454d565b60405180910390fd5b8060085461132f9190614701565b3414611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906142cd565b60405180910390fd5b61137981612b5f565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906143ed565b60405180910390fd5b80915050919050565b60105481565b6060600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156114bf57602002820191906000526020600020905b8154815260200190600101908083116114ab575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906143cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158b61265f565b73ffffffffffffffffffffffffffffffffffffffff166115a961169d565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f69061444d565b60405180910390fd5b6116096000612bb6565b565b61161361265f565b73ffffffffffffffffffffffffffffffffffffffff1661163161169d565b73ffffffffffffffffffffffffffffffffffffffff1614611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e9061444d565b60405180910390fd5b8181601291906116989291906134cf565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116cf61265f565b73ffffffffffffffffffffffffffffffffffffffff166116ed61169d565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a9061444d565b60405180910390fd5b8060088190555050565b61175561265f565b73ffffffffffffffffffffffffffffffffffffffff1661177361169d565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c09061444d565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606001805461181c90614869565b80601f016020809104026020016040519081016040528092919081815260200182805461184890614869565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900460ff16806118e65750600b60019054906101000a900460ff165b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c9061438d565b60405180910390fd5b601154816119339190614701565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a0823161197961265f565b6040518263ffffffff1660e01b815260040161199591906140cc565b60206040518083038186803b1580156119ad57600080fd5b505afa1580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e59190613a32565b1015611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906144ed565b60405180910390fd5b60115481611a349190614701565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e611a7a61265f565b306040518363ffffffff1660e01b8152600401611a989291906140e7565b60206040518083038186803b158015611ab057600080fd5b505afa158015611ac4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae89190613a32565b1015611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b209061436d565b60405180910390fd5b600f5460105482611b3a919061467a565b1115611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b729061434d565b60405180910390fd5b8060106000828254611b8d919061467a565b92505081905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd611bda61265f565b733e4c18eb3a9115510d4dbf0c9cce015c6cacec5160115485611bfd9190614701565b6040518463ffffffff1660e01b8152600401611c1b93929190614110565b602060405180830381600087803b158015611c3557600080fd5b505af1158015611c49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6d9190613931565b50611c7f611c7961265f565b82612667565b50565b611c8a61265f565b73ffffffffffffffffffffffffffffffffffffffff16611ca861169d565b73ffffffffffffffffffffffffffffffffffffffff1614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf59061444d565b60405180910390fd5b60005b82829050811015611d9e576000600d6000858585818110611d2557611d246149d3565b5b9050602002016020810190611d3a9190613721565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d96906148cc565b915050611d01565b505050565b60085481565b611db161265f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e169061430d565b60405180910390fd5b8060056000611e2c61265f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ed961265f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f1e91906141b5565b60405180910390a35050565b611f3261265f565b73ffffffffffffffffffffffffffffffffffffffff16611f5061169d565b73ffffffffffffffffffffffffffffffffffffffff1614611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d9061444d565b60405180910390fd5b60005b82829050811015612046576001600d6000858585818110611fcd57611fcc6149d3565b5b9050602002016020810190611fe29190613721565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061203e906148cc565b915050611fa9565b505050565b600a5481565b61205961265f565b73ffffffffffffffffffffffffffffffffffffffff1661207761169d565b73ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c49061444d565b60405180910390fd5b80600f8190555050565b600b60009054906101000a900460ff16612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d9061420d565b60405180910390fd5b826008546121349190614701565b341015612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d906142cd565b60405180910390fd5b60126040516121859190614091565b6040518091039020828260405161219d929190614078565b6040518091039020146121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc9061452d565b60405180910390fd5b6121ee83612b5f565b505050565b6122046121fe61265f565b83612825565b612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a9061450d565b60405180910390fd5b61224f84848484612c7c565b50505050565b600b60019054906101000a900460ff1681565b606061227382612700565b6122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061448d565b60405180910390fd5b60006122bc612cd8565b905060008151116122dc5760405180602001604052806000815250612307565b806122e684612d6a565b6040516020016122f79291906140a8565b6040516020818303038152906040525b915050919050565b61231761265f565b73ffffffffffffffffffffffffffffffffffffffff1661233561169d565b73ffffffffffffffffffffffffffffffffffffffff161461238b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123829061444d565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600f5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247f61265f565b73ffffffffffffffffffffffffffffffffffffffff1661249d61169d565b73ffffffffffffffffffffffffffffffffffffffff16146124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea9061444d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a9061424d565b60405180910390fd5b61256c81612bb6565b50565b61257761265f565b73ffffffffffffffffffffffffffffffffffffffff1661259561169d565b73ffffffffffffffffffffffffffffffffffffffff16146125eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e29061444d565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600954600a5482612678919061467a565b11156126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b0906144cd565b60405180910390fd5b60005b818110156126fb57600a60008154809291906126d7906148cc565b91905055506126e883600a54612ecb565b80806126f3906148cc565b9150506126bc565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127df8361137c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061283082612700565b61286f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128669061432d565b60405180910390fd5b600061287a8361137c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128e957508373ffffffffffffffffffffffffffffffffffffffff166128d184610b98565b73ffffffffffffffffffffffffffffffffffffffff16145b806128fa57506128f981856123e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129238261137c565b73ffffffffffffffffffffffffffffffffffffffff1614612979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129709061446d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e0906142ed565b60405180910390fd5b6129f4838383612ee9565b6129ff60008261276c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4f919061475b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa6919061467a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008111612ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b99906142ad565b60405180910390fd5b612bb3612bad61265f565b82612667565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c87848484612903565b612c93848484846130fc565b612cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc99061422d565b60405180910390fd5b50505050565b606060078054612ce790614869565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1390614869565b8015612d605780601f10612d3557610100808354040283529160200191612d60565b820191906000526020600020905b815481529060010190602001808311612d4357829003601f168201915b5050505050905090565b60606000821415612db2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ec6565b600082905060005b60008214612de4578080612dcd906148cc565b915050600a82612ddd91906146d0565b9150612dba565b60008167ffffffffffffffff811115612e0057612dff614a02565b5b6040519080825280601f01601f191660200182016040528015612e325781602001600182028036833780820191505090505b5090505b60008514612ebf57600182612e4b919061475b565b9150600a85612e5a9190614915565b6030612e66919061467a565b60f81b818381518110612e7c57612e7b6149d3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eb891906146d0565b9450612e36565b8093505050505b919050565b612ee5828260405180602001604052806000815250613293565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461305c576000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015612fa857602002820191906000526020600020905b815481526020019060010190808311612f94575b5050505050905060005b81518110156130595782828281518110612fcf57612fce6149d3565b5b6020026020010151141561304657633b9ac9ff600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110613033576130326149d3565b5b9060005260206000200181905550613059565b8080613051906148cc565b915050612fb2565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130f757600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600061311d8473ffffffffffffffffffffffffffffffffffffffff166132ee565b15613286578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314661265f565b8786866040518563ffffffff1660e01b81526004016131689493929190614147565b602060405180830381600087803b15801561318257600080fd5b505af19250505080156131b357506040513d601f19601f820116820180604052508101906131b0919061398b565b60015b613236573d80600081146131e3576040519150601f19603f3d011682016040523d82523d6000602084013e6131e8565b606091505b5060008151141561322e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132259061422d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061328b565b600190505b949350505050565b61329d8383613301565b6132aa60008484846130fc565b6132e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e09061422d565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133689061440d565b60405180910390fd5b61337a81612700565b156133ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b19061426d565b60405180910390fd5b6133c660008383612ee9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613416919061467a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546134db90614869565b90600052602060002090601f0160209004810192826134fd5760008555613544565b82601f1061351657803560ff1916838001178555613544565b82800160010185558215613544579182015b82811115613543578235825591602001919060010190613528565b5b5090506135519190613555565b5090565b5b8082111561356e576000816000905550600101613556565b5090565b6000613585613580846145ad565b614588565b9050828152602081018484840111156135a1576135a0614a40565b5b6135ac848285614827565b509392505050565b6000813590506135c3816150c7565b92915050565b60008083601f8401126135df576135de614a36565b5b8235905067ffffffffffffffff8111156135fc576135fb614a31565b5b60208301915083602082028301111561361857613617614a3b565b5b9250929050565b60008135905061362e816150de565b92915050565b600081519050613643816150de565b92915050565b600081359050613658816150f5565b92915050565b60008151905061366d816150f5565b92915050565b600082601f83011261368857613687614a36565b5b8135613698848260208601613572565b91505092915050565b60008083601f8401126136b7576136b6614a36565b5b8235905067ffffffffffffffff8111156136d4576136d3614a31565b5b6020830191508360018202830111156136f0576136ef614a3b565b5b9250929050565b6000813590506137068161510c565b92915050565b60008151905061371b8161510c565b92915050565b60006020828403121561373757613736614a4a565b5b6000613745848285016135b4565b91505092915050565b6000806040838503121561376557613764614a4a565b5b6000613773858286016135b4565b9250506020613784858286016135b4565b9150509250929050565b6000806000606084860312156137a7576137a6614a4a565b5b60006137b5868287016135b4565b93505060206137c6868287016135b4565b92505060406137d7868287016136f7565b9150509250925092565b600080600080608085870312156137fb576137fa614a4a565b5b6000613809878288016135b4565b945050602061381a878288016135b4565b935050604061382b878288016136f7565b925050606085013567ffffffffffffffff81111561384c5761384b614a45565b5b61385887828801613673565b91505092959194509250565b6000806040838503121561387b5761387a614a4a565b5b6000613889858286016135b4565b925050602061389a8582860161361f565b9150509250929050565b600080604083850312156138bb576138ba614a4a565b5b60006138c9858286016135b4565b92505060206138da858286016136f7565b9150509250929050565b600080602083850312156138fb576138fa614a4a565b5b600083013567ffffffffffffffff81111561391957613918614a45565b5b613925858286016135c9565b92509250509250929050565b60006020828403121561394757613946614a4a565b5b600061395584828501613634565b91505092915050565b60006020828403121561397457613973614a4a565b5b600061398284828501613649565b91505092915050565b6000602082840312156139a1576139a0614a4a565b5b60006139af8482850161365e565b91505092915050565b600080602083850312156139cf576139ce614a4a565b5b600083013567ffffffffffffffff8111156139ed576139ec614a45565b5b6139f9858286016136a1565b92509250509250929050565b600060208284031215613a1b57613a1a614a4a565b5b6000613a29848285016136f7565b91505092915050565b600060208284031215613a4857613a47614a4a565b5b6000613a568482850161370c565b91505092915050565b600080600060408486031215613a7857613a77614a4a565b5b6000613a86868287016136f7565b935050602084013567ffffffffffffffff811115613aa757613aa6614a45565b5b613ab3868287016136a1565b92509250509250925092565b6000613acb838361405a565b60208301905092915050565b613ae08161478f565b82525050565b6000613af182614603565b613afb8185614631565b9350613b06836145de565b8060005b83811015613b37578151613b1e8882613abf565b9750613b2983614624565b925050600181019050613b0a565b5085935050505092915050565b613b4d816147a1565b82525050565b6000613b5f8385614653565b9350613b6c838584614827565b82840190509392505050565b6000613b838261460e565b613b8d8185614642565b9350613b9d818560208601614836565b613ba681614a4f565b840191505092915050565b60008154613bbe81614869565b613bc88186614653565b94506001821660008114613be35760018114613bf457613c27565b60ff19831686528186019350613c27565b613bfd856145ee565b60005b83811015613c1f57815481890152600182019150602081019050613c00565b838801955050505b50505092915050565b613c3981614803565b82525050565b6000613c4a82614619565b613c54818561465e565b9350613c64818560208601614836565b613c6d81614a4f565b840191505092915050565b6000613c8382614619565b613c8d818561466f565b9350613c9d818560208601614836565b80840191505092915050565b6000613cb6600b8361465e565b9150613cc182614a60565b602082019050919050565b6000613cd960328361465e565b9150613ce482614a89565b604082019050919050565b6000613cfc60268361465e565b9150613d0782614ad8565b604082019050919050565b6000613d1f601c8361465e565b9150613d2a82614b27565b602082019050919050565b6000613d42600e8361465e565b9150613d4d82614b50565b602082019050919050565b6000613d6560248361465e565b9150613d7082614b79565b604082019050919050565b6000613d8860168361465e565b9150613d9382614bc8565b602082019050919050565b6000613dab60248361465e565b9150613db682614bf1565b604082019050919050565b6000613dce60198361465e565b9150613dd982614c40565b602082019050919050565b6000613df1602c8361465e565b9150613dfc82614c69565b604082019050919050565b6000613e1460088361465e565b9150613e1f82614cb8565b602082019050919050565b6000613e37600b8361465e565b9150613e4282614ce1565b602082019050919050565b6000613e5a60068361465e565b9150613e6582614d0a565b602082019050919050565b6000613e7d60388361465e565b9150613e8882614d33565b604082019050919050565b6000613ea0602a8361465e565b9150613eab82614d82565b604082019050919050565b6000613ec360298361465e565b9150613ece82614dd1565b604082019050919050565b6000613ee660208361465e565b9150613ef182614e20565b602082019050919050565b6000613f09602c8361465e565b9150613f1482614e49565b604082019050919050565b6000613f2c60208361465e565b9150613f3782614e98565b602082019050919050565b6000613f4f60298361465e565b9150613f5a82614ec1565b604082019050919050565b6000613f72602f8361465e565b9150613f7d82614f10565b604082019050919050565b6000613f9560218361465e565b9150613fa082614f5f565b604082019050919050565b6000613fb860218361465e565b9150613fc382614fae565b604082019050919050565b6000613fdb60128361465e565b9150613fe682614ffd565b602082019050919050565b6000613ffe60318361465e565b915061400982615026565b604082019050919050565b6000614021600a8361465e565b915061402c82615075565b602082019050919050565b600061404460108361465e565b915061404f8261509e565b602082019050919050565b614063816147f9565b82525050565b614072816147f9565b82525050565b6000614085828486613b53565b91508190509392505050565b600061409d8284613bb1565b915081905092915050565b60006140b48285613c78565b91506140c08284613c78565b91508190509392505050565b60006020820190506140e16000830184613ad7565b92915050565b60006040820190506140fc6000830185613ad7565b6141096020830184613ad7565b9392505050565b60006060820190506141256000830186613ad7565b6141326020830185613ad7565b61413f6040830184614069565b949350505050565b600060808201905061415c6000830187613ad7565b6141696020830186613ad7565b6141766040830185614069565b81810360608301526141888184613b78565b905095945050505050565b600060208201905081810360008301526141ad8184613ae6565b905092915050565b60006020820190506141ca6000830184613b44565b92915050565b60006020820190506141e56000830184613c30565b92915050565b600060208201905081810360008301526142058184613c3f565b905092915050565b6000602082019050818103600083015261422681613ca9565b9050919050565b6000602082019050818103600083015261424681613ccc565b9050919050565b6000602082019050818103600083015261426681613cef565b9050919050565b6000602082019050818103600083015261428681613d12565b9050919050565b600060208201905081810360008301526142a681613d35565b9050919050565b600060208201905081810360008301526142c681613d58565b9050919050565b600060208201905081810360008301526142e681613d7b565b9050919050565b6000602082019050818103600083015261430681613d9e565b9050919050565b6000602082019050818103600083015261432681613dc1565b9050919050565b6000602082019050818103600083015261434681613de4565b9050919050565b6000602082019050818103600083015261436681613e07565b9050919050565b6000602082019050818103600083015261438681613e2a565b9050919050565b600060208201905081810360008301526143a681613e4d565b9050919050565b600060208201905081810360008301526143c681613e70565b9050919050565b600060208201905081810360008301526143e681613e93565b9050919050565b6000602082019050818103600083015261440681613eb6565b9050919050565b6000602082019050818103600083015261442681613ed9565b9050919050565b6000602082019050818103600083015261444681613efc565b9050919050565b6000602082019050818103600083015261446681613f1f565b9050919050565b6000602082019050818103600083015261448681613f42565b9050919050565b600060208201905081810360008301526144a681613f65565b9050919050565b600060208201905081810360008301526144c681613f88565b9050919050565b600060208201905081810360008301526144e681613fab565b9050919050565b6000602082019050818103600083015261450681613fce565b9050919050565b6000602082019050818103600083015261452681613ff1565b9050919050565b6000602082019050818103600083015261454681614014565b9050919050565b6000602082019050818103600083015261456681614037565b9050919050565b60006020820190506145826000830184614069565b92915050565b60006145926145a3565b905061459e828261489b565b919050565b6000604051905090565b600067ffffffffffffffff8211156145c8576145c7614a02565b5b6145d182614a4f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614685826147f9565b9150614690836147f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146c5576146c4614946565b5b828201905092915050565b60006146db826147f9565b91506146e6836147f9565b9250826146f6576146f5614975565b5b828204905092915050565b600061470c826147f9565b9150614717836147f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147505761474f614946565b5b828202905092915050565b6000614766826147f9565b9150614771836147f9565b92508282101561478457614783614946565b5b828203905092915050565b600061479a826147d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061480e82614815565b9050919050565b6000614820826147d9565b9050919050565b82818337600083830152505050565b60005b83811015614854578082015181840152602081019050614839565b83811115614863576000848401525b50505050565b6000600282049050600182168061488157607f821691505b60208210811415614895576148946149a4565b5b50919050565b6148a482614a4f565b810181811067ffffffffffffffff821117156148c3576148c2614a02565b5b80604052505050565b60006148d7826147f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561490a57614909614946565b5b600182019050919050565b6000614920826147f9565b915061492b836147f9565b92508261493b5761493a614975565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e7420636c6f736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f70726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206572726f7200000000000000000000000000000000000000000000600082015250565b7f6e6f7420696e2077686974656c69737400000000000000000000000000000000600082015250565b6150d08161478f565b81146150db57600080fd5b50565b6150e7816147a1565b81146150f257600080fd5b50565b6150fe816147ad565b811461510957600080fd5b50565b615115816147f9565b811461512057600080fd5b5056fea2646970667358221220169be0e4401d73951b2b19f4b7832fabaa92b42c2cba643f70c792b4b86b8e1f64736f6c63430008060033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638da5cb5b11610144578063b2ad9a4a116100b6578063d3dd5fe01161007a578063d3dd5fe01461089e578063d5fde6b8146108b5578063e4335cf2146108e0578063e985e9c51461090b578063f2fde38b14610948578063f7ea7a3d146109715761025c565b8063b2ad9a4a146107c8578063b7dc3b18146107f1578063b88d4fde1461080d578063bee6348a14610836578063c87b56dd146108615761025c565b80639b8362a8116101085780639b8362a8146106ce5780639c816955146106f7578063a035b1fe14610720578063a22cb4651461074b578063aef6ee1f14610774578063affed0e01461079d5761025c565b80638da5cb5b146105e957806391b7f5ed1461061457806392e7108d1461063d57806395d89b41146106665780639b19251a146106915761025c565b806334393743116101dd5780636352211e116101a15780636352211e146104c757806364db3627146105045780636970bb0a1461052f57806370a082311461056c578063715018a6146105a9578063810ff0b7146105c05761025c565b8063343937431461042b5780633ccfd60b146104425780633ffb94c61461045957806342842e0e1461048257806349c32217146104ab5761025c565b80630eef353d116102245780630eef353d1461035857806318160ddd1461038357806323b872dd146103ae57806324bbd049146103d757806330176e13146104025761025c565b806301ffc9a714610261578063050225ea1461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061395e565b61099a565b60405161029591906141b5565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906138a4565b610a7c565b005b3480156102d357600080fd5b506102dc610b06565b6040516102e991906141eb565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613a05565b610b98565b60405161032691906140cc565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906138a4565b610c1d565b005b34801561036457600080fd5b5061036d610d35565b60405161037a919061456d565b60405180910390f35b34801561038f57600080fd5b50610398610d3b565b6040516103a5919061456d565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061378e565b610d41565b005b3480156103e357600080fd5b506103ec610da1565b6040516103f991906141b5565b60405180910390f35b34801561040e57600080fd5b50610429600480360381019061042491906139b8565b610db4565b005b34801561043757600080fd5b50610440610e46565b005b34801561044e57600080fd5b50610457610eee565b005b34801561046557600080fd5b50610480600480360381019061047b9190613a05565b611199565b005b34801561048e57600080fd5b506104a960048036038101906104a4919061378e565b61121f565b005b6104c560048036038101906104c09190613a05565b61123f565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613a05565b61137c565b6040516104fb91906140cc565b60405180910390f35b34801561051057600080fd5b5061051961142e565b604051610526919061456d565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613721565b611434565b6040516105639190614193565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613721565b6114cb565b6040516105a0919061456d565b60405180910390f35b3480156105b557600080fd5b506105be611583565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906139b8565b61160b565b005b3480156105f557600080fd5b506105fe61169d565b60405161060b91906140cc565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613a05565b6116c7565b005b34801561064957600080fd5b50610664600480360381019061065f9190613721565b61174d565b005b34801561067257600080fd5b5061067b61180d565b60405161068891906141eb565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190613721565b61189f565b6040516106c591906141b5565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190613a05565b6118bf565b005b34801561070357600080fd5b5061071e600480360381019061071991906138e4565b611c82565b005b34801561072c57600080fd5b50610735611da3565b604051610742919061456d565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613864565b611da9565b005b34801561078057600080fd5b5061079b600480360381019061079691906138e4565b611f2a565b005b3480156107a957600080fd5b506107b261204b565b6040516107bf919061456d565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a05565b612051565b005b61080b60048036038101906108069190613a5f565b6120d7565b005b34801561081957600080fd5b50610834600480360381019061082f91906137e1565b6121f3565b005b34801561084257600080fd5b5061084b612255565b60405161085891906141b5565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613a05565b612268565b60405161089591906141eb565b60405180910390f35b3480156108aa57600080fd5b506108b361230f565b005b3480156108c157600080fd5b506108ca6123b7565b6040516108d7919061456d565b60405180910390f35b3480156108ec57600080fd5b506108f56123bd565b60405161090291906141d0565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d919061374e565b6123e3565b60405161093f91906141b5565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613721565b612477565b005b34801561097d57600080fd5b5061099860048036038101906109939190613a05565b61256f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a755750610a74826125f5565b5b9050919050565b610a8461265f565b73ffffffffffffffffffffffffffffffffffffffff16610aa261169d565b73ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef9061444d565b60405180910390fd5b610b028282612667565b5050565b606060008054610b1590614869565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4190614869565b8015610b8e5780601f10610b6357610100808354040283529160200191610b8e565b820191906000526020600020905b815481529060010190602001808311610b7157829003601f168201915b5050505050905090565b6000610ba382612700565b610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd99061442d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c288261137c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906144ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb861265f565b73ffffffffffffffffffffffffffffffffffffffff161480610ce75750610ce681610ce161265f565b6123e3565b5b610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906143ad565b60405180910390fd5b610d30838361276c565b505050565b60115481565b60095481565b610d52610d4c61265f565b82612825565b610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d889061450d565b60405180910390fd5b610d9c838383612903565b505050565b600b60009054906101000a900460ff1681565b610dbc61265f565b73ffffffffffffffffffffffffffffffffffffffff16610dda61169d565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e279061444d565b60405180910390fd5b818160079190610e419291906134cf565b505050565b610e4e61265f565b73ffffffffffffffffffffffffffffffffffffffff16610e6c61169d565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb99061444d565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610ef661265f565b73ffffffffffffffffffffffffffffffffffffffff16610f1461169d565b73ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061444d565b60405180910390fd5b600047905073ed8fe1bb60036855895812e627b82161f4c5529e73ffffffffffffffffffffffffffffffffffffffff166108fc6064602384610fac9190614701565b610fb691906146d0565b9081150290604051600060405180830381858888f19350505050158015610fe1573d6000803e3d6000fd5b5073f99f2df8fb2b8b873cfbd316296ba82ff55e03db73ffffffffffffffffffffffffffffffffffffffff166108fc606460238461101f9190614701565b61102991906146d0565b9081150290604051600060405180830381858888f19350505050158015611054573d6000803e3d6000fd5b50733e4c18eb3a9115510d4dbf0c9cce015c6cacec5173ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846110929190614701565b61109c91906146d0565b9081150290604051600060405180830381858888f193505050501580156110c7573d6000803e3d6000fd5b50730e1297f9014d0456492311884a0145ff0568808d73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846111059190614701565b61110f91906146d0565b9081150290604051600060405180830381858888f1935050505015801561113a573d6000803e3d6000fd5b5073dfee4a9d467170a99d3dc34dfb6c041c4c80373273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611195573d6000803e3d6000fd5b5050565b6111a161265f565b73ffffffffffffffffffffffffffffffffffffffff166111bf61169d565b73ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061444d565b60405180910390fd5b8060118190555050565b61123a838383604051806020016040528060008152506121f3565b505050565b600b60019054906101000a900460ff1661128e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112859061428d565b60405180910390fd5b600d600061129a61265f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611321576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113189061454d565b60405180910390fd5b8060085461132f9190614701565b3414611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906142cd565b60405180910390fd5b61137981612b5f565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906143ed565b60405180910390fd5b80915050919050565b60105481565b6060600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156114bf57602002820191906000526020600020905b8154815260200190600101908083116114ab575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906143cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158b61265f565b73ffffffffffffffffffffffffffffffffffffffff166115a961169d565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f69061444d565b60405180910390fd5b6116096000612bb6565b565b61161361265f565b73ffffffffffffffffffffffffffffffffffffffff1661163161169d565b73ffffffffffffffffffffffffffffffffffffffff1614611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e9061444d565b60405180910390fd5b8181601291906116989291906134cf565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116cf61265f565b73ffffffffffffffffffffffffffffffffffffffff166116ed61169d565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a9061444d565b60405180910390fd5b8060088190555050565b61175561265f565b73ffffffffffffffffffffffffffffffffffffffff1661177361169d565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c09061444d565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606001805461181c90614869565b80601f016020809104026020016040519081016040528092919081815260200182805461184890614869565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900460ff16806118e65750600b60019054906101000a900460ff165b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c9061438d565b60405180910390fd5b601154816119339190614701565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a0823161197961265f565b6040518263ffffffff1660e01b815260040161199591906140cc565b60206040518083038186803b1580156119ad57600080fd5b505afa1580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e59190613a32565b1015611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906144ed565b60405180910390fd5b60115481611a349190614701565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e611a7a61265f565b306040518363ffffffff1660e01b8152600401611a989291906140e7565b60206040518083038186803b158015611ab057600080fd5b505afa158015611ac4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae89190613a32565b1015611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b209061436d565b60405180910390fd5b600f5460105482611b3a919061467a565b1115611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b729061434d565b60405180910390fd5b8060106000828254611b8d919061467a565b92505081905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd611bda61265f565b733e4c18eb3a9115510d4dbf0c9cce015c6cacec5160115485611bfd9190614701565b6040518463ffffffff1660e01b8152600401611c1b93929190614110565b602060405180830381600087803b158015611c3557600080fd5b505af1158015611c49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6d9190613931565b50611c7f611c7961265f565b82612667565b50565b611c8a61265f565b73ffffffffffffffffffffffffffffffffffffffff16611ca861169d565b73ffffffffffffffffffffffffffffffffffffffff1614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf59061444d565b60405180910390fd5b60005b82829050811015611d9e576000600d6000858585818110611d2557611d246149d3565b5b9050602002016020810190611d3a9190613721565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d96906148cc565b915050611d01565b505050565b60085481565b611db161265f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e169061430d565b60405180910390fd5b8060056000611e2c61265f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ed961265f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f1e91906141b5565b60405180910390a35050565b611f3261265f565b73ffffffffffffffffffffffffffffffffffffffff16611f5061169d565b73ffffffffffffffffffffffffffffffffffffffff1614611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d9061444d565b60405180910390fd5b60005b82829050811015612046576001600d6000858585818110611fcd57611fcc6149d3565b5b9050602002016020810190611fe29190613721565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061203e906148cc565b915050611fa9565b505050565b600a5481565b61205961265f565b73ffffffffffffffffffffffffffffffffffffffff1661207761169d565b73ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c49061444d565b60405180910390fd5b80600f8190555050565b600b60009054906101000a900460ff16612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d9061420d565b60405180910390fd5b826008546121349190614701565b341015612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d906142cd565b60405180910390fd5b60126040516121859190614091565b6040518091039020828260405161219d929190614078565b6040518091039020146121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc9061452d565b60405180910390fd5b6121ee83612b5f565b505050565b6122046121fe61265f565b83612825565b612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a9061450d565b60405180910390fd5b61224f84848484612c7c565b50505050565b600b60019054906101000a900460ff1681565b606061227382612700565b6122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061448d565b60405180910390fd5b60006122bc612cd8565b905060008151116122dc5760405180602001604052806000815250612307565b806122e684612d6a565b6040516020016122f79291906140a8565b6040516020818303038152906040525b915050919050565b61231761265f565b73ffffffffffffffffffffffffffffffffffffffff1661233561169d565b73ffffffffffffffffffffffffffffffffffffffff161461238b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123829061444d565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600f5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247f61265f565b73ffffffffffffffffffffffffffffffffffffffff1661249d61169d565b73ffffffffffffffffffffffffffffffffffffffff16146124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea9061444d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a9061424d565b60405180910390fd5b61256c81612bb6565b50565b61257761265f565b73ffffffffffffffffffffffffffffffffffffffff1661259561169d565b73ffffffffffffffffffffffffffffffffffffffff16146125eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e29061444d565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600954600a5482612678919061467a565b11156126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b0906144cd565b60405180910390fd5b60005b818110156126fb57600a60008154809291906126d7906148cc565b91905055506126e883600a54612ecb565b80806126f3906148cc565b9150506126bc565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127df8361137c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061283082612700565b61286f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128669061432d565b60405180910390fd5b600061287a8361137c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128e957508373ffffffffffffffffffffffffffffffffffffffff166128d184610b98565b73ffffffffffffffffffffffffffffffffffffffff16145b806128fa57506128f981856123e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129238261137c565b73ffffffffffffffffffffffffffffffffffffffff1614612979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129709061446d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e0906142ed565b60405180910390fd5b6129f4838383612ee9565b6129ff60008261276c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4f919061475b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa6919061467a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008111612ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b99906142ad565b60405180910390fd5b612bb3612bad61265f565b82612667565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c87848484612903565b612c93848484846130fc565b612cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc99061422d565b60405180910390fd5b50505050565b606060078054612ce790614869565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1390614869565b8015612d605780601f10612d3557610100808354040283529160200191612d60565b820191906000526020600020905b815481529060010190602001808311612d4357829003601f168201915b5050505050905090565b60606000821415612db2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ec6565b600082905060005b60008214612de4578080612dcd906148cc565b915050600a82612ddd91906146d0565b9150612dba565b60008167ffffffffffffffff811115612e0057612dff614a02565b5b6040519080825280601f01601f191660200182016040528015612e325781602001600182028036833780820191505090505b5090505b60008514612ebf57600182612e4b919061475b565b9150600a85612e5a9190614915565b6030612e66919061467a565b60f81b818381518110612e7c57612e7b6149d3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eb891906146d0565b9450612e36565b8093505050505b919050565b612ee5828260405180602001604052806000815250613293565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461305c576000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015612fa857602002820191906000526020600020905b815481526020019060010190808311612f94575b5050505050905060005b81518110156130595782828281518110612fcf57612fce6149d3565b5b6020026020010151141561304657633b9ac9ff600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110613033576130326149d3565b5b9060005260206000200181905550613059565b8080613051906148cc565b915050612fb2565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130f757600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600061311d8473ffffffffffffffffffffffffffffffffffffffff166132ee565b15613286578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314661265f565b8786866040518563ffffffff1660e01b81526004016131689493929190614147565b602060405180830381600087803b15801561318257600080fd5b505af19250505080156131b357506040513d601f19601f820116820180604052508101906131b0919061398b565b60015b613236573d80600081146131e3576040519150601f19603f3d011682016040523d82523d6000602084013e6131e8565b606091505b5060008151141561322e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132259061422d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061328b565b600190505b949350505050565b61329d8383613301565b6132aa60008484846130fc565b6132e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e09061422d565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133689061440d565b60405180910390fd5b61337a81612700565b156133ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b19061426d565b60405180910390fd5b6133c660008383612ee9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613416919061467a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546134db90614869565b90600052602060002090601f0160209004810192826134fd5760008555613544565b82601f1061351657803560ff1916838001178555613544565b82800160010185558215613544579182015b82811115613543578235825591602001919060010190613528565b5b5090506135519190613555565b5090565b5b8082111561356e576000816000905550600101613556565b5090565b6000613585613580846145ad565b614588565b9050828152602081018484840111156135a1576135a0614a40565b5b6135ac848285614827565b509392505050565b6000813590506135c3816150c7565b92915050565b60008083601f8401126135df576135de614a36565b5b8235905067ffffffffffffffff8111156135fc576135fb614a31565b5b60208301915083602082028301111561361857613617614a3b565b5b9250929050565b60008135905061362e816150de565b92915050565b600081519050613643816150de565b92915050565b600081359050613658816150f5565b92915050565b60008151905061366d816150f5565b92915050565b600082601f83011261368857613687614a36565b5b8135613698848260208601613572565b91505092915050565b60008083601f8401126136b7576136b6614a36565b5b8235905067ffffffffffffffff8111156136d4576136d3614a31565b5b6020830191508360018202830111156136f0576136ef614a3b565b5b9250929050565b6000813590506137068161510c565b92915050565b60008151905061371b8161510c565b92915050565b60006020828403121561373757613736614a4a565b5b6000613745848285016135b4565b91505092915050565b6000806040838503121561376557613764614a4a565b5b6000613773858286016135b4565b9250506020613784858286016135b4565b9150509250929050565b6000806000606084860312156137a7576137a6614a4a565b5b60006137b5868287016135b4565b93505060206137c6868287016135b4565b92505060406137d7868287016136f7565b9150509250925092565b600080600080608085870312156137fb576137fa614a4a565b5b6000613809878288016135b4565b945050602061381a878288016135b4565b935050604061382b878288016136f7565b925050606085013567ffffffffffffffff81111561384c5761384b614a45565b5b61385887828801613673565b91505092959194509250565b6000806040838503121561387b5761387a614a4a565b5b6000613889858286016135b4565b925050602061389a8582860161361f565b9150509250929050565b600080604083850312156138bb576138ba614a4a565b5b60006138c9858286016135b4565b92505060206138da858286016136f7565b9150509250929050565b600080602083850312156138fb576138fa614a4a565b5b600083013567ffffffffffffffff81111561391957613918614a45565b5b613925858286016135c9565b92509250509250929050565b60006020828403121561394757613946614a4a565b5b600061395584828501613634565b91505092915050565b60006020828403121561397457613973614a4a565b5b600061398284828501613649565b91505092915050565b6000602082840312156139a1576139a0614a4a565b5b60006139af8482850161365e565b91505092915050565b600080602083850312156139cf576139ce614a4a565b5b600083013567ffffffffffffffff8111156139ed576139ec614a45565b5b6139f9858286016136a1565b92509250509250929050565b600060208284031215613a1b57613a1a614a4a565b5b6000613a29848285016136f7565b91505092915050565b600060208284031215613a4857613a47614a4a565b5b6000613a568482850161370c565b91505092915050565b600080600060408486031215613a7857613a77614a4a565b5b6000613a86868287016136f7565b935050602084013567ffffffffffffffff811115613aa757613aa6614a45565b5b613ab3868287016136a1565b92509250509250925092565b6000613acb838361405a565b60208301905092915050565b613ae08161478f565b82525050565b6000613af182614603565b613afb8185614631565b9350613b06836145de565b8060005b83811015613b37578151613b1e8882613abf565b9750613b2983614624565b925050600181019050613b0a565b5085935050505092915050565b613b4d816147a1565b82525050565b6000613b5f8385614653565b9350613b6c838584614827565b82840190509392505050565b6000613b838261460e565b613b8d8185614642565b9350613b9d818560208601614836565b613ba681614a4f565b840191505092915050565b60008154613bbe81614869565b613bc88186614653565b94506001821660008114613be35760018114613bf457613c27565b60ff19831686528186019350613c27565b613bfd856145ee565b60005b83811015613c1f57815481890152600182019150602081019050613c00565b838801955050505b50505092915050565b613c3981614803565b82525050565b6000613c4a82614619565b613c54818561465e565b9350613c64818560208601614836565b613c6d81614a4f565b840191505092915050565b6000613c8382614619565b613c8d818561466f565b9350613c9d818560208601614836565b80840191505092915050565b6000613cb6600b8361465e565b9150613cc182614a60565b602082019050919050565b6000613cd960328361465e565b9150613ce482614a89565b604082019050919050565b6000613cfc60268361465e565b9150613d0782614ad8565b604082019050919050565b6000613d1f601c8361465e565b9150613d2a82614b27565b602082019050919050565b6000613d42600e8361465e565b9150613d4d82614b50565b602082019050919050565b6000613d6560248361465e565b9150613d7082614b79565b604082019050919050565b6000613d8860168361465e565b9150613d9382614bc8565b602082019050919050565b6000613dab60248361465e565b9150613db682614bf1565b604082019050919050565b6000613dce60198361465e565b9150613dd982614c40565b602082019050919050565b6000613df1602c8361465e565b9150613dfc82614c69565b604082019050919050565b6000613e1460088361465e565b9150613e1f82614cb8565b602082019050919050565b6000613e37600b8361465e565b9150613e4282614ce1565b602082019050919050565b6000613e5a60068361465e565b9150613e6582614d0a565b602082019050919050565b6000613e7d60388361465e565b9150613e8882614d33565b604082019050919050565b6000613ea0602a8361465e565b9150613eab82614d82565b604082019050919050565b6000613ec360298361465e565b9150613ece82614dd1565b604082019050919050565b6000613ee660208361465e565b9150613ef182614e20565b602082019050919050565b6000613f09602c8361465e565b9150613f1482614e49565b604082019050919050565b6000613f2c60208361465e565b9150613f3782614e98565b602082019050919050565b6000613f4f60298361465e565b9150613f5a82614ec1565b604082019050919050565b6000613f72602f8361465e565b9150613f7d82614f10565b604082019050919050565b6000613f9560218361465e565b9150613fa082614f5f565b604082019050919050565b6000613fb860218361465e565b9150613fc382614fae565b604082019050919050565b6000613fdb60128361465e565b9150613fe682614ffd565b602082019050919050565b6000613ffe60318361465e565b915061400982615026565b604082019050919050565b6000614021600a8361465e565b915061402c82615075565b602082019050919050565b600061404460108361465e565b915061404f8261509e565b602082019050919050565b614063816147f9565b82525050565b614072816147f9565b82525050565b6000614085828486613b53565b91508190509392505050565b600061409d8284613bb1565b915081905092915050565b60006140b48285613c78565b91506140c08284613c78565b91508190509392505050565b60006020820190506140e16000830184613ad7565b92915050565b60006040820190506140fc6000830185613ad7565b6141096020830184613ad7565b9392505050565b60006060820190506141256000830186613ad7565b6141326020830185613ad7565b61413f6040830184614069565b949350505050565b600060808201905061415c6000830187613ad7565b6141696020830186613ad7565b6141766040830185614069565b81810360608301526141888184613b78565b905095945050505050565b600060208201905081810360008301526141ad8184613ae6565b905092915050565b60006020820190506141ca6000830184613b44565b92915050565b60006020820190506141e56000830184613c30565b92915050565b600060208201905081810360008301526142058184613c3f565b905092915050565b6000602082019050818103600083015261422681613ca9565b9050919050565b6000602082019050818103600083015261424681613ccc565b9050919050565b6000602082019050818103600083015261426681613cef565b9050919050565b6000602082019050818103600083015261428681613d12565b9050919050565b600060208201905081810360008301526142a681613d35565b9050919050565b600060208201905081810360008301526142c681613d58565b9050919050565b600060208201905081810360008301526142e681613d7b565b9050919050565b6000602082019050818103600083015261430681613d9e565b9050919050565b6000602082019050818103600083015261432681613dc1565b9050919050565b6000602082019050818103600083015261434681613de4565b9050919050565b6000602082019050818103600083015261436681613e07565b9050919050565b6000602082019050818103600083015261438681613e2a565b9050919050565b600060208201905081810360008301526143a681613e4d565b9050919050565b600060208201905081810360008301526143c681613e70565b9050919050565b600060208201905081810360008301526143e681613e93565b9050919050565b6000602082019050818103600083015261440681613eb6565b9050919050565b6000602082019050818103600083015261442681613ed9565b9050919050565b6000602082019050818103600083015261444681613efc565b9050919050565b6000602082019050818103600083015261446681613f1f565b9050919050565b6000602082019050818103600083015261448681613f42565b9050919050565b600060208201905081810360008301526144a681613f65565b9050919050565b600060208201905081810360008301526144c681613f88565b9050919050565b600060208201905081810360008301526144e681613fab565b9050919050565b6000602082019050818103600083015261450681613fce565b9050919050565b6000602082019050818103600083015261452681613ff1565b9050919050565b6000602082019050818103600083015261454681614014565b9050919050565b6000602082019050818103600083015261456681614037565b9050919050565b60006020820190506145826000830184614069565b92915050565b60006145926145a3565b905061459e828261489b565b919050565b6000604051905090565b600067ffffffffffffffff8211156145c8576145c7614a02565b5b6145d182614a4f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614685826147f9565b9150614690836147f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146c5576146c4614946565b5b828201905092915050565b60006146db826147f9565b91506146e6836147f9565b9250826146f6576146f5614975565b5b828204905092915050565b600061470c826147f9565b9150614717836147f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147505761474f614946565b5b828202905092915050565b6000614766826147f9565b9150614771836147f9565b92508282101561478457614783614946565b5b828203905092915050565b600061479a826147d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061480e82614815565b9050919050565b6000614820826147d9565b9050919050565b82818337600083830152505050565b60005b83811015614854578082015181840152602081019050614839565b83811115614863576000848401525b50505050565b6000600282049050600182168061488157607f821691505b60208210811415614895576148946149a4565b5b50919050565b6148a482614a4f565b810181811067ffffffffffffffff821117156148c3576148c2614a02565b5b80604052505050565b60006148d7826147f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561490a57614909614946565b5b600182019050919050565b6000614920826147f9565b915061492b836147f9565b92508261493b5761493a614975565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e7420636c6f736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f70726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206572726f7200000000000000000000000000000000000000000000600082015250565b7f6e6f7420696e2077686974656c69737400000000000000000000000000000000600082015250565b6150d08161478f565b81146150db57600080fd5b50565b6150e7816147a1565b81146150f257600080fd5b50565b6150fe816147ad565b811461510957600080fd5b50565b615115816147f9565b811461512057600080fd5b5056fea2646970667358221220169be0e4401d73951b2b19f4b7832fabaa92b42c2cba643f70c792b4b86b8e1f64736f6c63430008060033

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.