ETH Price: $2,640.09 (+1.58%)

Token

dTools Black (DTBLACK)
 

Overview

Max Total Supply

140 DTBLACK

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DTBLACK
0xc728F2dAC6CEf1dF193f05E69DEc73cF1Bc1B89C
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:
dToolsBlack

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

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

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

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

    // contract dynamics
    string public baseURI;
    uint256 public immutable totalSupply;
    uint256 public allowListDtoolsGoldSupply;
    uint256 public publicInitialSupply;

    // mint dynamics
    uint256 public maxSaleMint = 1;
    uint256 public mintPricePublicInitial = 800000000000000000; // 0.80 ETH
    uint256 public mintPriceDtoolsGold = 600000000000000000; // 0.60 ETH

    // we setup two maps to track the minting by wallets
    mapping(address => bool) private _allowListDtoolsGold;
    mapping(address => bool) private _hasMinted;

    mapping(address => string) public telegramUsername;

    // state of mint dynamics
    bool public initialSaleIsActive = false; 
    bool public hasBurnedUnsoldEndOfDay = false; 

    // counters for faster use by frontend
    Counters.Counter private totalMintedCounter;
    Counters.Counter private allowListMintedCounter;
    Counters.Counter private publicMintedCounter;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseTokenURI,
        uint256 _totalSupply
    ) ERC721(_name, _symbol) {
        baseURI = _baseTokenURI;
        totalSupply = _totalSupply;
        publicInitialSupply = _totalSupply;
        doMint();
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

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

    // dtools gold discount
    function setAllowListDtoolsGold(address[] calldata dtoolsGoldAddr) external onlyOwner {
        for (uint256 i = 0; i < dtoolsGoldAddr.length; i++) {
            _allowListDtoolsGold[dtoolsGoldAddr[i]] = true;
            allowListDtoolsGoldSupply += 1;
            publicInitialSupply -= 1;
        }
    }

    // start initial sale
    function toggleInitialSaleState() external onlyOwner {
        require(!initialSaleIsActive, "Too late in cycle.");
        initialSaleIsActive = true;
    }

    // burn any unsold nfts end of day
    function burnUnsoldTokens() external onlyOwner {
        hasBurnedUnsoldEndOfDay = true;
        initialSaleIsActive = false;
    }

    function mint() public payable nonReentrant {
        require(totalMintedCounter.current() < totalSupply, "Minted out.");
        require(initialSaleIsActive, "Mint not open.");
        require(!hasBurnedUnsoldEndOfDay, "Sale period has ended, all unsold NFTs were burned.");
        require(!hasMinted(_msgSender()), "You've minted, ser.");

        if (hasAllowList(_msgSender())) {
            require( // we'll never not satisfy this if hasMinted guard works
                allowListMintedCounter.current() < allowListDtoolsGoldSupply,
                "AllowList minted out."
            );
            require(
                msg.value >= mintPriceDtoolsGold,
                "Send more ether for allowlist."
            );
            doMint();
            allowListMintedCounter._value += 1;
            return;
        }
        require(
            publicMintedCounter.current() < publicInitialSupply,
            "Public minted out."
        );
        require(
            msg.value >= mintPricePublicInitial,
            "Send more ether for public."
        );
        doMint();
        publicMintedCounter._value += 1;
    }

    // Returns the current amount of NFTs minted in total.
    function totalMinted() public view returns (uint256) {
        return totalMintedCounter.current();
    }

    // Returns the current amount of NFTs minted from the allow list tranche.
    function allowListMinted() public view returns (uint256) {
        return allowListMintedCounter.current();
    }

    // Returns the current amount of NFTs minted from the public tranche.
    function publicMinted() public view returns (uint256) {
        return publicMintedCounter.current();
    }

    // Returns whether the address is on the allow list
    function hasAllowList(address _addy) public view returns (bool) {
        return _allowListDtoolsGold[_addy];
    }

    // Returns whether the address has minted
    function hasMinted(address _addy) public view returns (bool) {
        return _hasMinted[_addy];
    }

    // helper function to do the mint
    function doMint() internal {
        _safeMint(_msgSender(), (totalMintedCounter.current() + 1));
        totalMintedCounter._value += 1;
        _hasMinted[_msgSender()] = true;
    }

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

    // user sets telegram username to gain access to dapp
    // mechanism will be moved to seperate contract in the
    // future that allows user to rent out their utility
    // to other people.
    function setTelegramUsername(string memory _username) public {
        telegramUsername[msg.sender] = _username;
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 13 : 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 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 5 of 13 : 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 6 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"allowListDtoolsGoldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMinted","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnUnsoldTokens","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":"_addy","type":"address"}],"name":"hasAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasBurnedUnsoldEndOfDay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addy","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPriceDtoolsGold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPricePublicInitial","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":"publicInitialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"dtoolsGoldAddr","type":"address[]"}],"name":"setAllowListDtoolsGold","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_username","type":"string"}],"name":"setTelegramUsername","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":"address","name":"","type":"address"}],"name":"telegramUsername","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleInitialSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526001600b55670b1a2bc2ec500000600c55670853a0d2313c0000600d556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200006457600080fd5b50604051620052713803806200527183398181016040528101906200008a919062000965565b838381600090816200009d919062000c75565b508060019081620000af919062000c75565b505050620000d2620000c66200011560201b60201c565b6200011d60201b60201c565b60016007819055508160089081620000eb919062000c75565b50806080818152505080600a819055506200010b620001e360201b60201c565b505050506200110b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000228620001f76200011560201b60201c565b6001620002106012620002b060201b620017fc1760201c565b6200021c919062000d8b565b620002be60201b60201c565b60016012600001600082825462000240919062000d8b565b925050819055506001600f60006200025d6200011560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600081600001549050919050565b620002e0828260405180602001604052806000815250620002e460201b60201c565b5050565b620002f683836200035260201b60201c565b6200030b60008484846200054b60201b60201c565b6200034d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003449062000e6f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bb9062000ee1565b60405180910390fd5b620003d581620006f460201b60201c565b1562000418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040f9062000f53565b60405180910390fd5b6200042c600083836200076060201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200047e919062000d8b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000547600083836200076560201b60201c565b5050565b6000620005798473ffffffffffffffffffffffffffffffffffffffff166200076a60201b6200180a1760201c565b15620006e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005ab6200011560201b60201c565b8786866040518563ffffffff1660e01b8152600401620005cf949392919062001028565b6020604051808303816000875af19250505080156200060e57506040513d601f19601f820116820180604052508101906200060b9190620010d9565b60015b62000696573d806000811462000641576040519150601f19603f3d011682016040523d82523d6000602084013e62000646565b606091505b5060008151036200068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006859062000e6f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006ec565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007f682620007ab565b810181811067ffffffffffffffff82111715620008185762000817620007bc565b5b80604052505050565b60006200082d6200078d565b90506200083b8282620007eb565b919050565b600067ffffffffffffffff8211156200085e576200085d620007bc565b5b6200086982620007ab565b9050602081019050919050565b60005b838110156200089657808201518184015260208101905062000879565b83811115620008a6576000848401525b50505050565b6000620008c3620008bd8462000840565b62000821565b905082815260208101848484011115620008e257620008e1620007a6565b5b620008ef84828562000876565b509392505050565b600082601f8301126200090f576200090e620007a1565b5b815162000921848260208601620008ac565b91505092915050565b6000819050919050565b6200093f816200092a565b81146200094b57600080fd5b50565b6000815190506200095f8162000934565b92915050565b6000806000806080858703121562000982576200098162000797565b5b600085015167ffffffffffffffff811115620009a357620009a26200079c565b5b620009b187828801620008f7565b945050602085015167ffffffffffffffff811115620009d557620009d46200079c565b5b620009e387828801620008f7565b935050604085015167ffffffffffffffff81111562000a075762000a066200079c565b5b62000a1587828801620008f7565b925050606062000a28878288016200094e565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a8757607f821691505b60208210810362000a9d5762000a9c62000a3f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ac8565b62000b13868362000ac8565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b5662000b5062000b4a846200092a565b62000b2b565b6200092a565b9050919050565b6000819050919050565b62000b728362000b35565b62000b8a62000b818262000b5d565b84845462000ad5565b825550505050565b600090565b62000ba162000b92565b62000bae81848462000b67565b505050565b5b8181101562000bd65762000bca60008262000b97565b60018101905062000bb4565b5050565b601f82111562000c255762000bef8162000aa3565b62000bfa8462000ab8565b8101602085101562000c0a578190505b62000c2262000c198562000ab8565b83018262000bb3565b50505b505050565b600082821c905092915050565b600062000c4a6000198460080262000c2a565b1980831691505092915050565b600062000c65838362000c37565b9150826002028217905092915050565b62000c808262000a34565b67ffffffffffffffff81111562000c9c5762000c9b620007bc565b5b62000ca8825462000a6e565b62000cb582828562000bda565b600060209050601f83116001811462000ced576000841562000cd8578287015190505b62000ce4858262000c57565b86555062000d54565b601f19841662000cfd8662000aa3565b60005b8281101562000d275784890151825560018201915060208501945060208101905062000d00565b8683101562000d47578489015162000d43601f89168262000c37565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d98826200092a565b915062000da5836200092a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ddd5762000ddc62000d5c565b5b828201905092915050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000e5760328362000de8565b915062000e648262000df9565b604082019050919050565b6000602082019050818103600083015262000e8a8162000e48565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000ec960208362000de8565b915062000ed68262000e91565b602082019050919050565b6000602082019050818103600083015262000efc8162000eba565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000f3b601c8362000de8565b915062000f488262000f03565b602082019050919050565b6000602082019050818103600083015262000f6e8162000f2c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fa28262000f75565b9050919050565b62000fb48162000f95565b82525050565b62000fc5816200092a565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000ff48262000fcb565b62001000818562000fd6565b93506200101281856020860162000876565b6200101d81620007ab565b840191505092915050565b60006080820190506200103f600083018762000fa9565b6200104e602083018662000fa9565b6200105d604083018562000fba565b818103606083015262001071818462000fe7565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620010b3816200107c565b8114620010bf57600080fd5b50565b600081519050620010d381620010a8565b92915050565b600060208284031215620010f257620010f162000797565b5b60006200110284828501620010c2565b91505092915050565b6080516141436200112e60003960008181610bcb0152610eb801526141436000f3fe6080604052600436106102255760003560e01c80638da5cb5b11610123578063b4d59bc6116100ab578063dc0fbf731161006f578063dc0fbf73146107b4578063e985e9c5146107f1578063f2aba85b1461082e578063f2fde38b14610859578063f36643a51461088257610225565b8063b4d59bc6146106cd578063b88d4fde146106f8578063c81557e814610721578063c87b56dd1461074c578063cf5a13f61461078957610225565b8063a0cd3b24116100f2578063a0cd3b24146105f8578063a22cb46514610623578063a2309ff81461064c578063a4f4f8af14610677578063b0a8a63a146106a257610225565b80638da5cb5b14610562578063940bb3441461058d57806395d89b41146105a45780639ce27923146105cf57610225565b806338e21cce116101b157806355f804b31161017557806355f804b31461047d5780636352211e146104a65780636c0360eb146104e357806370a082311461050e578063715018a61461054b57610225565b806338e21cce146103aa5780633ccfd60b146103e7578063414178cb146103fe57806342842e0e14610429578063457155d11461045257610225565b80631249c58b116101f85780631249c58b146102f857806318160ddd146103025780631b72c3d91461032d57806323b872dd1461036a5780633628998c1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906127ef565b6108ab565b60405161025e9190612837565b60405180910390f35b34801561027357600080fd5b5061027c61098d565b60405161028991906128eb565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612943565b610a1f565b6040516102c691906129b1565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906129f8565b610a65565b005b610300610b7c565b005b34801561030e57600080fd5b50610317610eb6565b6040516103249190612a47565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612a62565b610eda565b60405161036191906128eb565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612a8f565b610f7a565b005b34801561039f57600080fd5b506103a8610fda565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612a62565b61104f565b6040516103de9190612837565b60405180910390f35b3480156103f357600080fd5b506103fc6110a5565b005b34801561040a57600080fd5b506104136110c6565b6040516104209190612a47565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612a8f565b6110cc565b005b34801561045e57600080fd5b506104676110ec565b6040516104749190612a47565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612c17565b6110f2565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190612943565b61110d565b6040516104da91906129b1565b60405180910390f35b3480156104ef57600080fd5b506104f86111be565b60405161050591906128eb565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612a62565b61124c565b6040516105429190612a47565b60405180910390f35b34801561055757600080fd5b50610560611303565b005b34801561056e57600080fd5b50610577611317565b60405161058491906129b1565b60405180910390f35b34801561059957600080fd5b506105a2611341565b005b3480156105b057600080fd5b506105b9611381565b6040516105c691906128eb565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612c17565b611413565b005b34801561060457600080fd5b5061060d611463565b60405161061a9190612a47565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612c8c565b611469565b005b34801561065857600080fd5b5061066161147f565b60405161066e9190612a47565b60405180910390f35b34801561068357600080fd5b5061068c611490565b6040516106999190612a47565b60405180910390f35b3480156106ae57600080fd5b506106b76114a1565b6040516106c49190612837565b60405180910390f35b3480156106d957600080fd5b506106e26114b4565b6040516106ef9190612837565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612d6d565b6114c7565b005b34801561072d57600080fd5b50610736611529565b6040516107439190612a47565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612943565b61152f565b60405161078091906128eb565b60405180910390f35b34801561079557600080fd5b5061079e611597565b6040516107ab9190612a47565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190612a62565b6115a8565b6040516107e89190612837565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190612df0565b6115fe565b6040516108259190612837565b60405180910390f35b34801561083a57600080fd5b50610843611692565b6040516108509190612a47565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190612a62565b611698565b005b34801561088e57600080fd5b506108a960048036038101906108a49190612e90565b61171b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657506109858261182d565b5b9050919050565b60606000805461099c90612f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890612f0c565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611897565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a708261110d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612faf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aff6118e2565b73ffffffffffffffffffffffffffffffffffffffff161480610b2e5750610b2d81610b286118e2565b6115fe565b5b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490613041565b60405180910390fd5b610b7783836118ea565b505050565b600260075403610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906130ad565b60405180910390fd5b60026007819055507f0000000000000000000000000000000000000000000000000000000000000000610bf460126117fc565b10610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90613119565b60405180910390fd5b601160009054906101000a900460ff16610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613185565b60405180910390fd5b601160019054906101000a900460ff1615610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613217565b60405180910390fd5b610ce3610cde6118e2565b61104f565b15610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90613283565b60405180910390fd5b610d33610d2e6118e2565b6115a8565b15610df457600954610d4560136117fc565b10610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906132ef565b60405180910390fd5b600d54341015610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19061335b565b60405180910390fd5b610dd26119a3565b600160136000016000828254610de891906133aa565b92505081905550610eac565b600a54610e0160146117fc565b10610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e389061344c565b60405180910390fd5b600c54341015610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906134b8565b60405180910390fd5b610e8e6119a3565b600160146000016000828254610ea491906133aa565b925050819055505b6001600781905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b60106020528060005260406000206000915090508054610ef990612f0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2590612f0c565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b505050505081565b610f8b610f856118e2565b82611a47565b610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc19061354a565b60405180910390fd5b610fd5838383611adc565b505050565b610fe2611d42565b601160009054906101000a900460ff1615611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906135b6565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110ad611d42565b60004790506110c36110bd611317565b82611dc0565b50565b600d5481565b6110e7838383604051806020016040528060008152506114c7565b505050565b60095481565b6110fa611d42565b80600890816111099190613782565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac906138a0565b60405180910390fd5b80915050919050565b600880546111cb90612f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546111f790612f0c565b80156112445780601f1061121957610100808354040283529160200191611244565b820191906000526020600020905b81548152906001019060200180831161122757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390613932565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b611d42565b6113156000611eb4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611349611d42565b6001601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff021916908315150217905550565b60606001805461139090612f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546113bc90612f0c565b80156114095780601f106113de57610100808354040283529160200191611409565b820191906000526020600020905b8154815290600101906020018083116113ec57829003601f168201915b5050505050905090565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020908161145f9190613782565b5050565b600c5481565b61147b6114746118e2565b8383611f7a565b5050565b600061148b60126117fc565b905090565b600061149c60146117fc565b905090565b601160009054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6114d86114d26118e2565b83611a47565b611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061354a565b60405180910390fd5b611523848484846120e6565b50505050565b600b5481565b606061153a82611897565b6000611544612142565b90506000815111611564576040518060200160405280600081525061158f565b8061156e846121d4565b60405160200161157f92919061398e565b6040516020818303038152906040525b915050919050565b60006115a360136117fc565b905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b6116a0611d42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613a24565b60405180910390fd5b61171881611eb4565b50565b611723611d42565b60005b828290508110156117f7576001600e600085858581811061174a57611749613a44565b5b905060200201602081019061175f9190612a62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008282546117c391906133aa565b925050819055506001600a60008282546117dd9190613a73565b9250508190555080806117ef90613aa7565b915050611726565b505050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6118a081612334565b6118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906138a0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661195d8361110d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119c96119ae6118e2565b60016119ba60126117fc565b6119c491906133aa565b6123a0565b6001601260000160008282546119df91906133aa565b925050819055506001600f60006119f46118e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600080611a538361110d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a955750611a9481856115fe565b5b80611ad357508373ffffffffffffffffffffffffffffffffffffffff16611abb84610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611afc8261110d565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613b61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613bf3565b60405180910390fd5b611bcc8383836123be565b611bd76000826118ea565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c279190613a73565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7e91906133aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d3d8383836123c3565b505050565b611d4a6118e2565b73ffffffffffffffffffffffffffffffffffffffff16611d68611317565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590613c5f565b60405180910390fd5b565b80471015611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90613ccb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e2990613d1c565b60006040518083038185875af1925050503d8060008114611e66576040519150601f19603f3d011682016040523d82523d6000602084013e611e6b565b606091505b5050905080611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690613da3565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613e0f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d99190612837565b60405180910390a3505050565b6120f1848484611adc565b6120fd848484846123c8565b61213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613ea1565b60405180910390fd5b50505050565b60606008805461215190612f0c565b80601f016020809104026020016040519081016040528092919081815260200182805461217d90612f0c565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b5050505050905090565b60606000820361221b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061232f565b600082905060005b6000821461224d57808061223690613aa7565b915050600a826122469190613ef0565b9150612223565b60008167ffffffffffffffff81111561226957612268612aec565b5b6040519080825280601f01601f19166020018201604052801561229b5781602001600182028036833780820191505090505b5090505b60008514612328576001826122b49190613a73565b9150600a856122c39190613f21565b60306122cf91906133aa565b60f81b8183815181106122e5576122e4613a44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123219190613ef0565b945061229f565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6123ba82826040518060200160405280600081525061254f565b5050565b505050565b505050565b60006123e98473ffffffffffffffffffffffffffffffffffffffff1661180a565b15612542578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124126118e2565b8786866040518563ffffffff1660e01b81526004016124349493929190613fa7565b6020604051808303816000875af192505050801561247057506040513d601f19601f8201168201806040525081019061246d9190614008565b60015b6124f2573d80600081146124a0576040519150601f19603f3d011682016040523d82523d6000602084013e6124a5565b606091505b5060008151036124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e190613ea1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612547565b600190505b949350505050565b61255983836125aa565b61256660008484846123c8565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613ea1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261090614081565b60405180910390fd5b61262281612334565b15612662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612659906140ed565b60405180910390fd5b61266e600083836123be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126be91906133aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277f600083836123c3565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127cc81612797565b81146127d757600080fd5b50565b6000813590506127e9816127c3565b92915050565b6000602082840312156128055761280461278d565b5b6000612813848285016127da565b91505092915050565b60008115159050919050565b6128318161281c565b82525050565b600060208201905061284c6000830184612828565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561288c578082015181840152602081019050612871565b8381111561289b576000848401525b50505050565b6000601f19601f8301169050919050565b60006128bd82612852565b6128c7818561285d565b93506128d781856020860161286e565b6128e0816128a1565b840191505092915050565b6000602082019050818103600083015261290581846128b2565b905092915050565b6000819050919050565b6129208161290d565b811461292b57600080fd5b50565b60008135905061293d81612917565b92915050565b6000602082840312156129595761295861278d565b5b60006129678482850161292e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061299b82612970565b9050919050565b6129ab81612990565b82525050565b60006020820190506129c660008301846129a2565b92915050565b6129d581612990565b81146129e057600080fd5b50565b6000813590506129f2816129cc565b92915050565b60008060408385031215612a0f57612a0e61278d565b5b6000612a1d858286016129e3565b9250506020612a2e8582860161292e565b9150509250929050565b612a418161290d565b82525050565b6000602082019050612a5c6000830184612a38565b92915050565b600060208284031215612a7857612a7761278d565b5b6000612a86848285016129e3565b91505092915050565b600080600060608486031215612aa857612aa761278d565b5b6000612ab6868287016129e3565b9350506020612ac7868287016129e3565b9250506040612ad88682870161292e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b24826128a1565b810181811067ffffffffffffffff82111715612b4357612b42612aec565b5b80604052505050565b6000612b56612783565b9050612b628282612b1b565b919050565b600067ffffffffffffffff821115612b8257612b81612aec565b5b612b8b826128a1565b9050602081019050919050565b82818337600083830152505050565b6000612bba612bb584612b67565b612b4c565b905082815260208101848484011115612bd657612bd5612ae7565b5b612be1848285612b98565b509392505050565b600082601f830112612bfe57612bfd612ae2565b5b8135612c0e848260208601612ba7565b91505092915050565b600060208284031215612c2d57612c2c61278d565b5b600082013567ffffffffffffffff811115612c4b57612c4a612792565b5b612c5784828501612be9565b91505092915050565b612c698161281c565b8114612c7457600080fd5b50565b600081359050612c8681612c60565b92915050565b60008060408385031215612ca357612ca261278d565b5b6000612cb1858286016129e3565b9250506020612cc285828601612c77565b9150509250929050565b600067ffffffffffffffff821115612ce757612ce6612aec565b5b612cf0826128a1565b9050602081019050919050565b6000612d10612d0b84612ccc565b612b4c565b905082815260208101848484011115612d2c57612d2b612ae7565b5b612d37848285612b98565b509392505050565b600082601f830112612d5457612d53612ae2565b5b8135612d64848260208601612cfd565b91505092915050565b60008060008060808587031215612d8757612d8661278d565b5b6000612d95878288016129e3565b9450506020612da6878288016129e3565b9350506040612db78782880161292e565b925050606085013567ffffffffffffffff811115612dd857612dd7612792565b5b612de487828801612d3f565b91505092959194509250565b60008060408385031215612e0757612e0661278d565b5b6000612e15858286016129e3565b9250506020612e26858286016129e3565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612e5057612e4f612ae2565b5b8235905067ffffffffffffffff811115612e6d57612e6c612e30565b5b602083019150836020820283011115612e8957612e88612e35565b5b9250929050565b60008060208385031215612ea757612ea661278d565b5b600083013567ffffffffffffffff811115612ec557612ec4612792565b5b612ed185828601612e3a565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2457607f821691505b602082108103612f3757612f36612edd565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f9960218361285d565b9150612fa482612f3d565b604082019050919050565b60006020820190508181036000830152612fc881612f8c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061302b603e8361285d565b915061303682612fcf565b604082019050919050565b6000602082019050818103600083015261305a8161301e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613097601f8361285d565b91506130a282613061565b602082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f4d696e746564206f75742e000000000000000000000000000000000000000000600082015250565b6000613103600b8361285d565b915061310e826130cd565b602082019050919050565b60006020820190508181036000830152613132816130f6565b9050919050565b7f4d696e74206e6f74206f70656e2e000000000000000000000000000000000000600082015250565b600061316f600e8361285d565b915061317a82613139565b602082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f53616c6520706572696f642068617320656e6465642c20616c6c20756e736f6c60008201527f64204e4654732077657265206275726e65642e00000000000000000000000000602082015250565b600061320160338361285d565b915061320c826131a5565b604082019050919050565b60006020820190508181036000830152613230816131f4565b9050919050565b7f596f75277665206d696e7465642c207365722e00000000000000000000000000600082015250565b600061326d60138361285d565b915061327882613237565b602082019050919050565b6000602082019050818103600083015261329c81613260565b9050919050565b7f416c6c6f774c697374206d696e746564206f75742e0000000000000000000000600082015250565b60006132d960158361285d565b91506132e4826132a3565b602082019050919050565b60006020820190508181036000830152613308816132cc565b9050919050565b7f53656e64206d6f726520657468657220666f7220616c6c6f776c6973742e0000600082015250565b6000613345601e8361285d565b91506133508261330f565b602082019050919050565b6000602082019050818103600083015261337481613338565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133b58261290d565b91506133c08361290d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133f5576133f461337b565b5b828201905092915050565b7f5075626c6963206d696e746564206f75742e0000000000000000000000000000600082015250565b600061343660128361285d565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f53656e64206d6f726520657468657220666f72207075626c69632e0000000000600082015250565b60006134a2601b8361285d565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613534602e8361285d565b915061353f826134d8565b604082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b7f546f6f206c61746520696e206379636c652e0000000000000000000000000000600082015250565b60006135a060128361285d565b91506135ab8261356a565b602082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135fb565b61364286836135fb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061367f61367a6136758461290d565b61365a565b61290d565b9050919050565b6000819050919050565b61369983613664565b6136ad6136a582613686565b848454613608565b825550505050565b600090565b6136c26136b5565b6136cd818484613690565b505050565b5b818110156136f1576136e66000826136ba565b6001810190506136d3565b5050565b601f82111561373657613707816135d6565b613710846135eb565b8101602085101561371f578190505b61373361372b856135eb565b8301826136d2565b50505b505050565b600082821c905092915050565b60006137596000198460080261373b565b1980831691505092915050565b60006137728383613748565b9150826002028217905092915050565b61378b82612852565b67ffffffffffffffff8111156137a4576137a3612aec565b5b6137ae8254612f0c565b6137b98282856136f5565b600060209050601f8311600181146137ec57600084156137da578287015190505b6137e48582613766565b86555061384c565b601f1984166137fa866135d6565b60005b82811015613822578489015182556001820191506020850194506020810190506137fd565b8683101561383f578489015161383b601f891682613748565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061388a60188361285d565b915061389582613854565b602082019050919050565b600060208201905081810360008301526138b98161387d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061391c60298361285d565b9150613927826138c0565b604082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b600081905092915050565b600061396882612852565b6139728185613952565b935061398281856020860161286e565b80840191505092915050565b600061399a828561395d565b91506139a6828461395d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a0e60268361285d565b9150613a19826139b2565b604082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a7e8261290d565b9150613a898361290d565b925082821015613a9c57613a9b61337b565b5b828203905092915050565b6000613ab28261290d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae457613ae361337b565b5b600182019050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b4b60258361285d565b9150613b5682613aef565b604082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bdd60248361285d565b9150613be882613b81565b604082019050919050565b60006020820190508181036000830152613c0c81613bd0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c4960208361285d565b9150613c5482613c13565b602082019050919050565b60006020820190508181036000830152613c7881613c3c565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613cb5601d8361285d565b9150613cc082613c7f565b602082019050919050565b60006020820190508181036000830152613ce481613ca8565b9050919050565b600081905092915050565b50565b6000613d06600083613ceb565b9150613d1182613cf6565b600082019050919050565b6000613d2782613cf9565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613d8d603a8361285d565b9150613d9882613d31565b604082019050919050565b60006020820190508181036000830152613dbc81613d80565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613df960198361285d565b9150613e0482613dc3565b602082019050919050565b60006020820190508181036000830152613e2881613dec565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e8b60328361285d565b9150613e9682613e2f565b604082019050919050565b60006020820190508181036000830152613eba81613e7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613efb8261290d565b9150613f068361290d565b925082613f1657613f15613ec1565b5b828204905092915050565b6000613f2c8261290d565b9150613f378361290d565b925082613f4757613f46613ec1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613f7982613f52565b613f838185613f5d565b9350613f9381856020860161286e565b613f9c816128a1565b840191505092915050565b6000608082019050613fbc60008301876129a2565b613fc960208301866129a2565b613fd66040830185612a38565b8181036060830152613fe88184613f6e565b905095945050505050565b600081519050614002816127c3565b92915050565b60006020828403121561401e5761401d61278d565b5b600061402c84828501613ff3565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061406b60208361285d565b915061407682614035565b602082019050919050565b6000602082019050818103600083015261409a8161405e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006140d7601c8361285d565b91506140e2826140a1565b602082019050919050565b60006020820190508181036000830152614106816140ca565b905091905056fea26469706673582212209807929f0a509d4dc35ea3da72d3bd5c2283d06703e0145cb3f3d3fedde049dd64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000000c64546f6f6c7320426c61636b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074454424c41434b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a64746f6f6c732e6e657400000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638da5cb5b11610123578063b4d59bc6116100ab578063dc0fbf731161006f578063dc0fbf73146107b4578063e985e9c5146107f1578063f2aba85b1461082e578063f2fde38b14610859578063f36643a51461088257610225565b8063b4d59bc6146106cd578063b88d4fde146106f8578063c81557e814610721578063c87b56dd1461074c578063cf5a13f61461078957610225565b8063a0cd3b24116100f2578063a0cd3b24146105f8578063a22cb46514610623578063a2309ff81461064c578063a4f4f8af14610677578063b0a8a63a146106a257610225565b80638da5cb5b14610562578063940bb3441461058d57806395d89b41146105a45780639ce27923146105cf57610225565b806338e21cce116101b157806355f804b31161017557806355f804b31461047d5780636352211e146104a65780636c0360eb146104e357806370a082311461050e578063715018a61461054b57610225565b806338e21cce146103aa5780633ccfd60b146103e7578063414178cb146103fe57806342842e0e14610429578063457155d11461045257610225565b80631249c58b116101f85780631249c58b146102f857806318160ddd146103025780631b72c3d91461032d57806323b872dd1461036a5780633628998c1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906127ef565b6108ab565b60405161025e9190612837565b60405180910390f35b34801561027357600080fd5b5061027c61098d565b60405161028991906128eb565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612943565b610a1f565b6040516102c691906129b1565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906129f8565b610a65565b005b610300610b7c565b005b34801561030e57600080fd5b50610317610eb6565b6040516103249190612a47565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612a62565b610eda565b60405161036191906128eb565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612a8f565b610f7a565b005b34801561039f57600080fd5b506103a8610fda565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612a62565b61104f565b6040516103de9190612837565b60405180910390f35b3480156103f357600080fd5b506103fc6110a5565b005b34801561040a57600080fd5b506104136110c6565b6040516104209190612a47565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612a8f565b6110cc565b005b34801561045e57600080fd5b506104676110ec565b6040516104749190612a47565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612c17565b6110f2565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190612943565b61110d565b6040516104da91906129b1565b60405180910390f35b3480156104ef57600080fd5b506104f86111be565b60405161050591906128eb565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612a62565b61124c565b6040516105429190612a47565b60405180910390f35b34801561055757600080fd5b50610560611303565b005b34801561056e57600080fd5b50610577611317565b60405161058491906129b1565b60405180910390f35b34801561059957600080fd5b506105a2611341565b005b3480156105b057600080fd5b506105b9611381565b6040516105c691906128eb565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612c17565b611413565b005b34801561060457600080fd5b5061060d611463565b60405161061a9190612a47565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612c8c565b611469565b005b34801561065857600080fd5b5061066161147f565b60405161066e9190612a47565b60405180910390f35b34801561068357600080fd5b5061068c611490565b6040516106999190612a47565b60405180910390f35b3480156106ae57600080fd5b506106b76114a1565b6040516106c49190612837565b60405180910390f35b3480156106d957600080fd5b506106e26114b4565b6040516106ef9190612837565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612d6d565b6114c7565b005b34801561072d57600080fd5b50610736611529565b6040516107439190612a47565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612943565b61152f565b60405161078091906128eb565b60405180910390f35b34801561079557600080fd5b5061079e611597565b6040516107ab9190612a47565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190612a62565b6115a8565b6040516107e89190612837565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190612df0565b6115fe565b6040516108259190612837565b60405180910390f35b34801561083a57600080fd5b50610843611692565b6040516108509190612a47565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190612a62565b611698565b005b34801561088e57600080fd5b506108a960048036038101906108a49190612e90565b61171b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657506109858261182d565b5b9050919050565b60606000805461099c90612f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890612f0c565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611897565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a708261110d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612faf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aff6118e2565b73ffffffffffffffffffffffffffffffffffffffff161480610b2e5750610b2d81610b286118e2565b6115fe565b5b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490613041565b60405180910390fd5b610b7783836118ea565b505050565b600260075403610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906130ad565b60405180910390fd5b60026007819055507f000000000000000000000000000000000000000000000000000000000000008c610bf460126117fc565b10610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90613119565b60405180910390fd5b601160009054906101000a900460ff16610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613185565b60405180910390fd5b601160019054906101000a900460ff1615610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613217565b60405180910390fd5b610ce3610cde6118e2565b61104f565b15610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90613283565b60405180910390fd5b610d33610d2e6118e2565b6115a8565b15610df457600954610d4560136117fc565b10610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906132ef565b60405180910390fd5b600d54341015610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19061335b565b60405180910390fd5b610dd26119a3565b600160136000016000828254610de891906133aa565b92505081905550610eac565b600a54610e0160146117fc565b10610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e389061344c565b60405180910390fd5b600c54341015610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906134b8565b60405180910390fd5b610e8e6119a3565b600160146000016000828254610ea491906133aa565b925050819055505b6001600781905550565b7f000000000000000000000000000000000000000000000000000000000000008c81565b60106020528060005260406000206000915090508054610ef990612f0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2590612f0c565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b505050505081565b610f8b610f856118e2565b82611a47565b610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc19061354a565b60405180910390fd5b610fd5838383611adc565b505050565b610fe2611d42565b601160009054906101000a900460ff1615611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906135b6565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110ad611d42565b60004790506110c36110bd611317565b82611dc0565b50565b600d5481565b6110e7838383604051806020016040528060008152506114c7565b505050565b60095481565b6110fa611d42565b80600890816111099190613782565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac906138a0565b60405180910390fd5b80915050919050565b600880546111cb90612f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546111f790612f0c565b80156112445780601f1061121957610100808354040283529160200191611244565b820191906000526020600020905b81548152906001019060200180831161122757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390613932565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b611d42565b6113156000611eb4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611349611d42565b6001601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff021916908315150217905550565b60606001805461139090612f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546113bc90612f0c565b80156114095780601f106113de57610100808354040283529160200191611409565b820191906000526020600020905b8154815290600101906020018083116113ec57829003601f168201915b5050505050905090565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020908161145f9190613782565b5050565b600c5481565b61147b6114746118e2565b8383611f7a565b5050565b600061148b60126117fc565b905090565b600061149c60146117fc565b905090565b601160009054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6114d86114d26118e2565b83611a47565b611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061354a565b60405180910390fd5b611523848484846120e6565b50505050565b600b5481565b606061153a82611897565b6000611544612142565b90506000815111611564576040518060200160405280600081525061158f565b8061156e846121d4565b60405160200161157f92919061398e565b6040516020818303038152906040525b915050919050565b60006115a360136117fc565b905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b6116a0611d42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613a24565b60405180910390fd5b61171881611eb4565b50565b611723611d42565b60005b828290508110156117f7576001600e600085858581811061174a57611749613a44565b5b905060200201602081019061175f9190612a62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008282546117c391906133aa565b925050819055506001600a60008282546117dd9190613a73565b9250508190555080806117ef90613aa7565b915050611726565b505050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6118a081612334565b6118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906138a0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661195d8361110d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119c96119ae6118e2565b60016119ba60126117fc565b6119c491906133aa565b6123a0565b6001601260000160008282546119df91906133aa565b925050819055506001600f60006119f46118e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600080611a538361110d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a955750611a9481856115fe565b5b80611ad357508373ffffffffffffffffffffffffffffffffffffffff16611abb84610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611afc8261110d565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613b61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613bf3565b60405180910390fd5b611bcc8383836123be565b611bd76000826118ea565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c279190613a73565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7e91906133aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d3d8383836123c3565b505050565b611d4a6118e2565b73ffffffffffffffffffffffffffffffffffffffff16611d68611317565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590613c5f565b60405180910390fd5b565b80471015611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90613ccb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e2990613d1c565b60006040518083038185875af1925050503d8060008114611e66576040519150601f19603f3d011682016040523d82523d6000602084013e611e6b565b606091505b5050905080611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690613da3565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613e0f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d99190612837565b60405180910390a3505050565b6120f1848484611adc565b6120fd848484846123c8565b61213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613ea1565b60405180910390fd5b50505050565b60606008805461215190612f0c565b80601f016020809104026020016040519081016040528092919081815260200182805461217d90612f0c565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b5050505050905090565b60606000820361221b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061232f565b600082905060005b6000821461224d57808061223690613aa7565b915050600a826122469190613ef0565b9150612223565b60008167ffffffffffffffff81111561226957612268612aec565b5b6040519080825280601f01601f19166020018201604052801561229b5781602001600182028036833780820191505090505b5090505b60008514612328576001826122b49190613a73565b9150600a856122c39190613f21565b60306122cf91906133aa565b60f81b8183815181106122e5576122e4613a44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123219190613ef0565b945061229f565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6123ba82826040518060200160405280600081525061254f565b5050565b505050565b505050565b60006123e98473ffffffffffffffffffffffffffffffffffffffff1661180a565b15612542578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124126118e2565b8786866040518563ffffffff1660e01b81526004016124349493929190613fa7565b6020604051808303816000875af192505050801561247057506040513d601f19601f8201168201806040525081019061246d9190614008565b60015b6124f2573d80600081146124a0576040519150601f19603f3d011682016040523d82523d6000602084013e6124a5565b606091505b5060008151036124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e190613ea1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612547565b600190505b949350505050565b61255983836125aa565b61256660008484846123c8565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613ea1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261090614081565b60405180910390fd5b61262281612334565b15612662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612659906140ed565b60405180910390fd5b61266e600083836123be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126be91906133aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277f600083836123c3565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127cc81612797565b81146127d757600080fd5b50565b6000813590506127e9816127c3565b92915050565b6000602082840312156128055761280461278d565b5b6000612813848285016127da565b91505092915050565b60008115159050919050565b6128318161281c565b82525050565b600060208201905061284c6000830184612828565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561288c578082015181840152602081019050612871565b8381111561289b576000848401525b50505050565b6000601f19601f8301169050919050565b60006128bd82612852565b6128c7818561285d565b93506128d781856020860161286e565b6128e0816128a1565b840191505092915050565b6000602082019050818103600083015261290581846128b2565b905092915050565b6000819050919050565b6129208161290d565b811461292b57600080fd5b50565b60008135905061293d81612917565b92915050565b6000602082840312156129595761295861278d565b5b60006129678482850161292e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061299b82612970565b9050919050565b6129ab81612990565b82525050565b60006020820190506129c660008301846129a2565b92915050565b6129d581612990565b81146129e057600080fd5b50565b6000813590506129f2816129cc565b92915050565b60008060408385031215612a0f57612a0e61278d565b5b6000612a1d858286016129e3565b9250506020612a2e8582860161292e565b9150509250929050565b612a418161290d565b82525050565b6000602082019050612a5c6000830184612a38565b92915050565b600060208284031215612a7857612a7761278d565b5b6000612a86848285016129e3565b91505092915050565b600080600060608486031215612aa857612aa761278d565b5b6000612ab6868287016129e3565b9350506020612ac7868287016129e3565b9250506040612ad88682870161292e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b24826128a1565b810181811067ffffffffffffffff82111715612b4357612b42612aec565b5b80604052505050565b6000612b56612783565b9050612b628282612b1b565b919050565b600067ffffffffffffffff821115612b8257612b81612aec565b5b612b8b826128a1565b9050602081019050919050565b82818337600083830152505050565b6000612bba612bb584612b67565b612b4c565b905082815260208101848484011115612bd657612bd5612ae7565b5b612be1848285612b98565b509392505050565b600082601f830112612bfe57612bfd612ae2565b5b8135612c0e848260208601612ba7565b91505092915050565b600060208284031215612c2d57612c2c61278d565b5b600082013567ffffffffffffffff811115612c4b57612c4a612792565b5b612c5784828501612be9565b91505092915050565b612c698161281c565b8114612c7457600080fd5b50565b600081359050612c8681612c60565b92915050565b60008060408385031215612ca357612ca261278d565b5b6000612cb1858286016129e3565b9250506020612cc285828601612c77565b9150509250929050565b600067ffffffffffffffff821115612ce757612ce6612aec565b5b612cf0826128a1565b9050602081019050919050565b6000612d10612d0b84612ccc565b612b4c565b905082815260208101848484011115612d2c57612d2b612ae7565b5b612d37848285612b98565b509392505050565b600082601f830112612d5457612d53612ae2565b5b8135612d64848260208601612cfd565b91505092915050565b60008060008060808587031215612d8757612d8661278d565b5b6000612d95878288016129e3565b9450506020612da6878288016129e3565b9350506040612db78782880161292e565b925050606085013567ffffffffffffffff811115612dd857612dd7612792565b5b612de487828801612d3f565b91505092959194509250565b60008060408385031215612e0757612e0661278d565b5b6000612e15858286016129e3565b9250506020612e26858286016129e3565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612e5057612e4f612ae2565b5b8235905067ffffffffffffffff811115612e6d57612e6c612e30565b5b602083019150836020820283011115612e8957612e88612e35565b5b9250929050565b60008060208385031215612ea757612ea661278d565b5b600083013567ffffffffffffffff811115612ec557612ec4612792565b5b612ed185828601612e3a565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2457607f821691505b602082108103612f3757612f36612edd565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f9960218361285d565b9150612fa482612f3d565b604082019050919050565b60006020820190508181036000830152612fc881612f8c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061302b603e8361285d565b915061303682612fcf565b604082019050919050565b6000602082019050818103600083015261305a8161301e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613097601f8361285d565b91506130a282613061565b602082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f4d696e746564206f75742e000000000000000000000000000000000000000000600082015250565b6000613103600b8361285d565b915061310e826130cd565b602082019050919050565b60006020820190508181036000830152613132816130f6565b9050919050565b7f4d696e74206e6f74206f70656e2e000000000000000000000000000000000000600082015250565b600061316f600e8361285d565b915061317a82613139565b602082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f53616c6520706572696f642068617320656e6465642c20616c6c20756e736f6c60008201527f64204e4654732077657265206275726e65642e00000000000000000000000000602082015250565b600061320160338361285d565b915061320c826131a5565b604082019050919050565b60006020820190508181036000830152613230816131f4565b9050919050565b7f596f75277665206d696e7465642c207365722e00000000000000000000000000600082015250565b600061326d60138361285d565b915061327882613237565b602082019050919050565b6000602082019050818103600083015261329c81613260565b9050919050565b7f416c6c6f774c697374206d696e746564206f75742e0000000000000000000000600082015250565b60006132d960158361285d565b91506132e4826132a3565b602082019050919050565b60006020820190508181036000830152613308816132cc565b9050919050565b7f53656e64206d6f726520657468657220666f7220616c6c6f776c6973742e0000600082015250565b6000613345601e8361285d565b91506133508261330f565b602082019050919050565b6000602082019050818103600083015261337481613338565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133b58261290d565b91506133c08361290d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133f5576133f461337b565b5b828201905092915050565b7f5075626c6963206d696e746564206f75742e0000000000000000000000000000600082015250565b600061343660128361285d565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f53656e64206d6f726520657468657220666f72207075626c69632e0000000000600082015250565b60006134a2601b8361285d565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613534602e8361285d565b915061353f826134d8565b604082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b7f546f6f206c61746520696e206379636c652e0000000000000000000000000000600082015250565b60006135a060128361285d565b91506135ab8261356a565b602082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135fb565b61364286836135fb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061367f61367a6136758461290d565b61365a565b61290d565b9050919050565b6000819050919050565b61369983613664565b6136ad6136a582613686565b848454613608565b825550505050565b600090565b6136c26136b5565b6136cd818484613690565b505050565b5b818110156136f1576136e66000826136ba565b6001810190506136d3565b5050565b601f82111561373657613707816135d6565b613710846135eb565b8101602085101561371f578190505b61373361372b856135eb565b8301826136d2565b50505b505050565b600082821c905092915050565b60006137596000198460080261373b565b1980831691505092915050565b60006137728383613748565b9150826002028217905092915050565b61378b82612852565b67ffffffffffffffff8111156137a4576137a3612aec565b5b6137ae8254612f0c565b6137b98282856136f5565b600060209050601f8311600181146137ec57600084156137da578287015190505b6137e48582613766565b86555061384c565b601f1984166137fa866135d6565b60005b82811015613822578489015182556001820191506020850194506020810190506137fd565b8683101561383f578489015161383b601f891682613748565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061388a60188361285d565b915061389582613854565b602082019050919050565b600060208201905081810360008301526138b98161387d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061391c60298361285d565b9150613927826138c0565b604082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b600081905092915050565b600061396882612852565b6139728185613952565b935061398281856020860161286e565b80840191505092915050565b600061399a828561395d565b91506139a6828461395d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a0e60268361285d565b9150613a19826139b2565b604082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a7e8261290d565b9150613a898361290d565b925082821015613a9c57613a9b61337b565b5b828203905092915050565b6000613ab28261290d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae457613ae361337b565b5b600182019050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b4b60258361285d565b9150613b5682613aef565b604082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bdd60248361285d565b9150613be882613b81565b604082019050919050565b60006020820190508181036000830152613c0c81613bd0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c4960208361285d565b9150613c5482613c13565b602082019050919050565b60006020820190508181036000830152613c7881613c3c565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613cb5601d8361285d565b9150613cc082613c7f565b602082019050919050565b60006020820190508181036000830152613ce481613ca8565b9050919050565b600081905092915050565b50565b6000613d06600083613ceb565b9150613d1182613cf6565b600082019050919050565b6000613d2782613cf9565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613d8d603a8361285d565b9150613d9882613d31565b604082019050919050565b60006020820190508181036000830152613dbc81613d80565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613df960198361285d565b9150613e0482613dc3565b602082019050919050565b60006020820190508181036000830152613e2881613dec565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e8b60328361285d565b9150613e9682613e2f565b604082019050919050565b60006020820190508181036000830152613eba81613e7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613efb8261290d565b9150613f068361290d565b925082613f1657613f15613ec1565b5b828204905092915050565b6000613f2c8261290d565b9150613f378361290d565b925082613f4757613f46613ec1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613f7982613f52565b613f838185613f5d565b9350613f9381856020860161286e565b613f9c816128a1565b840191505092915050565b6000608082019050613fbc60008301876129a2565b613fc960208301866129a2565b613fd66040830185612a38565b8181036060830152613fe88184613f6e565b905095945050505050565b600081519050614002816127c3565b92915050565b60006020828403121561401e5761401d61278d565b5b600061402c84828501613ff3565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061406b60208361285d565b915061407682614035565b602082019050919050565b6000602082019050818103600083015261409a8161405e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006140d7601c8361285d565b91506140e2826140a1565b602082019050919050565b60006020820190508181036000830152614106816140ca565b905091905056fea26469706673582212209807929f0a509d4dc35ea3da72d3bd5c2283d06703e0145cb3f3d3fedde049dd64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000000c64546f6f6c7320426c61636b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074454424c41434b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a64746f6f6c732e6e657400000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): dTools Black
Arg [1] : _symbol (string): DTBLACK
Arg [2] : _baseTokenURI (string): dtools.net
Arg [3] : _totalSupply (uint256): 140

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000008c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 64546f6f6c7320426c61636b0000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4454424c41434b00000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 64746f6f6c732e6e657400000000000000000000000000000000000000000000


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.