ETH Price: $3,160.02 (-8.95%)
Gas: 3 Gwei

Token

Doodled Bears (DBEARS)
 

Overview

Max Total Supply

216 DBEARS

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
wonkster.eth
Balance
7 DBEARS
0x135d022ead508d642e6adeca8ac709c32995ffa4
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:
DoodledBears

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.11;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract DoodledBears is ERC721, ReentrancyGuard, Ownable {
    using Counters for Counters.Counter;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory baseURI_
    ) ERC721(_name, _symbol) {
        baseURI = baseURI_;
    }

    /**
     * Minting functionality
     */
    uint256 public constant MAX_PER_TXN = 20;
    uint256 public constant SALE_PRICE = 0.03 ether;
    uint256 public mintableSupply = 5555;
    uint256 public presaleSupply = 3000;
    Counters.Counter private supplyCounter;

    modifier withinQuantityLimits(uint256 _quantity) {
        require(_quantity > 0 && _quantity <= MAX_PER_TXN, "Invalid quantity");
        _;
    }

    modifier withinMaximumSupply(uint256 _quantity) {
        require(totalSupply() + _quantity <= mintableSupply, "Surpasses supply");
        _;
    }

    modifier withinPresaleSupply(uint256 _quantity) {
        require(totalSupply() + _quantity <= presaleSupply, "Surpasses presale supply");
        _;
    }

    modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) {
        require(_wei >= SALE_PRICE * _quantity, "Insufficent funds");
        _;
    }

    function mintWhitelist(uint256 _quantity, bytes32[] calldata merkleProof)
        public
        payable
        whitelistSaleActive
        hasValidMerkleProof(merkleProof, whitelistMerkleRoot)
        hasCorrectAmount(msg.value, _quantity)
        withinPresaleSupply(_quantity)
    {
        _mintNft(_msgSender(), _quantity);
    }

    function mintPublic(uint256 _quantity)
        public
        payable
        publicSaleActive
        hasCorrectAmount(msg.value, _quantity)
    {
        _mintNft(_msgSender(), _quantity);
    }

    function _mintNft(address recipient, uint256 _quantity)
        private
        withinQuantityLimits(_quantity)
        withinMaximumSupply(_quantity)
    {
        for (uint256 i = 0; i < _quantity; i++) {
            supplyCounter.increment();
            _mint(recipient, totalSupply());
        }
    }

    function totalSupply() public view returns (uint256) {
        return supplyCounter.current();
    }

    function decreaseMintableSupply(uint256 _total) public onlyOwner {
        require(_total < mintableSupply, "Can only decrease supply");
        require(_total >= totalSupply(), "Must be above total minted");
        mintableSupply = _total;
    }

    /**
     * Gift a mint
     */
    function mintAdmin(address recipient, uint256 _quantity)
        public
        payable
        onlyOwner
    {
        _mintNft(recipient, _quantity);
    }

    /**
     * Public and Whitelist Sale Toggle
     */
    bool public publicSale = false;
    bool public whitelistSale = false;

    modifier publicSaleActive() {
        require(publicSale, "Public sale has not started");
        _;
    }

    function setPublicSale(bool toggle) external onlyOwner {
        publicSale = toggle;
    }

    modifier whitelistSaleActive() {
        require(whitelistSale, "Whitelist has not started");
        require(!publicSale, "Public sale has started");
        _;
    }

    function setWhitelistSale(bool toggle) external onlyOwner {
        whitelistSale = toggle;
    }

    /**
     * Whitelist merkle root
     */
    bytes32 public whitelistMerkleRoot;

    modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address not whitelisted"
        );
        _;
    }

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }

    /**
     * Base URI
     */
    string private baseURI;

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

    /**
     * Withdrawal
     */
    address private constant payoutAddress1 = 0xbaF153A8AfF8352cB6539CF9168255442Def0a02;
    address private constant payoutAddress2 = 0x79Bec191C629FfaE6e2fd5872f7D0033b10A5385;
    address private constant payoutAddress3 = 0x8Ba631c37CE91A2D303be09907F496220a153d6a;
    address private constant payoutAddress4 = 0x03D50521BFaB9D6442e73c1BF47e1795bAb52Df3;

    function withdraw() public nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAddress1), balance * 20 / 100);
        Address.sendValue(payable(payoutAddress2), balance * 20 / 100);
        Address.sendValue(payable(payoutAddress3), balance * 40 / 100);
        Address.sendValue(payable(payoutAddress4), balance * 20 / 100);
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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 6 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 7 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"decreaseMintableSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b3600855610bb86009556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200005357600080fd5b506040516200496e3803806200496e833981810160405281019062000079919062000414565b8282816000908051906020019062000093929190620001c7565b508060019080519060200190620000ac929190620001c7565b5050506001600681905550620000d7620000cb620000f960201b60201c565b6200010160201b60201c565b80600d9080519060200190620000ef929190620001c7565b5050505062000532565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d590620004fc565b90600052602060002090601f016020900481019282620001f9576000855562000245565b82601f106200021457805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024457825182559160200191906001019062000227565b5b50905062000254919062000258565b5090565b5b808211156200027357600081600090555060010162000259565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002e08262000295565b810181811067ffffffffffffffff82111715620003025762000301620002a6565b5b80604052505050565b60006200031762000277565b9050620003258282620002d5565b919050565b600067ffffffffffffffff821115620003485762000347620002a6565b5b620003538262000295565b9050602081019050919050565b60005b838110156200038057808201518184015260208101905062000363565b8381111562000390576000848401525b50505050565b6000620003ad620003a7846200032a565b6200030b565b905082815260208101848484011115620003cc57620003cb62000290565b5b620003d984828562000360565b509392505050565b600082601f830112620003f957620003f86200028b565b5b81516200040b84826020860162000396565b91505092915050565b60008060006060848603121562000430576200042f62000281565b5b600084015167ffffffffffffffff81111562000451576200045062000286565b5b6200045f86828701620003e1565b935050602084015167ffffffffffffffff81111562000483576200048262000286565b5b6200049186828701620003e1565b925050604084015167ffffffffffffffff811115620004b557620004b462000286565b5b620004c386828701620003e1565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051557607f821691505b602082108114156200052c576200052b620004cd565b5b50919050565b61442c80620005426000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063bd32fb66116100a0578063cc5c095c1161006f578063cc5c095c146106a9578063dd11c1e6146106d4578063e985e9c5146106fd578063efd0cbf91461073a578063f2fde38b14610756576101ee565b8063bd32fb66146105fe578063c3a7199914610627578063c87b56dd14610643578063ca7ce3ec14610680576101ee565b8063a22cb465116100dc578063a22cb46514610556578063aa98e0c61461057f578063b3a196e9146105aa578063b88d4fde146105d5576101ee565b8063715018a6146104be5780637f205a74146104d55780638da5cb5b1461050057806395d89b411461052b576101ee565b806333bc1c5c1161018557806355f804b31161015457806355f804b3146103f25780635aca1bb61461041b5780636352211e1461044457806370a0823114610481576101ee565b806333bc1c5c1461035c5780633ccfd60b1461038757806342842e0e1461039e57806351b96d92146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806318160ddd146102dd57806323b872dd1461030857806331ffd6f114610331576101ee565b806301ffc9a7146101f3578063061431a81461023057806306fdde031461024c578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061295b565b61077f565b60405161022791906129a3565b60405180910390f35b61024a60048036038101906102459190612a59565b610861565b005b34801561025857600080fd5b50610261610a81565b60405161026e9190612b52565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612b74565b610b13565b6040516102ab9190612be2565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612c29565b610b98565b005b3480156102e957600080fd5b506102f2610cb0565b6040516102ff9190612c78565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612c93565b610cc1565b005b34801561033d57600080fd5b50610346610d21565b60405161035391906129a3565b60405180910390f35b34801561036857600080fd5b50610371610d34565b60405161037e91906129a3565b60405180910390f35b34801561039357600080fd5b5061039c610d47565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612c93565b610e7d565b005b3480156103d357600080fd5b506103dc610e9d565b6040516103e99190612c78565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612e16565b610ea2565b005b34801561042757600080fd5b50610442600480360381019061043d9190612e8b565b610f38565b005b34801561045057600080fd5b5061046b60048036038101906104669190612b74565b610fd1565b6040516104789190612be2565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612eb8565b611083565b6040516104b59190612c78565b60405180910390f35b3480156104ca57600080fd5b506104d361113b565b005b3480156104e157600080fd5b506104ea6111c3565b6040516104f79190612c78565b60405180910390f35b34801561050c57600080fd5b506105156111ce565b6040516105229190612be2565b60405180910390f35b34801561053757600080fd5b506105406111f8565b60405161054d9190612b52565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612ee5565b61128a565b005b34801561058b57600080fd5b506105946112a0565b6040516105a19190612f3e565b60405180910390f35b3480156105b657600080fd5b506105bf6112a6565b6040516105cc9190612c78565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612ffa565b6112ac565b005b34801561060a57600080fd5b50610625600480360381019061062091906130a9565b61130e565b005b610641600480360381019061063c9190612c29565b611394565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612b74565b61141e565b6040516106779190612b52565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612e8b565b6114c5565b005b3480156106b557600080fd5b506106be61155e565b6040516106cb9190612c78565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190612b74565b611564565b005b34801561070957600080fd5b50610724600480360381019061071f91906130d6565b611678565b60405161073191906129a3565b60405180910390f35b610754600480360381019061074f9190612b74565b61170c565b005b34801561076257600080fd5b5061077d60048036038101906107789190612eb8565b6117c8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a5750610859826118c0565b5b9050919050565b600b60019054906101000a900460ff166108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790613162565b60405180910390fd5b600b60009054906101000a900460ff1615610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f7906131ce565b60405180910390fd5b8181600c54610977838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161095c9190613236565b6040516020818303038152906040528051906020012061192a565b6109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad9061329d565b60405180910390fd5b348680666a94d74f4300006109cb91906132ec565b821015610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613392565b60405180910390fd5b8760095481610a1a610cb0565b610a2491906133b2565b1115610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613454565b60405180910390fd5b610a76610a70611941565b8a611949565b505050505050505050565b606060008054610a90906134a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610abc906134a3565b8015610b095780601f10610ade57610100808354040283529160200191610b09565b820191906000526020600020905b815481529060010190602001808311610aec57829003601f168201915b5050505050905090565b6000610b1e82611a32565b610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490613547565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba382610fd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906135d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c33611941565b73ffffffffffffffffffffffffffffffffffffffff161480610c625750610c6181610c5c611941565b611678565b5b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c989061366b565b60405180910390fd5b610cab8383611a9e565b505050565b6000610cbc600a611b57565b905090565b610cd2610ccc611941565b82611b65565b610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906136fd565b60405180910390fd5b610d1c838383611c43565b505050565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b60026006541415610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613769565b60405180910390fd5b60026006819055506000479050610dd073baf153a8aff8352cb6539cf9168255442def0a026064601484610dc191906132ec565b610dcb91906137b8565b611e9f565b610e067379bec191c629ffae6e2fd5872f7d0033b10a53856064601484610df791906132ec565b610e0191906137b8565b611e9f565b610e3c738ba631c37ce91a2d303be09907f496220a153d6a6064602884610e2d91906132ec565b610e3791906137b8565b611e9f565b610e727303d50521bfab9d6442e73c1bf47e1795bab52df36064601484610e6391906132ec565b610e6d91906137b8565b611e9f565b506001600681905550565b610e98838383604051806020016040528060008152506112ac565b505050565b601481565b610eaa611941565b73ffffffffffffffffffffffffffffffffffffffff16610ec86111ce565b73ffffffffffffffffffffffffffffffffffffffff1614610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613835565b60405180910390fd5b80600d9080519060200190610f3492919061284c565b5050565b610f40611941565b73ffffffffffffffffffffffffffffffffffffffff16610f5e6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613835565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611071906138c7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613959565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611143611941565b73ffffffffffffffffffffffffffffffffffffffff166111616111ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90613835565b60405180910390fd5b6111c16000611f93565b565b666a94d74f43000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611207906134a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611233906134a3565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b5050505050905090565b61129c611295611941565b8383612059565b5050565b600c5481565b60095481565b6112bd6112b7611941565b83611b65565b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f3906136fd565b60405180910390fd5b611308848484846121c6565b50505050565b611316611941565b73ffffffffffffffffffffffffffffffffffffffff166113346111ce565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613835565b60405180910390fd5b80600c8190555050565b61139c611941565b73ffffffffffffffffffffffffffffffffffffffff166113ba6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613835565b60405180910390fd5b61141a8282611949565b5050565b606061142982611a32565b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906139eb565b60405180910390fd5b6000611472612222565b9050600081511161149257604051806020016040528060008152506114bd565b8061149c846122b4565b6040516020016114ad929190613a47565b6040516020818303038152906040525b915050919050565b6114cd611941565b73ffffffffffffffffffffffffffffffffffffffff166114eb6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613835565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60085481565b61156c611941565b73ffffffffffffffffffffffffffffffffffffffff1661158a6111ce565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613835565b60405180910390fd5b6008548110611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613ab7565b60405180910390fd5b61162c610cb0565b81101561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613b23565b60405180910390fd5b8060088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1661175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613b8f565b60405180910390fd5b348180666a94d74f43000061177091906132ec565b8210156117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990613392565b60405180910390fd5b6117c36117bd611941565b84611949565b505050565b6117d0611941565b73ffffffffffffffffffffffffffffffffffffffff166117ee6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90613835565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613c21565b60405180910390fd5b6118bd81611f93565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000826119378584612415565b1490509392505050565b600033905090565b8060008111801561195b575060148111155b61199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613c8d565b60405180910390fd5b81600854816119a7610cb0565b6119b191906133b2565b11156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613cf9565b60405180910390fd5b60005b83811015611a2b57611a07600a6124c8565b611a1885611a13610cb0565b6124de565b8080611a2390613d19565b9150506119f5565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1183610fd1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611b7082611a32565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613dd4565b60405180910390fd5b6000611bba83610fd1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2957508373ffffffffffffffffffffffffffffffffffffffff16611c1184610b13565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3a5750611c398185611678565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c6382610fd1565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613e66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090613ef8565b60405180910390fd5b611d348383836126ac565b611d3f600082611a9e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8f9190613f18565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de691906133b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613f98565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f0890613fe9565b60006040518083038185875af1925050503d8060008114611f45576040519150601f19603f3d011682016040523d82523d6000602084013e611f4a565b606091505b5050905080611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614070565b60405180910390fd5b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf906140dc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b991906129a3565b60405180910390a3505050565b6121d1848484611c43565b6121dd848484846126b1565b61221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061416e565b60405180910390fd5b50505050565b6060600d8054612231906134a3565b80601f016020809104026020016040519081016040528092919081815260200182805461225d906134a3565b80156122aa5780601f1061227f576101008083540402835291602001916122aa565b820191906000526020600020905b81548152906001019060200180831161228d57829003601f168201915b5050505050905090565b606060008214156122fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612410565b600082905060005b6000821461232e57808061231790613d19565b915050600a8261232791906137b8565b9150612304565b60008167ffffffffffffffff81111561234a57612349612ceb565b5b6040519080825280601f01601f19166020018201604052801561237c5781602001600182028036833780820191505090505b5090505b60008514612409576001826123959190613f18565b9150600a856123a4919061418e565b60306123b091906133b2565b60f81b8183815181106123c6576123c56141bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561240291906137b8565b9450612380565b8093505050505b919050565b60008082905060005b84518110156124bd57600085828151811061243c5761243b6141bf565b5b6020026020010151905080831161247d57828160405160200161246092919061420f565b6040516020818303038152906040528051906020012092506124a9565b808360405160200161249092919061420f565b6040516020818303038152906040528051906020012092505b5080806124b590613d19565b91505061241e565b508091505092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614287565b60405180910390fd5b61255781611a32565b15612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e906142f3565b60405180910390fd5b6125a3600083836126ac565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125f391906133b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006126d28473ffffffffffffffffffffffffffffffffffffffff16612839565b1561282c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126fb611941565b8786866040518563ffffffff1660e01b815260040161271d9493929190614368565b6020604051808303816000875af192505050801561275957506040513d601f19601f8201168201806040525081019061275691906143c9565b60015b6127dc573d8060008114612789576040519150601f19603f3d011682016040523d82523d6000602084013e61278e565b606091505b506000815114156127d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cb9061416e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612831565b600190505b949350505050565b600080823b905060008111915050919050565b828054612858906134a3565b90600052602060002090601f01602090048101928261287a57600085556128c1565b82601f1061289357805160ff19168380011785556128c1565b828001600101855582156128c1579182015b828111156128c05782518255916020019190600101906128a5565b5b5090506128ce91906128d2565b5090565b5b808211156128eb5760008160009055506001016128d3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293881612903565b811461294357600080fd5b50565b6000813590506129558161292f565b92915050565b600060208284031215612971576129706128f9565b5b600061297f84828501612946565b91505092915050565b60008115159050919050565b61299d81612988565b82525050565b60006020820190506129b86000830184612994565b92915050565b6000819050919050565b6129d1816129be565b81146129dc57600080fd5b50565b6000813590506129ee816129c8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612a1957612a186129f4565b5b8235905067ffffffffffffffff811115612a3657612a356129f9565b5b602083019150836020820283011115612a5257612a516129fe565b5b9250929050565b600080600060408486031215612a7257612a716128f9565b5b6000612a80868287016129df565b935050602084013567ffffffffffffffff811115612aa157612aa06128fe565b5b612aad86828701612a03565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015612af3578082015181840152602081019050612ad8565b83811115612b02576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b2482612ab9565b612b2e8185612ac4565b9350612b3e818560208601612ad5565b612b4781612b08565b840191505092915050565b60006020820190508181036000830152612b6c8184612b19565b905092915050565b600060208284031215612b8a57612b896128f9565b5b6000612b98848285016129df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bcc82612ba1565b9050919050565b612bdc81612bc1565b82525050565b6000602082019050612bf76000830184612bd3565b92915050565b612c0681612bc1565b8114612c1157600080fd5b50565b600081359050612c2381612bfd565b92915050565b60008060408385031215612c4057612c3f6128f9565b5b6000612c4e85828601612c14565b9250506020612c5f858286016129df565b9150509250929050565b612c72816129be565b82525050565b6000602082019050612c8d6000830184612c69565b92915050565b600080600060608486031215612cac57612cab6128f9565b5b6000612cba86828701612c14565b9350506020612ccb86828701612c14565b9250506040612cdc868287016129df565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2382612b08565b810181811067ffffffffffffffff82111715612d4257612d41612ceb565b5b80604052505050565b6000612d556128ef565b9050612d618282612d1a565b919050565b600067ffffffffffffffff821115612d8157612d80612ceb565b5b612d8a82612b08565b9050602081019050919050565b82818337600083830152505050565b6000612db9612db484612d66565b612d4b565b905082815260208101848484011115612dd557612dd4612ce6565b5b612de0848285612d97565b509392505050565b600082601f830112612dfd57612dfc6129f4565b5b8135612e0d848260208601612da6565b91505092915050565b600060208284031215612e2c57612e2b6128f9565b5b600082013567ffffffffffffffff811115612e4a57612e496128fe565b5b612e5684828501612de8565b91505092915050565b612e6881612988565b8114612e7357600080fd5b50565b600081359050612e8581612e5f565b92915050565b600060208284031215612ea157612ea06128f9565b5b6000612eaf84828501612e76565b91505092915050565b600060208284031215612ece57612ecd6128f9565b5b6000612edc84828501612c14565b91505092915050565b60008060408385031215612efc57612efb6128f9565b5b6000612f0a85828601612c14565b9250506020612f1b85828601612e76565b9150509250929050565b6000819050919050565b612f3881612f25565b82525050565b6000602082019050612f536000830184612f2f565b92915050565b600067ffffffffffffffff821115612f7457612f73612ceb565b5b612f7d82612b08565b9050602081019050919050565b6000612f9d612f9884612f59565b612d4b565b905082815260208101848484011115612fb957612fb8612ce6565b5b612fc4848285612d97565b509392505050565b600082601f830112612fe157612fe06129f4565b5b8135612ff1848260208601612f8a565b91505092915050565b60008060008060808587031215613014576130136128f9565b5b600061302287828801612c14565b945050602061303387828801612c14565b9350506040613044878288016129df565b925050606085013567ffffffffffffffff811115613065576130646128fe565b5b61307187828801612fcc565b91505092959194509250565b61308681612f25565b811461309157600080fd5b50565b6000813590506130a38161307d565b92915050565b6000602082840312156130bf576130be6128f9565b5b60006130cd84828501613094565b91505092915050565b600080604083850312156130ed576130ec6128f9565b5b60006130fb85828601612c14565b925050602061310c85828601612c14565b9150509250929050565b7f57686974656c69737420686173206e6f74207374617274656400000000000000600082015250565b600061314c601983612ac4565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f5075626c69632073616c65206861732073746172746564000000000000000000600082015250565b60006131b8601783612ac4565b91506131c382613182565b602082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b60008160601b9050919050565b6000613206826131ee565b9050919050565b6000613218826131fb565b9050919050565b61323061322b82612bc1565b61320d565b82525050565b6000613242828461321f565b60148201915081905092915050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000613287601783612ac4565b915061329282613251565b602082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f7826129be565b9150613302836129be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333b5761333a6132bd565b5b828202905092915050565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b600061337c601183612ac4565b915061338782613346565b602082019050919050565b600060208201905081810360008301526133ab8161336f565b9050919050565b60006133bd826129be565b91506133c8836129be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133fd576133fc6132bd565b5b828201905092915050565b7f5375727061737365732070726573616c6520737570706c790000000000000000600082015250565b600061343e601883612ac4565b915061344982613408565b602082019050919050565b6000602082019050818103600083015261346d81613431565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134bb57607f821691505b602082108114156134cf576134ce613474565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613531602c83612ac4565b915061353c826134d5565b604082019050919050565b6000602082019050818103600083015261356081613524565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135c3602183612ac4565b91506135ce82613567565b604082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613655603883612ac4565b9150613660826135f9565b604082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006136e7603183612ac4565b91506136f28261368b565b604082019050919050565b60006020820190508181036000830152613716816136da565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613753601f83612ac4565b915061375e8261371d565b602082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137c3826129be565b91506137ce836129be565b9250826137de576137dd613789565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061381f602083612ac4565b915061382a826137e9565b602082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006138b1602983612ac4565b91506138bc82613855565b604082019050919050565b600060208201905081810360008301526138e0816138a4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613943602a83612ac4565b915061394e826138e7565b604082019050919050565b6000602082019050818103600083015261397281613936565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139d5602f83612ac4565b91506139e082613979565b604082019050919050565b60006020820190508181036000830152613a04816139c8565b9050919050565b600081905092915050565b6000613a2182612ab9565b613a2b8185613a0b565b9350613a3b818560208601612ad5565b80840191505092915050565b6000613a538285613a16565b9150613a5f8284613a16565b91508190509392505050565b7f43616e206f6e6c7920646563726561736520737570706c790000000000000000600082015250565b6000613aa1601883612ac4565b9150613aac82613a6b565b602082019050919050565b60006020820190508181036000830152613ad081613a94565b9050919050565b7f4d7573742062652061626f766520746f74616c206d696e746564000000000000600082015250565b6000613b0d601a83612ac4565b9150613b1882613ad7565b602082019050919050565b60006020820190508181036000830152613b3c81613b00565b9050919050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613b79601b83612ac4565b9150613b8482613b43565b602082019050919050565b60006020820190508181036000830152613ba881613b6c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0b602683612ac4565b9150613c1682613baf565b604082019050919050565b60006020820190508181036000830152613c3a81613bfe565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b6000613c77601083612ac4565b9150613c8282613c41565b602082019050919050565b60006020820190508181036000830152613ca681613c6a565b9050919050565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b6000613ce3601083612ac4565b9150613cee82613cad565b602082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b6000613d24826129be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5757613d566132bd565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613dbe602c83612ac4565b9150613dc982613d62565b604082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613e50602983612ac4565b9150613e5b82613df4565b604082019050919050565b60006020820190508181036000830152613e7f81613e43565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ee2602483612ac4565b9150613eed82613e86565b604082019050919050565b60006020820190508181036000830152613f1181613ed5565b9050919050565b6000613f23826129be565b9150613f2e836129be565b925082821015613f4157613f406132bd565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613f82601d83612ac4565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b600081905092915050565b50565b6000613fd3600083613fb8565b9150613fde82613fc3565b600082019050919050565b6000613ff482613fc6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061405a603a83612ac4565b915061406582613ffe565b604082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140c6601983612ac4565b91506140d182614090565b602082019050919050565b600060208201905081810360008301526140f5816140b9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614158603283612ac4565b9150614163826140fc565b604082019050919050565b600060208201905081810360008301526141878161414b565b9050919050565b6000614199826129be565b91506141a4836129be565b9250826141b4576141b3613789565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61420961420482612f25565b6141ee565b82525050565b600061421b82856141f8565b60208201915061422b82846141f8565b6020820191508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614271602083612ac4565b915061427c8261423b565b602082019050919050565b600060208201905081810360008301526142a081614264565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006142dd601c83612ac4565b91506142e8826142a7565b602082019050919050565b6000602082019050818103600083015261430c816142d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061433a82614313565b614344818561431e565b9350614354818560208601612ad5565b61435d81612b08565b840191505092915050565b600060808201905061437d6000830187612bd3565b61438a6020830186612bd3565b6143976040830185612c69565b81810360608301526143a9818461432f565b905095945050505050565b6000815190506143c38161292f565b92915050565b6000602082840312156143df576143de6128f9565b5b60006143ed848285016143b4565b9150509291505056fea26469706673582212204bfb4d947374f8ddb58d8727f5e871f9f07f00c5ff6786db79789b399816f94364736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d446f6f646c656420426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000644424541525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e755063436376414539617455503273623274564e4e7677475445784a517576485274574145436b546738762f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063bd32fb66116100a0578063cc5c095c1161006f578063cc5c095c146106a9578063dd11c1e6146106d4578063e985e9c5146106fd578063efd0cbf91461073a578063f2fde38b14610756576101ee565b8063bd32fb66146105fe578063c3a7199914610627578063c87b56dd14610643578063ca7ce3ec14610680576101ee565b8063a22cb465116100dc578063a22cb46514610556578063aa98e0c61461057f578063b3a196e9146105aa578063b88d4fde146105d5576101ee565b8063715018a6146104be5780637f205a74146104d55780638da5cb5b1461050057806395d89b411461052b576101ee565b806333bc1c5c1161018557806355f804b31161015457806355f804b3146103f25780635aca1bb61461041b5780636352211e1461044457806370a0823114610481576101ee565b806333bc1c5c1461035c5780633ccfd60b1461038757806342842e0e1461039e57806351b96d92146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806318160ddd146102dd57806323b872dd1461030857806331ffd6f114610331576101ee565b806301ffc9a7146101f3578063061431a81461023057806306fdde031461024c578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061295b565b61077f565b60405161022791906129a3565b60405180910390f35b61024a60048036038101906102459190612a59565b610861565b005b34801561025857600080fd5b50610261610a81565b60405161026e9190612b52565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612b74565b610b13565b6040516102ab9190612be2565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612c29565b610b98565b005b3480156102e957600080fd5b506102f2610cb0565b6040516102ff9190612c78565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612c93565b610cc1565b005b34801561033d57600080fd5b50610346610d21565b60405161035391906129a3565b60405180910390f35b34801561036857600080fd5b50610371610d34565b60405161037e91906129a3565b60405180910390f35b34801561039357600080fd5b5061039c610d47565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612c93565b610e7d565b005b3480156103d357600080fd5b506103dc610e9d565b6040516103e99190612c78565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612e16565b610ea2565b005b34801561042757600080fd5b50610442600480360381019061043d9190612e8b565b610f38565b005b34801561045057600080fd5b5061046b60048036038101906104669190612b74565b610fd1565b6040516104789190612be2565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612eb8565b611083565b6040516104b59190612c78565b60405180910390f35b3480156104ca57600080fd5b506104d361113b565b005b3480156104e157600080fd5b506104ea6111c3565b6040516104f79190612c78565b60405180910390f35b34801561050c57600080fd5b506105156111ce565b6040516105229190612be2565b60405180910390f35b34801561053757600080fd5b506105406111f8565b60405161054d9190612b52565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612ee5565b61128a565b005b34801561058b57600080fd5b506105946112a0565b6040516105a19190612f3e565b60405180910390f35b3480156105b657600080fd5b506105bf6112a6565b6040516105cc9190612c78565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612ffa565b6112ac565b005b34801561060a57600080fd5b50610625600480360381019061062091906130a9565b61130e565b005b610641600480360381019061063c9190612c29565b611394565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612b74565b61141e565b6040516106779190612b52565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612e8b565b6114c5565b005b3480156106b557600080fd5b506106be61155e565b6040516106cb9190612c78565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190612b74565b611564565b005b34801561070957600080fd5b50610724600480360381019061071f91906130d6565b611678565b60405161073191906129a3565b60405180910390f35b610754600480360381019061074f9190612b74565b61170c565b005b34801561076257600080fd5b5061077d60048036038101906107789190612eb8565b6117c8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a5750610859826118c0565b5b9050919050565b600b60019054906101000a900460ff166108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790613162565b60405180910390fd5b600b60009054906101000a900460ff1615610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f7906131ce565b60405180910390fd5b8181600c54610977838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161095c9190613236565b6040516020818303038152906040528051906020012061192a565b6109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad9061329d565b60405180910390fd5b348680666a94d74f4300006109cb91906132ec565b821015610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613392565b60405180910390fd5b8760095481610a1a610cb0565b610a2491906133b2565b1115610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613454565b60405180910390fd5b610a76610a70611941565b8a611949565b505050505050505050565b606060008054610a90906134a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610abc906134a3565b8015610b095780601f10610ade57610100808354040283529160200191610b09565b820191906000526020600020905b815481529060010190602001808311610aec57829003601f168201915b5050505050905090565b6000610b1e82611a32565b610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490613547565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba382610fd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906135d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c33611941565b73ffffffffffffffffffffffffffffffffffffffff161480610c625750610c6181610c5c611941565b611678565b5b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c989061366b565b60405180910390fd5b610cab8383611a9e565b505050565b6000610cbc600a611b57565b905090565b610cd2610ccc611941565b82611b65565b610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906136fd565b60405180910390fd5b610d1c838383611c43565b505050565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b60026006541415610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613769565b60405180910390fd5b60026006819055506000479050610dd073baf153a8aff8352cb6539cf9168255442def0a026064601484610dc191906132ec565b610dcb91906137b8565b611e9f565b610e067379bec191c629ffae6e2fd5872f7d0033b10a53856064601484610df791906132ec565b610e0191906137b8565b611e9f565b610e3c738ba631c37ce91a2d303be09907f496220a153d6a6064602884610e2d91906132ec565b610e3791906137b8565b611e9f565b610e727303d50521bfab9d6442e73c1bf47e1795bab52df36064601484610e6391906132ec565b610e6d91906137b8565b611e9f565b506001600681905550565b610e98838383604051806020016040528060008152506112ac565b505050565b601481565b610eaa611941565b73ffffffffffffffffffffffffffffffffffffffff16610ec86111ce565b73ffffffffffffffffffffffffffffffffffffffff1614610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613835565b60405180910390fd5b80600d9080519060200190610f3492919061284c565b5050565b610f40611941565b73ffffffffffffffffffffffffffffffffffffffff16610f5e6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613835565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611071906138c7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613959565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611143611941565b73ffffffffffffffffffffffffffffffffffffffff166111616111ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90613835565b60405180910390fd5b6111c16000611f93565b565b666a94d74f43000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611207906134a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611233906134a3565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b5050505050905090565b61129c611295611941565b8383612059565b5050565b600c5481565b60095481565b6112bd6112b7611941565b83611b65565b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f3906136fd565b60405180910390fd5b611308848484846121c6565b50505050565b611316611941565b73ffffffffffffffffffffffffffffffffffffffff166113346111ce565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613835565b60405180910390fd5b80600c8190555050565b61139c611941565b73ffffffffffffffffffffffffffffffffffffffff166113ba6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613835565b60405180910390fd5b61141a8282611949565b5050565b606061142982611a32565b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906139eb565b60405180910390fd5b6000611472612222565b9050600081511161149257604051806020016040528060008152506114bd565b8061149c846122b4565b6040516020016114ad929190613a47565b6040516020818303038152906040525b915050919050565b6114cd611941565b73ffffffffffffffffffffffffffffffffffffffff166114eb6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613835565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60085481565b61156c611941565b73ffffffffffffffffffffffffffffffffffffffff1661158a6111ce565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613835565b60405180910390fd5b6008548110611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613ab7565b60405180910390fd5b61162c610cb0565b81101561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613b23565b60405180910390fd5b8060088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1661175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613b8f565b60405180910390fd5b348180666a94d74f43000061177091906132ec565b8210156117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990613392565b60405180910390fd5b6117c36117bd611941565b84611949565b505050565b6117d0611941565b73ffffffffffffffffffffffffffffffffffffffff166117ee6111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90613835565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613c21565b60405180910390fd5b6118bd81611f93565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000826119378584612415565b1490509392505050565b600033905090565b8060008111801561195b575060148111155b61199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613c8d565b60405180910390fd5b81600854816119a7610cb0565b6119b191906133b2565b11156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613cf9565b60405180910390fd5b60005b83811015611a2b57611a07600a6124c8565b611a1885611a13610cb0565b6124de565b8080611a2390613d19565b9150506119f5565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1183610fd1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611b7082611a32565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613dd4565b60405180910390fd5b6000611bba83610fd1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2957508373ffffffffffffffffffffffffffffffffffffffff16611c1184610b13565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3a5750611c398185611678565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c6382610fd1565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613e66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090613ef8565b60405180910390fd5b611d348383836126ac565b611d3f600082611a9e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8f9190613f18565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de691906133b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613f98565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f0890613fe9565b60006040518083038185875af1925050503d8060008114611f45576040519150601f19603f3d011682016040523d82523d6000602084013e611f4a565b606091505b5050905080611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614070565b60405180910390fd5b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf906140dc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b991906129a3565b60405180910390a3505050565b6121d1848484611c43565b6121dd848484846126b1565b61221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061416e565b60405180910390fd5b50505050565b6060600d8054612231906134a3565b80601f016020809104026020016040519081016040528092919081815260200182805461225d906134a3565b80156122aa5780601f1061227f576101008083540402835291602001916122aa565b820191906000526020600020905b81548152906001019060200180831161228d57829003601f168201915b5050505050905090565b606060008214156122fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612410565b600082905060005b6000821461232e57808061231790613d19565b915050600a8261232791906137b8565b9150612304565b60008167ffffffffffffffff81111561234a57612349612ceb565b5b6040519080825280601f01601f19166020018201604052801561237c5781602001600182028036833780820191505090505b5090505b60008514612409576001826123959190613f18565b9150600a856123a4919061418e565b60306123b091906133b2565b60f81b8183815181106123c6576123c56141bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561240291906137b8565b9450612380565b8093505050505b919050565b60008082905060005b84518110156124bd57600085828151811061243c5761243b6141bf565b5b6020026020010151905080831161247d57828160405160200161246092919061420f565b6040516020818303038152906040528051906020012092506124a9565b808360405160200161249092919061420f565b6040516020818303038152906040528051906020012092505b5080806124b590613d19565b91505061241e565b508091505092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614287565b60405180910390fd5b61255781611a32565b15612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e906142f3565b60405180910390fd5b6125a3600083836126ac565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125f391906133b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006126d28473ffffffffffffffffffffffffffffffffffffffff16612839565b1561282c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126fb611941565b8786866040518563ffffffff1660e01b815260040161271d9493929190614368565b6020604051808303816000875af192505050801561275957506040513d601f19601f8201168201806040525081019061275691906143c9565b60015b6127dc573d8060008114612789576040519150601f19603f3d011682016040523d82523d6000602084013e61278e565b606091505b506000815114156127d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cb9061416e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612831565b600190505b949350505050565b600080823b905060008111915050919050565b828054612858906134a3565b90600052602060002090601f01602090048101928261287a57600085556128c1565b82601f1061289357805160ff19168380011785556128c1565b828001600101855582156128c1579182015b828111156128c05782518255916020019190600101906128a5565b5b5090506128ce91906128d2565b5090565b5b808211156128eb5760008160009055506001016128d3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293881612903565b811461294357600080fd5b50565b6000813590506129558161292f565b92915050565b600060208284031215612971576129706128f9565b5b600061297f84828501612946565b91505092915050565b60008115159050919050565b61299d81612988565b82525050565b60006020820190506129b86000830184612994565b92915050565b6000819050919050565b6129d1816129be565b81146129dc57600080fd5b50565b6000813590506129ee816129c8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612a1957612a186129f4565b5b8235905067ffffffffffffffff811115612a3657612a356129f9565b5b602083019150836020820283011115612a5257612a516129fe565b5b9250929050565b600080600060408486031215612a7257612a716128f9565b5b6000612a80868287016129df565b935050602084013567ffffffffffffffff811115612aa157612aa06128fe565b5b612aad86828701612a03565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015612af3578082015181840152602081019050612ad8565b83811115612b02576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b2482612ab9565b612b2e8185612ac4565b9350612b3e818560208601612ad5565b612b4781612b08565b840191505092915050565b60006020820190508181036000830152612b6c8184612b19565b905092915050565b600060208284031215612b8a57612b896128f9565b5b6000612b98848285016129df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bcc82612ba1565b9050919050565b612bdc81612bc1565b82525050565b6000602082019050612bf76000830184612bd3565b92915050565b612c0681612bc1565b8114612c1157600080fd5b50565b600081359050612c2381612bfd565b92915050565b60008060408385031215612c4057612c3f6128f9565b5b6000612c4e85828601612c14565b9250506020612c5f858286016129df565b9150509250929050565b612c72816129be565b82525050565b6000602082019050612c8d6000830184612c69565b92915050565b600080600060608486031215612cac57612cab6128f9565b5b6000612cba86828701612c14565b9350506020612ccb86828701612c14565b9250506040612cdc868287016129df565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2382612b08565b810181811067ffffffffffffffff82111715612d4257612d41612ceb565b5b80604052505050565b6000612d556128ef565b9050612d618282612d1a565b919050565b600067ffffffffffffffff821115612d8157612d80612ceb565b5b612d8a82612b08565b9050602081019050919050565b82818337600083830152505050565b6000612db9612db484612d66565b612d4b565b905082815260208101848484011115612dd557612dd4612ce6565b5b612de0848285612d97565b509392505050565b600082601f830112612dfd57612dfc6129f4565b5b8135612e0d848260208601612da6565b91505092915050565b600060208284031215612e2c57612e2b6128f9565b5b600082013567ffffffffffffffff811115612e4a57612e496128fe565b5b612e5684828501612de8565b91505092915050565b612e6881612988565b8114612e7357600080fd5b50565b600081359050612e8581612e5f565b92915050565b600060208284031215612ea157612ea06128f9565b5b6000612eaf84828501612e76565b91505092915050565b600060208284031215612ece57612ecd6128f9565b5b6000612edc84828501612c14565b91505092915050565b60008060408385031215612efc57612efb6128f9565b5b6000612f0a85828601612c14565b9250506020612f1b85828601612e76565b9150509250929050565b6000819050919050565b612f3881612f25565b82525050565b6000602082019050612f536000830184612f2f565b92915050565b600067ffffffffffffffff821115612f7457612f73612ceb565b5b612f7d82612b08565b9050602081019050919050565b6000612f9d612f9884612f59565b612d4b565b905082815260208101848484011115612fb957612fb8612ce6565b5b612fc4848285612d97565b509392505050565b600082601f830112612fe157612fe06129f4565b5b8135612ff1848260208601612f8a565b91505092915050565b60008060008060808587031215613014576130136128f9565b5b600061302287828801612c14565b945050602061303387828801612c14565b9350506040613044878288016129df565b925050606085013567ffffffffffffffff811115613065576130646128fe565b5b61307187828801612fcc565b91505092959194509250565b61308681612f25565b811461309157600080fd5b50565b6000813590506130a38161307d565b92915050565b6000602082840312156130bf576130be6128f9565b5b60006130cd84828501613094565b91505092915050565b600080604083850312156130ed576130ec6128f9565b5b60006130fb85828601612c14565b925050602061310c85828601612c14565b9150509250929050565b7f57686974656c69737420686173206e6f74207374617274656400000000000000600082015250565b600061314c601983612ac4565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f5075626c69632073616c65206861732073746172746564000000000000000000600082015250565b60006131b8601783612ac4565b91506131c382613182565b602082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b60008160601b9050919050565b6000613206826131ee565b9050919050565b6000613218826131fb565b9050919050565b61323061322b82612bc1565b61320d565b82525050565b6000613242828461321f565b60148201915081905092915050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000613287601783612ac4565b915061329282613251565b602082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f7826129be565b9150613302836129be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333b5761333a6132bd565b5b828202905092915050565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b600061337c601183612ac4565b915061338782613346565b602082019050919050565b600060208201905081810360008301526133ab8161336f565b9050919050565b60006133bd826129be565b91506133c8836129be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133fd576133fc6132bd565b5b828201905092915050565b7f5375727061737365732070726573616c6520737570706c790000000000000000600082015250565b600061343e601883612ac4565b915061344982613408565b602082019050919050565b6000602082019050818103600083015261346d81613431565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134bb57607f821691505b602082108114156134cf576134ce613474565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613531602c83612ac4565b915061353c826134d5565b604082019050919050565b6000602082019050818103600083015261356081613524565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135c3602183612ac4565b91506135ce82613567565b604082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613655603883612ac4565b9150613660826135f9565b604082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006136e7603183612ac4565b91506136f28261368b565b604082019050919050565b60006020820190508181036000830152613716816136da565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613753601f83612ac4565b915061375e8261371d565b602082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137c3826129be565b91506137ce836129be565b9250826137de576137dd613789565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061381f602083612ac4565b915061382a826137e9565b602082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006138b1602983612ac4565b91506138bc82613855565b604082019050919050565b600060208201905081810360008301526138e0816138a4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613943602a83612ac4565b915061394e826138e7565b604082019050919050565b6000602082019050818103600083015261397281613936565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139d5602f83612ac4565b91506139e082613979565b604082019050919050565b60006020820190508181036000830152613a04816139c8565b9050919050565b600081905092915050565b6000613a2182612ab9565b613a2b8185613a0b565b9350613a3b818560208601612ad5565b80840191505092915050565b6000613a538285613a16565b9150613a5f8284613a16565b91508190509392505050565b7f43616e206f6e6c7920646563726561736520737570706c790000000000000000600082015250565b6000613aa1601883612ac4565b9150613aac82613a6b565b602082019050919050565b60006020820190508181036000830152613ad081613a94565b9050919050565b7f4d7573742062652061626f766520746f74616c206d696e746564000000000000600082015250565b6000613b0d601a83612ac4565b9150613b1882613ad7565b602082019050919050565b60006020820190508181036000830152613b3c81613b00565b9050919050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613b79601b83612ac4565b9150613b8482613b43565b602082019050919050565b60006020820190508181036000830152613ba881613b6c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0b602683612ac4565b9150613c1682613baf565b604082019050919050565b60006020820190508181036000830152613c3a81613bfe565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b6000613c77601083612ac4565b9150613c8282613c41565b602082019050919050565b60006020820190508181036000830152613ca681613c6a565b9050919050565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b6000613ce3601083612ac4565b9150613cee82613cad565b602082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b6000613d24826129be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5757613d566132bd565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613dbe602c83612ac4565b9150613dc982613d62565b604082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613e50602983612ac4565b9150613e5b82613df4565b604082019050919050565b60006020820190508181036000830152613e7f81613e43565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ee2602483612ac4565b9150613eed82613e86565b604082019050919050565b60006020820190508181036000830152613f1181613ed5565b9050919050565b6000613f23826129be565b9150613f2e836129be565b925082821015613f4157613f406132bd565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613f82601d83612ac4565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b600081905092915050565b50565b6000613fd3600083613fb8565b9150613fde82613fc3565b600082019050919050565b6000613ff482613fc6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061405a603a83612ac4565b915061406582613ffe565b604082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140c6601983612ac4565b91506140d182614090565b602082019050919050565b600060208201905081810360008301526140f5816140b9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614158603283612ac4565b9150614163826140fc565b604082019050919050565b600060208201905081810360008301526141878161414b565b9050919050565b6000614199826129be565b91506141a4836129be565b9250826141b4576141b3613789565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61420961420482612f25565b6141ee565b82525050565b600061421b82856141f8565b60208201915061422b82846141f8565b6020820191508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614271602083612ac4565b915061427c8261423b565b602082019050919050565b600060208201905081810360008301526142a081614264565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006142dd601c83612ac4565b91506142e8826142a7565b602082019050919050565b6000602082019050818103600083015261430c816142d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061433a82614313565b614344818561431e565b9350614354818560208601612ad5565b61435d81612b08565b840191505092915050565b600060808201905061437d6000830187612bd3565b61438a6020830186612bd3565b6143976040830185612c69565b81810360608301526143a9818461432f565b905095945050505050565b6000815190506143c38161292f565b92915050565b6000602082840312156143df576143de6128f9565b5b60006143ed848285016143b4565b9150509291505056fea26469706673582212204bfb4d947374f8ddb58d8727f5e871f9f07f00c5ff6786db79789b399816f94364736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d446f6f646c656420426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000644424541525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e755063436376414539617455503273623274564e4e7677475445784a517576485274574145436b546738762f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Doodled Bears
Arg [1] : _symbol (string): DBEARS
Arg [2] : baseURI_ (string): ipfs://QmNuPcCcvAE9atUP2sb2tVNNvwGTExJQuvHRtWAECkTg8v/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 446f6f646c656420426561727300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4442454152530000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d4e755063436376414539617455503273623274564e4e76
Arg [9] : 77475445784a517576485274574145436b546738762f00000000000000000000


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.