ETH Price: $3,410.39 (-1.52%)
Gas: 7 Gwei

Token

ATX DAO (ATX)
 

Overview

Max Total Supply

0 ATX

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ATX
0x781198e9517c414b6d5bd84b99c82fe864da9998
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:
ATXDAONFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : ATXDAONFT.sol
/*
  /$$$$$$  /$$$$$$$$ /$$   /$$ /$$$$$$$   /$$$$$$   /$$$$$$
 /$$__  $$|__  $$__/| $$  / $$| $$__  $$ /$$__  $$ /$$__  $$
| $$  \ $$   | $$   |  $$/ $$/| $$  \ $$| $$  \ $$| $$  \ $$
| $$$$$$$$   | $$    \  $$$$/ | $$  | $$| $$$$$$$$| $$  | $$
| $$__  $$   | $$     >$$  $$ | $$  | $$| $$__  $$| $$  | $$
| $$  | $$   | $$    /$$/\  $$| $$  | $$| $$  | $$| $$  | $$
| $$  | $$   | $$   | $$  \ $$| $$$$$$$/| $$  | $$|  $$$$$$/
|__/  |__/   |__/   |__/  |__/|_______/ |__/  |__/ \______/
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract ATXDAONFT is ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;

    bool public isMintable = false;
    uint256 public _mintPrice = 512000000000000000; // 0.512 ether
    uint256 public _mintQuantity = 25;

    Counters.Counter private _mintCount;
    Counters.Counter private _tokenIds;

    string private _tokenURI;

    constructor() ERC721("ATX DAO", "ATX") {}

    // Normal mint
    function mint() external payable {
        require(
            isMintable == true,
            "ATX DAO NFT is not mintable at the moment!"
        );
        require(
            balanceOf(msg.sender) == 0,
            "Minting is only available for non-holders"
        );
        require(
            _mintCount.current() < _mintQuantity,
            "No more NFTs remaining!"
        );
        require(msg.value >= _mintPrice, "Not enough ether sent to mint!");
        require(msg.sender == tx.origin, "No contracts!");

        // Mint
        _tokenIds.increment();
        uint256 newTokenId = _tokenIds.current();
        _safeMint(msg.sender, newTokenId);
        _setTokenURI(newTokenId, _tokenURI);

        _mintCount.increment();
    }

    // Dev mint
    function mintSpecial(address[] memory recipients, string memory tokenURI)
        external
        onlyOwner
    {
        for (uint64 i = 0; i < recipients.length; i++) {
            _tokenIds.increment();
            uint256 newTokenId = _tokenIds.current();

            _safeMint(recipients[i], newTokenId);
            _setTokenURI(newTokenId, tokenURI);
        }
    }

    function startMint(
        uint256 mintPrice,
        uint256 mintQuantity,
        string memory tokenURI
    ) public onlyOwner {
        isMintable = true;
        _mintPrice = mintPrice;
        _mintQuantity = mintQuantity;
        _tokenURI = tokenURI;
        _mintCount.reset();
    }

    function endMint() public onlyOwner {
        isMintable = false;
    }

    function sweepEth() public onlyOwner {
        uint256 _balance = address(this).balance;
        payable(owner()).transfer(_balance);
    }
}

File 2 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 3 of 13 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintSpecial","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"mintQuantity","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"startMint","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":"sweepEth","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600760146101000a81548160ff02191690831515021790555067071afd498d00000060085560196009553480156200003d57600080fd5b506040518060400160405280600781526020017f4154582044414f000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41545800000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c2929190620001d2565b508060019080519060200190620000db929190620001d2565b505050620000fe620000f26200010460201b60201c565b6200010c60201b60201c565b620002e7565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e09062000282565b90600052602060002090601f01602090048101928262000204576000855562000250565b82601f106200021f57805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200024f57825182559160200191906001019062000232565b5b5090506200025f919062000263565b5090565b5b808211156200027e57600081600090555060010162000264565b5090565b600060028204905060018216806200029b57607f821691505b60208210811415620002b257620002b1620002b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613a0580620002f76000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610437578063c87b56dd14610460578063d520ec6b1461049d578063e0dba62b146104c8578063e985e9c5146104f1578063f2fde38b1461052e5761014b565b806370a082311461034d578063715018a61461038a5780638da5cb5b146103a157806395d89b41146103cc5780639ac84414146103f7578063a22cb4651461040e5761014b565b8063095ea7b311610108578063095ea7b3146102605780631249c58b1461028957806323b872dd1461029357806342842e0e146102bc57806346b45af7146102e55780636352211e146103105761014b565b8063017043a51461015057806301ffc9a7146101675780630387da42146101a45780630611ce2e146101cf57806306fdde03146101f8578063081812fc14610223575b600080fd5b34801561015c57600080fd5b50610165610557565b005b34801561017357600080fd5b5061018e600480360381019061018991906127af565b6105f0565b60405161019b919061320c565b60405180910390f35b3480156101b057600080fd5b506101b96106d2565b6040516101c69190613529565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f1919061282a565b6106d8565b005b34801561020457600080fd5b5061020d6107a3565b60405161021a9190613227565b60405180910390f35b34801561022f57600080fd5b5061024a60048036038101906102459190612801565b610835565b60405161025791906131a5565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190612707565b6108ba565b005b6102916109d2565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190612601565b610c36565b005b3480156102c857600080fd5b506102e360048036038101906102de9190612601565b610c96565b005b3480156102f157600080fd5b506102fa610cb6565b604051610307919061320c565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190612801565b610cc9565b60405161034491906131a5565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f919061259c565b610d7b565b6040516103819190613529565b60405180910390f35b34801561039657600080fd5b5061039f610e33565b005b3480156103ad57600080fd5b506103b6610ebb565b6040516103c391906131a5565b60405180910390f35b3480156103d857600080fd5b506103e1610ee5565b6040516103ee9190613227565b60405180910390f35b34801561040357600080fd5b5061040c610f77565b005b34801561041a57600080fd5b50610435600480360381019061043091906126cb565b611049565b005b34801561044357600080fd5b5061045e60048036038101906104599190612650565b6111ca565b005b34801561046c57600080fd5b5061048760048036038101906104829190612801565b61122c565b6040516104949190613227565b60405180910390f35b3480156104a957600080fd5b506104b261137e565b6040516104bf9190613529565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612743565b611384565b005b3480156104fd57600080fd5b50610518600480360381019061051391906125c5565b6114a5565b604051610525919061320c565b60405180910390f35b34801561053a57600080fd5b506105556004803603810190610550919061259c565b611539565b005b61055f611631565b73ffffffffffffffffffffffffffffffffffffffff1661057d610ebb565b73ffffffffffffffffffffffffffffffffffffffff16146105d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ca90613429565b60405180910390fd5b6000600760146101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb57506106ca82611639565b5b9050919050565b60085481565b6106e0611631565b73ffffffffffffffffffffffffffffffffffffffff166106fe610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90613429565b60405180910390fd5b6001600760146101000a81548160ff021916908315150217905550826008819055508160098190555080600c908051906020019061079392919061232a565b5061079e600a6116a3565b505050565b6060600080546107b2906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107de906137c9565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b6000610840826116b0565b61087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690613409565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c582610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90613489565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610955611631565b73ffffffffffffffffffffffffffffffffffffffff16148061098457506109838161097e611631565b6114a5565b5b6109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90613329565b60405180910390fd5b6109cd838361171c565b505050565b60011515600760149054906101000a900460ff16151514610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613389565b60405180910390fd5b6000610a3333610d7b565b14610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906132a9565b60405180910390fd5b600954610a80600a6117d5565b10610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906134e9565b60405180910390fd5b600854341015610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906134a9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906134c9565b60405180910390fd5b610b7d600b6117e3565b6000610b89600b6117d5565b9050610b9533826117f9565b610c2981600c8054610ba6906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd2906137c9565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050611817565b610c33600a6117e3565b50565b610c47610c41611631565b8261188b565b610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613509565b60405180910390fd5b610c91838383611969565b505050565b610cb1838383604051806020016040528060008152506111ca565b505050565b600760149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613369565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613349565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e3b611631565b73ffffffffffffffffffffffffffffffffffffffff16610e59610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613429565b60405180910390fd5b610eb96000611bc5565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ef4906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f20906137c9565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b5050505050905090565b610f7f611631565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613429565b60405180910390fd5b6000479050611000610ebb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611045573d6000803e3d6000fd5b5050565b611051611631565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906132e9565b60405180910390fd5b80600560006110cc611631565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611179611631565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111be919061320c565b60405180910390a35050565b6111db6111d5611631565b8361188b565b61121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613509565b60405180910390fd5b61122684848484611c8b565b50505050565b6060611237826116b0565b611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906133e9565b60405180910390fd5b6000600660008481526020019081526020016000208054611296906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546112c2906137c9565b801561130f5780601f106112e45761010080835404028352916020019161130f565b820191906000526020600020905b8154815290600101906020018083116112f257829003601f168201915b505050505090506000611320611ce7565b9050600081511415611336578192505050611379565b60008251111561136b578082604051602001611353929190613181565b60405160208183030381529060405292505050611379565b61137484611cfe565b925050505b919050565b60095481565b61138c611631565b73ffffffffffffffffffffffffffffffffffffffff166113aa610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613429565b60405180910390fd5b60005b82518167ffffffffffffffff1610156114a057611420600b6117e3565b600061142c600b6117d5565b9050611482848367ffffffffffffffff1681518110611474577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826117f9565b61148c8184611817565b50808061149890613844565b915050611403565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611541611631565b73ffffffffffffffffffffffffffffffffffffffff1661155f610ebb565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90613429565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613269565b60405180910390fd5b61162e81611bc5565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816000018190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178f83610cc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611813828260405180602001604052806000815250611da5565b5050565b611820826116b0565b61185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906133a9565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061188692919061232a565b505050565b6000611896826116b0565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613309565b60405180910390fd5b60006118e083610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061194f57508373ffffffffffffffffffffffffffffffffffffffff1661193784610835565b73ffffffffffffffffffffffffffffffffffffffff16145b80611960575061195f81856114a5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198982610cc9565b73ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690613449565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906132c9565b60405180910390fd5b611a5a838383611e00565b611a6560008261171c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab591906136cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0c9190613644565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c96848484611969565b611ca284848484611e05565b611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613249565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611d09826116b0565b611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90613469565b60405180910390fd5b6000611d52611ce7565b90506000815111611d725760405180602001604052806000815250611d9d565b80611d7c84611f9c565b604051602001611d8d929190613181565b6040516020818303038152906040525b915050919050565b611daf8383612149565b611dbc6000848484611e05565b611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290613249565b60405180910390fd5b505050565b505050565b6000611e268473ffffffffffffffffffffffffffffffffffffffff16612317565b15611f8f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e4f611631565b8786866040518563ffffffff1660e01b8152600401611e7194939291906131c0565b602060405180830381600087803b158015611e8b57600080fd5b505af1925050508015611ebc57506040513d601f19601f82011682018060405250810190611eb991906127d8565b60015b611f3f573d8060008114611eec576040519150601f19603f3d011682016040523d82523d6000602084013e611ef1565b606091505b50600081511415611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613249565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f94565b600190505b949350505050565b60606000821415611fe4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612144565b600082905060005b60008214612016578080611fff906137fb565b915050600a8261200f919061369a565b9150611fec565b60008167ffffffffffffffff811115612058577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561208a5781602001600182028036833780820191505090505b5090505b6000851461213d576001826120a391906136cb565b9150600a856120b29190613875565b60306120be9190613644565b60f81b8183815181106120fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612136919061369a565b945061208e565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b0906133c9565b60405180910390fd5b6121c2816116b0565b15612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613289565b60405180910390fd5b61220e60008383611e00565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225e9190613644565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612336906137c9565b90600052602060002090601f016020900481019282612358576000855561239f565b82601f1061237157805160ff191683800117855561239f565b8280016001018555821561239f579182015b8281111561239e578251825591602001919060010190612383565b5b5090506123ac91906123b0565b5090565b5b808211156123c95760008160009055506001016123b1565b5090565b60006123e06123db84613575565b613544565b905080838252602082019050828560208602820111156123ff57600080fd5b60005b8581101561242f578161241588826124b5565b845260208401935060208301925050600181019050612402565b5050509392505050565b600061244c612447846135a1565b613544565b90508281526020810184848401111561246457600080fd5b61246f848285613787565b509392505050565b600061248a612485846135d1565b613544565b9050828152602081018484840111156124a257600080fd5b6124ad848285613787565b509392505050565b6000813590506124c481613973565b92915050565b600082601f8301126124db57600080fd5b81356124eb8482602086016123cd565b91505092915050565b6000813590506125038161398a565b92915050565b600081359050612518816139a1565b92915050565b60008151905061252d816139a1565b92915050565b600082601f83011261254457600080fd5b8135612554848260208601612439565b91505092915050565b600082601f83011261256e57600080fd5b813561257e848260208601612477565b91505092915050565b600081359050612596816139b8565b92915050565b6000602082840312156125ae57600080fd5b60006125bc848285016124b5565b91505092915050565b600080604083850312156125d857600080fd5b60006125e6858286016124b5565b92505060206125f7858286016124b5565b9150509250929050565b60008060006060848603121561261657600080fd5b6000612624868287016124b5565b9350506020612635868287016124b5565b925050604061264686828701612587565b9150509250925092565b6000806000806080858703121561266657600080fd5b6000612674878288016124b5565b9450506020612685878288016124b5565b935050604061269687828801612587565b925050606085013567ffffffffffffffff8111156126b357600080fd5b6126bf87828801612533565b91505092959194509250565b600080604083850312156126de57600080fd5b60006126ec858286016124b5565b92505060206126fd858286016124f4565b9150509250929050565b6000806040838503121561271a57600080fd5b6000612728858286016124b5565b925050602061273985828601612587565b9150509250929050565b6000806040838503121561275657600080fd5b600083013567ffffffffffffffff81111561277057600080fd5b61277c858286016124ca565b925050602083013567ffffffffffffffff81111561279957600080fd5b6127a58582860161255d565b9150509250929050565b6000602082840312156127c157600080fd5b60006127cf84828501612509565b91505092915050565b6000602082840312156127ea57600080fd5b60006127f88482850161251e565b91505092915050565b60006020828403121561281357600080fd5b600061282184828501612587565b91505092915050565b60008060006060848603121561283f57600080fd5b600061284d86828701612587565b935050602061285e86828701612587565b925050604084013567ffffffffffffffff81111561287b57600080fd5b6128878682870161255d565b9150509250925092565b61289a816136ff565b82525050565b6128a981613711565b82525050565b60006128ba82613601565b6128c48185613617565b93506128d4818560208601613796565b6128dd81613962565b840191505092915050565b60006128f38261360c565b6128fd8185613628565b935061290d818560208601613796565b61291681613962565b840191505092915050565b600061292c8261360c565b6129368185613639565b9350612946818560208601613796565b80840191505092915050565b600061295f603283613628565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129c5602683613628565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a2b601c83613628565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612a6b602983613628565b91507f4d696e74696e67206973206f6e6c7920617661696c61626c6520666f72206e6f60008301527f6e2d686f6c6465727300000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ad1602483613628565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b37601983613628565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612b77602c83613628565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612bdd603883613628565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612c43602a83613628565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ca9602983613628565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d0f602a83613628565b91507f4154582044414f204e4654206973206e6f74206d696e7461626c65206174207460008301527f6865206d6f6d656e7421000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d75602e83613628565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000612ddb602083613628565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612e1b603183613628565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000612e81602c83613628565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612ee7602083613628565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612f27602983613628565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8d602f83613628565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612ff3602183613628565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613059601e83613628565b91507f4e6f7420656e6f7567682065746865722073656e7420746f206d696e742100006000830152602082019050919050565b6000613099600d83613628565b91507f4e6f20636f6e74726163747321000000000000000000000000000000000000006000830152602082019050919050565b60006130d9601783613628565b91507f4e6f206d6f7265204e4654732072656d61696e696e67210000000000000000006000830152602082019050919050565b6000613119603183613628565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61317b81613769565b82525050565b600061318d8285612921565b91506131998284612921565b91508190509392505050565b60006020820190506131ba6000830184612891565b92915050565b60006080820190506131d56000830187612891565b6131e26020830186612891565b6131ef6040830185613172565b818103606083015261320181846128af565b905095945050505050565b600060208201905061322160008301846128a0565b92915050565b6000602082019050818103600083015261324181846128e8565b905092915050565b6000602082019050818103600083015261326281612952565b9050919050565b60006020820190508181036000830152613282816129b8565b9050919050565b600060208201905081810360008301526132a281612a1e565b9050919050565b600060208201905081810360008301526132c281612a5e565b9050919050565b600060208201905081810360008301526132e281612ac4565b9050919050565b6000602082019050818103600083015261330281612b2a565b9050919050565b6000602082019050818103600083015261332281612b6a565b9050919050565b6000602082019050818103600083015261334281612bd0565b9050919050565b6000602082019050818103600083015261336281612c36565b9050919050565b6000602082019050818103600083015261338281612c9c565b9050919050565b600060208201905081810360008301526133a281612d02565b9050919050565b600060208201905081810360008301526133c281612d68565b9050919050565b600060208201905081810360008301526133e281612dce565b9050919050565b6000602082019050818103600083015261340281612e0e565b9050919050565b6000602082019050818103600083015261342281612e74565b9050919050565b6000602082019050818103600083015261344281612eda565b9050919050565b6000602082019050818103600083015261346281612f1a565b9050919050565b6000602082019050818103600083015261348281612f80565b9050919050565b600060208201905081810360008301526134a281612fe6565b9050919050565b600060208201905081810360008301526134c28161304c565b9050919050565b600060208201905081810360008301526134e28161308c565b9050919050565b60006020820190508181036000830152613502816130cc565b9050919050565b600060208201905081810360008301526135228161310c565b9050919050565b600060208201905061353e6000830184613172565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561356b5761356a613933565b5b8060405250919050565b600067ffffffffffffffff8211156135905761358f613933565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135bc576135bb613933565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156135ec576135eb613933565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061364f82613769565b915061365a83613769565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368f5761368e6138a6565b5b828201905092915050565b60006136a582613769565b91506136b083613769565b9250826136c0576136bf6138d5565b5b828204905092915050565b60006136d682613769565b91506136e183613769565b9250828210156136f4576136f36138a6565b5b828203905092915050565b600061370a82613749565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156137b4578082015181840152602081019050613799565b838111156137c3576000848401525b50505050565b600060028204905060018216806137e157607f821691505b602082108114156137f5576137f4613904565b5b50919050565b600061380682613769565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613839576138386138a6565b5b600182019050919050565b600061384f82613773565b915067ffffffffffffffff82141561386a576138696138a6565b5b600182019050919050565b600061388082613769565b915061388b83613769565b92508261389b5761389a6138d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61397c816136ff565b811461398757600080fd5b50565b61399381613711565b811461399e57600080fd5b50565b6139aa8161371d565b81146139b557600080fd5b50565b6139c181613769565b81146139cc57600080fd5b5056fea2646970667358221220fef7d626d058bfb5036b1b351e83293b5f5188f86c8809a5415900618e07d56864736f6c63430008000033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610437578063c87b56dd14610460578063d520ec6b1461049d578063e0dba62b146104c8578063e985e9c5146104f1578063f2fde38b1461052e5761014b565b806370a082311461034d578063715018a61461038a5780638da5cb5b146103a157806395d89b41146103cc5780639ac84414146103f7578063a22cb4651461040e5761014b565b8063095ea7b311610108578063095ea7b3146102605780631249c58b1461028957806323b872dd1461029357806342842e0e146102bc57806346b45af7146102e55780636352211e146103105761014b565b8063017043a51461015057806301ffc9a7146101675780630387da42146101a45780630611ce2e146101cf57806306fdde03146101f8578063081812fc14610223575b600080fd5b34801561015c57600080fd5b50610165610557565b005b34801561017357600080fd5b5061018e600480360381019061018991906127af565b6105f0565b60405161019b919061320c565b60405180910390f35b3480156101b057600080fd5b506101b96106d2565b6040516101c69190613529565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f1919061282a565b6106d8565b005b34801561020457600080fd5b5061020d6107a3565b60405161021a9190613227565b60405180910390f35b34801561022f57600080fd5b5061024a60048036038101906102459190612801565b610835565b60405161025791906131a5565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190612707565b6108ba565b005b6102916109d2565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190612601565b610c36565b005b3480156102c857600080fd5b506102e360048036038101906102de9190612601565b610c96565b005b3480156102f157600080fd5b506102fa610cb6565b604051610307919061320c565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190612801565b610cc9565b60405161034491906131a5565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f919061259c565b610d7b565b6040516103819190613529565b60405180910390f35b34801561039657600080fd5b5061039f610e33565b005b3480156103ad57600080fd5b506103b6610ebb565b6040516103c391906131a5565b60405180910390f35b3480156103d857600080fd5b506103e1610ee5565b6040516103ee9190613227565b60405180910390f35b34801561040357600080fd5b5061040c610f77565b005b34801561041a57600080fd5b50610435600480360381019061043091906126cb565b611049565b005b34801561044357600080fd5b5061045e60048036038101906104599190612650565b6111ca565b005b34801561046c57600080fd5b5061048760048036038101906104829190612801565b61122c565b6040516104949190613227565b60405180910390f35b3480156104a957600080fd5b506104b261137e565b6040516104bf9190613529565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612743565b611384565b005b3480156104fd57600080fd5b50610518600480360381019061051391906125c5565b6114a5565b604051610525919061320c565b60405180910390f35b34801561053a57600080fd5b506105556004803603810190610550919061259c565b611539565b005b61055f611631565b73ffffffffffffffffffffffffffffffffffffffff1661057d610ebb565b73ffffffffffffffffffffffffffffffffffffffff16146105d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ca90613429565b60405180910390fd5b6000600760146101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb57506106ca82611639565b5b9050919050565b60085481565b6106e0611631565b73ffffffffffffffffffffffffffffffffffffffff166106fe610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90613429565b60405180910390fd5b6001600760146101000a81548160ff021916908315150217905550826008819055508160098190555080600c908051906020019061079392919061232a565b5061079e600a6116a3565b505050565b6060600080546107b2906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107de906137c9565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b6000610840826116b0565b61087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690613409565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c582610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90613489565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610955611631565b73ffffffffffffffffffffffffffffffffffffffff16148061098457506109838161097e611631565b6114a5565b5b6109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90613329565b60405180910390fd5b6109cd838361171c565b505050565b60011515600760149054906101000a900460ff16151514610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613389565b60405180910390fd5b6000610a3333610d7b565b14610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906132a9565b60405180910390fd5b600954610a80600a6117d5565b10610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906134e9565b60405180910390fd5b600854341015610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906134a9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906134c9565b60405180910390fd5b610b7d600b6117e3565b6000610b89600b6117d5565b9050610b9533826117f9565b610c2981600c8054610ba6906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd2906137c9565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050611817565b610c33600a6117e3565b50565b610c47610c41611631565b8261188b565b610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613509565b60405180910390fd5b610c91838383611969565b505050565b610cb1838383604051806020016040528060008152506111ca565b505050565b600760149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613369565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613349565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e3b611631565b73ffffffffffffffffffffffffffffffffffffffff16610e59610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613429565b60405180910390fd5b610eb96000611bc5565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ef4906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f20906137c9565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b5050505050905090565b610f7f611631565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613429565b60405180910390fd5b6000479050611000610ebb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611045573d6000803e3d6000fd5b5050565b611051611631565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906132e9565b60405180910390fd5b80600560006110cc611631565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611179611631565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111be919061320c565b60405180910390a35050565b6111db6111d5611631565b8361188b565b61121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613509565b60405180910390fd5b61122684848484611c8b565b50505050565b6060611237826116b0565b611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906133e9565b60405180910390fd5b6000600660008481526020019081526020016000208054611296906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546112c2906137c9565b801561130f5780601f106112e45761010080835404028352916020019161130f565b820191906000526020600020905b8154815290600101906020018083116112f257829003601f168201915b505050505090506000611320611ce7565b9050600081511415611336578192505050611379565b60008251111561136b578082604051602001611353929190613181565b60405160208183030381529060405292505050611379565b61137484611cfe565b925050505b919050565b60095481565b61138c611631565b73ffffffffffffffffffffffffffffffffffffffff166113aa610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613429565b60405180910390fd5b60005b82518167ffffffffffffffff1610156114a057611420600b6117e3565b600061142c600b6117d5565b9050611482848367ffffffffffffffff1681518110611474577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826117f9565b61148c8184611817565b50808061149890613844565b915050611403565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611541611631565b73ffffffffffffffffffffffffffffffffffffffff1661155f610ebb565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90613429565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613269565b60405180910390fd5b61162e81611bc5565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816000018190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178f83610cc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611813828260405180602001604052806000815250611da5565b5050565b611820826116b0565b61185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906133a9565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061188692919061232a565b505050565b6000611896826116b0565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613309565b60405180910390fd5b60006118e083610cc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061194f57508373ffffffffffffffffffffffffffffffffffffffff1661193784610835565b73ffffffffffffffffffffffffffffffffffffffff16145b80611960575061195f81856114a5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198982610cc9565b73ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690613449565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906132c9565b60405180910390fd5b611a5a838383611e00565b611a6560008261171c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab591906136cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0c9190613644565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c96848484611969565b611ca284848484611e05565b611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613249565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611d09826116b0565b611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90613469565b60405180910390fd5b6000611d52611ce7565b90506000815111611d725760405180602001604052806000815250611d9d565b80611d7c84611f9c565b604051602001611d8d929190613181565b6040516020818303038152906040525b915050919050565b611daf8383612149565b611dbc6000848484611e05565b611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290613249565b60405180910390fd5b505050565b505050565b6000611e268473ffffffffffffffffffffffffffffffffffffffff16612317565b15611f8f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e4f611631565b8786866040518563ffffffff1660e01b8152600401611e7194939291906131c0565b602060405180830381600087803b158015611e8b57600080fd5b505af1925050508015611ebc57506040513d601f19601f82011682018060405250810190611eb991906127d8565b60015b611f3f573d8060008114611eec576040519150601f19603f3d011682016040523d82523d6000602084013e611ef1565b606091505b50600081511415611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613249565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f94565b600190505b949350505050565b60606000821415611fe4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612144565b600082905060005b60008214612016578080611fff906137fb565b915050600a8261200f919061369a565b9150611fec565b60008167ffffffffffffffff811115612058577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561208a5781602001600182028036833780820191505090505b5090505b6000851461213d576001826120a391906136cb565b9150600a856120b29190613875565b60306120be9190613644565b60f81b8183815181106120fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612136919061369a565b945061208e565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b0906133c9565b60405180910390fd5b6121c2816116b0565b15612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613289565b60405180910390fd5b61220e60008383611e00565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225e9190613644565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612336906137c9565b90600052602060002090601f016020900481019282612358576000855561239f565b82601f1061237157805160ff191683800117855561239f565b8280016001018555821561239f579182015b8281111561239e578251825591602001919060010190612383565b5b5090506123ac91906123b0565b5090565b5b808211156123c95760008160009055506001016123b1565b5090565b60006123e06123db84613575565b613544565b905080838252602082019050828560208602820111156123ff57600080fd5b60005b8581101561242f578161241588826124b5565b845260208401935060208301925050600181019050612402565b5050509392505050565b600061244c612447846135a1565b613544565b90508281526020810184848401111561246457600080fd5b61246f848285613787565b509392505050565b600061248a612485846135d1565b613544565b9050828152602081018484840111156124a257600080fd5b6124ad848285613787565b509392505050565b6000813590506124c481613973565b92915050565b600082601f8301126124db57600080fd5b81356124eb8482602086016123cd565b91505092915050565b6000813590506125038161398a565b92915050565b600081359050612518816139a1565b92915050565b60008151905061252d816139a1565b92915050565b600082601f83011261254457600080fd5b8135612554848260208601612439565b91505092915050565b600082601f83011261256e57600080fd5b813561257e848260208601612477565b91505092915050565b600081359050612596816139b8565b92915050565b6000602082840312156125ae57600080fd5b60006125bc848285016124b5565b91505092915050565b600080604083850312156125d857600080fd5b60006125e6858286016124b5565b92505060206125f7858286016124b5565b9150509250929050565b60008060006060848603121561261657600080fd5b6000612624868287016124b5565b9350506020612635868287016124b5565b925050604061264686828701612587565b9150509250925092565b6000806000806080858703121561266657600080fd5b6000612674878288016124b5565b9450506020612685878288016124b5565b935050604061269687828801612587565b925050606085013567ffffffffffffffff8111156126b357600080fd5b6126bf87828801612533565b91505092959194509250565b600080604083850312156126de57600080fd5b60006126ec858286016124b5565b92505060206126fd858286016124f4565b9150509250929050565b6000806040838503121561271a57600080fd5b6000612728858286016124b5565b925050602061273985828601612587565b9150509250929050565b6000806040838503121561275657600080fd5b600083013567ffffffffffffffff81111561277057600080fd5b61277c858286016124ca565b925050602083013567ffffffffffffffff81111561279957600080fd5b6127a58582860161255d565b9150509250929050565b6000602082840312156127c157600080fd5b60006127cf84828501612509565b91505092915050565b6000602082840312156127ea57600080fd5b60006127f88482850161251e565b91505092915050565b60006020828403121561281357600080fd5b600061282184828501612587565b91505092915050565b60008060006060848603121561283f57600080fd5b600061284d86828701612587565b935050602061285e86828701612587565b925050604084013567ffffffffffffffff81111561287b57600080fd5b6128878682870161255d565b9150509250925092565b61289a816136ff565b82525050565b6128a981613711565b82525050565b60006128ba82613601565b6128c48185613617565b93506128d4818560208601613796565b6128dd81613962565b840191505092915050565b60006128f38261360c565b6128fd8185613628565b935061290d818560208601613796565b61291681613962565b840191505092915050565b600061292c8261360c565b6129368185613639565b9350612946818560208601613796565b80840191505092915050565b600061295f603283613628565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129c5602683613628565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a2b601c83613628565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612a6b602983613628565b91507f4d696e74696e67206973206f6e6c7920617661696c61626c6520666f72206e6f60008301527f6e2d686f6c6465727300000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ad1602483613628565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b37601983613628565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612b77602c83613628565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612bdd603883613628565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612c43602a83613628565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ca9602983613628565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d0f602a83613628565b91507f4154582044414f204e4654206973206e6f74206d696e7461626c65206174207460008301527f6865206d6f6d656e7421000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d75602e83613628565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000612ddb602083613628565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612e1b603183613628565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000612e81602c83613628565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612ee7602083613628565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612f27602983613628565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8d602f83613628565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612ff3602183613628565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613059601e83613628565b91507f4e6f7420656e6f7567682065746865722073656e7420746f206d696e742100006000830152602082019050919050565b6000613099600d83613628565b91507f4e6f20636f6e74726163747321000000000000000000000000000000000000006000830152602082019050919050565b60006130d9601783613628565b91507f4e6f206d6f7265204e4654732072656d61696e696e67210000000000000000006000830152602082019050919050565b6000613119603183613628565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61317b81613769565b82525050565b600061318d8285612921565b91506131998284612921565b91508190509392505050565b60006020820190506131ba6000830184612891565b92915050565b60006080820190506131d56000830187612891565b6131e26020830186612891565b6131ef6040830185613172565b818103606083015261320181846128af565b905095945050505050565b600060208201905061322160008301846128a0565b92915050565b6000602082019050818103600083015261324181846128e8565b905092915050565b6000602082019050818103600083015261326281612952565b9050919050565b60006020820190508181036000830152613282816129b8565b9050919050565b600060208201905081810360008301526132a281612a1e565b9050919050565b600060208201905081810360008301526132c281612a5e565b9050919050565b600060208201905081810360008301526132e281612ac4565b9050919050565b6000602082019050818103600083015261330281612b2a565b9050919050565b6000602082019050818103600083015261332281612b6a565b9050919050565b6000602082019050818103600083015261334281612bd0565b9050919050565b6000602082019050818103600083015261336281612c36565b9050919050565b6000602082019050818103600083015261338281612c9c565b9050919050565b600060208201905081810360008301526133a281612d02565b9050919050565b600060208201905081810360008301526133c281612d68565b9050919050565b600060208201905081810360008301526133e281612dce565b9050919050565b6000602082019050818103600083015261340281612e0e565b9050919050565b6000602082019050818103600083015261342281612e74565b9050919050565b6000602082019050818103600083015261344281612eda565b9050919050565b6000602082019050818103600083015261346281612f1a565b9050919050565b6000602082019050818103600083015261348281612f80565b9050919050565b600060208201905081810360008301526134a281612fe6565b9050919050565b600060208201905081810360008301526134c28161304c565b9050919050565b600060208201905081810360008301526134e28161308c565b9050919050565b60006020820190508181036000830152613502816130cc565b9050919050565b600060208201905081810360008301526135228161310c565b9050919050565b600060208201905061353e6000830184613172565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561356b5761356a613933565b5b8060405250919050565b600067ffffffffffffffff8211156135905761358f613933565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135bc576135bb613933565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156135ec576135eb613933565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061364f82613769565b915061365a83613769565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368f5761368e6138a6565b5b828201905092915050565b60006136a582613769565b91506136b083613769565b9250826136c0576136bf6138d5565b5b828204905092915050565b60006136d682613769565b91506136e183613769565b9250828210156136f4576136f36138a6565b5b828203905092915050565b600061370a82613749565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156137b4578082015181840152602081019050613799565b838111156137c3576000848401525b50505050565b600060028204905060018216806137e157607f821691505b602082108114156137f5576137f4613904565b5b50919050565b600061380682613769565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613839576138386138a6565b5b600182019050919050565b600061384f82613773565b915067ffffffffffffffff82141561386a576138696138a6565b5b600182019050919050565b600061388082613769565b915061388b83613769565b92508261389b5761389a6138d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61397c816136ff565b811461398757600080fd5b50565b61399381613711565b811461399e57600080fd5b50565b6139aa8161371d565b81146139b557600080fd5b50565b6139c181613769565b81146139cc57600080fd5b5056fea2646970667358221220fef7d626d058bfb5036b1b351e83293b5f5188f86c8809a5415900618e07d56864736f6c63430008000033

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.