ETH Price: $3,187.64 (+1.83%)
Gas: 6 Gwei

Token

Kung Fungus (KUNGFUNGUS)
 

Overview

Max Total Supply

0 KUNGFUNGUS

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 KUNGFUNGUS
0x4193462f4a77D163b86cFd0956c2d4A82Da42b31
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:
Kungfungus

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Kungfungus.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract Kungfungus is ERC721, Pausable, Ownable, ERC721Burnable {
    using Counters for Counters.Counter;

    enum State {
        Closed,
        Presale,
        PresaleTwo,
        PublicSale
    }

    Counters.Counter private _tokenIdCounter;

    string private _metadataEndpoint = "https://api.kungfungus.com/tokens/";

    State private _saleState;

    uint256 private _supplyTotal = 10101;

    uint256 private _supplyPresale = 1000;

    uint256 private _supplyPresaleTwo = 1000;

    uint256 private _mintCostPresale = 0.03 ether;

    uint256 private _mintCostPresaleTwo = 0.04 ether;

    uint256 private _mintCostPublicSale = 0.05 ether;

    uint256 private _mintedPresale = 0;

    uint256 private _mintedPresaleTwo = 0;

    uint256 private _maxTokensPerAddress = 20;

    mapping(address => uint256) public mintsPerAddress;

    constructor() ERC721("Kung Fungus", "KUNGFUNGUS") {
        _tokenIdCounter.increment();
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        mintsPerAddress[to] += 1;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function setMetadataEndpoint(string memory endpoint) public onlyOwner {
        _metadataEndpoint = endpoint;
    }

    function setTotalSupply(uint256 supply) public onlyOwner {
        _supplyTotal = supply;
    }

    function setPresaleSupply(uint256 supply) public onlyOwner {
        _supplyPresale = supply;
    }

    function setPresaleTwoSupply(uint256 supply) public onlyOwner {
        _supplyPresaleTwo = supply;
    }

    function setPublicSaleCost(uint256 cost) public onlyOwner {
        _mintCostPublicSale = cost;
    }

    function setPresaleCost(uint256 cost) public onlyOwner {
        _mintCostPresale = cost;
    }

    function setPresaleTwoCost(uint256 cost) public onlyOwner {
        _mintCostPresaleTwo = cost;
    }

    function setState(State state) public onlyOwner {
        _saleState = state;
    }

    function setMaxTokensPerAddress(uint256 value) public onlyOwner {
        _maxTokensPerAddress = value;
    }

    function reservedMint(address to, uint256 quantity) public onlyOwner {
        require(
            _tokenIdCounter.current() + quantity <= _supplyTotal,
            "Not enough NFTs left to mint"
        );

        for (uint256 i = 0; i < quantity; i++) {
            safeMint(to);
        }
    }

    function withdraw(address recipient, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Incorrect amount");

        payable(recipient).transfer(amount);
    }

    function mint(uint256 quantity) public payable {
        require(_saleState != State.Closed, "Sale is not open");

        require(
            _tokenIdCounter.current() - 1 + quantity <= _supplyTotal,
            "Not enough NFTs left to mint"
        );

        require(
            mintsPerAddress[msg.sender] + quantity <= _maxTokensPerAddress,
            "This address cannot mint more NFTs"
        );

        if (_saleState == State.PublicSale) {
            publicSaleMint(quantity);
        } else if (_saleState == State.PresaleTwo) {
            presaleTwoMint(quantity);
        } else if (_saleState == State.Presale) {
            presaleMint(quantity);
        }
    }

    function presaleMint(uint256 quantity) internal {
        require(_saleState == State.Presale, "Sale is not open");

        require(
            _mintedPresale + quantity <= _supplyPresale,
            "Not enough NFTs left to mint"
        );

        require(
            msg.value >= mintCost() * quantity,
            "Not sufficient Ether to mint this amount of NFTs"
        );

        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
            _mintedPresale += 1;
        }
    }

    function presaleTwoMint(uint256 quantity) internal {
        require(_saleState == State.PresaleTwo, "Sale is not open");

        require(
            _mintedPresaleTwo + quantity <= _supplyPresaleTwo,
            "Not enough NFTs left to mint"
        );

        require(
            msg.value >= mintCost() * quantity,
            "Not sufficient Ether to mint this amount of NFTs"
        );

        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
            _mintedPresaleTwo += 1;
        }
    }

    function publicSaleMint(uint256 quantity) internal {
        require(_saleState == State.PublicSale, "Sale is not open");

        require(
            _tokenIdCounter.current() - 1 + quantity <= _supplyTotal,
            "Not enough NFTs left to mint"
        );

        require(
            msg.value >= mintCost() * quantity,
            "Not sufficient Ether to mint this amount of NFTs"
        );

        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function mintCost() public view returns (uint256) {
        if (_saleState == State.PublicSale) {
            return _mintCostPublicSale;
        } else if (_saleState == State.PresaleTwo) {
            return _mintCostPresaleTwo;
        } else {
            return _mintCostPresale;
        }
    }

    function getSupplyPresale() public view returns (uint256) {
        return _supplyPresale;
    }

    function getSupplyPresaleTwo() public view returns (uint256) {
        return _supplyPresaleTwo;
    }

    function getSupplyTotal() public view returns (uint256) {
        return _supplyTotal;
    }

    function getMintedPresale() public view returns (uint256) {
        return _mintedPresale;
    }

    function getMintedPresaleTwo() public view returns (uint256) {
        return _mintedPresaleTwo;
    }

    function getMintedTotal() public view returns (uint256) {
        return _tokenIdCounter.current() - 1;
    }

    function getMaxTokensPerAddress() public view returns (uint256) {
        return _maxTokensPerAddress;
    }

    function getCurrentState() public view returns (State) {
        return _saleState;
    }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

File 5 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

File 7 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 15 : 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 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":[],"name":"getCurrentState","outputs":[{"internalType":"enum Kungfungus.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxTokensPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedPresaleTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyPresaleTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxTokensPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"endpoint","type":"string"}],"name":"setMetadataEndpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setPresaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setPresaleTwoCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setPresaleTwoSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Kungfungus.State","name":"state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060228152602001620045cc60229139600890805190602001906200003592919062000262565b50612775600a556103e8600b556103e8600c55666a94d74f430000600d55668e1bc9bf040000600e5566b1a2bc2ec50000600f556000601055600060115560146012553480156200008557600080fd5b506040518060400160405280600b81526020017f4b756e672046756e6775730000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4b554e4746554e4755530000000000000000000000000000000000000000000081525081600090805190602001906200010a92919062000262565b5080600190805190602001906200012392919062000262565b5050506000600660006101000a81548160ff02191690831515021790555062000161620001556200017e60201b60201c565b6200018660201b60201c565b6200017860076200024c60201b620016ed1760201c565b62000377565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620002709062000341565b90600052602060002090601f016020900481019282620002945760008555620002e0565b82601f10620002af57805160ff1916838001178555620002e0565b82800160010185558215620002e0579182015b82811115620002df578251825591602001919060010190620002c2565b5b509050620002ef9190620002f3565b5090565b5b808211156200030e576000816000905550600101620002f4565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035a57607f821691505b6020821081141562000371576200037062000312565b5b50919050565b61424580620003876000396000f3fe6080604052600436106102515760003560e01c80638da5cb5b11610139578063bb17cbe0116100b6578063dbb84f111161007a578063dbb84f1114610867578063e985e9c514610890578063e9a836a5146108cd578063f2fde38b146108f8578063f3fef3a314610921578063f7ea7a3d1461094a57610251565b8063bb17cbe014610782578063bc27401e146107ad578063bdb4b848146107d6578063c5338bb014610801578063c87b56dd1461082a57610251565b8063a22cb465116100fd578063a22cb465146106b3578063a4ba794d146106dc578063b7a34c8a14610707578063b88d4fde14610730578063b96502cb1461075957610251565b80638da5cb5b146105ef5780638dbb7c061461061a5780638fdcf9421461064357806395d89b411461066c578063a0712d681461069757610251565b80633fea7da1116101d25780635c975abb116101965780635c975abb146104f15780636352211e1461051c5780636d5aac5a1461055957806370a0823114610584578063715018a6146105c15780638456cb59146105d857610251565b80633fea7da11461042257806342842e0e1461044b57806342966c681461047457806344d3a1051461049d57806356de96db146104c857610251565b8063222cb74b11610219578063222cb74b1461034f57806323b872dd1461037a5780633023eba6146103a3578063378aa701146103e05780633f4ba83a1461040b57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806311f5eb1614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612d3e565b610973565b60405161028a9190612d86565b60405180910390f35b34801561029f57600080fd5b506102a8610a55565b6040516102b59190612e3a565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612e92565b610ae7565b6040516102f29190612f00565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612f47565b610b2d565b005b34801561033057600080fd5b50610339610c45565b6040516103469190612f96565b60405180910390f35b34801561035b57600080fd5b50610364610c62565b6040516103719190612f96565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612fb1565b610c6c565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613004565b610ccc565b6040516103d79190612f96565b60405180910390f35b3480156103ec57600080fd5b506103f5610ce4565b60405161040291906130a8565b60405180910390f35b34801561041757600080fd5b50610420610cfb565b005b34801561042e57600080fd5b50610449600480360381019061044491906131f8565b610d0d565b005b34801561045757600080fd5b50610472600480360381019061046d9190612fb1565b610d2f565b005b34801561048057600080fd5b5061049b60048036038101906104969190612e92565b610d4f565b005b3480156104a957600080fd5b506104b2610dab565b6040516104bf9190612f96565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190613266565b610db5565b005b3480156104fd57600080fd5b50610506610dea565b6040516105139190612d86565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612e92565b610e01565b6040516105509190612f00565b60405180910390f35b34801561056557600080fd5b5061056e610eb3565b60405161057b9190612f96565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613004565b610ebd565b6040516105b89190612f96565b60405180910390f35b3480156105cd57600080fd5b506105d6610f75565b005b3480156105e457600080fd5b506105ed610f89565b005b3480156105fb57600080fd5b50610604610f9b565b6040516106119190612f00565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190612e92565b610fc5565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612e92565b610fd7565b005b34801561067857600080fd5b50610681610fe9565b60405161068e9190612e3a565b60405180910390f35b6106b160048036038101906106ac9190612e92565b61107b565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906132bf565b6112c4565b005b3480156106e857600080fd5b506106f16112da565b6040516106fe9190612f96565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190612f47565b6112e4565b005b34801561073c57600080fd5b50610757600480360381019061075291906133a0565b611371565b005b34801561076557600080fd5b50610780600480360381019061077b9190612e92565b6113d3565b005b34801561078e57600080fd5b506107976113e5565b6040516107a49190612f96565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190612e92565b6113ef565b005b3480156107e257600080fd5b506107eb611401565b6040516107f89190612f96565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612e92565b611497565b005b34801561083657600080fd5b50610851600480360381019061084c9190612e92565b6114a9565b60405161085e9190612e3a565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190612e92565b611511565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613423565b611523565b6040516108c49190612d86565b60405180910390f35b3480156108d957600080fd5b506108e26115b7565b6040516108ef9190612f96565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a9190613004565b6115c1565b005b34801561092d57600080fd5b5061094860048036038101906109439190612f47565b611645565b005b34801561095657600080fd5b50610971600480360381019061096c9190612e92565b6116db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4e5750610a4d82611703565b5b9050919050565b606060008054610a6490613492565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090613492565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af28261176d565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3882610e01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613536565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc86117b8565b73ffffffffffffffffffffffffffffffffffffffff161480610bf75750610bf681610bf16117b8565b611523565b5b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906135c8565b60405180910390fd5b610c4083836117c0565b505050565b60006001610c536007611879565b610c5d9190613617565b905090565b6000600a54905090565b610c7d610c776117b8565b82611887565b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906136bd565b60405180910390fd5b610cc783838361191c565b505050565b60136020528060005260406000206000915090505481565b6000600960009054906101000a900460ff16905090565b610d03611b83565b610d0b611c01565b565b610d15611b83565b8060089080519060200190610d2b929190612c2f565b5050565b610d4a83838360405180602001604052806000815250611371565b505050565b610d60610d5a6117b8565b82611887565b610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d96906136bd565b60405180910390fd5b610da881611c64565b50565b6000600b54905090565b610dbd611b83565b80600960006101000a81548160ff02191690836003811115610de257610de1613031565b5b021790555050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613729565b60405180910390fd5b80915050919050565b6000601254905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906137bb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7d611b83565b610f876000611d81565b565b610f91611b83565b610f99611e47565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fcd611b83565b80600f8190555050565b610fdf611b83565b80600d8190555050565b606060018054610ff890613492565b80601f016020809104026020016040519081016040528092919081815260200182805461102490613492565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b5050505050905090565b6000600381111561108f5761108e613031565b5b600960009054906101000a900460ff1660038111156110b1576110b0613031565b5b14156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613827565b60405180910390fd5b600a548160016111026007611879565b61110c9190613617565b6111169190613847565b1115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906138e9565b60405180910390fd5b60125481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a59190613847565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061397b565b60405180910390fd5b6003808111156111f9576111f8613031565b5b600960009054906101000a900460ff16600381111561121b5761121a613031565b5b141561122f5761122a81611eaa565b6112c1565b6002600381111561124357611242613031565b5b600960009054906101000a900460ff16600381111561126557611264613031565b5b14156112795761127481612004565b6112c0565b6001600381111561128d5761128c613031565b5b600960009054906101000a900460ff1660038111156112af576112ae613031565b5b14156112bf576112be81612166565b5b5b5b50565b6112d66112cf6117b8565b83836122c8565b5050565b6000601154905090565b6112ec611b83565b600a54816112fa6007611879565b6113049190613847565b1115611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906138e9565b60405180910390fd5b60005b8181101561136c5761135983612435565b80806113649061399b565b915050611348565b505050565b61138261137c6117b8565b83611887565b6113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906136bd565b60405180910390fd5b6113cd848484846124b2565b50505050565b6113db611b83565b80600b8190555050565b6000600c54905090565b6113f7611b83565b80600e8190555050565b600060038081111561141657611415613031565b5b600960009054906101000a900460ff16600381111561143857611437613031565b5b141561144857600f549050611494565b6002600381111561145c5761145b613031565b5b600960009054906101000a900460ff16600381111561147e5761147d613031565b5b141561148e57600e549050611494565b600d5490505b90565b61149f611b83565b80600c8190555050565b60606114b48261176d565b60006114be61250e565b905060008151116114de5760405180602001604052806000815250611509565b806114e8846125a0565b6040516020016114f9929190613a20565b6040516020818303038152906040525b915050919050565b611519611b83565b8060128190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601054905090565b6115c9611b83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613ab6565b60405180910390fd5b61164281611d81565b50565b61164d611b83565b47811115611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613b22565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116d6573d6000803e3d6000fd5b505050565b6116e3611b83565b80600a8190555050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61177681612701565b6117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613729565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183383610e01565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061189383610e01565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118d557506118d48185611523565b5b8061191357508373ffffffffffffffffffffffffffffffffffffffff166118fb84610ae7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661193c82610e01565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613bb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990613c46565b60405180910390fd5b611a0d83838361276d565b611a186000826117c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a689190613617565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611abf9190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b7e838383612785565b505050565b611b8b6117b8565b73ffffffffffffffffffffffffffffffffffffffff16611ba9610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613cb2565b60405180910390fd5b565b611c0961278a565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c4d6117b8565b604051611c5a9190612f00565b60405180910390a1565b6000611c6f82610e01565b9050611c7d8160008461276d565b611c886000836117c0565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd89190613617565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d7d81600084612785565b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4f6127d3565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e936117b8565b604051611ea09190612f00565b60405180910390a1565b600380811115611ebd57611ebc613031565b5b600960009054906101000a900460ff166003811115611edf57611ede613031565b5b14611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613827565b60405180910390fd5b600a54816001611f2f6007611879565b611f399190613617565b611f439190613847565b1115611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b906138e9565b60405180910390fd5b80611f8d611401565b611f979190613cd2565b341015611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613d9e565b60405180910390fd5b60005b8181101561200057611fed33612435565b8080611ff89061399b565b915050611fdc565b5050565b6002600381111561201857612017613031565b5b600960009054906101000a900460ff16600381111561203a57612039613031565b5b1461207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613827565b60405180910390fd5b600c548160115461208b9190613847565b11156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c3906138e9565b60405180910390fd5b806120d5611401565b6120df9190613cd2565b341015612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613d9e565b60405180910390fd5b60005b818110156121625761213533612435565b6001601160008282546121489190613847565b92505081905550808061215a9061399b565b915050612124565b5050565b6001600381111561217a57612179613031565b5b600960009054906101000a900460ff16600381111561219c5761219b613031565b5b146121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390613827565b60405180910390fd5b600b54816010546121ed9190613847565b111561222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906138e9565b60405180910390fd5b80612237611401565b6122419190613cd2565b341015612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90613d9e565b60405180910390fd5b60005b818110156122c45761229733612435565b6001601060008282546122aa9190613847565b9250508190555080806122bc9061399b565b915050612286565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90613e0a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124289190612d86565b60405180910390a3505050565b60006124416007611879565b905061244d60076116ed565b612457828261281d565b6001601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a79190613847565b925050819055505050565b6124bd84848461191c565b6124c98484848461283b565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90613e9c565b60405180910390fd5b50505050565b60606008805461251d90613492565b80601f016020809104026020016040519081016040528092919081815260200182805461254990613492565b80156125965780601f1061256b57610100808354040283529160200191612596565b820191906000526020600020905b81548152906001019060200180831161257957829003601f168201915b5050505050905090565b606060008214156125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a5780806126039061399b565b915050600a826126139190613eeb565b91506125f0565b60008167ffffffffffffffff811115612636576126356130cd565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613617565b9150600a856126909190613f1c565b603061269c9190613847565b60f81b8183815181106126b2576126b1613f4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee9190613eeb565b945061266c565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6127756127d3565b6127808383836129d2565b505050565b505050565b612792610dea565b6127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c890613fc8565b60405180910390fd5b565b6127db610dea565b1561281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614034565b60405180910390fd5b565b6128378282604051806020016040528060008152506129d7565b5050565b600061285c8473ffffffffffffffffffffffffffffffffffffffff16612a32565b156129c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128856117b8565b8786866040518563ffffffff1660e01b81526004016128a794939291906140a9565b602060405180830381600087803b1580156128c157600080fd5b505af19250505080156128f257506040513d601f19601f820116820180604052508101906128ef919061410a565b60015b612975573d8060008114612922576040519150601f19603f3d011682016040523d82523d6000602084013e612927565b606091505b5060008151141561296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490613e9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ca565b600190505b949350505050565b505050565b6129e18383612a55565b6129ee600084848461283b565b612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490613e9c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614183565b60405180910390fd5b612ace81612701565b15612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b05906141ef565b60405180910390fd5b612b1a6000838361276d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6a9190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2b60008383612785565b5050565b828054612c3b90613492565b90600052602060002090601f016020900481019282612c5d5760008555612ca4565b82601f10612c7657805160ff1916838001178555612ca4565b82800160010185558215612ca4579182015b82811115612ca3578251825591602001919060010190612c88565b5b509050612cb19190612cb5565b5090565b5b80821115612cce576000816000905550600101612cb6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1b81612ce6565b8114612d2657600080fd5b50565b600081359050612d3881612d12565b92915050565b600060208284031215612d5457612d53612cdc565b5b6000612d6284828501612d29565b91505092915050565b60008115159050919050565b612d8081612d6b565b82525050565b6000602082019050612d9b6000830184612d77565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ddb578082015181840152602081019050612dc0565b83811115612dea576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e0c82612da1565b612e168185612dac565b9350612e26818560208601612dbd565b612e2f81612df0565b840191505092915050565b60006020820190508181036000830152612e548184612e01565b905092915050565b6000819050919050565b612e6f81612e5c565b8114612e7a57600080fd5b50565b600081359050612e8c81612e66565b92915050565b600060208284031215612ea857612ea7612cdc565b5b6000612eb684828501612e7d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612eea82612ebf565b9050919050565b612efa81612edf565b82525050565b6000602082019050612f156000830184612ef1565b92915050565b612f2481612edf565b8114612f2f57600080fd5b50565b600081359050612f4181612f1b565b92915050565b60008060408385031215612f5e57612f5d612cdc565b5b6000612f6c85828601612f32565b9250506020612f7d85828601612e7d565b9150509250929050565b612f9081612e5c565b82525050565b6000602082019050612fab6000830184612f87565b92915050565b600080600060608486031215612fca57612fc9612cdc565b5b6000612fd886828701612f32565b9350506020612fe986828701612f32565b9250506040612ffa86828701612e7d565b9150509250925092565b60006020828403121561301a57613019612cdc565b5b600061302884828501612f32565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061307157613070613031565b5b50565b600081905061308282613060565b919050565b600061309282613074565b9050919050565b6130a281613087565b82525050565b60006020820190506130bd6000830184613099565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310582612df0565b810181811067ffffffffffffffff82111715613124576131236130cd565b5b80604052505050565b6000613137612cd2565b905061314382826130fc565b919050565b600067ffffffffffffffff821115613163576131626130cd565b5b61316c82612df0565b9050602081019050919050565b82818337600083830152505050565b600061319b61319684613148565b61312d565b9050828152602081018484840111156131b7576131b66130c8565b5b6131c2848285613179565b509392505050565b600082601f8301126131df576131de6130c3565b5b81356131ef848260208601613188565b91505092915050565b60006020828403121561320e5761320d612cdc565b5b600082013567ffffffffffffffff81111561322c5761322b612ce1565b5b613238848285016131ca565b91505092915050565b6004811061324e57600080fd5b50565b60008135905061326081613241565b92915050565b60006020828403121561327c5761327b612cdc565b5b600061328a84828501613251565b91505092915050565b61329c81612d6b565b81146132a757600080fd5b50565b6000813590506132b981613293565b92915050565b600080604083850312156132d6576132d5612cdc565b5b60006132e485828601612f32565b92505060206132f5858286016132aa565b9150509250929050565b600067ffffffffffffffff82111561331a576133196130cd565b5b61332382612df0565b9050602081019050919050565b600061334361333e846132ff565b61312d565b90508281526020810184848401111561335f5761335e6130c8565b5b61336a848285613179565b509392505050565b600082601f830112613387576133866130c3565b5b8135613397848260208601613330565b91505092915050565b600080600080608085870312156133ba576133b9612cdc565b5b60006133c887828801612f32565b94505060206133d987828801612f32565b93505060406133ea87828801612e7d565b925050606085013567ffffffffffffffff81111561340b5761340a612ce1565b5b61341787828801613372565b91505092959194509250565b6000806040838503121561343a57613439612cdc565b5b600061344885828601612f32565b925050602061345985828601612f32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134aa57607f821691505b602082108114156134be576134bd613463565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613520602183612dac565b915061352b826134c4565b604082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006135b2603e83612dac565b91506135bd82613556565b604082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362282612e5c565b915061362d83612e5c565b9250828210156136405761363f6135e8565b5b828203905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006136a7602e83612dac565b91506136b28261364b565b604082019050919050565b600060208201905081810360008301526136d68161369a565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613713601883612dac565b915061371e826136dd565b602082019050919050565b6000602082019050818103600083015261374281613706565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137a5602983612dac565b91506137b082613749565b604082019050919050565b600060208201905081810360008301526137d481613798565b9050919050565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b6000613811601083612dac565b915061381c826137db565b602082019050919050565b6000602082019050818103600083015261384081613804565b9050919050565b600061385282612e5c565b915061385d83612e5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613892576138916135e8565b5b828201905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b60006138d3601c83612dac565b91506138de8261389d565b602082019050919050565b60006020820190508181036000830152613902816138c6565b9050919050565b7f5468697320616464726573732063616e6e6f74206d696e74206d6f7265204e4660008201527f5473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613965602283612dac565b915061397082613909565b604082019050919050565b6000602082019050818103600083015261399481613958565b9050919050565b60006139a682612e5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d9576139d86135e8565b5b600182019050919050565b600081905092915050565b60006139fa82612da1565b613a0481856139e4565b9350613a14818560208601612dbd565b80840191505092915050565b6000613a2c82856139ef565b9150613a3882846139ef565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aa0602683612dac565b9150613aab82613a44565b604082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f496e636f727265637420616d6f756e7400000000000000000000000000000000600082015250565b6000613b0c601083612dac565b9150613b1782613ad6565b602082019050919050565b60006020820190508181036000830152613b3b81613aff565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b9e602583612dac565b9150613ba982613b42565b604082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c30602483612dac565b9150613c3b82613bd4565b604082019050919050565b60006020820190508181036000830152613c5f81613c23565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c9c602083612dac565b9150613ca782613c66565b602082019050919050565b60006020820190508181036000830152613ccb81613c8f565b9050919050565b6000613cdd82612e5c565b9150613ce883612e5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2157613d206135e8565b5b828202905092915050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e46547300000000000000000000000000000000602082015250565b6000613d88603083612dac565b9150613d9382613d2c565b604082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613df4601983612dac565b9150613dff82613dbe565b602082019050919050565b60006020820190508181036000830152613e2381613de7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e86603283612dac565b9150613e9182613e2a565b604082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ef682612e5c565b9150613f0183612e5c565b925082613f1157613f10613ebc565b5b828204905092915050565b6000613f2782612e5c565b9150613f3283612e5c565b925082613f4257613f41613ebc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613fb2601483612dac565b9150613fbd82613f7c565b602082019050919050565b60006020820190508181036000830152613fe181613fa5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061401e601083612dac565b915061402982613fe8565b602082019050919050565b6000602082019050818103600083015261404d81614011565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061407b82614054565b614085818561405f565b9350614095818560208601612dbd565b61409e81612df0565b840191505092915050565b60006080820190506140be6000830187612ef1565b6140cb6020830186612ef1565b6140d86040830185612f87565b81810360608301526140ea8184614070565b905095945050505050565b60008151905061410481612d12565b92915050565b6000602082840312156141205761411f612cdc565b5b600061412e848285016140f5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061416d602083612dac565b915061417882614137565b602082019050919050565b6000602082019050818103600083015261419c81614160565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141d9601c83612dac565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b905091905056fea264697066735822122030a8ffc82f910ef8e2b079cf6789c6afc3f50813bd3ec1eba62158ca877216b564736f6c6343000809003368747470733a2f2f6170692e6b756e6766756e6775732e636f6d2f746f6b656e732f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638da5cb5b11610139578063bb17cbe0116100b6578063dbb84f111161007a578063dbb84f1114610867578063e985e9c514610890578063e9a836a5146108cd578063f2fde38b146108f8578063f3fef3a314610921578063f7ea7a3d1461094a57610251565b8063bb17cbe014610782578063bc27401e146107ad578063bdb4b848146107d6578063c5338bb014610801578063c87b56dd1461082a57610251565b8063a22cb465116100fd578063a22cb465146106b3578063a4ba794d146106dc578063b7a34c8a14610707578063b88d4fde14610730578063b96502cb1461075957610251565b80638da5cb5b146105ef5780638dbb7c061461061a5780638fdcf9421461064357806395d89b411461066c578063a0712d681461069757610251565b80633fea7da1116101d25780635c975abb116101965780635c975abb146104f15780636352211e1461051c5780636d5aac5a1461055957806370a0823114610584578063715018a6146105c15780638456cb59146105d857610251565b80633fea7da11461042257806342842e0e1461044b57806342966c681461047457806344d3a1051461049d57806356de96db146104c857610251565b8063222cb74b11610219578063222cb74b1461034f57806323b872dd1461037a5780633023eba6146103a3578063378aa701146103e05780633f4ba83a1461040b57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806311f5eb1614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612d3e565b610973565b60405161028a9190612d86565b60405180910390f35b34801561029f57600080fd5b506102a8610a55565b6040516102b59190612e3a565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612e92565b610ae7565b6040516102f29190612f00565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612f47565b610b2d565b005b34801561033057600080fd5b50610339610c45565b6040516103469190612f96565b60405180910390f35b34801561035b57600080fd5b50610364610c62565b6040516103719190612f96565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612fb1565b610c6c565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613004565b610ccc565b6040516103d79190612f96565b60405180910390f35b3480156103ec57600080fd5b506103f5610ce4565b60405161040291906130a8565b60405180910390f35b34801561041757600080fd5b50610420610cfb565b005b34801561042e57600080fd5b50610449600480360381019061044491906131f8565b610d0d565b005b34801561045757600080fd5b50610472600480360381019061046d9190612fb1565b610d2f565b005b34801561048057600080fd5b5061049b60048036038101906104969190612e92565b610d4f565b005b3480156104a957600080fd5b506104b2610dab565b6040516104bf9190612f96565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190613266565b610db5565b005b3480156104fd57600080fd5b50610506610dea565b6040516105139190612d86565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612e92565b610e01565b6040516105509190612f00565b60405180910390f35b34801561056557600080fd5b5061056e610eb3565b60405161057b9190612f96565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613004565b610ebd565b6040516105b89190612f96565b60405180910390f35b3480156105cd57600080fd5b506105d6610f75565b005b3480156105e457600080fd5b506105ed610f89565b005b3480156105fb57600080fd5b50610604610f9b565b6040516106119190612f00565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190612e92565b610fc5565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612e92565b610fd7565b005b34801561067857600080fd5b50610681610fe9565b60405161068e9190612e3a565b60405180910390f35b6106b160048036038101906106ac9190612e92565b61107b565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906132bf565b6112c4565b005b3480156106e857600080fd5b506106f16112da565b6040516106fe9190612f96565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190612f47565b6112e4565b005b34801561073c57600080fd5b50610757600480360381019061075291906133a0565b611371565b005b34801561076557600080fd5b50610780600480360381019061077b9190612e92565b6113d3565b005b34801561078e57600080fd5b506107976113e5565b6040516107a49190612f96565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190612e92565b6113ef565b005b3480156107e257600080fd5b506107eb611401565b6040516107f89190612f96565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612e92565b611497565b005b34801561083657600080fd5b50610851600480360381019061084c9190612e92565b6114a9565b60405161085e9190612e3a565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190612e92565b611511565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613423565b611523565b6040516108c49190612d86565b60405180910390f35b3480156108d957600080fd5b506108e26115b7565b6040516108ef9190612f96565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a9190613004565b6115c1565b005b34801561092d57600080fd5b5061094860048036038101906109439190612f47565b611645565b005b34801561095657600080fd5b50610971600480360381019061096c9190612e92565b6116db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4e5750610a4d82611703565b5b9050919050565b606060008054610a6490613492565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090613492565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af28261176d565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3882610e01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613536565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc86117b8565b73ffffffffffffffffffffffffffffffffffffffff161480610bf75750610bf681610bf16117b8565b611523565b5b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906135c8565b60405180910390fd5b610c4083836117c0565b505050565b60006001610c536007611879565b610c5d9190613617565b905090565b6000600a54905090565b610c7d610c776117b8565b82611887565b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906136bd565b60405180910390fd5b610cc783838361191c565b505050565b60136020528060005260406000206000915090505481565b6000600960009054906101000a900460ff16905090565b610d03611b83565b610d0b611c01565b565b610d15611b83565b8060089080519060200190610d2b929190612c2f565b5050565b610d4a83838360405180602001604052806000815250611371565b505050565b610d60610d5a6117b8565b82611887565b610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d96906136bd565b60405180910390fd5b610da881611c64565b50565b6000600b54905090565b610dbd611b83565b80600960006101000a81548160ff02191690836003811115610de257610de1613031565b5b021790555050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613729565b60405180910390fd5b80915050919050565b6000601254905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906137bb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7d611b83565b610f876000611d81565b565b610f91611b83565b610f99611e47565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fcd611b83565b80600f8190555050565b610fdf611b83565b80600d8190555050565b606060018054610ff890613492565b80601f016020809104026020016040519081016040528092919081815260200182805461102490613492565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b5050505050905090565b6000600381111561108f5761108e613031565b5b600960009054906101000a900460ff1660038111156110b1576110b0613031565b5b14156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613827565b60405180910390fd5b600a548160016111026007611879565b61110c9190613617565b6111169190613847565b1115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906138e9565b60405180910390fd5b60125481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a59190613847565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061397b565b60405180910390fd5b6003808111156111f9576111f8613031565b5b600960009054906101000a900460ff16600381111561121b5761121a613031565b5b141561122f5761122a81611eaa565b6112c1565b6002600381111561124357611242613031565b5b600960009054906101000a900460ff16600381111561126557611264613031565b5b14156112795761127481612004565b6112c0565b6001600381111561128d5761128c613031565b5b600960009054906101000a900460ff1660038111156112af576112ae613031565b5b14156112bf576112be81612166565b5b5b5b50565b6112d66112cf6117b8565b83836122c8565b5050565b6000601154905090565b6112ec611b83565b600a54816112fa6007611879565b6113049190613847565b1115611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906138e9565b60405180910390fd5b60005b8181101561136c5761135983612435565b80806113649061399b565b915050611348565b505050565b61138261137c6117b8565b83611887565b6113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906136bd565b60405180910390fd5b6113cd848484846124b2565b50505050565b6113db611b83565b80600b8190555050565b6000600c54905090565b6113f7611b83565b80600e8190555050565b600060038081111561141657611415613031565b5b600960009054906101000a900460ff16600381111561143857611437613031565b5b141561144857600f549050611494565b6002600381111561145c5761145b613031565b5b600960009054906101000a900460ff16600381111561147e5761147d613031565b5b141561148e57600e549050611494565b600d5490505b90565b61149f611b83565b80600c8190555050565b60606114b48261176d565b60006114be61250e565b905060008151116114de5760405180602001604052806000815250611509565b806114e8846125a0565b6040516020016114f9929190613a20565b6040516020818303038152906040525b915050919050565b611519611b83565b8060128190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601054905090565b6115c9611b83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613ab6565b60405180910390fd5b61164281611d81565b50565b61164d611b83565b47811115611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613b22565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116d6573d6000803e3d6000fd5b505050565b6116e3611b83565b80600a8190555050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61177681612701565b6117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613729565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183383610e01565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061189383610e01565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118d557506118d48185611523565b5b8061191357508373ffffffffffffffffffffffffffffffffffffffff166118fb84610ae7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661193c82610e01565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613bb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990613c46565b60405180910390fd5b611a0d83838361276d565b611a186000826117c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a689190613617565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611abf9190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b7e838383612785565b505050565b611b8b6117b8565b73ffffffffffffffffffffffffffffffffffffffff16611ba9610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613cb2565b60405180910390fd5b565b611c0961278a565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c4d6117b8565b604051611c5a9190612f00565b60405180910390a1565b6000611c6f82610e01565b9050611c7d8160008461276d565b611c886000836117c0565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd89190613617565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d7d81600084612785565b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4f6127d3565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e936117b8565b604051611ea09190612f00565b60405180910390a1565b600380811115611ebd57611ebc613031565b5b600960009054906101000a900460ff166003811115611edf57611ede613031565b5b14611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613827565b60405180910390fd5b600a54816001611f2f6007611879565b611f399190613617565b611f439190613847565b1115611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b906138e9565b60405180910390fd5b80611f8d611401565b611f979190613cd2565b341015611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613d9e565b60405180910390fd5b60005b8181101561200057611fed33612435565b8080611ff89061399b565b915050611fdc565b5050565b6002600381111561201857612017613031565b5b600960009054906101000a900460ff16600381111561203a57612039613031565b5b1461207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613827565b60405180910390fd5b600c548160115461208b9190613847565b11156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c3906138e9565b60405180910390fd5b806120d5611401565b6120df9190613cd2565b341015612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613d9e565b60405180910390fd5b60005b818110156121625761213533612435565b6001601160008282546121489190613847565b92505081905550808061215a9061399b565b915050612124565b5050565b6001600381111561217a57612179613031565b5b600960009054906101000a900460ff16600381111561219c5761219b613031565b5b146121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390613827565b60405180910390fd5b600b54816010546121ed9190613847565b111561222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906138e9565b60405180910390fd5b80612237611401565b6122419190613cd2565b341015612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90613d9e565b60405180910390fd5b60005b818110156122c45761229733612435565b6001601060008282546122aa9190613847565b9250508190555080806122bc9061399b565b915050612286565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90613e0a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124289190612d86565b60405180910390a3505050565b60006124416007611879565b905061244d60076116ed565b612457828261281d565b6001601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a79190613847565b925050819055505050565b6124bd84848461191c565b6124c98484848461283b565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90613e9c565b60405180910390fd5b50505050565b60606008805461251d90613492565b80601f016020809104026020016040519081016040528092919081815260200182805461254990613492565b80156125965780601f1061256b57610100808354040283529160200191612596565b820191906000526020600020905b81548152906001019060200180831161257957829003601f168201915b5050505050905090565b606060008214156125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a5780806126039061399b565b915050600a826126139190613eeb565b91506125f0565b60008167ffffffffffffffff811115612636576126356130cd565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613617565b9150600a856126909190613f1c565b603061269c9190613847565b60f81b8183815181106126b2576126b1613f4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee9190613eeb565b945061266c565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6127756127d3565b6127808383836129d2565b505050565b505050565b612792610dea565b6127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c890613fc8565b60405180910390fd5b565b6127db610dea565b1561281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614034565b60405180910390fd5b565b6128378282604051806020016040528060008152506129d7565b5050565b600061285c8473ffffffffffffffffffffffffffffffffffffffff16612a32565b156129c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128856117b8565b8786866040518563ffffffff1660e01b81526004016128a794939291906140a9565b602060405180830381600087803b1580156128c157600080fd5b505af19250505080156128f257506040513d601f19601f820116820180604052508101906128ef919061410a565b60015b612975573d8060008114612922576040519150601f19603f3d011682016040523d82523d6000602084013e612927565b606091505b5060008151141561296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490613e9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ca565b600190505b949350505050565b505050565b6129e18383612a55565b6129ee600084848461283b565b612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490613e9c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614183565b60405180910390fd5b612ace81612701565b15612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b05906141ef565b60405180910390fd5b612b1a6000838361276d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6a9190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2b60008383612785565b5050565b828054612c3b90613492565b90600052602060002090601f016020900481019282612c5d5760008555612ca4565b82601f10612c7657805160ff1916838001178555612ca4565b82800160010185558215612ca4579182015b82811115612ca3578251825591602001919060010190612c88565b5b509050612cb19190612cb5565b5090565b5b80821115612cce576000816000905550600101612cb6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1b81612ce6565b8114612d2657600080fd5b50565b600081359050612d3881612d12565b92915050565b600060208284031215612d5457612d53612cdc565b5b6000612d6284828501612d29565b91505092915050565b60008115159050919050565b612d8081612d6b565b82525050565b6000602082019050612d9b6000830184612d77565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ddb578082015181840152602081019050612dc0565b83811115612dea576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e0c82612da1565b612e168185612dac565b9350612e26818560208601612dbd565b612e2f81612df0565b840191505092915050565b60006020820190508181036000830152612e548184612e01565b905092915050565b6000819050919050565b612e6f81612e5c565b8114612e7a57600080fd5b50565b600081359050612e8c81612e66565b92915050565b600060208284031215612ea857612ea7612cdc565b5b6000612eb684828501612e7d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612eea82612ebf565b9050919050565b612efa81612edf565b82525050565b6000602082019050612f156000830184612ef1565b92915050565b612f2481612edf565b8114612f2f57600080fd5b50565b600081359050612f4181612f1b565b92915050565b60008060408385031215612f5e57612f5d612cdc565b5b6000612f6c85828601612f32565b9250506020612f7d85828601612e7d565b9150509250929050565b612f9081612e5c565b82525050565b6000602082019050612fab6000830184612f87565b92915050565b600080600060608486031215612fca57612fc9612cdc565b5b6000612fd886828701612f32565b9350506020612fe986828701612f32565b9250506040612ffa86828701612e7d565b9150509250925092565b60006020828403121561301a57613019612cdc565b5b600061302884828501612f32565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061307157613070613031565b5b50565b600081905061308282613060565b919050565b600061309282613074565b9050919050565b6130a281613087565b82525050565b60006020820190506130bd6000830184613099565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310582612df0565b810181811067ffffffffffffffff82111715613124576131236130cd565b5b80604052505050565b6000613137612cd2565b905061314382826130fc565b919050565b600067ffffffffffffffff821115613163576131626130cd565b5b61316c82612df0565b9050602081019050919050565b82818337600083830152505050565b600061319b61319684613148565b61312d565b9050828152602081018484840111156131b7576131b66130c8565b5b6131c2848285613179565b509392505050565b600082601f8301126131df576131de6130c3565b5b81356131ef848260208601613188565b91505092915050565b60006020828403121561320e5761320d612cdc565b5b600082013567ffffffffffffffff81111561322c5761322b612ce1565b5b613238848285016131ca565b91505092915050565b6004811061324e57600080fd5b50565b60008135905061326081613241565b92915050565b60006020828403121561327c5761327b612cdc565b5b600061328a84828501613251565b91505092915050565b61329c81612d6b565b81146132a757600080fd5b50565b6000813590506132b981613293565b92915050565b600080604083850312156132d6576132d5612cdc565b5b60006132e485828601612f32565b92505060206132f5858286016132aa565b9150509250929050565b600067ffffffffffffffff82111561331a576133196130cd565b5b61332382612df0565b9050602081019050919050565b600061334361333e846132ff565b61312d565b90508281526020810184848401111561335f5761335e6130c8565b5b61336a848285613179565b509392505050565b600082601f830112613387576133866130c3565b5b8135613397848260208601613330565b91505092915050565b600080600080608085870312156133ba576133b9612cdc565b5b60006133c887828801612f32565b94505060206133d987828801612f32565b93505060406133ea87828801612e7d565b925050606085013567ffffffffffffffff81111561340b5761340a612ce1565b5b61341787828801613372565b91505092959194509250565b6000806040838503121561343a57613439612cdc565b5b600061344885828601612f32565b925050602061345985828601612f32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134aa57607f821691505b602082108114156134be576134bd613463565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613520602183612dac565b915061352b826134c4565b604082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006135b2603e83612dac565b91506135bd82613556565b604082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362282612e5c565b915061362d83612e5c565b9250828210156136405761363f6135e8565b5b828203905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006136a7602e83612dac565b91506136b28261364b565b604082019050919050565b600060208201905081810360008301526136d68161369a565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613713601883612dac565b915061371e826136dd565b602082019050919050565b6000602082019050818103600083015261374281613706565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137a5602983612dac565b91506137b082613749565b604082019050919050565b600060208201905081810360008301526137d481613798565b9050919050565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b6000613811601083612dac565b915061381c826137db565b602082019050919050565b6000602082019050818103600083015261384081613804565b9050919050565b600061385282612e5c565b915061385d83612e5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613892576138916135e8565b5b828201905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b60006138d3601c83612dac565b91506138de8261389d565b602082019050919050565b60006020820190508181036000830152613902816138c6565b9050919050565b7f5468697320616464726573732063616e6e6f74206d696e74206d6f7265204e4660008201527f5473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613965602283612dac565b915061397082613909565b604082019050919050565b6000602082019050818103600083015261399481613958565b9050919050565b60006139a682612e5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d9576139d86135e8565b5b600182019050919050565b600081905092915050565b60006139fa82612da1565b613a0481856139e4565b9350613a14818560208601612dbd565b80840191505092915050565b6000613a2c82856139ef565b9150613a3882846139ef565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aa0602683612dac565b9150613aab82613a44565b604082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f496e636f727265637420616d6f756e7400000000000000000000000000000000600082015250565b6000613b0c601083612dac565b9150613b1782613ad6565b602082019050919050565b60006020820190508181036000830152613b3b81613aff565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b9e602583612dac565b9150613ba982613b42565b604082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c30602483612dac565b9150613c3b82613bd4565b604082019050919050565b60006020820190508181036000830152613c5f81613c23565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c9c602083612dac565b9150613ca782613c66565b602082019050919050565b60006020820190508181036000830152613ccb81613c8f565b9050919050565b6000613cdd82612e5c565b9150613ce883612e5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2157613d206135e8565b5b828202905092915050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e46547300000000000000000000000000000000602082015250565b6000613d88603083612dac565b9150613d9382613d2c565b604082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613df4601983612dac565b9150613dff82613dbe565b602082019050919050565b60006020820190508181036000830152613e2381613de7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e86603283612dac565b9150613e9182613e2a565b604082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ef682612e5c565b9150613f0183612e5c565b925082613f1157613f10613ebc565b5b828204905092915050565b6000613f2782612e5c565b9150613f3283612e5c565b925082613f4257613f41613ebc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613fb2601483612dac565b9150613fbd82613f7c565b602082019050919050565b60006020820190508181036000830152613fe181613fa5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061401e601083612dac565b915061402982613fe8565b602082019050919050565b6000602082019050818103600083015261404d81614011565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061407b82614054565b614085818561405f565b9350614095818560208601612dbd565b61409e81612df0565b840191505092915050565b60006080820190506140be6000830187612ef1565b6140cb6020830186612ef1565b6140d86040830185612f87565b81810360608301526140ea8184614070565b905095945050505050565b60008151905061410481612d12565b92915050565b6000602082840312156141205761411f612cdc565b5b600061412e848285016140f5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061416d602083612dac565b915061417882614137565b602082019050919050565b6000602082019050818103600083015261419c81614160565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141d9601c83612dac565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b905091905056fea264697066735822122030a8ffc82f910ef8e2b079cf6789c6afc3f50813bd3ec1eba62158ca877216b564736f6c63430008090033

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.