ETH Price: $3,360.58 (-1.62%)
Gas: 8 Gwei

Token

BurnCard (BURNCARD)
 

Overview

Max Total Supply

69 BURNCARD

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Doge Army: Deployer
Balance
1 BURNCARD
0x3a0bEf9700474A00b10A1063B59685DE6E690c08
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:
BurnCard

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : BurnCard.sol
// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.7;

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

contract BurnCard is ERC721, Ownable {
    using Strings for uint256;

    IERC20 immutable public SHIBA_DOGE;
    uint256 public minShibaDogeBalance;

    IERC20 public burnToken;
    bool public tokenLocked;
    bool public incinerateValueLocked;

    uint256 public incinerateValue = 15000000000 * (10**18); // .015 max supply
    uint256 public constant MAX_SUPPLY = 69;
    
    uint256 public publicPrice = 5 ether;
    uint256 public totalSupply;

    uint256 public maxPerWallet;
    mapping (address => uint256) public numMinted;

    bool public isPublicSale;
    bool public burnLaunched;

    bool public isURIFrozen;
    
    string public baseURI = "TODO";

    event tokenIncinerated(address owner, uint256 tokenId);

    event launchedBurn();

    event burnTokenSet(address token);
    event lockedToken();
    
    event incincerateValueSet(uint256 incinerateValue);
    event lockedIncinerateValue();

    event URIFrozen();
    event URISet(string URI);

    event publicPriceSet(uint256 publicPrice);
    event publicSaleToggled(bool isPublicSale);

    event minShibaDogeBalanceUpdated(uint256 minShibaDogeBalance);

    event totalWalletMinted(address sender, uint256 amount);
    event maxPerWalletUpdated(uint256 amount);
 
    constructor(IERC20 _ShibaDoge, uint256 _minShibaDoge, uint256 _maxPerWallet) ERC721("BurnCard", "BURNCARD") {
        SHIBA_DOGE = _ShibaDoge;
        minShibaDogeBalance = _minShibaDoge;
        maxPerWallet = _maxPerWallet;
    }

    function mint(uint256 amount) external payable {
        // Sale must be active
        require(isPublicSale, "Public Sale Inactive");

        // must mint at least 1
        require(amount > 0, "Number of tokens should be more than 0");

        // cannot mint more than max supply
        require(totalSupply + amount <= MAX_SUPPLY, "Sold Out");

        // must send enough funds to purchase
        require(publicPrice * amount <= msg.value, "Insufficient Funds");

        // must have enough ShibaDoge to purchase
        uint256 sdBalance = SHIBA_DOGE.balanceOf(msg.sender);
        require(sdBalance >= minShibaDogeBalance, "Sender does not hold enough ShibaDoge");

        // can only mint a maximum number of burn cards per wallet
        require(maxPerWallet >= numMinted[msg.sender] + amount, "Wallet has already claimed maximum mints");
        numMinted[msg.sender] += amount;
        emit totalWalletMinted(msg.sender, numMinted[msg.sender]);

        // do the mint
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++totalSupply);
        }
    }

    function reserve(uint256 amount, address destination) external onlyOwner {
        require(amount > 0, "cannot mint 0");
        require(totalSupply + amount <= MAX_SUPPLY, "Sold Out");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(destination, ++totalSupply);
        }
    }

    function incinerate(uint256 tokenId) external {
        require(burnLaunched, "Incinerator not warmed up yet");
        require(msg.sender == ownerOf(tokenId), "Caller does not own NFT");
        _burn(tokenId);
        
        require(burnToken.transfer(msg.sender, incinerateValue));
        emit tokenIncinerated(msg.sender, tokenId);
    }

    function launchBurn() external onlyOwner {
        require(!burnLaunched, "Already launched");
        require(address(burnToken) != address(0), "burnToken must be set");
        require(burnToken.balanceOf(address(this)) >= MAX_SUPPLY * incinerateValue);
        burnLaunched = true;
        emit launchedBurn();
    }

    function togglePublicSale() external onlyOwner {
        isPublicSale = !isPublicSale;
        emit publicSaleToggled(isPublicSale);
    }

    function setIncinerateValue(uint256 value) external onlyOwner {
        require(!incinerateValueLocked);
        incinerateValue = value;
        emit incincerateValueSet(incinerateValue);
    }

    function lockIncinerateValue() external onlyOwner {
        incinerateValueLocked = true;
        emit lockedIncinerateValue();
    }

    function setBurnToken(address token) external onlyOwner {
        require(!tokenLocked, "Token is already locked");
        burnToken = IERC20(token);
        emit burnTokenSet(token);
    }

    function lockBurnToken() external onlyOwner {
        require(!tokenLocked, "Token already locked");
        tokenLocked = true;
        emit lockedToken();
    }
    
    function setPublicPrice(uint256 _publicPrice) external onlyOwner {
        publicPrice = _publicPrice;
        emit publicPriceSet(publicPrice);
    }

    function freezeURI() external onlyOwner {
        isURIFrozen = true;
        emit URIFrozen();
    }

    function withdraw() external onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function setURI(string calldata _newURI) external onlyOwner {
        require(!isURIFrozen, "URI is Frozen");
        baseURI = _newURI;
        emit URISet(baseURI);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return baseURI;
    }

    function setMinShibaDoge(uint256 amount) external onlyOwner {
        minShibaDogeBalance = amount;
        emit minShibaDogeBalanceUpdated(minShibaDogeBalance);
    }

    function setMaxPerWallet(uint256 amount) external onlyOwner {
        maxPerWallet = amount;
        emit maxPerWalletUpdated(amount);
    }

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

}

