ETH Price: $3,264.69 (+0.67%)
Gas: 1 Gwei

Token

ZombieTadpolez (ZTADPOLEZ)
 

Overview

Max Total Supply

1,249 ZTADPOLEZ

Holders

478

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
crypt0sherpa.eth
Balance
2 ZTADPOLEZ
0x373bee4f38554fb4f2ecbd47bd03d80a48806643
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:
ZombieTadpolez

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : ZombieTadpolez.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/*

▒███████▒ ▒█████   ███▄ ▄███▓ ▄▄▄▄    ██▓▓█████▄▄▄█████▓ ▄▄▄      ▓█████▄  ██▓███   ▒█████   ██▓    ▓█████ ▒███████▒
▒ ▒ ▒ ▄▀░▒██▒  ██▒▓██▒▀█▀ ██▒▓█████▄ ▓██▒▓█   ▀▓  ██▒ ▓▒▒████▄    ▒██▀ ██▌▓██░  ██▒▒██▒  ██▒▓██▒    ▓█   ▀ ▒ ▒ ▒ ▄▀░
░ ▒ ▄▀▒░ ▒██░  ██▒▓██    ▓██░▒██▒ ▄██▒██▒▒███  ▒ ▓██░ ▒░▒██  ▀█▄  ░██   █▌▓██░ ██▓▒▒██░  ██▒▒██░    ▒███   ░ ▒ ▄▀▒░ 
  ▄▀▒   ░▒██   ██░▒██    ▒██ ▒██░█▀  ░██░▒▓█  ▄░ ▓██▓ ░ ░██▄▄▄▄██ ░▓█▄   ▌▒██▄█▓▒ ▒▒██   ██░▒██░    ▒▓█  ▄   ▄▀▒   ░
▒███████▒░ ████▓▒░▒██▒   ░██▒░▓█  ▀█▓░██░░▒████▒ ▒██▒ ░  ▓█   ▓██▒░▒████▓ ▒██▒ ░  ░░ ████▓▒░░██████▒░▒████▒▒███████▒
░▒▒ ▓░▒░▒░ ▒░▒░▒░ ░ ▒░   ░  ░░▒▓███▀▒░▓  ░░ ▒░ ░ ▒ ░░    ▒▒   ▓▒█░ ▒▒▓  ▒ ▒▓▒░ ░  ░░ ▒░▒░▒░ ░ ▒░▓  ░░░ ▒░ ░░▒▒ ▓░▒░▒
░░▒ ▒ ░ ▒  ░ ▒ ▒░ ░  ░      ░▒░▒   ░  ▒ ░ ░ ░  ░   ░      ▒   ▒▒ ░ ░ ▒  ▒ ░▒ ░       ░ ▒ ▒░ ░ ░ ▒  ░ ░ ░  ░░░▒ ▒ ░ ▒
░ ░ ░ ░ ░░ ░ ░ ▒  ░      ░    ░    ░  ▒ ░   ░    ░        ░   ▒    ░ ░  ░ ░░       ░ ░ ░ ▒    ░ ░      ░   ░ ░ ░ ░ ░
  ░ ░        ░ ░         ░    ░       ░     ░  ░              ░  ░   ░                 ░ ░      ░  ░   ░  ░  ░ ░    
░                                  ░                               ░                                       ░                                         ░                                        ░      ░                                  
*/

