ETH Price: $3,098.43 (+1.01%)
Gas: 14 Gwei

Token

Morie MFers (MMFERS)
 

Overview

Max Total Supply

1,590 MMFERS

Holders

175

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MMFERS
0xd045cc3e4428222eeb1602d63897a32c32440a6c
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:
MorieMFers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : MorieMFers.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./ERC721EnumerableB.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract MorieMFers is ERC721EnumerableB, Ownable {
    using Strings for uint256;

    string public PROVENANCE = "";
    uint256 public maxSupply = 6969;
    
    uint256 public price = 0.006942 ether; //WEI: 6942000000000000

    //sale active
    bool public paused = true;

    //art & metadata reveal
    bool public revealed = false;

    //add after deploy
    string private _baseTokenURI = "";
    string private _unrevealedURI = "";
    string private _tokenURISuffix = "";

    constructor() ERC721B("Morie MFers", "MMFERS") {}

    //external
    fallback() external payable {}
    receive() external payable {}

    function mint(uint256 quantity) external payable {
        uint256 balance = totalSupply();
        require(!paused, "Sale is locked");
        require(balance + quantity <= maxSupply, "Exceeds supply");
        require(msg.value >= price * quantity, "Ether sent is not correct");

        for (uint256 i; i < quantity; ++i) {
            _safeMint(msg.sender, balance + i);
        }
    }

    function gift(uint256 quantity, address recipient) external onlyOwner {
        uint256 balance = totalSupply();
        require(balance + quantity <= maxSupply, "Exceeds supply");

        for (uint256 i; i < quantity; ++i) {
            _safeMint(recipient, balance + i);
        }
    }

    function setLocked(bool paused_) external onlyOwner {
        paused = paused_;
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function setProvenance(string memory provenanceHash) external onlyOwner {
        PROVENANCE = provenanceHash;
    }

    function withdraw() external onlyOwner {
        require(address(this).balance >= 0, "No funds available");
        Address.sendValue(payable(owner()), address(this).balance);
    }

    function setNotRevealedURI(string memory notRevealedURI, string memory suffix)
        external
        onlyOwner
    {
        _unrevealedURI = notRevealedURI;
        _tokenURISuffix = suffix;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: TOKEN DOES NOT EXIST"
        );

        if(revealed == false) {
            return string(
                abi.encodePacked(
                    _unrevealedURI,
                    tokenId.toString(),
                    _tokenURISuffix
                )
            );
        }

        return
            string(
                abi.encodePacked(
                    _baseTokenURI,
                    tokenId.toString(),
                    _tokenURISuffix
                )
            );
    }
}