File 2 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 12 : 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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : 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 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 12 : 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":"contract IERC20","name":"_ShibaDoge","type":"address"},{"internalType":"uint256","name":"_minShibaDoge","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","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"},{"anonymous":false,"inputs":[],"name":"URIFrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"URI","type":"string"}],"name":"URISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"burnTokenSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"incinerateValue","type":"uint256"}],"name":"incincerateValueSet","type":"event"},{"anonymous":false,"inputs":[],"name":"launchedBurn","type":"event"},{"anonymous":false,"inputs":[],"name":"lockedIncinerateValue","type":"event"},{"anonymous":false,"inputs":[],"name":"lockedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"maxPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minShibaDogeBalance","type":"uint256"}],"name":"minShibaDogeBalanceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"publicPrice","type":"uint256"}],"name":"publicPriceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPublicSale","type":"bool"}],"name":"publicSaleToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIncinerated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"totalWalletMinted","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHIBA_DOGE","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"burnLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeURI","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":"uint256","name":"tokenId","type":"uint256"}],"name":"incinerate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"incinerateValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incinerateValueLocked","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":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isURIFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockBurnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockIncinerateValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minShibaDogeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"setBurnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setIncinerateValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinShibaDoge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526b3077b58d5d37839198000000600955674563918244f40000600a556040518060400160405280600481526020017f544f444f00000000000000000000000000000000000000000000000000000000815250600f90805190602001906200006d9291906200027d565b503480156200007b57600080fd5b5060405162005457380380620054578339818101604052810190620000a191906200035b565b6040518060400160405280600881526020017f4275726e436172640000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4255524e434152440000000000000000000000000000000000000000000000008152508160009080519060200190620001259291906200027d565b5080600190805190602001906200013e9291906200027d565b5050506200016162000155620001af60201b60201c565b620001b760201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508160078190555080600c81905550505050620004a7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028b9062000409565b90600052602060002090601f016020900481019282620002af5760008555620002fb565b82601f10620002ca57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fa578251825591602001919060010190620002dd565b5b5090506200030a91906200030e565b5090565b5b80821115620003295760008160009055506001016200030f565b5090565b6000815190506200033e8162000473565b92915050565b60008151905062000355816200048d565b92915050565b6000806000606084860312156200037757620003766200046e565b5b600062000387868287016200032d565b93505060206200039a8682870162000344565b9250506040620003ad8682870162000344565b9150509250925092565b6000620003c482620003df565b9050919050565b6000620003d882620003b7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200042257607f821691505b602082108114156200043957620004386200043f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200047e81620003cb565b81146200048a57600080fd5b50565b6200049881620003ff565b8114620004a457600080fd5b50565b60805160601c614f8a620004cd60003960008181611c8701526125240152614f8a6000f3fe60806040526004361061027d5760003560e01c806395d89b411161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610905578063f2fde38b14610942578063f887ba511461096b578063faa0a26414610996578063fab5c52e146109c1578063fcd4b212146109d85761027d565b8063c87b56dd14610807578063d3db41bd14610844578063e218e1041461086f578063e222c7f91461089a578063e268e4d3146108b1578063e32255b8146108da5761027d565b8063a5a865dc11610113578063a5a865dc1461071f578063a945bf801461074a578063b88d4fde14610775578063c35879801461079e578063c6275255146107c7578063c793803c146107f05761027d565b806395d89b411461065b5780639d699b7314610686578063a0712d68146106af578063a07ef4c5146106cb578063a22cb465146106f65761027d565b80633ccfd60b116101f35780636c0360eb116101ac5780636c0360eb146105715780636f46be4e1461059c57806370a08231146105c5578063715018a614610602578063889a5dc0146106195780638da5cb5b146106305761027d565b80633ccfd60b1461047557806342842e0e1461048c578063453c2310146104b55780635d6062f7146104e05780636352211e146105095780636a630559146105465761027d565b8063095ea7b311610245578063095ea7b31461037957806318160ddd146103a257806320fc7eb2146103cd57806323aad9fd1461040a57806323b872dd1461042157806332cb6b0c1461044a5761027d565b806301ffc9a71461028257806302fe5305146102bf57806303339bcb146102e857806306fdde0314610311578063081812fc1461033c575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613861565b610a03565b6040516102b69190613fb2565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906138bb565b610ae5565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190613962565b610bff565b005b34801561031d57600080fd5b50610326610d50565b6040516103339190613fe8565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613908565b610de2565b6040516103709190613f22565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906137f4565b610e67565b005b3480156103ae57600080fd5b506103b7610f7f565b6040516103c491906143ec565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190613671565b610f85565b60405161040191906143ec565b60405180910390f35b34801561041657600080fd5b5061041f610f9d565b005b34801561042d57600080fd5b50610448600480360381019061044391906136de565b6110b2565b005b34801561045657600080fd5b5061045f611112565b60405161046c91906143ec565b60405180910390f35b34801561048157600080fd5b5061048a611117565b005b34801561049857600080fd5b506104b360048036038101906104ae91906136de565b611213565b005b3480156104c157600080fd5b506104ca611233565b6040516104d791906143ec565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613908565b611239565b005b34801561051557600080fd5b50610530600480360381019061052b9190613908565b6113fd565b60405161053d9190613f22565b60405180910390f35b34801561055257600080fd5b5061055b6114af565b6040516105689190613fb2565b60405180910390f35b34801561057d57600080fd5b506105866114c2565b6040516105939190613fe8565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613908565b611550565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190613671565b611629565b6040516105f991906143ec565b60405180910390f35b34801561060e57600080fd5b506106176116e1565b005b34801561062557600080fd5b5061062e611769565b005b34801561063c57600080fd5b506106456119d5565b6040516106529190613f22565b60405180910390f35b34801561066757600080fd5b506106706119ff565b60405161067d9190613fe8565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613908565b611a91565b005b6106c960048036038101906106c49190613908565b611b50565b005b3480156106d757600080fd5b506106e0611f13565b6040516106ed9190613fb2565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906137b4565b611f26565b005b34801561072b57600080fd5b50610734611f3c565b6040516107419190613fb2565b60405180910390f35b34801561075657600080fd5b5061075f611f4f565b60405161076c91906143ec565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613731565b611f55565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613671565b611fb7565b005b3480156107d357600080fd5b506107ee60048036038101906107e99190613908565b6120fe565b005b3480156107fc57600080fd5b506108056121bd565b005b34801561081357600080fd5b5061082e60048036038101906108299190613908565b612282565b60405161083b9190613fe8565b60405180910390f35b34801561085057600080fd5b5061085961235e565b60405161086691906143ec565b60405180910390f35b34801561087b57600080fd5b50610884612364565b6040516108919190613fb2565b60405180910390f35b3480156108a657600080fd5b506108af612377565b005b3480156108bd57600080fd5b506108d860048036038101906108d39190613908565b612465565b005b3480156108e657600080fd5b506108ef612522565b6040516108fc9190613fcd565b60405180910390f35b34801561091157600080fd5b5061092c6004803603810190610927919061369e565b612546565b6040516109399190613fb2565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613671565b6125da565b005b34801561097757600080fd5b506109806126d2565b60405161098d91906143ec565b60405180910390f35b3480156109a257600080fd5b506109ab6126d8565b6040516109b89190613fcd565b60405180910390f35b3480156109cd57600080fd5b506109d66126fe565b005b3480156109e457600080fd5b506109ed6127c3565b6040516109fa9190613fb2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ace57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ade5750610add826127d6565b5b9050919050565b610aed612840565b73ffffffffffffffffffffffffffffffffffffffff16610b0b6119d5565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b589061428c565b60405180910390fd5b600e60029054906101000a900460ff1615610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba8906141ac565b60405180910390fd5b8181600f9190610bc2929190613475565b507fde63cc2d19581e57e158d078c2df83f9ab70addd6257f7f12bfecb21c06c9128600f604051610bf3919061400a565b60405180910390a15050565b610c07612840565b73ffffffffffffffffffffffffffffffffffffffff16610c256119d5565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061428c565b60405180910390fd5b60008211610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb5906143cc565b60405180910390fd5b604582600b54610cce91906144b5565b1115610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d069061408c565b60405180910390fd5b60005b82811015610d4b57610d3882600b60008154610d2d906146e8565b919050819055612848565b8080610d43906146e8565b915050610d12565b505050565b606060008054610d5f90614685565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b90614685565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b6000610ded82612866565b610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061426c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e72826113fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061430c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f02612840565b73ffffffffffffffffffffffffffffffffffffffff161480610f315750610f3081610f2b612840565b612546565b5b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f67906141cc565b60405180910390fd5b610f7a83836128d2565b505050565b600b5481565b600d6020528060005260406000206000915090505481565b610fa5612840565b73ffffffffffffffffffffffffffffffffffffffff16610fc36119d5565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110109061428c565b60405180910390fd5b600860149054906101000a900460ff1615611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611060906142ac565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f0f45cc81eff15f6520764990e55fb4db6c34824950abd2fd6b2db3c7ef60c9f760405160405180910390a1565b6110c36110bd612840565b8261298b565b611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061436c565b60405180910390fd5b61110d838383612a69565b505050565b604581565b61111f612840565b73ffffffffffffffffffffffffffffffffffffffff1661113d6119d5565b73ffffffffffffffffffffffffffffffffffffffff1614611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a9061428c565b60405180910390fd5b600061119d6119d5565b73ffffffffffffffffffffffffffffffffffffffff16476040516111c090613f0d565b60006040518083038185875af1925050503d80600081146111fd576040519150601f19603f3d011682016040523d82523d6000602084013e611202565b606091505b505090508061121057600080fd5b50565b61122e83838360405180602001604052806000815250611f55565b505050565b600c5481565b600e60019054906101000a900460ff16611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906142ec565b60405180910390fd5b611291816113fd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061404c565b60405180910390fd5b61130781612cd0565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336009546040518363ffffffff1660e01b8152600401611366929190613f89565b602060405180830381600087803b15801561138057600080fd5b505af1158015611394573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b89190613834565b6113c157600080fd5b7f1a070b86420302c02edcc1861291ef1b47957ef5a24ffe7eb44641afc8d20bf833826040516113f2929190613f89565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d9061420c565b60405180910390fd5b80915050919050565b600860149054906101000a900460ff1681565b600f80546114cf90614685565b80601f01602080910402602001604051908101604052809291908181526020018280546114fb90614685565b80156115485780601f1061151d57610100808354040283529160200191611548565b820191906000526020600020905b81548152906001019060200180831161152b57829003601f168201915b505050505081565b611558612840565b73ffffffffffffffffffffffffffffffffffffffff166115766119d5565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061428c565b60405180910390fd5b600860159054906101000a900460ff16156115e657600080fd5b806009819055507fa63b75a9a8df5c5b9e1e9935996f924ad92dc2b5dc30cc7c0c3169650e2b48f960095460405161161e91906143ec565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611691906141ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116e9612840565b73ffffffffffffffffffffffffffffffffffffffff166117076119d5565b73ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117549061428c565b60405180910390fd5b6117676000612ded565b565b611771612840565b73ffffffffffffffffffffffffffffffffffffffff1661178f6119d5565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061428c565b60405180910390fd5b600e60019054906101000a900460ff1615611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c9061422c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906143ac565b60405180910390fd5b60095460456118d6919061450b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119319190613f22565b60206040518083038186803b15801561194957600080fd5b505afa15801561195d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119819190613935565b101561198c57600080fd5b6001600e60016101000a81548160ff0219169083151502179055507f9e5b79bb1c0c52b28fb0d9aa1d914745b820308e9295be43222ceac40f32f5b160405160405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a0e90614685565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3a90614685565b8015611a875780601f10611a5c57610100808354040283529160200191611a87565b820191906000526020600020905b815481529060010190602001808311611a6a57829003601f168201915b5050505050905090565b611a99612840565b73ffffffffffffffffffffffffffffffffffffffff16611ab76119d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b049061428c565b60405180910390fd5b806007819055507fc8105684b255c344cb197a08b45e0d58a2ef87e05ed511bcecc9f0fcf7e6c1ae600754604051611b4591906143ec565b60405180910390a150565b600e60009054906101000a900460ff16611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b969061432c565b60405180910390fd5b60008111611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd99061410c565b60405180910390fd5b604581600b54611bf291906144b5565b1115611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a9061408c565b60405180910390fd5b3481600a54611c42919061450b565b1115611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a9061412c565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611cde9190613f22565b60206040518083038186803b158015611cf657600080fd5b505afa158015611d0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2e9190613935565b9050600754811015611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c9061438c565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc091906144b5565b600c541015611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb9061402c565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5391906144b5565b925050819055507fa7cfba9d9e1cd51ab5f86e3b157fa687f7d347cd061300b88abf0ef289010c9333600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611eca929190613f89565b60405180910390a160005b82811015611f0e57611efb33600b60008154611ef0906146e8565b919050819055612848565b8080611f06906146e8565b915050611ed5565b505050565b600e60019054906101000a900460ff1681565b611f38611f31612840565b8383612eb3565b5050565b600e60009054906101000a900460ff1681565b600a5481565b611f66611f60612840565b8361298b565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c9061436c565b60405180910390fd5b611fb184848484613020565b50505050565b611fbf612840565b73ffffffffffffffffffffffffffffffffffffffff16611fdd6119d5565b73ffffffffffffffffffffffffffffffffffffffff1614612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a9061428c565b60405180910390fd5b600860149054906101000a900460ff1615612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a9061434c565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f075e12098091a60f14b1f21fa29b1c4691e4c3a5063056f8bf6a2b7e81eca40d816040516120f39190613f22565b60405180910390a150565b612106612840565b73ffffffffffffffffffffffffffffffffffffffff166121246119d5565b73ffffffffffffffffffffffffffffffffffffffff161461217a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121719061428c565b60405180910390fd5b80600a819055507f083b9729c7679b40b0c34124f2956a9d6917dd4e8fcef4c1aaa055234f94a9cc600a546040516121b291906143ec565b60405180910390a150565b6121c5612840565b73ffffffffffffffffffffffffffffffffffffffff166121e36119d5565b73ffffffffffffffffffffffffffffffffffffffff1614612239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122309061428c565b60405180910390fd5b6001600e60026101000a81548160ff0219169083151502179055507f6a2981ea9a7537a6211ee6eae24328b3f2136e3870f47b9fdd60be1871d4bd7d60405160405180910390a1565b606061228d82612866565b6122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c3906142cc565b60405180910390fd5b600f80546122d990614685565b80601f016020809104026020016040519081016040528092919081815260200182805461230590614685565b80156123525780601f1061232757610100808354040283529160200191612352565b820191906000526020600020905b81548152906001019060200180831161233557829003601f168201915b50505050509050919050565b60075481565b600860159054906101000a900460ff1681565b61237f612840565b73ffffffffffffffffffffffffffffffffffffffff1661239d6119d5565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea9061428c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff0219169083151502179055507fd95db27fb727a8efc81657db609938fd60d724f29d367d50680bc54a1c0e1ae2600e60009054906101000a900460ff1660405161245b9190613fb2565b60405180910390a1565b61246d612840565b73ffffffffffffffffffffffffffffffffffffffff1661248b6119d5565b73ffffffffffffffffffffffffffffffffffffffff16146124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d89061428c565b60405180910390fd5b80600c819055507f5148ad165598f6b9c55b6a7d8783c2fd69e853633c9696c415276c67f6ec99ad8160405161251791906143ec565b60405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125e2612840565b73ffffffffffffffffffffffffffffffffffffffff166126006119d5565b73ffffffffffffffffffffffffffffffffffffffff1614612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d9061428c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd906140ac565b60405180910390fd5b6126cf81612ded565b50565b60095481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612706612840565b73ffffffffffffffffffffffffffffffffffffffff166127246119d5565b73ffffffffffffffffffffffffffffffffffffffff161461277a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127719061428c565b60405180910390fd5b6001600860156101000a81548160ff0219169083151502179055507f65c158b3c27e12c11e073063b0be4e1176b8b9859d6824ad2cce20c90115bae060405160405180910390a1565b600e60029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61286282826040518060200160405280600081525061307c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612945836113fd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061299682612866565b6129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc9061418c565b60405180910390fd5b60006129e0836113fd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a4f57508373ffffffffffffffffffffffffffffffffffffffff16612a3784610de2565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a605750612a5f8185612546565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a89826113fd565b73ffffffffffffffffffffffffffffffffffffffff1614612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906140cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b469061414c565b60405180910390fd5b612b5a8383836130d7565b612b656000826128d2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb59190614565565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0c91906144b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ccb8383836130dc565b505050565b6000612cdb826113fd565b9050612ce9816000846130d7565b612cf46000836128d2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d449190614565565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612de9816000846130dc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f199061416c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516130139190613fb2565b60405180910390a3505050565b61302b848484612a69565b613037848484846130e1565b613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d9061406c565b60405180910390fd5b50505050565b6130868383613278565b61309360008484846130e1565b6130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c99061406c565b60405180910390fd5b505050565b505050565b505050565b60006131028473ffffffffffffffffffffffffffffffffffffffff16613452565b1561326b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261312b612840565b8786866040518563ffffffff1660e01b815260040161314d9493929190613f3d565b602060405180830381600087803b15801561316757600080fd5b505af192505050801561319857506040513d601f19601f82011682018060405250810190613195919061388e565b60015b61321b573d80600081146131c8576040519150601f19603f3d011682016040523d82523d6000602084013e6131cd565b606091505b50600081511415613213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320a9061406c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613270565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132df9061424c565b60405180910390fd5b6132f181612866565b15613331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613328906140ec565b60405180910390fd5b61333d600083836130d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461338d91906144b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461344e600083836130dc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461348190614685565b90600052602060002090601f0160209004810192826134a357600085556134ea565b82601f106134bc57803560ff19168380011785556134ea565b828001600101855582156134ea579182015b828111156134e95782358255916020019190600101906134ce565b5b5090506134f791906134fb565b5090565b5b808211156135145760008160009055506001016134fc565b5090565b600061352b6135268461442c565b614407565b905082815260208101848484011115613547576135466147cd565b5b613552848285614643565b509392505050565b60008135905061356981614ef8565b92915050565b60008135905061357e81614f0f565b92915050565b60008151905061359381614f0f565b92915050565b6000813590506135a881614f26565b92915050565b6000815190506135bd81614f26565b92915050565b600082601f8301126135d8576135d76147c3565b5b81356135e8848260208601613518565b91505092915050565b60008083601f840112613607576136066147c3565b5b8235905067ffffffffffffffff811115613624576136236147be565b5b6020830191508360018202830111156136405761363f6147c8565b5b9250929050565b60008135905061365681614f3d565b92915050565b60008151905061366b81614f3d565b92915050565b600060208284031215613687576136866147d7565b5b60006136958482850161355a565b91505092915050565b600080604083850312156136b5576136b46147d7565b5b60006136c38582860161355a565b92505060206136d48582860161355a565b9150509250929050565b6000806000606084860312156136f7576136f66147d7565b5b60006137058682870161355a565b93505060206137168682870161355a565b925050604061372786828701613647565b9150509250925092565b6000806000806080858703121561374b5761374a6147d7565b5b60006137598782880161355a565b945050602061376a8782880161355a565b935050604061377b87828801613647565b925050606085013567ffffffffffffffff81111561379c5761379b6147d2565b5b6137a8878288016135c3565b91505092959194509250565b600080604083850312156137cb576137ca6147d7565b5b60006137d98582860161355a565b92505060206137ea8582860161356f565b9150509250929050565b6000806040838503121561380b5761380a6147d7565b5b60006138198582860161355a565b925050602061382a85828601613647565b9150509250929050565b60006020828403121561384a576138496147d7565b5b600061385884828501613584565b91505092915050565b600060208284031215613877576138766147d7565b5b600061388584828501613599565b91505092915050565b6000602082840312156138a4576138a36147d7565b5b60006138b2848285016135ae565b91505092915050565b600080602083850312156138d2576138d16147d7565b5b600083013567ffffffffffffffff8111156138f0576138ef6147d2565b5b6138fc858286016135f1565b92509250509250929050565b60006020828403121561391e5761391d6147d7565b5b600061392c84828501613647565b91505092915050565b60006020828403121561394b5761394a6147d7565b5b60006139598482850161365c565b91505092915050565b60008060408385031215613979576139786147d7565b5b600061398785828601613647565b92505060206139988582860161355a565b9150509250929050565b6139ab81614599565b82525050565b6139ba816145ab565b82525050565b60006139cb82614472565b6139d58185614488565b93506139e5818560208601614652565b6139ee816147dc565b840191505092915050565b613a028161460d565b82525050565b6000613a138261447d565b613a1d81856144a4565b9350613a2d818560208601614652565b613a36816147dc565b840191505092915050565b60008154613a4e81614685565b613a5881866144a4565b94506001821660008114613a735760018114613a8557613ab8565b60ff1983168652602086019350613ab8565b613a8e8561445d565b60005b83811015613ab057815481890152600182019150602081019050613a91565b808801955050505b50505092915050565b6000613ace6028836144a4565b9150613ad9826147ed565b604082019050919050565b6000613af16017836144a4565b9150613afc8261483c565b602082019050919050565b6000613b146032836144a4565b9150613b1f82614865565b604082019050919050565b6000613b376008836144a4565b9150613b42826148b4565b602082019050919050565b6000613b5a6026836144a4565b9150613b65826148dd565b604082019050919050565b6000613b7d6025836144a4565b9150613b888261492c565b604082019050919050565b6000613ba0601c836144a4565b9150613bab8261497b565b602082019050919050565b6000613bc36026836144a4565b9150613bce826149a4565b604082019050919050565b6000613be66012836144a4565b9150613bf1826149f3565b602082019050919050565b6000613c096024836144a4565b9150613c1482614a1c565b604082019050919050565b6000613c2c6019836144a4565b9150613c3782614a6b565b602082019050919050565b6000613c4f602c836144a4565b9150613c5a82614a94565b604082019050919050565b6000613c72600d836144a4565b9150613c7d82614ae3565b602082019050919050565b6000613c956038836144a4565b9150613ca082614b0c565b604082019050919050565b6000613cb8602a836144a4565b9150613cc382614b5b565b604082019050919050565b6000613cdb6029836144a4565b9150613ce682614baa565b604082019050919050565b6000613cfe6010836144a4565b9150613d0982614bf9565b602082019050919050565b6000613d216020836144a4565b9150613d2c82614c22565b602082019050919050565b6000613d44602c836144a4565b9150613d4f82614c4b565b604082019050919050565b6000613d676020836144a4565b9150613d7282614c9a565b602082019050919050565b6000613d8a6014836144a4565b9150613d9582614cc3565b602082019050919050565b6000613dad602f836144a4565b9150613db882614cec565b604082019050919050565b6000613dd0601d836144a4565b9150613ddb82614d3b565b602082019050919050565b6000613df36021836144a4565b9150613dfe82614d64565b604082019050919050565b6000613e166014836144a4565b9150613e2182614db3565b602082019050919050565b6000613e39600083614499565b9150613e4482614ddc565b600082019050919050565b6000613e5c6017836144a4565b9150613e6782614ddf565b602082019050919050565b6000613e7f6031836144a4565b9150613e8a82614e08565b604082019050919050565b6000613ea26025836144a4565b9150613ead82614e57565b604082019050919050565b6000613ec56015836144a4565b9150613ed082614ea6565b602082019050919050565b6000613ee8600d836144a4565b9150613ef382614ecf565b602082019050919050565b613f0781614603565b82525050565b6000613f1882613e2c565b9150819050919050565b6000602082019050613f3760008301846139a2565b92915050565b6000608082019050613f5260008301876139a2565b613f5f60208301866139a2565b613f6c6040830185613efe565b8181036060830152613f7e81846139c0565b905095945050505050565b6000604082019050613f9e60008301856139a2565b613fab6020830184613efe565b9392505050565b6000602082019050613fc760008301846139b1565b92915050565b6000602082019050613fe260008301846139f9565b92915050565b600060208201905081810360008301526140028184613a08565b905092915050565b600060208201905081810360008301526140248184613a41565b905092915050565b6000602082019050818103600083015261404581613ac1565b9050919050565b6000602082019050818103600083015261406581613ae4565b9050919050565b6000602082019050818103600083015261408581613b07565b9050919050565b600060208201905081810360008301526140a581613b2a565b9050919050565b600060208201905081810360008301526140c581613b4d565b9050919050565b600060208201905081810360008301526140e581613b70565b9050919050565b6000602082019050818103600083015261410581613b93565b9050919050565b6000602082019050818103600083015261412581613bb6565b9050919050565b6000602082019050818103600083015261414581613bd9565b9050919050565b6000602082019050818103600083015261416581613bfc565b9050919050565b6000602082019050818103600083015261418581613c1f565b9050919050565b600060208201905081810360008301526141a581613c42565b9050919050565b600060208201905081810360008301526141c581613c65565b9050919050565b600060208201905081810360008301526141e581613c88565b9050919050565b6000602082019050818103600083015261420581613cab565b9050919050565b6000602082019050818103600083015261422581613cce565b9050919050565b6000602082019050818103600083015261424581613cf1565b9050919050565b6000602082019050818103600083015261426581613d14565b9050919050565b6000602082019050818103600083015261428581613d37565b9050919050565b600060208201905081810360008301526142a581613d5a565b9050919050565b600060208201905081810360008301526142c581613d7d565b9050919050565b600060208201905081810360008301526142e581613da0565b9050919050565b6000602082019050818103600083015261430581613dc3565b9050919050565b6000602082019050818103600083015261432581613de6565b9050919050565b6000602082019050818103600083015261434581613e09565b9050919050565b6000602082019050818103600083015261436581613e4f565b9050919050565b6000602082019050818103600083015261438581613e72565b9050919050565b600060208201905081810360008301526143a581613e95565b9050919050565b600060208201905081810360008301526143c581613eb8565b9050919050565b600060208201905081810360008301526143e581613edb565b9050919050565b60006020820190506144016000830184613efe565b92915050565b6000614411614422565b905061441d82826146b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156144475761444661478f565b5b614450826147dc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006144c082614603565b91506144cb83614603565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614500576144ff614731565b5b828201905092915050565b600061451682614603565b915061452183614603565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a57614559614731565b5b828202905092915050565b600061457082614603565b915061457b83614603565b92508282101561458e5761458d614731565b5b828203905092915050565b60006145a4826145e3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006146188261461f565b9050919050565b600061462a82614631565b9050919050565b600061463c826145e3565b9050919050565b82818337600083830152505050565b60005b83811015614670578082015181840152602081019050614655565b8381111561467f576000848401525b50505050565b6000600282049050600182168061469d57607f821691505b602082108114156146b1576146b0614760565b5b50919050565b6146c0826147dc565b810181811067ffffffffffffffff821117156146df576146de61478f565b5b80604052505050565b60006146f382614603565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472657614725614731565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c65742068617320616c726561647920636c61696d6564206d6178696d60008201527f756d206d696e7473000000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220646f6573206e6f74206f776e204e4654000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e756d626572206f6620746f6b656e732073686f756c64206265206d6f72652060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5552492069732046726f7a656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20616c7265616479206c6f636b6564000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e63696e657261746f72206e6f74207761726d656420757020796574000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c6520496e616374697665000000000000000000000000600082015250565b50565b7f546f6b656e20697320616c7265616479206c6f636b6564000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53656e64657220646f6573206e6f7420686f6c6420656e6f756768205368696260008201527f61446f6765000000000000000000000000000000000000000000000000000000602082015250565b7f6275726e546f6b656e206d757374206265207365740000000000000000000000600082015250565b7f63616e6e6f74206d696e74203000000000000000000000000000000000000000600082015250565b614f0181614599565b8114614f0c57600080fd5b50565b614f18816145ab565b8114614f2357600080fd5b50565b614f2f816145b7565b8114614f3a57600080fd5b50565b614f4681614603565b8114614f5157600080fd5b5056fea2646970667358221220a3073cedbdcb99b41985d7167687a34552bd25665fa97201694d06a5400c3fa664736f6c634300080700330000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f0000000000000000000000000000000000000000d9c7f92946b1c33c480000000000000000000000000000000000000000000000000000000000000000000003

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806395d89b411161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610905578063f2fde38b14610942578063f887ba511461096b578063faa0a26414610996578063fab5c52e146109c1578063fcd4b212146109d85761027d565b8063c87b56dd14610807578063d3db41bd14610844578063e218e1041461086f578063e222c7f91461089a578063e268e4d3146108b1578063e32255b8146108da5761027d565b8063a5a865dc11610113578063a5a865dc1461071f578063a945bf801461074a578063b88d4fde14610775578063c35879801461079e578063c6275255146107c7578063c793803c146107f05761027d565b806395d89b411461065b5780639d699b7314610686578063a0712d68146106af578063a07ef4c5146106cb578063a22cb465146106f65761027d565b80633ccfd60b116101f35780636c0360eb116101ac5780636c0360eb146105715780636f46be4e1461059c57806370a08231146105c5578063715018a614610602578063889a5dc0146106195780638da5cb5b146106305761027d565b80633ccfd60b1461047557806342842e0e1461048c578063453c2310146104b55780635d6062f7146104e05780636352211e146105095780636a630559146105465761027d565b8063095ea7b311610245578063095ea7b31461037957806318160ddd146103a257806320fc7eb2146103cd57806323aad9fd1461040a57806323b872dd1461042157806332cb6b0c1461044a5761027d565b806301ffc9a71461028257806302fe5305146102bf57806303339bcb146102e857806306fdde0314610311578063081812fc1461033c575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613861565b610a03565b6040516102b69190613fb2565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906138bb565b610ae5565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190613962565b610bff565b005b34801561031d57600080fd5b50610326610d50565b6040516103339190613fe8565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613908565b610de2565b6040516103709190613f22565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906137f4565b610e67565b005b3480156103ae57600080fd5b506103b7610f7f565b6040516103c491906143ec565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190613671565b610f85565b60405161040191906143ec565b60405180910390f35b34801561041657600080fd5b5061041f610f9d565b005b34801561042d57600080fd5b50610448600480360381019061044391906136de565b6110b2565b005b34801561045657600080fd5b5061045f611112565b60405161046c91906143ec565b60405180910390f35b34801561048157600080fd5b5061048a611117565b005b34801561049857600080fd5b506104b360048036038101906104ae91906136de565b611213565b005b3480156104c157600080fd5b506104ca611233565b6040516104d791906143ec565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613908565b611239565b005b34801561051557600080fd5b50610530600480360381019061052b9190613908565b6113fd565b60405161053d9190613f22565b60405180910390f35b34801561055257600080fd5b5061055b6114af565b6040516105689190613fb2565b60405180910390f35b34801561057d57600080fd5b506105866114c2565b6040516105939190613fe8565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613908565b611550565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190613671565b611629565b6040516105f991906143ec565b60405180910390f35b34801561060e57600080fd5b506106176116e1565b005b34801561062557600080fd5b5061062e611769565b005b34801561063c57600080fd5b506106456119d5565b6040516106529190613f22565b60405180910390f35b34801561066757600080fd5b506106706119ff565b60405161067d9190613fe8565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613908565b611a91565b005b6106c960048036038101906106c49190613908565b611b50565b005b3480156106d757600080fd5b506106e0611f13565b6040516106ed9190613fb2565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906137b4565b611f26565b005b34801561072b57600080fd5b50610734611f3c565b6040516107419190613fb2565b60405180910390f35b34801561075657600080fd5b5061075f611f4f565b60405161076c91906143ec565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613731565b611f55565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613671565b611fb7565b005b3480156107d357600080fd5b506107ee60048036038101906107e99190613908565b6120fe565b005b3480156107fc57600080fd5b506108056121bd565b005b34801561081357600080fd5b5061082e60048036038101906108299190613908565b612282565b60405161083b9190613fe8565b60405180910390f35b34801561085057600080fd5b5061085961235e565b60405161086691906143ec565b60405180910390f35b34801561087b57600080fd5b50610884612364565b6040516108919190613fb2565b60405180910390f35b3480156108a657600080fd5b506108af612377565b005b3480156108bd57600080fd5b506108d860048036038101906108d39190613908565b612465565b005b3480156108e657600080fd5b506108ef612522565b6040516108fc9190613fcd565b60405180910390f35b34801561091157600080fd5b5061092c6004803603810190610927919061369e565b612546565b6040516109399190613fb2565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613671565b6125da565b005b34801561097757600080fd5b506109806126d2565b60405161098d91906143ec565b60405180910390f35b3480156109a257600080fd5b506109ab6126d8565b6040516109b89190613fcd565b60405180910390f35b3480156109cd57600080fd5b506109d66126fe565b005b3480156109e457600080fd5b506109ed6127c3565b6040516109fa9190613fb2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ace57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ade5750610add826127d6565b5b9050919050565b610aed612840565b73ffffffffffffffffffffffffffffffffffffffff16610b0b6119d5565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b589061428c565b60405180910390fd5b600e60029054906101000a900460ff1615610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba8906141ac565b60405180910390fd5b8181600f9190610bc2929190613475565b507fde63cc2d19581e57e158d078c2df83f9ab70addd6257f7f12bfecb21c06c9128600f604051610bf3919061400a565b60405180910390a15050565b610c07612840565b73ffffffffffffffffffffffffffffffffffffffff16610c256119d5565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061428c565b60405180910390fd5b60008211610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb5906143cc565b60405180910390fd5b604582600b54610cce91906144b5565b1115610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d069061408c565b60405180910390fd5b60005b82811015610d4b57610d3882600b60008154610d2d906146e8565b919050819055612848565b8080610d43906146e8565b915050610d12565b505050565b606060008054610d5f90614685565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b90614685565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b6000610ded82612866565b610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061426c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e72826113fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061430c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f02612840565b73ffffffffffffffffffffffffffffffffffffffff161480610f315750610f3081610f2b612840565b612546565b5b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f67906141cc565b60405180910390fd5b610f7a83836128d2565b505050565b600b5481565b600d6020528060005260406000206000915090505481565b610fa5612840565b73ffffffffffffffffffffffffffffffffffffffff16610fc36119d5565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110109061428c565b60405180910390fd5b600860149054906101000a900460ff1615611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611060906142ac565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f0f45cc81eff15f6520764990e55fb4db6c34824950abd2fd6b2db3c7ef60c9f760405160405180910390a1565b6110c36110bd612840565b8261298b565b611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061436c565b60405180910390fd5b61110d838383612a69565b505050565b604581565b61111f612840565b73ffffffffffffffffffffffffffffffffffffffff1661113d6119d5565b73ffffffffffffffffffffffffffffffffffffffff1614611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a9061428c565b60405180910390fd5b600061119d6119d5565b73ffffffffffffffffffffffffffffffffffffffff16476040516111c090613f0d565b60006040518083038185875af1925050503d80600081146111fd576040519150601f19603f3d011682016040523d82523d6000602084013e611202565b606091505b505090508061121057600080fd5b50565b61122e83838360405180602001604052806000815250611f55565b505050565b600c5481565b600e60019054906101000a900460ff16611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906142ec565b60405180910390fd5b611291816113fd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061404c565b60405180910390fd5b61130781612cd0565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336009546040518363ffffffff1660e01b8152600401611366929190613f89565b602060405180830381600087803b15801561138057600080fd5b505af1158015611394573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b89190613834565b6113c157600080fd5b7f1a070b86420302c02edcc1861291ef1b47957ef5a24ffe7eb44641afc8d20bf833826040516113f2929190613f89565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d9061420c565b60405180910390fd5b80915050919050565b600860149054906101000a900460ff1681565b600f80546114cf90614685565b80601f01602080910402602001604051908101604052809291908181526020018280546114fb90614685565b80156115485780601f1061151d57610100808354040283529160200191611548565b820191906000526020600020905b81548152906001019060200180831161152b57829003601f168201915b505050505081565b611558612840565b73ffffffffffffffffffffffffffffffffffffffff166115766119d5565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061428c565b60405180910390fd5b600860159054906101000a900460ff16156115e657600080fd5b806009819055507fa63b75a9a8df5c5b9e1e9935996f924ad92dc2b5dc30cc7c0c3169650e2b48f960095460405161161e91906143ec565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611691906141ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116e9612840565b73ffffffffffffffffffffffffffffffffffffffff166117076119d5565b73ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117549061428c565b60405180910390fd5b6117676000612ded565b565b611771612840565b73ffffffffffffffffffffffffffffffffffffffff1661178f6119d5565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061428c565b60405180910390fd5b600e60019054906101000a900460ff1615611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c9061422c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906143ac565b60405180910390fd5b60095460456118d6919061450b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119319190613f22565b60206040518083038186803b15801561194957600080fd5b505afa15801561195d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119819190613935565b101561198c57600080fd5b6001600e60016101000a81548160ff0219169083151502179055507f9e5b79bb1c0c52b28fb0d9aa1d914745b820308e9295be43222ceac40f32f5b160405160405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a0e90614685565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3a90614685565b8015611a875780601f10611a5c57610100808354040283529160200191611a87565b820191906000526020600020905b815481529060010190602001808311611a6a57829003601f168201915b5050505050905090565b611a99612840565b73ffffffffffffffffffffffffffffffffffffffff16611ab76119d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b049061428c565b60405180910390fd5b806007819055507fc8105684b255c344cb197a08b45e0d58a2ef87e05ed511bcecc9f0fcf7e6c1ae600754604051611b4591906143ec565b60405180910390a150565b600e60009054906101000a900460ff16611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b969061432c565b60405180910390fd5b60008111611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd99061410c565b60405180910390fd5b604581600b54611bf291906144b5565b1115611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a9061408c565b60405180910390fd5b3481600a54611c42919061450b565b1115611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a9061412c565b60405180910390fd5b60007f0000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611cde9190613f22565b60206040518083038186803b158015611cf657600080fd5b505afa158015611d0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2e9190613935565b9050600754811015611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c9061438c565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc091906144b5565b600c541015611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb9061402c565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5391906144b5565b925050819055507fa7cfba9d9e1cd51ab5f86e3b157fa687f7d347cd061300b88abf0ef289010c9333600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611eca929190613f89565b60405180910390a160005b82811015611f0e57611efb33600b60008154611ef0906146e8565b919050819055612848565b8080611f06906146e8565b915050611ed5565b505050565b600e60019054906101000a900460ff1681565b611f38611f31612840565b8383612eb3565b5050565b600e60009054906101000a900460ff1681565b600a5481565b611f66611f60612840565b8361298b565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c9061436c565b60405180910390fd5b611fb184848484613020565b50505050565b611fbf612840565b73ffffffffffffffffffffffffffffffffffffffff16611fdd6119d5565b73ffffffffffffffffffffffffffffffffffffffff1614612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a9061428c565b60405180910390fd5b600860149054906101000a900460ff1615612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a9061434c565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f075e12098091a60f14b1f21fa29b1c4691e4c3a5063056f8bf6a2b7e81eca40d816040516120f39190613f22565b60405180910390a150565b612106612840565b73ffffffffffffffffffffffffffffffffffffffff166121246119d5565b73ffffffffffffffffffffffffffffffffffffffff161461217a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121719061428c565b60405180910390fd5b80600a819055507f083b9729c7679b40b0c34124f2956a9d6917dd4e8fcef4c1aaa055234f94a9cc600a546040516121b291906143ec565b60405180910390a150565b6121c5612840565b73ffffffffffffffffffffffffffffffffffffffff166121e36119d5565b73ffffffffffffffffffffffffffffffffffffffff1614612239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122309061428c565b60405180910390fd5b6001600e60026101000a81548160ff0219169083151502179055507f6a2981ea9a7537a6211ee6eae24328b3f2136e3870f47b9fdd60be1871d4bd7d60405160405180910390a1565b606061228d82612866565b6122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c3906142cc565b60405180910390fd5b600f80546122d990614685565b80601f016020809104026020016040519081016040528092919081815260200182805461230590614685565b80156123525780601f1061232757610100808354040283529160200191612352565b820191906000526020600020905b81548152906001019060200180831161233557829003601f168201915b50505050509050919050565b60075481565b600860159054906101000a900460ff1681565b61237f612840565b73ffffffffffffffffffffffffffffffffffffffff1661239d6119d5565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea9061428c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff0219169083151502179055507fd95db27fb727a8efc81657db609938fd60d724f29d367d50680bc54a1c0e1ae2600e60009054906101000a900460ff1660405161245b9190613fb2565b60405180910390a1565b61246d612840565b73ffffffffffffffffffffffffffffffffffffffff1661248b6119d5565b73ffffffffffffffffffffffffffffffffffffffff16146124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d89061428c565b60405180910390fd5b80600c819055507f5148ad165598f6b9c55b6a7d8783c2fd69e853633c9696c415276c67f6ec99ad8160405161251791906143ec565b60405180910390a150565b7f0000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125e2612840565b73ffffffffffffffffffffffffffffffffffffffff166126006119d5565b73ffffffffffffffffffffffffffffffffffffffff1614612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d9061428c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd906140ac565b60405180910390fd5b6126cf81612ded565b50565b60095481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612706612840565b73ffffffffffffffffffffffffffffffffffffffff166127246119d5565b73ffffffffffffffffffffffffffffffffffffffff161461277a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127719061428c565b60405180910390fd5b6001600860156101000a81548160ff0219169083151502179055507f65c158b3c27e12c11e073063b0be4e1176b8b9859d6824ad2cce20c90115bae060405160405180910390a1565b600e60029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61286282826040518060200160405280600081525061307c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612945836113fd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061299682612866565b6129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc9061418c565b60405180910390fd5b60006129e0836113fd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a4f57508373ffffffffffffffffffffffffffffffffffffffff16612a3784610de2565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a605750612a5f8185612546565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a89826113fd565b73ffffffffffffffffffffffffffffffffffffffff1614612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906140cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b469061414c565b60405180910390fd5b612b5a8383836130d7565b612b656000826128d2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb59190614565565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0c91906144b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ccb8383836130dc565b505050565b6000612cdb826113fd565b9050612ce9816000846130d7565b612cf46000836128d2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d449190614565565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612de9816000846130dc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f199061416c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516130139190613fb2565b60405180910390a3505050565b61302b848484612a69565b613037848484846130e1565b613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d9061406c565b60405180910390fd5b50505050565b6130868383613278565b61309360008484846130e1565b6130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c99061406c565b60405180910390fd5b505050565b505050565b505050565b60006131028473ffffffffffffffffffffffffffffffffffffffff16613452565b1561326b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261312b612840565b8786866040518563ffffffff1660e01b815260040161314d9493929190613f3d565b602060405180830381600087803b15801561316757600080fd5b505af192505050801561319857506040513d601f19601f82011682018060405250810190613195919061388e565b60015b61321b573d80600081146131c8576040519150601f19603f3d011682016040523d82523d6000602084013e6131cd565b606091505b50600081511415613213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320a9061406c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613270565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132df9061424c565b60405180910390fd5b6132f181612866565b15613331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613328906140ec565b60405180910390fd5b61333d600083836130d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461338d91906144b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461344e600083836130dc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461348190614685565b90600052602060002090601f0160209004810192826134a357600085556134ea565b82601f106134bc57803560ff19168380011785556134ea565b828001600101855582156134ea579182015b828111156134e95782358255916020019190600101906134ce565b5b5090506134f791906134fb565b5090565b5b808211156135145760008160009055506001016134fc565b5090565b600061352b6135268461442c565b614407565b905082815260208101848484011115613547576135466147cd565b5b613552848285614643565b509392505050565b60008135905061356981614ef8565b92915050565b60008135905061357e81614f0f565b92915050565b60008151905061359381614f0f565b92915050565b6000813590506135a881614f26565b92915050565b6000815190506135bd81614f26565b92915050565b600082601f8301126135d8576135d76147c3565b5b81356135e8848260208601613518565b91505092915050565b60008083601f840112613607576136066147c3565b5b8235905067ffffffffffffffff811115613624576136236147be565b5b6020830191508360018202830111156136405761363f6147c8565b5b9250929050565b60008135905061365681614f3d565b92915050565b60008151905061366b81614f3d565b92915050565b600060208284031215613687576136866147d7565b5b60006136958482850161355a565b91505092915050565b600080604083850312156136b5576136b46147d7565b5b60006136c38582860161355a565b92505060206136d48582860161355a565b9150509250929050565b6000806000606084860312156136f7576136f66147d7565b5b60006137058682870161355a565b93505060206137168682870161355a565b925050604061372786828701613647565b9150509250925092565b6000806000806080858703121561374b5761374a6147d7565b5b60006137598782880161355a565b945050602061376a8782880161355a565b935050604061377b87828801613647565b925050606085013567ffffffffffffffff81111561379c5761379b6147d2565b5b6137a8878288016135c3565b91505092959194509250565b600080604083850312156137cb576137ca6147d7565b5b60006137d98582860161355a565b92505060206137ea8582860161356f565b9150509250929050565b6000806040838503121561380b5761380a6147d7565b5b60006138198582860161355a565b925050602061382a85828601613647565b9150509250929050565b60006020828403121561384a576138496147d7565b5b600061385884828501613584565b91505092915050565b600060208284031215613877576138766147d7565b5b600061388584828501613599565b91505092915050565b6000602082840312156138a4576138a36147d7565b5b60006138b2848285016135ae565b91505092915050565b600080602083850312156138d2576138d16147d7565b5b600083013567ffffffffffffffff8111156138f0576138ef6147d2565b5b6138fc858286016135f1565b92509250509250929050565b60006020828403121561391e5761391d6147d7565b5b600061392c84828501613647565b91505092915050565b60006020828403121561394b5761394a6147d7565b5b60006139598482850161365c565b91505092915050565b60008060408385031215613979576139786147d7565b5b600061398785828601613647565b92505060206139988582860161355a565b9150509250929050565b6139ab81614599565b82525050565b6139ba816145ab565b82525050565b60006139cb82614472565b6139d58185614488565b93506139e5818560208601614652565b6139ee816147dc565b840191505092915050565b613a028161460d565b82525050565b6000613a138261447d565b613a1d81856144a4565b9350613a2d818560208601614652565b613a36816147dc565b840191505092915050565b60008154613a4e81614685565b613a5881866144a4565b94506001821660008114613a735760018114613a8557613ab8565b60ff1983168652602086019350613ab8565b613a8e8561445d565b60005b83811015613ab057815481890152600182019150602081019050613a91565b808801955050505b50505092915050565b6000613ace6028836144a4565b9150613ad9826147ed565b604082019050919050565b6000613af16017836144a4565b9150613afc8261483c565b602082019050919050565b6000613b146032836144a4565b9150613b1f82614865565b604082019050919050565b6000613b376008836144a4565b9150613b42826148b4565b602082019050919050565b6000613b5a6026836144a4565b9150613b65826148dd565b604082019050919050565b6000613b7d6025836144a4565b9150613b888261492c565b604082019050919050565b6000613ba0601c836144a4565b9150613bab8261497b565b602082019050919050565b6000613bc36026836144a4565b9150613bce826149a4565b604082019050919050565b6000613be66012836144a4565b9150613bf1826149f3565b602082019050919050565b6000613c096024836144a4565b9150613c1482614a1c565b604082019050919050565b6000613c2c6019836144a4565b9150613c3782614a6b565b602082019050919050565b6000613c4f602c836144a4565b9150613c5a82614a94565b604082019050919050565b6000613c72600d836144a4565b9150613c7d82614ae3565b602082019050919050565b6000613c956038836144a4565b9150613ca082614b0c565b604082019050919050565b6000613cb8602a836144a4565b9150613cc382614b5b565b604082019050919050565b6000613cdb6029836144a4565b9150613ce682614baa565b604082019050919050565b6000613cfe6010836144a4565b9150613d0982614bf9565b602082019050919050565b6000613d216020836144a4565b9150613d2c82614c22565b602082019050919050565b6000613d44602c836144a4565b9150613d4f82614c4b565b604082019050919050565b6000613d676020836144a4565b9150613d7282614c9a565b602082019050919050565b6000613d8a6014836144a4565b9150613d9582614cc3565b602082019050919050565b6000613dad602f836144a4565b9150613db882614cec565b604082019050919050565b6000613dd0601d836144a4565b9150613ddb82614d3b565b602082019050919050565b6000613df36021836144a4565b9150613dfe82614d64565b604082019050919050565b6000613e166014836144a4565b9150613e2182614db3565b602082019050919050565b6000613e39600083614499565b9150613e4482614ddc565b600082019050919050565b6000613e5c6017836144a4565b9150613e6782614ddf565b602082019050919050565b6000613e7f6031836144a4565b9150613e8a82614e08565b604082019050919050565b6000613ea26025836144a4565b9150613ead82614e57565b604082019050919050565b6000613ec56015836144a4565b9150613ed082614ea6565b602082019050919050565b6000613ee8600d836144a4565b9150613ef382614ecf565b602082019050919050565b613f0781614603565b82525050565b6000613f1882613e2c565b9150819050919050565b6000602082019050613f3760008301846139a2565b92915050565b6000608082019050613f5260008301876139a2565b613f5f60208301866139a2565b613f6c6040830185613efe565b8181036060830152613f7e81846139c0565b905095945050505050565b6000604082019050613f9e60008301856139a2565b613fab6020830184613efe565b9392505050565b6000602082019050613fc760008301846139b1565b92915050565b6000602082019050613fe260008301846139f9565b92915050565b600060208201905081810360008301526140028184613a08565b905092915050565b600060208201905081810360008301526140248184613a41565b905092915050565b6000602082019050818103600083015261404581613ac1565b9050919050565b6000602082019050818103600083015261406581613ae4565b9050919050565b6000602082019050818103600083015261408581613b07565b9050919050565b600060208201905081810360008301526140a581613b2a565b9050919050565b600060208201905081810360008301526140c581613b4d565b9050919050565b600060208201905081810360008301526140e581613b70565b9050919050565b6000602082019050818103600083015261410581613b93565b9050919050565b6000602082019050818103600083015261412581613bb6565b9050919050565b6000602082019050818103600083015261414581613bd9565b9050919050565b6000602082019050818103600083015261416581613bfc565b9050919050565b6000602082019050818103600083015261418581613c1f565b9050919050565b600060208201905081810360008301526141a581613c42565b9050919050565b600060208201905081810360008301526141c581613c65565b9050919050565b600060208201905081810360008301526141e581613c88565b9050919050565b6000602082019050818103600083015261420581613cab565b9050919050565b6000602082019050818103600083015261422581613cce565b9050919050565b6000602082019050818103600083015261424581613cf1565b9050919050565b6000602082019050818103600083015261426581613d14565b9050919050565b6000602082019050818103600083015261428581613d37565b9050919050565b600060208201905081810360008301526142a581613d5a565b9050919050565b600060208201905081810360008301526142c581613d7d565b9050919050565b600060208201905081810360008301526142e581613da0565b9050919050565b6000602082019050818103600083015261430581613dc3565b9050919050565b6000602082019050818103600083015261432581613de6565b9050919050565b6000602082019050818103600083015261434581613e09565b9050919050565b6000602082019050818103600083015261436581613e4f565b9050919050565b6000602082019050818103600083015261438581613e72565b9050919050565b600060208201905081810360008301526143a581613e95565b9050919050565b600060208201905081810360008301526143c581613eb8565b9050919050565b600060208201905081810360008301526143e581613edb565b9050919050565b60006020820190506144016000830184613efe565b92915050565b6000614411614422565b905061441d82826146b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156144475761444661478f565b5b614450826147dc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006144c082614603565b91506144cb83614603565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614500576144ff614731565b5b828201905092915050565b600061451682614603565b915061452183614603565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a57614559614731565b5b828202905092915050565b600061457082614603565b915061457b83614603565b92508282101561458e5761458d614731565b5b828203905092915050565b60006145a4826145e3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006146188261461f565b9050919050565b600061462a82614631565b9050919050565b600061463c826145e3565b9050919050565b82818337600083830152505050565b60005b83811015614670578082015181840152602081019050614655565b8381111561467f576000848401525b50505050565b6000600282049050600182168061469d57607f821691505b602082108114156146b1576146b0614760565b5b50919050565b6146c0826147dc565b810181811067ffffffffffffffff821117156146df576146de61478f565b5b80604052505050565b60006146f382614603565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472657614725614731565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c65742068617320616c726561647920636c61696d6564206d6178696d60008201527f756d206d696e7473000000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220646f6573206e6f74206f776e204e4654000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e756d626572206f6620746f6b656e732073686f756c64206265206d6f72652060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5552492069732046726f7a656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20616c7265616479206c6f636b6564000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e63696e657261746f72206e6f74207761726d656420757020796574000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c6520496e616374697665000000000000000000000000600082015250565b50565b7f546f6b656e20697320616c7265616479206c6f636b6564000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53656e64657220646f6573206e6f7420686f6c6420656e6f756768205368696260008201527f61446f6765000000000000000000000000000000000000000000000000000000602082015250565b7f6275726e546f6b656e206d757374206265207365740000000000000000000000600082015250565b7f63616e6e6f74206d696e74203000000000000000000000000000000000000000600082015250565b614f0181614599565b8114614f0c57600080fd5b50565b614f18816145ab565b8114614f2357600080fd5b50565b614f2f816145b7565b8114614f3a57600080fd5b50565b614f4681614603565b8114614f5157600080fd5b5056fea2646970667358221220a3073cedbdcb99b41985d7167687a34552bd25665fa97201694d06a5400c3fa664736f6c63430008070033

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

0000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f0000000000000000000000000000000000000000d9c7f92946b1c33c480000000000000000000000000000000000000000000000000000000000000000000003

-----Decoded View---------------
Arg [0] : _ShibaDoge (address): 0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F
Arg [1] : _minShibaDoge (uint256): 67400000000000000000000000000
Arg [2] : _maxPerWallet (uint256): 3

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f
Arg [1] : 0000000000000000000000000000000000000000d9c7f92946b1c33c48000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003


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.