contract ZombieTadpolez is ERC721URIStorage, Ownable, IERC721Receiver {
    using Strings for uint256;
    event MintTadpole(address indexed sender, uint256 startWith, uint256 times);


    //uints 
    uint256 public totalTadpolez;
    uint256 public constant totalCount = 5555;
    uint256 public constant maxBatch = 10;
    address public zombieToadzAddress;
    address public brainzTokenAddress;
    uint32 public breedingCooldown = uint32(8 hours);
    uint256[] toadLastBred = new uint256[](5555);
    address public contractAddress;

    //strings 
    string public baseURI;

    //bool
    bool private started;

    //constructor args 
    constructor(string memory name_, string memory symbol_, address _zombieToadzAddress, address _brainzTokenAddress, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
        zombieToadzAddress = _zombieToadzAddress;
        brainzTokenAddress = _brainzTokenAddress;
        contractAddress = address(this);
    }
    function totalSupply() public view virtual returns (uint256) {
        return totalTadpolez;
    }
    function _baseURI() internal view virtual override returns (string memory){
        return baseURI;
    }
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }
    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(), ".json")) : ".json";
    }
    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(_tokenId, _tokenURI);
    }
    function setStart(bool _start) public onlyOwner {
        started = _start;
    }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external pure override returns (bytes4) {
        return IERC721Receiver.onERC721Received.selector;
    }

    function currentBrainzCost() public view returns (uint256) {

        if (totalTadpolez <= 999) {
            return 1000000000000000000000;
        }
        if (totalTadpolez <= 1999) {
            return 2000000000000000000000;
        }
        if (totalTadpolez <= 2999) {
            return 3000000000000000000000;
        }
        if (totalTadpolez <= 3999) {
            return 4000000000000000000000;
        }
        if (totalTadpolez <= 4999) {
            return 5000000000000000000000;
        }
        if (totalTadpolez <= 5555) {
            return 6000000000000000000000;
        }

        revert();
    }

    function getToadLastBred(uint256 tokenId) public view returns (uint256) {
        return toadLastBred[tokenId];
    }

    function breedToads(uint256[] calldata _tokenIds, uint256 amount) public {
        require(started, "not started");
        require(totalTadpolez < totalCount, "too many tadpolez");
        require(_tokenIds.length == 2, "you need 2 zombie toads to breed");
        require(amount >= currentBrainzCost(), "not enough brainz");
        // both toadz given must be owned by the caller of the function
        require(IERC721(zombieToadzAddress).ownerOf(_tokenIds[0]) == _msgSender()
            && IERC721(zombieToadzAddress).ownerOf(_tokenIds[1]) == _msgSender(),
            "must be the owner of both zombie toadz to breed");
        // both toadz must not have been recently bred
        require(block.timestamp - toadLastBred[_tokenIds[0]] > breedingCooldown
            && block.timestamp - toadLastBred[_tokenIds[1]] > breedingCooldown,
            "one or more zombietoad is on breeding cooldown");
        uint256 allowance = IERC20(brainzTokenAddress).allowance(msg.sender, address(this));
        require(amount <= allowance,
            string(abi.encodePacked("amount greater than allowed value of: ", allowance.toString())));

        // Transfer the required amount of brainz to this contract as payment for breeding
        IERC20(brainzTokenAddress).transferFrom(msg.sender, address(this), currentBrainzCost());
        // Create a tadpole and transfer it to the caller of the function
        emit MintTadpole(_msgSender(), totalTadpolez+1, 1);
        _mint(_msgSender(), ++totalTadpolez);

        // Assign the current time to the toad ids used for this breeding
        toadLastBred[_tokenIds[0]] = block.timestamp;
        toadLastBred[_tokenIds[1]] = block.timestamp;
    }

    function withdrawBrainz() public onlyOwner {
        uint256 brainzSupply = IERC20(brainzTokenAddress).balanceOf(address(this));
        IERC20(brainzTokenAddress).transfer(msg.sender, brainzSupply);
    }
    
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 14 : 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 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_zombieToadzAddress","type":"address"},{"internalType":"address","name":"_brainzTokenAddress","type":"address"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintTadpole","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"brainzTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"breedToads","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"breedingCooldown","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentBrainzCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getToadLastBred","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTadpolez","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBrainz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zombieToadzAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052617080600a60146101000a81548163ffffffff021916908363ffffffff1602179055506115b367ffffffffffffffff8111156200006a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620000995781602001602082028036833780820191505090505b50600b9080519060200190620000b1929190620002f0565b50348015620000bf57600080fd5b5060405162004da338038062004da38339818101604052810190620000e591906200047b565b84848160009080519060200190620000ff92919062000342565b5080600190805190602001906200011892919062000342565b5050506200013b6200012f6200022260201b60201c565b6200022a60201b60201c565b80600d90805190602001906200015392919062000342565b5082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505062000706565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200032f579160200282015b828111156200032e57825182559160200191906001019062000311565b5b5090506200033e9190620003d3565b5090565b828054620003509062000611565b90600052602060002090601f016020900481019282620003745760008555620003c0565b82601f106200038f57805160ff1916838001178555620003c0565b82800160010185558215620003c0579182015b82811115620003bf578251825591602001919060010190620003a2565b5b509050620003cf9190620003d3565b5090565b5b80821115620003ee576000816000905550600101620003d4565b5090565b600062000409620004038462000571565b62000548565b9050828152602081018484840111156200042257600080fd5b6200042f848285620005db565b509392505050565b6000815190506200044881620006ec565b92915050565b600082601f8301126200046057600080fd5b815162000472848260208601620003f2565b91505092915050565b600080600080600060a086880312156200049457600080fd5b600086015167ffffffffffffffff811115620004af57600080fd5b620004bd888289016200044e565b955050602086015167ffffffffffffffff811115620004db57600080fd5b620004e9888289016200044e565b9450506040620004fc8882890162000437565b93505060606200050f8882890162000437565b925050608086015167ffffffffffffffff8111156200052d57600080fd5b6200053b888289016200044e565b9150509295509295909350565b60006200055462000567565b905062000562828262000647565b919050565b6000604051905090565b600067ffffffffffffffff8211156200058f576200058e620006ac565b5b6200059a82620006db565b9050602081019050919050565b6000620005b482620005bb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005fb578082015181840152602081019050620005de565b838111156200060b576000848401525b50505050565b600060028204905060018216806200062a57607f821691505b602082108114156200064157620006406200067d565b5b50919050565b6200065282620006db565b810181811067ffffffffffffffff82111715620006745762000673620006ac565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620006f781620005a7565b81146200070357600080fd5b50565b61468d80620007166000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806368e243271161011a578063a22cb465116100ad578063cbeee0271161007c578063cbeee027146105a2578063e50cc777146105be578063e985e9c5146105c8578063f2fde38b146105f8578063f6b4dfb414610614576101fb565b8063a22cb4651461051c578063b4cfaa7a14610538578063b88d4fde14610556578063c87b56dd14610572576101fb565b80638329df90116100e95780638329df90146104a45780638da5cb5b146104c25780638dcd78b1146104e057806395d89b41146104fe576101fb565b806368e24327146104305780636c0360eb1461044c57806370a082311461046a578063715018a61461049a576101fb565b8063240df5e61161019257806355f804b31161016157806355f804b314610396578063611fe2ae146103b25780636352211e146103e257806367765b8714610412576101fb565b8063240df5e61461032057806334eafb111461033e57806342842e0e1461035c57806345d9fbde14610378576101fb565b8063150b7a02116101ce578063150b7a021461029a578063162094c4146102ca57806318160ddd146102e657806323b872dd14610304576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a6004803603810190610215919061311a565b610632565b60405161022791906137fc565b60405180910390f35b610238610714565b6040516102459190613832565b60405180910390f35b610268600480360381019061026391906131ad565b6107a6565b604051610275919061370c565b60405180910390f35b61029860048036038101906102939190613034565b61082b565b005b6102b460048036038101906102af9190612efd565b610943565b6040516102c19190613817565b60405180910390f35b6102e460048036038101906102df91906131ff565b610958565b005b6102ee6109e2565b6040516102fb9190613b34565b60405180910390f35b61031e60048036038101906103199190612eae565b6109ec565b005b610328610a4c565b6040516103359190613b78565b60405180910390f35b610346610a62565b6040516103539190613b34565b60405180910390f35b61037660048036038101906103719190612eae565b610a68565b005b610380610a88565b60405161038d9190613b34565b60405180910390f35b6103b060048036038101906103ab919061316c565b610b3c565b005b6103cc60048036038101906103c791906131ad565b610bd2565b6040516103d99190613b34565b60405180910390f35b6103fc60048036038101906103f791906131ad565b610c20565b604051610409919061370c565b60405180910390f35b61041a610cd2565b6040516104279190613b34565b60405180910390f35b61044a600480360381019061044591906130c8565b610cd7565b005b610454610d70565b6040516104619190613832565b60405180910390f35b610484600480360381019061047f9190612e20565b610dfe565b6040516104919190613b34565b60405180910390f35b6104a2610eb6565b005b6104ac610f3e565b6040516104b9919061370c565b60405180910390f35b6104ca610f64565b6040516104d7919061370c565b60405180910390f35b6104e8610f8e565b6040516104f5919061370c565b60405180910390f35b610506610fb4565b6040516105139190613832565b60405180910390f35b61053660048036038101906105319190612ff8565b611046565b005b6105406111c7565b60405161054d9190613b34565b60405180910390f35b610570600480360381019061056b9190612f7d565b6111cd565b005b61058c600480360381019061058791906131ad565b61122f565b6040516105999190613832565b60405180910390f35b6105bc60048036038101906105b79190613070565b6112fc565b005b6105c6611bbe565b005b6105e260048036038101906105dd9190612e72565b611d9c565b6040516105ef91906137fc565b60405180910390f35b610612600480360381019061060d9190612e20565b611e30565b005b61061c611f28565b604051610629919061370c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070d575061070c82611f4e565b5b9050919050565b60606000805461072390613df0565b80601f016020809104026020016040519081016040528092919081815260200182805461074f90613df0565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b182611fb8565b6107f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e790613a34565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083682610c20565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90613a94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c6612024565b73ffffffffffffffffffffffffffffffffffffffff1614806108f557506108f4816108ef612024565b611d9c565b5b610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90613994565b60405180910390fd5b61093e838361202c565b505050565b600063150b7a0260e01b905095945050505050565b610960612024565b73ffffffffffffffffffffffffffffffffffffffff1661097e610f64565b73ffffffffffffffffffffffffffffffffffffffff16146109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb90613a54565b60405180910390fd5b6109de82826120e5565b5050565b6000600854905090565b6109fd6109f7612024565b82612159565b610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613ab4565b60405180910390fd5b610a47838383612237565b505050565b600a60149054906101000a900463ffffffff1681565b6115b381565b610a83838383604051806020016040528060008152506111cd565b505050565b60006103e760085411610aa657683635c9adc5dea000009050610b39565b6107cf60085411610ac257686c6b935b8bbd4000009050610b39565b610bb760085411610ade5768a2a15d09519be000009050610b39565b610f9f60085411610afa5768d8d726b7177a8000009050610b39565b61138760085411610b175769010f0cf064dd592000009050610b39565b6115b360085411610b345769014542ba12a337c000009050610b39565b600080fd5b90565b610b44612024565b73ffffffffffffffffffffffffffffffffffffffff16610b62610f64565b73ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90613a54565b60405180910390fd5b80600d9080519060200190610bce929190612b71565b5050565b6000600b8281548110610c0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906139d4565b60405180910390fd5b80915050919050565b600a81565b610cdf612024565b73ffffffffffffffffffffffffffffffffffffffff16610cfd610f64565b73ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613a54565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600d8054610d7d90613df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610da990613df0565b8015610df65780601f10610dcb57610100808354040283529160200191610df6565b820191906000526020600020905b815481529060010190602001808311610dd957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906139b4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebe612024565b73ffffffffffffffffffffffffffffffffffffffff16610edc610f64565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613a54565b60405180910390fd5b610f3c6000612493565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610fc390613df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef90613df0565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b5050505050905090565b61104e612024565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613954565b60405180910390fd5b80600560006110c9612024565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611176612024565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111bb91906137fc565b60405180910390a35050565b60085481565b6111de6111d8612024565b83612159565b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613ab4565b60405180910390fd5b61122984848484612559565b50505050565b606061123a82611fb8565b611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613b14565b60405180910390fd5b60006112836125b5565b905060008151116112c9576040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506112f4565b806112d384612647565b6040516020016112e49291906136bb565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1661134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134290613ad4565b60405180910390fd5b6115b360085410611391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611388906138b4565b60405180910390fd5b600283839050146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613af4565b60405180910390fd5b6113df610a88565b811015611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906138f4565b60405180910390fd5b611429612024565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858560008181106114b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b81526004016114da9190613b34565b60206040518083038186803b1580156114f257600080fd5b505afa158015611506573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152a9190612e49565b73ffffffffffffffffffffffffffffffffffffffff161480156116695750611550612024565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858560018181106115de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b81526004016116019190613b34565b60206040518083038186803b15801561161957600080fd5b505afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190612e49565b73ffffffffffffffffffffffffffffffffffffffff16145b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90613914565b60405180910390fd5b600a60149054906101000a900463ffffffff1663ffffffff16600b848460008181106116fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358154811061173b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154426117519190613ce4565b1180156118045750600a60149054906101000a900463ffffffff1663ffffffff16600b848460018181106117ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815481106117ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154426118029190613ce4565b115b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90613854565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016118a2929190613727565b60206040518083038186803b1580156118ba57600080fd5b505afa1580156118ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f291906131d6565b90508082111561190182612647565b60405160200161191191906136ea565b60405160208183030381529060405290611961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119589190613832565b60405180910390fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306119aa610a88565b6040518463ffffffff1660e01b81526004016119c893929190613750565b602060405180830381600087803b1580156119e257600080fd5b505af11580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a91906130f1565b50611a23612024565b73ffffffffffffffffffffffffffffffffffffffff167fc4f06bc4564a402b08099c62d8df14bd3567422435c2943b7b31e10a549d998a6001600854611a699190613c5d565b6001604051611a79929190613b4f565b60405180910390a2611aa6611a8c612024565b600860008154611a9b90613e53565b9190508190556127f4565b42600b85856000818110611ae3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581548110611b21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555042600b85856001818110611b6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581548110611baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555050505050565b611bc6612024565b73ffffffffffffffffffffffffffffffffffffffff16611be4610f64565b73ffffffffffffffffffffffffffffffffffffffff1614611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613a54565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c97919061370c565b60206040518083038186803b158015611caf57600080fd5b505afa158015611cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce791906131d6565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611d469291906137d3565b602060405180830381600087803b158015611d6057600080fd5b505af1158015611d74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9891906130f1565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e38612024565b73ffffffffffffffffffffffffffffffffffffffff16611e56610f64565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390613a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613894565b60405180910390fd5b611f2581612493565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209f83610c20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6120ee82611fb8565b61212d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612124906139f4565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612154929190612b71565b505050565b600061216482611fb8565b6121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90613974565b60405180910390fd5b60006121ae83610c20565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221d57508373ffffffffffffffffffffffffffffffffffffffff16612205846107a6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061222e575061222d8185611d9c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661225782610c20565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490613a74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490613934565b60405180910390fd5b6123288383836129c2565b61233360008261202c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123839190613ce4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123da9190613c5d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612564848484612237565b612570848484846129c7565b6125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690613874565b60405180910390fd5b50505050565b6060600d80546125c490613df0565b80601f01602080910402602001604051908101604052809291908181526020018280546125f090613df0565b801561263d5780601f106126125761010080835404028352916020019161263d565b820191906000526020600020905b81548152906001019060200180831161262057829003601f168201915b5050505050905090565b6060600082141561268f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ef565b600082905060005b600082146126c15780806126aa90613e53565b915050600a826126ba9190613cb3565b9150612697565b60008167ffffffffffffffff811115612703577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127355781602001600182028036833780820191505090505b5090505b600085146127e85760018261274e9190613ce4565b9150600a8561275d9190613e9c565b60306127699190613c5d565b60f81b8183815181106127a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e19190613cb3565b9450612739565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613a14565b60405180910390fd5b61286d81611fb8565b156128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a4906138d4565b60405180910390fd5b6128b9600083836129c2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129099190613c5d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006129e88473ffffffffffffffffffffffffffffffffffffffff16612b5e565b15612b51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a11612024565b8786866040518563ffffffff1660e01b8152600401612a339493929190613787565b602060405180830381600087803b158015612a4d57600080fd5b505af1925050508015612a7e57506040513d601f19601f82011682018060405250810190612a7b9190613143565b60015b612b01573d8060008114612aae576040519150601f19603f3d011682016040523d82523d6000602084013e612ab3565b606091505b50600081511415612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090613874565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b56565b600190505b949350505050565b600080823b905060008111915050919050565b828054612b7d90613df0565b90600052602060002090601f016020900481019282612b9f5760008555612be6565b82601f10612bb857805160ff1916838001178555612be6565b82800160010185558215612be6579182015b82811115612be5578251825591602001919060010190612bca565b5b509050612bf39190612bf7565b5090565b5b80821115612c10576000816000905550600101612bf8565b5090565b6000612c27612c2284613bb8565b613b93565b905082815260208101848484011115612c3f57600080fd5b612c4a848285613dae565b509392505050565b6000612c65612c6084613be9565b613b93565b905082815260208101848484011115612c7d57600080fd5b612c88848285613dae565b509392505050565b600081359050612c9f816145fb565b92915050565b600081519050612cb4816145fb565b92915050565b60008083601f840112612ccc57600080fd5b8235905067ffffffffffffffff811115612ce557600080fd5b602083019150836020820283011115612cfd57600080fd5b9250929050565b600081359050612d1381614612565b92915050565b600081519050612d2881614612565b92915050565b600081359050612d3d81614629565b92915050565b600081519050612d5281614629565b92915050565b60008083601f840112612d6a57600080fd5b8235905067ffffffffffffffff811115612d8357600080fd5b602083019150836001820283011115612d9b57600080fd5b9250929050565b600082601f830112612db357600080fd5b8135612dc3848260208601612c14565b91505092915050565b600082601f830112612ddd57600080fd5b8135612ded848260208601612c52565b91505092915050565b600081359050612e0581614640565b92915050565b600081519050612e1a81614640565b92915050565b600060208284031215612e3257600080fd5b6000612e4084828501612c90565b91505092915050565b600060208284031215612e5b57600080fd5b6000612e6984828501612ca5565b91505092915050565b60008060408385031215612e8557600080fd5b6000612e9385828601612c90565b9250506020612ea485828601612c90565b9150509250929050565b600080600060608486031215612ec357600080fd5b6000612ed186828701612c90565b9350506020612ee286828701612c90565b9250506040612ef386828701612df6565b9150509250925092565b600080600080600060808688031215612f1557600080fd5b6000612f2388828901612c90565b9550506020612f3488828901612c90565b9450506040612f4588828901612df6565b935050606086013567ffffffffffffffff811115612f6257600080fd5b612f6e88828901612d58565b92509250509295509295909350565b60008060008060808587031215612f9357600080fd5b6000612fa187828801612c90565b9450506020612fb287828801612c90565b9350506040612fc387828801612df6565b925050606085013567ffffffffffffffff811115612fe057600080fd5b612fec87828801612da2565b91505092959194509250565b6000806040838503121561300b57600080fd5b600061301985828601612c90565b925050602061302a85828601612d04565b9150509250929050565b6000806040838503121561304757600080fd5b600061305585828601612c90565b925050602061306685828601612df6565b9150509250929050565b60008060006040848603121561308557600080fd5b600084013567ffffffffffffffff81111561309f57600080fd5b6130ab86828701612cba565b935093505060206130be86828701612df6565b9150509250925092565b6000602082840312156130da57600080fd5b60006130e884828501612d04565b91505092915050565b60006020828403121561310357600080fd5b600061311184828501612d19565b91505092915050565b60006020828403121561312c57600080fd5b600061313a84828501612d2e565b91505092915050565b60006020828403121561315557600080fd5b600061316384828501612d43565b91505092915050565b60006020828403121561317e57600080fd5b600082013567ffffffffffffffff81111561319857600080fd5b6131a484828501612dcc565b91505092915050565b6000602082840312156131bf57600080fd5b60006131cd84828501612df6565b91505092915050565b6000602082840312156131e857600080fd5b60006131f684828501612e0b565b91505092915050565b6000806040838503121561321257600080fd5b600061322085828601612df6565b925050602083013567ffffffffffffffff81111561323d57600080fd5b61324985828601612dcc565b9150509250929050565b61325c81613d18565b82525050565b61326b81613d2a565b82525050565b61327a81613d36565b82525050565b600061328b82613c1a565b6132958185613c30565b93506132a5818560208601613dbd565b6132ae81613f89565b840191505092915050565b6132c281613d9c565b82525050565b60006132d382613c25565b6132dd8185613c41565b93506132ed818560208601613dbd565b6132f681613f89565b840191505092915050565b600061330c82613c25565b6133168185613c52565b9350613326818560208601613dbd565b80840191505092915050565b600061333f602e83613c41565b915061334a82613f9a565b604082019050919050565b6000613362602683613c52565b915061336d82613fe9565b602682019050919050565b6000613385603283613c41565b915061339082614038565b604082019050919050565b60006133a8602683613c41565b91506133b382614087565b604082019050919050565b60006133cb601183613c41565b91506133d6826140d6565b602082019050919050565b60006133ee601c83613c41565b91506133f9826140ff565b602082019050919050565b6000613411601183613c41565b915061341c82614128565b602082019050919050565b6000613434602f83613c41565b915061343f82614151565b604082019050919050565b6000613457602483613c41565b9150613462826141a0565b604082019050919050565b600061347a601983613c41565b9150613485826141ef565b602082019050919050565b600061349d602c83613c41565b91506134a882614218565b604082019050919050565b60006134c0603883613c41565b91506134cb82614267565b604082019050919050565b60006134e3602a83613c41565b91506134ee826142b6565b604082019050919050565b6000613506602983613c41565b915061351182614305565b604082019050919050565b6000613529602e83613c41565b915061353482614354565b604082019050919050565b600061354c602083613c41565b9150613557826143a3565b602082019050919050565b600061356f602c83613c41565b915061357a826143cc565b604082019050919050565b6000613592600583613c52565b915061359d8261441b565b600582019050919050565b60006135b5602083613c41565b91506135c082614444565b602082019050919050565b60006135d8602983613c41565b91506135e38261446d565b604082019050919050565b60006135fb602183613c41565b9150613606826144bc565b604082019050919050565b600061361e603183613c41565b91506136298261450b565b604082019050919050565b6000613641600b83613c41565b915061364c8261455a565b602082019050919050565b6000613664602083613c41565b915061366f82614583565b602082019050919050565b6000613687603083613c41565b9150613692826145ac565b604082019050919050565b6136a681613d82565b82525050565b6136b581613d8c565b82525050565b60006136c78285613301565b91506136d38284613301565b91506136de82613585565b91508190509392505050565b60006136f582613355565b91506137018284613301565b915081905092915050565b60006020820190506137216000830184613253565b92915050565b600060408201905061373c6000830185613253565b6137496020830184613253565b9392505050565b60006060820190506137656000830186613253565b6137726020830185613253565b61377f604083018461369d565b949350505050565b600060808201905061379c6000830187613253565b6137a96020830186613253565b6137b6604083018561369d565b81810360608301526137c88184613280565b905095945050505050565b60006040820190506137e86000830185613253565b6137f5602083018461369d565b9392505050565b60006020820190506138116000830184613262565b92915050565b600060208201905061382c6000830184613271565b92915050565b6000602082019050818103600083015261384c81846132c8565b905092915050565b6000602082019050818103600083015261386d81613332565b9050919050565b6000602082019050818103600083015261388d81613378565b9050919050565b600060208201905081810360008301526138ad8161339b565b9050919050565b600060208201905081810360008301526138cd816133be565b9050919050565b600060208201905081810360008301526138ed816133e1565b9050919050565b6000602082019050818103600083015261390d81613404565b9050919050565b6000602082019050818103600083015261392d81613427565b9050919050565b6000602082019050818103600083015261394d8161344a565b9050919050565b6000602082019050818103600083015261396d8161346d565b9050919050565b6000602082019050818103600083015261398d81613490565b9050919050565b600060208201905081810360008301526139ad816134b3565b9050919050565b600060208201905081810360008301526139cd816134d6565b9050919050565b600060208201905081810360008301526139ed816134f9565b9050919050565b60006020820190508181036000830152613a0d8161351c565b9050919050565b60006020820190508181036000830152613a2d8161353f565b9050919050565b60006020820190508181036000830152613a4d81613562565b9050919050565b60006020820190508181036000830152613a6d816135a8565b9050919050565b60006020820190508181036000830152613a8d816135cb565b9050919050565b60006020820190508181036000830152613aad816135ee565b9050919050565b60006020820190508181036000830152613acd81613611565b9050919050565b60006020820190508181036000830152613aed81613634565b9050919050565b60006020820190508181036000830152613b0d81613657565b9050919050565b60006020820190508181036000830152613b2d8161367a565b9050919050565b6000602082019050613b49600083018461369d565b92915050565b6000604082019050613b64600083018561369d565b613b7160208301846132b9565b9392505050565b6000602082019050613b8d60008301846136ac565b92915050565b6000613b9d613bae565b9050613ba98282613e22565b919050565b6000604051905090565b600067ffffffffffffffff821115613bd357613bd2613f5a565b5b613bdc82613f89565b9050602081019050919050565b600067ffffffffffffffff821115613c0457613c03613f5a565b5b613c0d82613f89565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6882613d82565b9150613c7383613d82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca857613ca7613ecd565b5b828201905092915050565b6000613cbe82613d82565b9150613cc983613d82565b925082613cd957613cd8613efc565b5b828204905092915050565b6000613cef82613d82565b9150613cfa83613d82565b925082821015613d0d57613d0c613ecd565b5b828203905092915050565b6000613d2382613d62565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000613da782613d82565b9050919050565b82818337600083830152505050565b60005b83811015613ddb578082015181840152602081019050613dc0565b83811115613dea576000848401525b50505050565b60006002820490506001821680613e0857607f821691505b60208210811415613e1c57613e1b613f2b565b5b50919050565b613e2b82613f89565b810181811067ffffffffffffffff82111715613e4a57613e49613f5a565b5b80604052505050565b6000613e5e82613d82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9157613e90613ecd565b5b600182019050919050565b6000613ea782613d82565b9150613eb283613d82565b925082613ec257613ec1613efc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6f6e65206f72206d6f7265207a6f6d626965746f6164206973206f6e2062726560008201527f6564696e6720636f6f6c646f776e000000000000000000000000000000000000602082015250565b7f616d6f756e742067726561746572207468616e20616c6c6f7765642076616c7560008201527f65206f663a200000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206d616e7920746164706f6c657a000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f7420656e6f75676820627261696e7a000000000000000000000000000000600082015250565b7f6d75737420626520746865206f776e6572206f6620626f7468207a6f6d62696560008201527f20746f61647a20746f2062726565640000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f796f75206e6565642032207a6f6d62696520746f61647320746f206272656564600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b61460481613d18565b811461460f57600080fd5b50565b61461b81613d2a565b811461462657600080fd5b50565b61463281613d36565b811461463d57600080fd5b50565b61464981613d82565b811461465457600080fd5b5056fea2646970667358221220b522ee13d5feb872d6cc1b908226aaa94da5ad0544baa6eff61819fb749359e364736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000001710d860034b50177d793e16945b6a25c7d92476000000000000000000000000e62bab2c68b2d4c1f82a36d96b63e760295a52c20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000e5a6f6d626965546164706f6c657a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095a544144504f4c455a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6445355247783958646d4c5941426531333541446e6a69417766746957466e796f58567651653835687a586f2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806368e243271161011a578063a22cb465116100ad578063cbeee0271161007c578063cbeee027146105a2578063e50cc777146105be578063e985e9c5146105c8578063f2fde38b146105f8578063f6b4dfb414610614576101fb565b8063a22cb4651461051c578063b4cfaa7a14610538578063b88d4fde14610556578063c87b56dd14610572576101fb565b80638329df90116100e95780638329df90146104a45780638da5cb5b146104c25780638dcd78b1146104e057806395d89b41146104fe576101fb565b806368e24327146104305780636c0360eb1461044c57806370a082311461046a578063715018a61461049a576101fb565b8063240df5e61161019257806355f804b31161016157806355f804b314610396578063611fe2ae146103b25780636352211e146103e257806367765b8714610412576101fb565b8063240df5e61461032057806334eafb111461033e57806342842e0e1461035c57806345d9fbde14610378576101fb565b8063150b7a02116101ce578063150b7a021461029a578063162094c4146102ca57806318160ddd146102e657806323b872dd14610304576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a6004803603810190610215919061311a565b610632565b60405161022791906137fc565b60405180910390f35b610238610714565b6040516102459190613832565b60405180910390f35b610268600480360381019061026391906131ad565b6107a6565b604051610275919061370c565b60405180910390f35b61029860048036038101906102939190613034565b61082b565b005b6102b460048036038101906102af9190612efd565b610943565b6040516102c19190613817565b60405180910390f35b6102e460048036038101906102df91906131ff565b610958565b005b6102ee6109e2565b6040516102fb9190613b34565b60405180910390f35b61031e60048036038101906103199190612eae565b6109ec565b005b610328610a4c565b6040516103359190613b78565b60405180910390f35b610346610a62565b6040516103539190613b34565b60405180910390f35b61037660048036038101906103719190612eae565b610a68565b005b610380610a88565b60405161038d9190613b34565b60405180910390f35b6103b060048036038101906103ab919061316c565b610b3c565b005b6103cc60048036038101906103c791906131ad565b610bd2565b6040516103d99190613b34565b60405180910390f35b6103fc60048036038101906103f791906131ad565b610c20565b604051610409919061370c565b60405180910390f35b61041a610cd2565b6040516104279190613b34565b60405180910390f35b61044a600480360381019061044591906130c8565b610cd7565b005b610454610d70565b6040516104619190613832565b60405180910390f35b610484600480360381019061047f9190612e20565b610dfe565b6040516104919190613b34565b60405180910390f35b6104a2610eb6565b005b6104ac610f3e565b6040516104b9919061370c565b60405180910390f35b6104ca610f64565b6040516104d7919061370c565b60405180910390f35b6104e8610f8e565b6040516104f5919061370c565b60405180910390f35b610506610fb4565b6040516105139190613832565b60405180910390f35b61053660048036038101906105319190612ff8565b611046565b005b6105406111c7565b60405161054d9190613b34565b60405180910390f35b610570600480360381019061056b9190612f7d565b6111cd565b005b61058c600480360381019061058791906131ad565b61122f565b6040516105999190613832565b60405180910390f35b6105bc60048036038101906105b79190613070565b6112fc565b005b6105c6611bbe565b005b6105e260048036038101906105dd9190612e72565b611d9c565b6040516105ef91906137fc565b60405180910390f35b610612600480360381019061060d9190612e20565b611e30565b005b61061c611f28565b604051610629919061370c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070d575061070c82611f4e565b5b9050919050565b60606000805461072390613df0565b80601f016020809104026020016040519081016040528092919081815260200182805461074f90613df0565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b182611fb8565b6107f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e790613a34565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083682610c20565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90613a94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c6612024565b73ffffffffffffffffffffffffffffffffffffffff1614806108f557506108f4816108ef612024565b611d9c565b5b610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90613994565b60405180910390fd5b61093e838361202c565b505050565b600063150b7a0260e01b905095945050505050565b610960612024565b73ffffffffffffffffffffffffffffffffffffffff1661097e610f64565b73ffffffffffffffffffffffffffffffffffffffff16146109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb90613a54565b60405180910390fd5b6109de82826120e5565b5050565b6000600854905090565b6109fd6109f7612024565b82612159565b610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613ab4565b60405180910390fd5b610a47838383612237565b505050565b600a60149054906101000a900463ffffffff1681565b6115b381565b610a83838383604051806020016040528060008152506111cd565b505050565b60006103e760085411610aa657683635c9adc5dea000009050610b39565b6107cf60085411610ac257686c6b935b8bbd4000009050610b39565b610bb760085411610ade5768a2a15d09519be000009050610b39565b610f9f60085411610afa5768d8d726b7177a8000009050610b39565b61138760085411610b175769010f0cf064dd592000009050610b39565b6115b360085411610b345769014542ba12a337c000009050610b39565b600080fd5b90565b610b44612024565b73ffffffffffffffffffffffffffffffffffffffff16610b62610f64565b73ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90613a54565b60405180910390fd5b80600d9080519060200190610bce929190612b71565b5050565b6000600b8281548110610c0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906139d4565b60405180910390fd5b80915050919050565b600a81565b610cdf612024565b73ffffffffffffffffffffffffffffffffffffffff16610cfd610f64565b73ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613a54565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600d8054610d7d90613df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610da990613df0565b8015610df65780601f10610dcb57610100808354040283529160200191610df6565b820191906000526020600020905b815481529060010190602001808311610dd957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906139b4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebe612024565b73ffffffffffffffffffffffffffffffffffffffff16610edc610f64565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613a54565b60405180910390fd5b610f3c6000612493565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610fc390613df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef90613df0565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b5050505050905090565b61104e612024565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613954565b60405180910390fd5b80600560006110c9612024565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611176612024565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111bb91906137fc565b60405180910390a35050565b60085481565b6111de6111d8612024565b83612159565b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613ab4565b60405180910390fd5b61122984848484612559565b50505050565b606061123a82611fb8565b611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613b14565b60405180910390fd5b60006112836125b5565b905060008151116112c9576040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506112f4565b806112d384612647565b6040516020016112e49291906136bb565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1661134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134290613ad4565b60405180910390fd5b6115b360085410611391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611388906138b4565b60405180910390fd5b600283839050146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613af4565b60405180910390fd5b6113df610a88565b811015611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906138f4565b60405180910390fd5b611429612024565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858560008181106114b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b81526004016114da9190613b34565b60206040518083038186803b1580156114f257600080fd5b505afa158015611506573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152a9190612e49565b73ffffffffffffffffffffffffffffffffffffffff161480156116695750611550612024565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858560018181106115de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b81526004016116019190613b34565b60206040518083038186803b15801561161957600080fd5b505afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190612e49565b73ffffffffffffffffffffffffffffffffffffffff16145b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90613914565b60405180910390fd5b600a60149054906101000a900463ffffffff1663ffffffff16600b848460008181106116fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358154811061173b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154426117519190613ce4565b1180156118045750600a60149054906101000a900463ffffffff1663ffffffff16600b848460018181106117ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815481106117ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154426118029190613ce4565b115b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90613854565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016118a2929190613727565b60206040518083038186803b1580156118ba57600080fd5b505afa1580156118ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f291906131d6565b90508082111561190182612647565b60405160200161191191906136ea565b60405160208183030381529060405290611961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119589190613832565b60405180910390fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306119aa610a88565b6040518463ffffffff1660e01b81526004016119c893929190613750565b602060405180830381600087803b1580156119e257600080fd5b505af11580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a91906130f1565b50611a23612024565b73ffffffffffffffffffffffffffffffffffffffff167fc4f06bc4564a402b08099c62d8df14bd3567422435c2943b7b31e10a549d998a6001600854611a699190613c5d565b6001604051611a79929190613b4f565b60405180910390a2611aa6611a8c612024565b600860008154611a9b90613e53565b9190508190556127f4565b42600b85856000818110611ae3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581548110611b21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555042600b85856001818110611b6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581548110611baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555050505050565b611bc6612024565b73ffffffffffffffffffffffffffffffffffffffff16611be4610f64565b73ffffffffffffffffffffffffffffffffffffffff1614611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613a54565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c97919061370c565b60206040518083038186803b158015611caf57600080fd5b505afa158015611cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce791906131d6565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611d469291906137d3565b602060405180830381600087803b158015611d6057600080fd5b505af1158015611d74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9891906130f1565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e38612024565b73ffffffffffffffffffffffffffffffffffffffff16611e56610f64565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390613a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613894565b60405180910390fd5b611f2581612493565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209f83610c20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6120ee82611fb8565b61212d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612124906139f4565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612154929190612b71565b505050565b600061216482611fb8565b6121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90613974565b60405180910390fd5b60006121ae83610c20565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221d57508373ffffffffffffffffffffffffffffffffffffffff16612205846107a6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061222e575061222d8185611d9c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661225782610c20565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490613a74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490613934565b60405180910390fd5b6123288383836129c2565b61233360008261202c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123839190613ce4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123da9190613c5d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612564848484612237565b612570848484846129c7565b6125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690613874565b60405180910390fd5b50505050565b6060600d80546125c490613df0565b80601f01602080910402602001604051908101604052809291908181526020018280546125f090613df0565b801561263d5780601f106126125761010080835404028352916020019161263d565b820191906000526020600020905b81548152906001019060200180831161262057829003601f168201915b5050505050905090565b6060600082141561268f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ef565b600082905060005b600082146126c15780806126aa90613e53565b915050600a826126ba9190613cb3565b9150612697565b60008167ffffffffffffffff811115612703577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127355781602001600182028036833780820191505090505b5090505b600085146127e85760018261274e9190613ce4565b9150600a8561275d9190613e9c565b60306127699190613c5d565b60f81b8183815181106127a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e19190613cb3565b9450612739565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613a14565b60405180910390fd5b61286d81611fb8565b156128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a4906138d4565b60405180910390fd5b6128b9600083836129c2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129099190613c5d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006129e88473ffffffffffffffffffffffffffffffffffffffff16612b5e565b15612b51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a11612024565b8786866040518563ffffffff1660e01b8152600401612a339493929190613787565b602060405180830381600087803b158015612a4d57600080fd5b505af1925050508015612a7e57506040513d601f19601f82011682018060405250810190612a7b9190613143565b60015b612b01573d8060008114612aae576040519150601f19603f3d011682016040523d82523d6000602084013e612ab3565b606091505b50600081511415612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090613874565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b56565b600190505b949350505050565b600080823b905060008111915050919050565b828054612b7d90613df0565b90600052602060002090601f016020900481019282612b9f5760008555612be6565b82601f10612bb857805160ff1916838001178555612be6565b82800160010185558215612be6579182015b82811115612be5578251825591602001919060010190612bca565b5b509050612bf39190612bf7565b5090565b5b80821115612c10576000816000905550600101612bf8565b5090565b6000612c27612c2284613bb8565b613b93565b905082815260208101848484011115612c3f57600080fd5b612c4a848285613dae565b509392505050565b6000612c65612c6084613be9565b613b93565b905082815260208101848484011115612c7d57600080fd5b612c88848285613dae565b509392505050565b600081359050612c9f816145fb565b92915050565b600081519050612cb4816145fb565b92915050565b60008083601f840112612ccc57600080fd5b8235905067ffffffffffffffff811115612ce557600080fd5b602083019150836020820283011115612cfd57600080fd5b9250929050565b600081359050612d1381614612565b92915050565b600081519050612d2881614612565b92915050565b600081359050612d3d81614629565b92915050565b600081519050612d5281614629565b92915050565b60008083601f840112612d6a57600080fd5b8235905067ffffffffffffffff811115612d8357600080fd5b602083019150836001820283011115612d9b57600080fd5b9250929050565b600082601f830112612db357600080fd5b8135612dc3848260208601612c14565b91505092915050565b600082601f830112612ddd57600080fd5b8135612ded848260208601612c52565b91505092915050565b600081359050612e0581614640565b92915050565b600081519050612e1a81614640565b92915050565b600060208284031215612e3257600080fd5b6000612e4084828501612c90565b91505092915050565b600060208284031215612e5b57600080fd5b6000612e6984828501612ca5565b91505092915050565b60008060408385031215612e8557600080fd5b6000612e9385828601612c90565b9250506020612ea485828601612c90565b9150509250929050565b600080600060608486031215612ec357600080fd5b6000612ed186828701612c90565b9350506020612ee286828701612c90565b9250506040612ef386828701612df6565b9150509250925092565b600080600080600060808688031215612f1557600080fd5b6000612f2388828901612c90565b9550506020612f3488828901612c90565b9450506040612f4588828901612df6565b935050606086013567ffffffffffffffff811115612f6257600080fd5b612f6e88828901612d58565b92509250509295509295909350565b60008060008060808587031215612f9357600080fd5b6000612fa187828801612c90565b9450506020612fb287828801612c90565b9350506040612fc387828801612df6565b925050606085013567ffffffffffffffff811115612fe057600080fd5b612fec87828801612da2565b91505092959194509250565b6000806040838503121561300b57600080fd5b600061301985828601612c90565b925050602061302a85828601612d04565b9150509250929050565b6000806040838503121561304757600080fd5b600061305585828601612c90565b925050602061306685828601612df6565b9150509250929050565b60008060006040848603121561308557600080fd5b600084013567ffffffffffffffff81111561309f57600080fd5b6130ab86828701612cba565b935093505060206130be86828701612df6565b9150509250925092565b6000602082840312156130da57600080fd5b60006130e884828501612d04565b91505092915050565b60006020828403121561310357600080fd5b600061311184828501612d19565b91505092915050565b60006020828403121561312c57600080fd5b600061313a84828501612d2e565b91505092915050565b60006020828403121561315557600080fd5b600061316384828501612d43565b91505092915050565b60006020828403121561317e57600080fd5b600082013567ffffffffffffffff81111561319857600080fd5b6131a484828501612dcc565b91505092915050565b6000602082840312156131bf57600080fd5b60006131cd84828501612df6565b91505092915050565b6000602082840312156131e857600080fd5b60006131f684828501612e0b565b91505092915050565b6000806040838503121561321257600080fd5b600061322085828601612df6565b925050602083013567ffffffffffffffff81111561323d57600080fd5b61324985828601612dcc565b9150509250929050565b61325c81613d18565b82525050565b61326b81613d2a565b82525050565b61327a81613d36565b82525050565b600061328b82613c1a565b6132958185613c30565b93506132a5818560208601613dbd565b6132ae81613f89565b840191505092915050565b6132c281613d9c565b82525050565b60006132d382613c25565b6132dd8185613c41565b93506132ed818560208601613dbd565b6132f681613f89565b840191505092915050565b600061330c82613c25565b6133168185613c52565b9350613326818560208601613dbd565b80840191505092915050565b600061333f602e83613c41565b915061334a82613f9a565b604082019050919050565b6000613362602683613c52565b915061336d82613fe9565b602682019050919050565b6000613385603283613c41565b915061339082614038565b604082019050919050565b60006133a8602683613c41565b91506133b382614087565b604082019050919050565b60006133cb601183613c41565b91506133d6826140d6565b602082019050919050565b60006133ee601c83613c41565b91506133f9826140ff565b602082019050919050565b6000613411601183613c41565b915061341c82614128565b602082019050919050565b6000613434602f83613c41565b915061343f82614151565b604082019050919050565b6000613457602483613c41565b9150613462826141a0565b604082019050919050565b600061347a601983613c41565b9150613485826141ef565b602082019050919050565b600061349d602c83613c41565b91506134a882614218565b604082019050919050565b60006134c0603883613c41565b91506134cb82614267565b604082019050919050565b60006134e3602a83613c41565b91506134ee826142b6565b604082019050919050565b6000613506602983613c41565b915061351182614305565b604082019050919050565b6000613529602e83613c41565b915061353482614354565b604082019050919050565b600061354c602083613c41565b9150613557826143a3565b602082019050919050565b600061356f602c83613c41565b915061357a826143cc565b604082019050919050565b6000613592600583613c52565b915061359d8261441b565b600582019050919050565b60006135b5602083613c41565b91506135c082614444565b602082019050919050565b60006135d8602983613c41565b91506135e38261446d565b604082019050919050565b60006135fb602183613c41565b9150613606826144bc565b604082019050919050565b600061361e603183613c41565b91506136298261450b565b604082019050919050565b6000613641600b83613c41565b915061364c8261455a565b602082019050919050565b6000613664602083613c41565b915061366f82614583565b602082019050919050565b6000613687603083613c41565b9150613692826145ac565b604082019050919050565b6136a681613d82565b82525050565b6136b581613d8c565b82525050565b60006136c78285613301565b91506136d38284613301565b91506136de82613585565b91508190509392505050565b60006136f582613355565b91506137018284613301565b915081905092915050565b60006020820190506137216000830184613253565b92915050565b600060408201905061373c6000830185613253565b6137496020830184613253565b9392505050565b60006060820190506137656000830186613253565b6137726020830185613253565b61377f604083018461369d565b949350505050565b600060808201905061379c6000830187613253565b6137a96020830186613253565b6137b6604083018561369d565b81810360608301526137c88184613280565b905095945050505050565b60006040820190506137e86000830185613253565b6137f5602083018461369d565b9392505050565b60006020820190506138116000830184613262565b92915050565b600060208201905061382c6000830184613271565b92915050565b6000602082019050818103600083015261384c81846132c8565b905092915050565b6000602082019050818103600083015261386d81613332565b9050919050565b6000602082019050818103600083015261388d81613378565b9050919050565b600060208201905081810360008301526138ad8161339b565b9050919050565b600060208201905081810360008301526138cd816133be565b9050919050565b600060208201905081810360008301526138ed816133e1565b9050919050565b6000602082019050818103600083015261390d81613404565b9050919050565b6000602082019050818103600083015261392d81613427565b9050919050565b6000602082019050818103600083015261394d8161344a565b9050919050565b6000602082019050818103600083015261396d8161346d565b9050919050565b6000602082019050818103600083015261398d81613490565b9050919050565b600060208201905081810360008301526139ad816134b3565b9050919050565b600060208201905081810360008301526139cd816134d6565b9050919050565b600060208201905081810360008301526139ed816134f9565b9050919050565b60006020820190508181036000830152613a0d8161351c565b9050919050565b60006020820190508181036000830152613a2d8161353f565b9050919050565b60006020820190508181036000830152613a4d81613562565b9050919050565b60006020820190508181036000830152613a6d816135a8565b9050919050565b60006020820190508181036000830152613a8d816135cb565b9050919050565b60006020820190508181036000830152613aad816135ee565b9050919050565b60006020820190508181036000830152613acd81613611565b9050919050565b60006020820190508181036000830152613aed81613634565b9050919050565b60006020820190508181036000830152613b0d81613657565b9050919050565b60006020820190508181036000830152613b2d8161367a565b9050919050565b6000602082019050613b49600083018461369d565b92915050565b6000604082019050613b64600083018561369d565b613b7160208301846132b9565b9392505050565b6000602082019050613b8d60008301846136ac565b92915050565b6000613b9d613bae565b9050613ba98282613e22565b919050565b6000604051905090565b600067ffffffffffffffff821115613bd357613bd2613f5a565b5b613bdc82613f89565b9050602081019050919050565b600067ffffffffffffffff821115613c0457613c03613f5a565b5b613c0d82613f89565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6882613d82565b9150613c7383613d82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca857613ca7613ecd565b5b828201905092915050565b6000613cbe82613d82565b9150613cc983613d82565b925082613cd957613cd8613efc565b5b828204905092915050565b6000613cef82613d82565b9150613cfa83613d82565b925082821015613d0d57613d0c613ecd565b5b828203905092915050565b6000613d2382613d62565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000613da782613d82565b9050919050565b82818337600083830152505050565b60005b83811015613ddb578082015181840152602081019050613dc0565b83811115613dea576000848401525b50505050565b60006002820490506001821680613e0857607f821691505b60208210811415613e1c57613e1b613f2b565b5b50919050565b613e2b82613f89565b810181811067ffffffffffffffff82111715613e4a57613e49613f5a565b5b80604052505050565b6000613e5e82613d82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9157613e90613ecd565b5b600182019050919050565b6000613ea782613d82565b9150613eb283613d82565b925082613ec257613ec1613efc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6f6e65206f72206d6f7265207a6f6d626965746f6164206973206f6e2062726560008201527f6564696e6720636f6f6c646f776e000000000000000000000000000000000000602082015250565b7f616d6f756e742067726561746572207468616e20616c6c6f7765642076616c7560008201527f65206f663a200000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206d616e7920746164706f6c657a000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f7420656e6f75676820627261696e7a000000000000000000000000000000600082015250565b7f6d75737420626520746865206f776e6572206f6620626f7468207a6f6d62696560008201527f20746f61647a20746f2062726565640000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f796f75206e6565642032207a6f6d62696520746f61647320746f206272656564600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b61460481613d18565b811461460f57600080fd5b50565b61461b81613d2a565b811461462657600080fd5b50565b61463281613d36565b811461463d57600080fd5b50565b61464981613d82565b811461465457600080fd5b5056fea2646970667358221220b522ee13d5feb872d6cc1b908226aaa94da5ad0544baa6eff61819fb749359e364736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000001710d860034b50177d793e16945b6a25c7d92476000000000000000000000000e62bab2c68b2d4c1f82a36d96b63e760295a52c20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000e5a6f6d626965546164706f6c657a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095a544144504f4c455a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6445355247783958646d4c5941426531333541446e6a69417766746957466e796f58567651653835687a586f2f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ZombieTadpolez
Arg [1] : symbol_ (string): ZTADPOLEZ
Arg [2] : _zombieToadzAddress (address): 0x1710d860034b50177d793e16945B6A25C7d92476
Arg [3] : _brainzTokenAddress (address): 0xe62BaB2C68B2d4C1f82A36d96B63e760295A52c2
Arg [4] : baseURI_ (string): ipfs://QmdE5RGx9XdmLYABe135ADnjiAwftiWFnyoXVvQe85hzXo/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000001710d860034b50177d793e16945b6a25c7d92476
Arg [3] : 000000000000000000000000e62bab2c68b2d4c1f82a36d96b63e760295a52c2
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 5a6f6d626965546164706f6c657a000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 5a544144504f4c455a0000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d6445355247783958646d4c5941426531333541446e6a69
Arg [11] : 417766746957466e796f58567651653835687a586f2f00000000000000000000


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.