File 2 of 13 : ERC721EnumerableB.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./ERC721B.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721EnumerableB is ERC721B, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721B)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256 tokenId)
    {
        require(
            index < ERC721B.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }

        require(false, "ERC721Enumerable: owner index out of bounds");
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721EnumerableB.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return index;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 13 : ERC721B.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/********************
* @author: Squeebo *
********************/

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    // 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");

        uint count;
        for( uint i = 0; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }

        return count;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721B.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 tokenId < _owners.length && _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 = ERC721B.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);
        _owners.push(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 = ERC721B.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        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(ERC721B.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);
        _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(ERC721B.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 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused_","type":"bool"}],"name":"setLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"notRevealedURI","type":"string"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180602001604052806000815250600690805190602001906200002b9291906200028d565b50611b396007556618a9b65407e0006008556001600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff02191690831515021790555060405180602001604052806000815250600a90805190602001906200009a9291906200028d565b5060405180602001604052806000815250600b9080519060200190620000c29291906200028d565b5060405180602001604052806000815250600c9080519060200190620000ea9291906200028d565b50348015620000f857600080fd5b506040518060400160405280600b81526020017f4d6f726965204d466572730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d4d46455253000000000000000000000000000000000000000000000000000081525081600090805190602001906200017d9291906200028d565b508060019080519060200190620001969291906200028d565b505050620001b9620001ad620001bf60201b60201c565b620001c760201b60201c565b620003a2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029b906200033d565b90600052602060002090601f016020900481019282620002bf57600085556200030b565b82601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a91906200031e565b5090565b5b80821115620003395760008160009055506001016200031f565b5090565b600060028204905060018216806200035657607f821691505b602082108114156200036d576200036c62000373565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6141a680620003b26000396000f3fe6080604052600436106101f25760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106bc578063d5abeb01146106f9578063e985e9c514610724578063f2fde38b14610761578063ffe630b51461078a576101f9565b8063a0712d6814610637578063a22cb46514610653578063a475b5dd1461067c578063b88d4fde14610693576101f9565b80638da5cb5b116100dc5780638da5cb5b1461058d57806391b7f5ed146105b857806395d89b41146105e1578063a035b1fe1461060c576101f9565b806370a08231146104e7578063715018a61461052457806380e72e561461053b57806383a076be14610564576101f9565b80633ccfd60b116101855780635c975abb116101545780635c975abb1461042b5780636352211e146104565780636373a6b1146104935780636790a9de146104be576101f9565b80633ccfd60b1461038357806342842e0e1461039a5780634f6ccce7146103c35780635183022714610400576101f9565b806318160ddd116101c157806318160ddd146102c9578063211e28b6146102f457806323b872dd1461031d5780632f745c5914610346576101f9565b806301ffc9a7146101fb57806306fdde0314610238578063081812fc14610263578063095ea7b3146102a0576101f9565b366101f957005b005b34801561020757600080fd5b50610222600480360381019061021d9190612c7d565b6107b3565b60405161022f9190613348565b60405180910390f35b34801561024457600080fd5b5061024d61082d565b60405161025a9190613363565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612d7c565b6108bf565b60405161029791906132e1565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612c18565b610944565b005b3480156102d557600080fd5b506102de610a5c565b6040516102eb9190613685565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612c54565b610a69565b005b34801561032957600080fd5b50610344600480360381019061033f9190612b12565b610b02565b005b34801561035257600080fd5b5061036d60048036038101906103689190612c18565b610b62565b60405161037a9190613685565b60405180910390f35b34801561038f57600080fd5b50610398610cd1565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612b12565b610da4565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612d7c565b610dc4565b6040516103f79190613685565b60405180910390f35b34801561040c57600080fd5b50610415610e17565b6040516104229190613348565b60405180910390f35b34801561043757600080fd5b50610440610e2a565b60405161044d9190613348565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612d7c565b610e3d565b60405161048a91906132e1565b60405180910390f35b34801561049f57600080fd5b506104a8610f20565b6040516104b59190613363565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612d10565b610fae565b005b3480156104f357600080fd5b5061050e60048036038101906105099190612aad565b61105c565b60405161051b9190613685565b60405180910390f35b34801561053057600080fd5b506105396111a2565b005b34801561054757600080fd5b50610562600480360381019061055d9190612d10565b61122a565b005b34801561057057600080fd5b5061058b60048036038101906105869190612da5565b6112d8565b005b34801561059957600080fd5b506105a26113e7565b6040516105af91906132e1565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612d7c565b611411565b005b3480156105ed57600080fd5b506105f6611497565b6040516106039190613363565b60405180910390f35b34801561061857600080fd5b50610621611529565b60405161062e9190613685565b60405180910390f35b610651600480360381019061064c9190612d7c565b61152f565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612bdc565b611661565b005b34801561068857600080fd5b506106916117e2565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612b61565b61187b565b005b3480156106c857600080fd5b506106e360048036038101906106de9190612d7c565b6118dd565b6040516106f09190613363565b60405180910390f35b34801561070557600080fd5b5061070e6119ae565b60405161071b9190613685565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612ad6565b6119b4565b6040516107589190613348565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612aad565b611a48565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612ccf565b611b40565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610826575061082582611bd6565b5b9050919050565b60606000805461083c90613955565b80601f016020809104026020016040519081016040528092919081815260200182805461086890613955565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca82611cb8565b610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090613585565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610e3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906135e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109df611d66565b73ffffffffffffffffffffffffffffffffffffffff161480610a0e5750610a0d81610a08611d66565b6119b4565b5b610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490613505565b60405180910390fd5b610a578383611d6e565b505050565b6000600280549050905090565b610a71611d66565b73ffffffffffffffffffffffffffffffffffffffff16610a8f6113e7565b73ffffffffffffffffffffffffffffffffffffffff1614610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc906135a5565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b610b13610b0d611d66565b82611e27565b610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4990613625565b60405180910390fd5b610b5d838383611f05565b505050565b6000610b6d8361105c565b8210610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906133c5565b60405180910390fd5b6000805b600280549050811015610c875760028181548110610bf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c765783821415610c69578092505050610ccb565b81610c73906139b8565b91505b80610c80906139b8565b9050610bb2565b506000610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906133c5565b60405180910390fd5b505b92915050565b610cd9611d66565b73ffffffffffffffffffffffffffffffffffffffff16610cf76113e7565b73ffffffffffffffffffffffffffffffffffffffff1614610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906135a5565b60405180910390fd5b6000471015610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d88906133a5565b60405180910390fd5b610da2610d9c6113e7565b476120e4565b565b610dbf8383836040518060200160405280600081525061187b565b505050565b6000610dce610a5c565b8210610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613645565b60405180910390fd5b819050919050565b600960019054906101000a900460ff1681565b600960009054906101000a900460ff1681565b60008060028381548110610e7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90613545565b60405180910390fd5b80915050919050565b60068054610f2d90613955565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5990613955565b8015610fa65780601f10610f7b57610100808354040283529160200191610fa6565b820191906000526020600020905b815481529060010190602001808311610f8957829003601f168201915b505050505081565b610fb6611d66565b73ffffffffffffffffffffffffffffffffffffffff16610fd46113e7565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611021906135a5565b60405180910390fd5b81600a90805190602001906110409291906128d1565b5080600c90805190602001906110579291906128d1565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490613525565b60405180910390fd5b600080600090505b600280549050811015611198576002818154811061111c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111875781611184906139b8565b91505b80611191906139b8565b90506110d5565b5080915050919050565b6111aa611d66565b73ffffffffffffffffffffffffffffffffffffffff166111c86113e7565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906135a5565b60405180910390fd5b61122860006121d8565b565b611232611d66565b73ffffffffffffffffffffffffffffffffffffffff166112506113e7565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d906135a5565b60405180910390fd5b81600b90805190602001906112bc9291906128d1565b5080600c90805190602001906112d39291906128d1565b505050565b6112e0611d66565b73ffffffffffffffffffffffffffffffffffffffff166112fe6113e7565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b906135a5565b60405180910390fd5b600061135e610a5c565b9050600754838261136f919061378a565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790613385565b60405180910390fd5b60005b838110156113e1576113d08382846113cb919061378a565b61229e565b806113da906139b8565b90506113b3565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611419611d66565b73ffffffffffffffffffffffffffffffffffffffff166114376113e7565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906135a5565b60405180910390fd5b8060088190555050565b6060600180546114a690613955565b80601f01602080910402602001604051908101604052809291908181526020018280546114d290613955565b801561151f5780601f106114f45761010080835404028352916020019161151f565b820191906000526020600020905b81548152906001019060200180831161150257829003601f168201915b5050505050905090565b60085481565b6000611539610a5c565b9050600960009054906101000a900460ff161561158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613665565b60405180910390fd5b600754828261159a919061378a565b11156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613385565b60405180910390fd5b816008546115e99190613811565b34101561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613605565b60405180910390fd5b60005b8281101561165c5761164b338284611646919061378a565b61229e565b80611655906139b8565b905061162e565b505050565b611669611d66565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613485565b60405180910390fd5b80600460006116e4611d66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611791611d66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d69190613348565b60405180910390a35050565b6117ea611d66565b73ffffffffffffffffffffffffffffffffffffffff166118086113e7565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611855906135a5565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b61188c611886611d66565b83611e27565b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613625565b60405180910390fd5b6118d7848484846122bc565b50505050565b60606118e882611cb8565b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90613445565b60405180910390fd5b60001515600960019054906101000a900460ff161515141561197857600b61194e83612318565b600c6040516020016119629392919061329b565b60405160208183030381529060405290506119a9565b600a61198383612318565b600c6040516020016119979392919061329b565b60405160208183030381529060405290505b919050565b60075481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a50611d66565b73ffffffffffffffffffffffffffffffffffffffff16611a6e6113e7565b73ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb906135a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90613405565b60405180910390fd5b611b3d816121d8565b50565b611b48611d66565b73ffffffffffffffffffffffffffffffffffffffff16611b666113e7565b73ffffffffffffffffffffffffffffffffffffffff1614611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906135a5565b60405180910390fd5b8060069080519060200190611bd29291906128d1565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ca157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb15750611cb0826124c5565b5b9050919050565b600060028054905082108015611d5f5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611d1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de183610e3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e3282611cb8565b611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906134e5565b60405180910390fd5b6000611e7c83610e3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eeb57508373ffffffffffffffffffffffffffffffffffffffff16611ed3846108bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611efc5750611efb81856119b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2582610e3d565b73ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f72906135c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613465565b60405180910390fd5b611ff683838361252f565b612001600082611d6e565b816002828154811061203c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e906134c5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161214d906132cc565b60006040518083038185875af1925050503d806000811461218a576040519150601f19603f3d011682016040523d82523d6000602084013e61218f565b606091505b50509050806121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca906134a5565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122b8828260405180602001604052806000815250612534565b5050565b6122c7848484611f05565b6122d38484848461258f565b612312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906133e5565b60405180910390fd5b50505050565b60606000821415612360576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c0565b600082905060005b6000821461239257808061237b906139b8565b915050600a8261238b91906137e0565b9150612368565b60008167ffffffffffffffff8111156123d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124065781602001600182028036833780820191505090505b5090505b600085146124b95760018261241f919061386b565b9150600a8561242e9190613a01565b603061243a919061378a565b60f81b818381518110612476577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124b291906137e0565b945061240a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b61253e8383612726565b61254b600084848461258f565b61258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906133e5565b60405180910390fd5b505050565b60006125b08473ffffffffffffffffffffffffffffffffffffffff166128ae565b15612719578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d9611d66565b8786866040518563ffffffff1660e01b81526004016125fb94939291906132fc565b602060405180830381600087803b15801561261557600080fd5b505af192505050801561264657506040513d601f19601f820116820180604052508101906126439190612ca6565b60015b6126c9573d8060008114612676576040519150601f19603f3d011682016040523d82523d6000602084013e61267b565b606091505b506000815114156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b8906133e5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061271e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d90613565565b60405180910390fd5b61279f81611cb8565b156127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690613425565b60405180910390fd5b6127eb6000838361252f565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128dd90613955565b90600052602060002090601f0160209004810192826128ff5760008555612946565b82601f1061291857805160ff1916838001178555612946565b82800160010185558215612946579182015b8281111561294557825182559160200191906001019061292a565b5b5090506129539190612957565b5090565b5b80821115612970576000816000905550600101612958565b5090565b6000612987612982846136c5565b6136a0565b90508281526020810184848401111561299f57600080fd5b6129aa848285613913565b509392505050565b60006129c56129c0846136f6565b6136a0565b9050828152602081018484840111156129dd57600080fd5b6129e8848285613913565b509392505050565b6000813590506129ff81614114565b92915050565b600081359050612a148161412b565b92915050565b600081359050612a2981614142565b92915050565b600081519050612a3e81614142565b92915050565b600082601f830112612a5557600080fd5b8135612a65848260208601612974565b91505092915050565b600082601f830112612a7f57600080fd5b8135612a8f8482602086016129b2565b91505092915050565b600081359050612aa781614159565b92915050565b600060208284031215612abf57600080fd5b6000612acd848285016129f0565b91505092915050565b60008060408385031215612ae957600080fd5b6000612af7858286016129f0565b9250506020612b08858286016129f0565b9150509250929050565b600080600060608486031215612b2757600080fd5b6000612b35868287016129f0565b9350506020612b46868287016129f0565b9250506040612b5786828701612a98565b9150509250925092565b60008060008060808587031215612b7757600080fd5b6000612b85878288016129f0565b9450506020612b96878288016129f0565b9350506040612ba787828801612a98565b925050606085013567ffffffffffffffff811115612bc457600080fd5b612bd087828801612a44565b91505092959194509250565b60008060408385031215612bef57600080fd5b6000612bfd858286016129f0565b9250506020612c0e85828601612a05565b9150509250929050565b60008060408385031215612c2b57600080fd5b6000612c39858286016129f0565b9250506020612c4a85828601612a98565b9150509250929050565b600060208284031215612c6657600080fd5b6000612c7484828501612a05565b91505092915050565b600060208284031215612c8f57600080fd5b6000612c9d84828501612a1a565b91505092915050565b600060208284031215612cb857600080fd5b6000612cc684828501612a2f565b91505092915050565b600060208284031215612ce157600080fd5b600082013567ffffffffffffffff811115612cfb57600080fd5b612d0784828501612a6e565b91505092915050565b60008060408385031215612d2357600080fd5b600083013567ffffffffffffffff811115612d3d57600080fd5b612d4985828601612a6e565b925050602083013567ffffffffffffffff811115612d6657600080fd5b612d7285828601612a6e565b9150509250929050565b600060208284031215612d8e57600080fd5b6000612d9c84828501612a98565b91505092915050565b60008060408385031215612db857600080fd5b6000612dc685828601612a98565b9250506020612dd7858286016129f0565b9150509250929050565b612dea8161389f565b82525050565b612df9816138b1565b82525050565b6000612e0a8261373c565b612e148185613752565b9350612e24818560208601613922565b612e2d81613aee565b840191505092915050565b6000612e4382613747565b612e4d818561376e565b9350612e5d818560208601613922565b612e6681613aee565b840191505092915050565b6000612e7c82613747565b612e86818561377f565b9350612e96818560208601613922565b80840191505092915050565b60008154612eaf81613955565b612eb9818661377f565b94506001821660008114612ed45760018114612ee557612f18565b60ff19831686528186019350612f18565b612eee85613727565b60005b83811015612f1057815481890152600182019150602081019050612ef1565b838801955050505b50505092915050565b6000612f2e600e8361376e565b9150612f3982613aff565b602082019050919050565b6000612f5160128361376e565b9150612f5c82613b28565b602082019050919050565b6000612f74602b8361376e565b9150612f7f82613b51565b604082019050919050565b6000612f9760328361376e565b9150612fa282613ba0565b604082019050919050565b6000612fba60268361376e565b9150612fc582613bef565b604082019050919050565b6000612fdd601c8361376e565b9150612fe882613c3e565b602082019050919050565b600061300060248361376e565b915061300b82613c67565b604082019050919050565b600061302360248361376e565b915061302e82613cb6565b604082019050919050565b600061304660198361376e565b915061305182613d05565b602082019050919050565b6000613069603a8361376e565b915061307482613d2e565b604082019050919050565b600061308c601d8361376e565b915061309782613d7d565b602082019050919050565b60006130af602c8361376e565b91506130ba82613da6565b604082019050919050565b60006130d260388361376e565b91506130dd82613df5565b604082019050919050565b60006130f5602a8361376e565b915061310082613e44565b604082019050919050565b600061311860298361376e565b915061312382613e93565b604082019050919050565b600061313b60208361376e565b915061314682613ee2565b602082019050919050565b600061315e602c8361376e565b915061316982613f0b565b604082019050919050565b600061318160208361376e565b915061318c82613f5a565b602082019050919050565b60006131a460298361376e565b91506131af82613f83565b604082019050919050565b60006131c760218361376e565b91506131d282613fd2565b604082019050919050565b60006131ea60198361376e565b91506131f582614021565b602082019050919050565b600061320d600083613763565b91506132188261404a565b600082019050919050565b600061323060318361376e565b915061323b8261404d565b604082019050919050565b6000613253602c8361376e565b915061325e8261409c565b604082019050919050565b6000613276600e8361376e565b9150613281826140eb565b602082019050919050565b61329581613909565b82525050565b60006132a78286612ea2565b91506132b38285612e71565b91506132bf8284612ea2565b9150819050949350505050565b60006132d782613200565b9150819050919050565b60006020820190506132f66000830184612de1565b92915050565b60006080820190506133116000830187612de1565b61331e6020830186612de1565b61332b604083018561328c565b818103606083015261333d8184612dff565b905095945050505050565b600060208201905061335d6000830184612df0565b92915050565b6000602082019050818103600083015261337d8184612e38565b905092915050565b6000602082019050818103600083015261339e81612f21565b9050919050565b600060208201905081810360008301526133be81612f44565b9050919050565b600060208201905081810360008301526133de81612f67565b9050919050565b600060208201905081810360008301526133fe81612f8a565b9050919050565b6000602082019050818103600083015261341e81612fad565b9050919050565b6000602082019050818103600083015261343e81612fd0565b9050919050565b6000602082019050818103600083015261345e81612ff3565b9050919050565b6000602082019050818103600083015261347e81613016565b9050919050565b6000602082019050818103600083015261349e81613039565b9050919050565b600060208201905081810360008301526134be8161305c565b9050919050565b600060208201905081810360008301526134de8161307f565b9050919050565b600060208201905081810360008301526134fe816130a2565b9050919050565b6000602082019050818103600083015261351e816130c5565b9050919050565b6000602082019050818103600083015261353e816130e8565b9050919050565b6000602082019050818103600083015261355e8161310b565b9050919050565b6000602082019050818103600083015261357e8161312e565b9050919050565b6000602082019050818103600083015261359e81613151565b9050919050565b600060208201905081810360008301526135be81613174565b9050919050565b600060208201905081810360008301526135de81613197565b9050919050565b600060208201905081810360008301526135fe816131ba565b9050919050565b6000602082019050818103600083015261361e816131dd565b9050919050565b6000602082019050818103600083015261363e81613223565b9050919050565b6000602082019050818103600083015261365e81613246565b9050919050565b6000602082019050818103600083015261367e81613269565b9050919050565b600060208201905061369a600083018461328c565b92915050565b60006136aa6136bb565b90506136b68282613987565b919050565b6000604051905090565b600067ffffffffffffffff8211156136e0576136df613abf565b5b6136e982613aee565b9050602081019050919050565b600067ffffffffffffffff82111561371157613710613abf565b5b61371a82613aee565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061379582613909565b91506137a083613909565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d5576137d4613a32565b5b828201905092915050565b60006137eb82613909565b91506137f683613909565b92508261380657613805613a61565b5b828204905092915050565b600061381c82613909565b915061382783613909565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138605761385f613a32565b5b828202905092915050565b600061387682613909565b915061388183613909565b92508282101561389457613893613a32565b5b828203905092915050565b60006138aa826138e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613940578082015181840152602081019050613925565b8381111561394f576000848401525b50505050565b6000600282049050600182168061396d57607f821691505b6020821081141561398157613980613a90565b5b50919050565b61399082613aee565b810181811067ffffffffffffffff821117156139af576139ae613abf565b5b80604052505050565b60006139c382613909565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f6576139f5613a32565b5b600182019050919050565b6000613a0c82613909565b9150613a1783613909565b925082613a2757613a26613a61565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a20544f4b454e20444f4553204e4f54204560008201527f5849535400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206c6f636b6564000000000000000000000000000000000000600082015250565b61411d8161389f565b811461412857600080fd5b50565b614134816138b1565b811461413f57600080fd5b50565b61414b816138bd565b811461415657600080fd5b50565b61416281613909565b811461416d57600080fd5b5056fea26469706673582212201ef24afb309f7a8be582ea287f077ca0915d168cdc5f061c655d62389d2e6e5564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101f25760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106bc578063d5abeb01146106f9578063e985e9c514610724578063f2fde38b14610761578063ffe630b51461078a576101f9565b8063a0712d6814610637578063a22cb46514610653578063a475b5dd1461067c578063b88d4fde14610693576101f9565b80638da5cb5b116100dc5780638da5cb5b1461058d57806391b7f5ed146105b857806395d89b41146105e1578063a035b1fe1461060c576101f9565b806370a08231146104e7578063715018a61461052457806380e72e561461053b57806383a076be14610564576101f9565b80633ccfd60b116101855780635c975abb116101545780635c975abb1461042b5780636352211e146104565780636373a6b1146104935780636790a9de146104be576101f9565b80633ccfd60b1461038357806342842e0e1461039a5780634f6ccce7146103c35780635183022714610400576101f9565b806318160ddd116101c157806318160ddd146102c9578063211e28b6146102f457806323b872dd1461031d5780632f745c5914610346576101f9565b806301ffc9a7146101fb57806306fdde0314610238578063081812fc14610263578063095ea7b3146102a0576101f9565b366101f957005b005b34801561020757600080fd5b50610222600480360381019061021d9190612c7d565b6107b3565b60405161022f9190613348565b60405180910390f35b34801561024457600080fd5b5061024d61082d565b60405161025a9190613363565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612d7c565b6108bf565b60405161029791906132e1565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612c18565b610944565b005b3480156102d557600080fd5b506102de610a5c565b6040516102eb9190613685565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612c54565b610a69565b005b34801561032957600080fd5b50610344600480360381019061033f9190612b12565b610b02565b005b34801561035257600080fd5b5061036d60048036038101906103689190612c18565b610b62565b60405161037a9190613685565b60405180910390f35b34801561038f57600080fd5b50610398610cd1565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612b12565b610da4565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612d7c565b610dc4565b6040516103f79190613685565b60405180910390f35b34801561040c57600080fd5b50610415610e17565b6040516104229190613348565b60405180910390f35b34801561043757600080fd5b50610440610e2a565b60405161044d9190613348565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612d7c565b610e3d565b60405161048a91906132e1565b60405180910390f35b34801561049f57600080fd5b506104a8610f20565b6040516104b59190613363565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612d10565b610fae565b005b3480156104f357600080fd5b5061050e60048036038101906105099190612aad565b61105c565b60405161051b9190613685565b60405180910390f35b34801561053057600080fd5b506105396111a2565b005b34801561054757600080fd5b50610562600480360381019061055d9190612d10565b61122a565b005b34801561057057600080fd5b5061058b60048036038101906105869190612da5565b6112d8565b005b34801561059957600080fd5b506105a26113e7565b6040516105af91906132e1565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612d7c565b611411565b005b3480156105ed57600080fd5b506105f6611497565b6040516106039190613363565b60405180910390f35b34801561061857600080fd5b50610621611529565b60405161062e9190613685565b60405180910390f35b610651600480360381019061064c9190612d7c565b61152f565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612bdc565b611661565b005b34801561068857600080fd5b506106916117e2565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612b61565b61187b565b005b3480156106c857600080fd5b506106e360048036038101906106de9190612d7c565b6118dd565b6040516106f09190613363565b60405180910390f35b34801561070557600080fd5b5061070e6119ae565b60405161071b9190613685565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612ad6565b6119b4565b6040516107589190613348565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612aad565b611a48565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612ccf565b611b40565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610826575061082582611bd6565b5b9050919050565b60606000805461083c90613955565b80601f016020809104026020016040519081016040528092919081815260200182805461086890613955565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca82611cb8565b610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090613585565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610e3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906135e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109df611d66565b73ffffffffffffffffffffffffffffffffffffffff161480610a0e5750610a0d81610a08611d66565b6119b4565b5b610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490613505565b60405180910390fd5b610a578383611d6e565b505050565b6000600280549050905090565b610a71611d66565b73ffffffffffffffffffffffffffffffffffffffff16610a8f6113e7565b73ffffffffffffffffffffffffffffffffffffffff1614610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc906135a5565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b610b13610b0d611d66565b82611e27565b610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4990613625565b60405180910390fd5b610b5d838383611f05565b505050565b6000610b6d8361105c565b8210610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906133c5565b60405180910390fd5b6000805b600280549050811015610c875760028181548110610bf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c765783821415610c69578092505050610ccb565b81610c73906139b8565b91505b80610c80906139b8565b9050610bb2565b506000610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906133c5565b60405180910390fd5b505b92915050565b610cd9611d66565b73ffffffffffffffffffffffffffffffffffffffff16610cf76113e7565b73ffffffffffffffffffffffffffffffffffffffff1614610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906135a5565b60405180910390fd5b6000471015610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d88906133a5565b60405180910390fd5b610da2610d9c6113e7565b476120e4565b565b610dbf8383836040518060200160405280600081525061187b565b505050565b6000610dce610a5c565b8210610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613645565b60405180910390fd5b819050919050565b600960019054906101000a900460ff1681565b600960009054906101000a900460ff1681565b60008060028381548110610e7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90613545565b60405180910390fd5b80915050919050565b60068054610f2d90613955565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5990613955565b8015610fa65780601f10610f7b57610100808354040283529160200191610fa6565b820191906000526020600020905b815481529060010190602001808311610f8957829003601f168201915b505050505081565b610fb6611d66565b73ffffffffffffffffffffffffffffffffffffffff16610fd46113e7565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611021906135a5565b60405180910390fd5b81600a90805190602001906110409291906128d1565b5080600c90805190602001906110579291906128d1565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490613525565b60405180910390fd5b600080600090505b600280549050811015611198576002818154811061111c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111875781611184906139b8565b91505b80611191906139b8565b90506110d5565b5080915050919050565b6111aa611d66565b73ffffffffffffffffffffffffffffffffffffffff166111c86113e7565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906135a5565b60405180910390fd5b61122860006121d8565b565b611232611d66565b73ffffffffffffffffffffffffffffffffffffffff166112506113e7565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d906135a5565b60405180910390fd5b81600b90805190602001906112bc9291906128d1565b5080600c90805190602001906112d39291906128d1565b505050565b6112e0611d66565b73ffffffffffffffffffffffffffffffffffffffff166112fe6113e7565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b906135a5565b60405180910390fd5b600061135e610a5c565b9050600754838261136f919061378a565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790613385565b60405180910390fd5b60005b838110156113e1576113d08382846113cb919061378a565b61229e565b806113da906139b8565b90506113b3565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611419611d66565b73ffffffffffffffffffffffffffffffffffffffff166114376113e7565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906135a5565b60405180910390fd5b8060088190555050565b6060600180546114a690613955565b80601f01602080910402602001604051908101604052809291908181526020018280546114d290613955565b801561151f5780601f106114f45761010080835404028352916020019161151f565b820191906000526020600020905b81548152906001019060200180831161150257829003601f168201915b5050505050905090565b60085481565b6000611539610a5c565b9050600960009054906101000a900460ff161561158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613665565b60405180910390fd5b600754828261159a919061378a565b11156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613385565b60405180910390fd5b816008546115e99190613811565b34101561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613605565b60405180910390fd5b60005b8281101561165c5761164b338284611646919061378a565b61229e565b80611655906139b8565b905061162e565b505050565b611669611d66565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613485565b60405180910390fd5b80600460006116e4611d66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611791611d66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d69190613348565b60405180910390a35050565b6117ea611d66565b73ffffffffffffffffffffffffffffffffffffffff166118086113e7565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611855906135a5565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b61188c611886611d66565b83611e27565b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613625565b60405180910390fd5b6118d7848484846122bc565b50505050565b60606118e882611cb8565b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90613445565b60405180910390fd5b60001515600960019054906101000a900460ff161515141561197857600b61194e83612318565b600c6040516020016119629392919061329b565b60405160208183030381529060405290506119a9565b600a61198383612318565b600c6040516020016119979392919061329b565b60405160208183030381529060405290505b919050565b60075481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a50611d66565b73ffffffffffffffffffffffffffffffffffffffff16611a6e6113e7565b73ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb906135a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90613405565b60405180910390fd5b611b3d816121d8565b50565b611b48611d66565b73ffffffffffffffffffffffffffffffffffffffff16611b666113e7565b73ffffffffffffffffffffffffffffffffffffffff1614611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906135a5565b60405180910390fd5b8060069080519060200190611bd29291906128d1565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ca157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb15750611cb0826124c5565b5b9050919050565b600060028054905082108015611d5f5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611d1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de183610e3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e3282611cb8565b611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906134e5565b60405180910390fd5b6000611e7c83610e3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eeb57508373ffffffffffffffffffffffffffffffffffffffff16611ed3846108bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611efc5750611efb81856119b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2582610e3d565b73ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f72906135c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613465565b60405180910390fd5b611ff683838361252f565b612001600082611d6e565b816002828154811061203c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e906134c5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161214d906132cc565b60006040518083038185875af1925050503d806000811461218a576040519150601f19603f3d011682016040523d82523d6000602084013e61218f565b606091505b50509050806121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca906134a5565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122b8828260405180602001604052806000815250612534565b5050565b6122c7848484611f05565b6122d38484848461258f565b612312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906133e5565b60405180910390fd5b50505050565b60606000821415612360576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c0565b600082905060005b6000821461239257808061237b906139b8565b915050600a8261238b91906137e0565b9150612368565b60008167ffffffffffffffff8111156123d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124065781602001600182028036833780820191505090505b5090505b600085146124b95760018261241f919061386b565b9150600a8561242e9190613a01565b603061243a919061378a565b60f81b818381518110612476577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124b291906137e0565b945061240a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b61253e8383612726565b61254b600084848461258f565b61258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906133e5565b60405180910390fd5b505050565b60006125b08473ffffffffffffffffffffffffffffffffffffffff166128ae565b15612719578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d9611d66565b8786866040518563ffffffff1660e01b81526004016125fb94939291906132fc565b602060405180830381600087803b15801561261557600080fd5b505af192505050801561264657506040513d601f19601f820116820180604052508101906126439190612ca6565b60015b6126c9573d8060008114612676576040519150601f19603f3d011682016040523d82523d6000602084013e61267b565b606091505b506000815114156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b8906133e5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061271e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d90613565565b60405180910390fd5b61279f81611cb8565b156127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690613425565b60405180910390fd5b6127eb6000838361252f565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128dd90613955565b90600052602060002090601f0160209004810192826128ff5760008555612946565b82601f1061291857805160ff1916838001178555612946565b82800160010185558215612946579182015b8281111561294557825182559160200191906001019061292a565b5b5090506129539190612957565b5090565b5b80821115612970576000816000905550600101612958565b5090565b6000612987612982846136c5565b6136a0565b90508281526020810184848401111561299f57600080fd5b6129aa848285613913565b509392505050565b60006129c56129c0846136f6565b6136a0565b9050828152602081018484840111156129dd57600080fd5b6129e8848285613913565b509392505050565b6000813590506129ff81614114565b92915050565b600081359050612a148161412b565b92915050565b600081359050612a2981614142565b92915050565b600081519050612a3e81614142565b92915050565b600082601f830112612a5557600080fd5b8135612a65848260208601612974565b91505092915050565b600082601f830112612a7f57600080fd5b8135612a8f8482602086016129b2565b91505092915050565b600081359050612aa781614159565b92915050565b600060208284031215612abf57600080fd5b6000612acd848285016129f0565b91505092915050565b60008060408385031215612ae957600080fd5b6000612af7858286016129f0565b9250506020612b08858286016129f0565b9150509250929050565b600080600060608486031215612b2757600080fd5b6000612b35868287016129f0565b9350506020612b46868287016129f0565b9250506040612b5786828701612a98565b9150509250925092565b60008060008060808587031215612b7757600080fd5b6000612b85878288016129f0565b9450506020612b96878288016129f0565b9350506040612ba787828801612a98565b925050606085013567ffffffffffffffff811115612bc457600080fd5b612bd087828801612a44565b91505092959194509250565b60008060408385031215612bef57600080fd5b6000612bfd858286016129f0565b9250506020612c0e85828601612a05565b9150509250929050565b60008060408385031215612c2b57600080fd5b6000612c39858286016129f0565b9250506020612c4a85828601612a98565b9150509250929050565b600060208284031215612c6657600080fd5b6000612c7484828501612a05565b91505092915050565b600060208284031215612c8f57600080fd5b6000612c9d84828501612a1a565b91505092915050565b600060208284031215612cb857600080fd5b6000612cc684828501612a2f565b91505092915050565b600060208284031215612ce157600080fd5b600082013567ffffffffffffffff811115612cfb57600080fd5b612d0784828501612a6e565b91505092915050565b60008060408385031215612d2357600080fd5b600083013567ffffffffffffffff811115612d3d57600080fd5b612d4985828601612a6e565b925050602083013567ffffffffffffffff811115612d6657600080fd5b612d7285828601612a6e565b9150509250929050565b600060208284031215612d8e57600080fd5b6000612d9c84828501612a98565b91505092915050565b60008060408385031215612db857600080fd5b6000612dc685828601612a98565b9250506020612dd7858286016129f0565b9150509250929050565b612dea8161389f565b82525050565b612df9816138b1565b82525050565b6000612e0a8261373c565b612e148185613752565b9350612e24818560208601613922565b612e2d81613aee565b840191505092915050565b6000612e4382613747565b612e4d818561376e565b9350612e5d818560208601613922565b612e6681613aee565b840191505092915050565b6000612e7c82613747565b612e86818561377f565b9350612e96818560208601613922565b80840191505092915050565b60008154612eaf81613955565b612eb9818661377f565b94506001821660008114612ed45760018114612ee557612f18565b60ff19831686528186019350612f18565b612eee85613727565b60005b83811015612f1057815481890152600182019150602081019050612ef1565b838801955050505b50505092915050565b6000612f2e600e8361376e565b9150612f3982613aff565b602082019050919050565b6000612f5160128361376e565b9150612f5c82613b28565b602082019050919050565b6000612f74602b8361376e565b9150612f7f82613b51565b604082019050919050565b6000612f9760328361376e565b9150612fa282613ba0565b604082019050919050565b6000612fba60268361376e565b9150612fc582613bef565b604082019050919050565b6000612fdd601c8361376e565b9150612fe882613c3e565b602082019050919050565b600061300060248361376e565b915061300b82613c67565b604082019050919050565b600061302360248361376e565b915061302e82613cb6565b604082019050919050565b600061304660198361376e565b915061305182613d05565b602082019050919050565b6000613069603a8361376e565b915061307482613d2e565b604082019050919050565b600061308c601d8361376e565b915061309782613d7d565b602082019050919050565b60006130af602c8361376e565b91506130ba82613da6565b604082019050919050565b60006130d260388361376e565b91506130dd82613df5565b604082019050919050565b60006130f5602a8361376e565b915061310082613e44565b604082019050919050565b600061311860298361376e565b915061312382613e93565b604082019050919050565b600061313b60208361376e565b915061314682613ee2565b602082019050919050565b600061315e602c8361376e565b915061316982613f0b565b604082019050919050565b600061318160208361376e565b915061318c82613f5a565b602082019050919050565b60006131a460298361376e565b91506131af82613f83565b604082019050919050565b60006131c760218361376e565b91506131d282613fd2565b604082019050919050565b60006131ea60198361376e565b91506131f582614021565b602082019050919050565b600061320d600083613763565b91506132188261404a565b600082019050919050565b600061323060318361376e565b915061323b8261404d565b604082019050919050565b6000613253602c8361376e565b915061325e8261409c565b604082019050919050565b6000613276600e8361376e565b9150613281826140eb565b602082019050919050565b61329581613909565b82525050565b60006132a78286612ea2565b91506132b38285612e71565b91506132bf8284612ea2565b9150819050949350505050565b60006132d782613200565b9150819050919050565b60006020820190506132f66000830184612de1565b92915050565b60006080820190506133116000830187612de1565b61331e6020830186612de1565b61332b604083018561328c565b818103606083015261333d8184612dff565b905095945050505050565b600060208201905061335d6000830184612df0565b92915050565b6000602082019050818103600083015261337d8184612e38565b905092915050565b6000602082019050818103600083015261339e81612f21565b9050919050565b600060208201905081810360008301526133be81612f44565b9050919050565b600060208201905081810360008301526133de81612f67565b9050919050565b600060208201905081810360008301526133fe81612f8a565b9050919050565b6000602082019050818103600083015261341e81612fad565b9050919050565b6000602082019050818103600083015261343e81612fd0565b9050919050565b6000602082019050818103600083015261345e81612ff3565b9050919050565b6000602082019050818103600083015261347e81613016565b9050919050565b6000602082019050818103600083015261349e81613039565b9050919050565b600060208201905081810360008301526134be8161305c565b9050919050565b600060208201905081810360008301526134de8161307f565b9050919050565b600060208201905081810360008301526134fe816130a2565b9050919050565b6000602082019050818103600083015261351e816130c5565b9050919050565b6000602082019050818103600083015261353e816130e8565b9050919050565b6000602082019050818103600083015261355e8161310b565b9050919050565b6000602082019050818103600083015261357e8161312e565b9050919050565b6000602082019050818103600083015261359e81613151565b9050919050565b600060208201905081810360008301526135be81613174565b9050919050565b600060208201905081810360008301526135de81613197565b9050919050565b600060208201905081810360008301526135fe816131ba565b9050919050565b6000602082019050818103600083015261361e816131dd565b9050919050565b6000602082019050818103600083015261363e81613223565b9050919050565b6000602082019050818103600083015261365e81613246565b9050919050565b6000602082019050818103600083015261367e81613269565b9050919050565b600060208201905061369a600083018461328c565b92915050565b60006136aa6136bb565b90506136b68282613987565b919050565b6000604051905090565b600067ffffffffffffffff8211156136e0576136df613abf565b5b6136e982613aee565b9050602081019050919050565b600067ffffffffffffffff82111561371157613710613abf565b5b61371a82613aee565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061379582613909565b91506137a083613909565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d5576137d4613a32565b5b828201905092915050565b60006137eb82613909565b91506137f683613909565b92508261380657613805613a61565b5b828204905092915050565b600061381c82613909565b915061382783613909565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138605761385f613a32565b5b828202905092915050565b600061387682613909565b915061388183613909565b92508282101561389457613893613a32565b5b828203905092915050565b60006138aa826138e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613940578082015181840152602081019050613925565b8381111561394f576000848401525b50505050565b6000600282049050600182168061396d57607f821691505b6020821081141561398157613980613a90565b5b50919050565b61399082613aee565b810181811067ffffffffffffffff821117156139af576139ae613abf565b5b80604052505050565b60006139c382613909565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f6576139f5613a32565b5b600182019050919050565b6000613a0c82613909565b9150613a1783613909565b925082613a2757613a26613a61565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a20544f4b454e20444f4553204e4f54204560008201527f5849535400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206c6f636b6564000000000000000000000000000000000000600082015250565b61411d8161389f565b811461412857600080fd5b50565b614134816138b1565b811461413f57600080fd5b50565b61414b816138bd565b811461415657600080fd5b50565b61416281613909565b811461416d57600080fd5b5056fea26469706673582212201ef24afb309f7a8be582ea287f077ca0915d168cdc5f061c655d62389d2e6e5564736f6c63430008040033

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.