ETH Price: $2,460.09 (+2.71%)

Token

Julian Mudd - Growing Pains (JMGP)
 

Overview

Max Total Supply

179 JMGP

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
levidowney.eth
Balance
1 JMGP
0x692e85f4585d7408d2a1ba1f8c428ffd294101f6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Julian Mudd wrote 10,000 1-of-1 versions of his debut single Growing Pains. Then he wrote code to mix / master / generate the songs and corresponding album arts in real time when you mint NFT. The JMGP NFT represents a 1-of-1 version of the song and album art.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GrowingPains

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : GrowingPains.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.3;

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

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

    Counters.Counter public _nextTokenId;

    // Core constants.
    string public constant NAME = "Julian Mudd - Growing Pains";
    string public constant SYMBOL = "JMGP";
    address public constant WITHDRAW_ADDRESS = 0x81933D6959dE2cc22E5073b3fb32dE108b6F02D9;

    // Minting constants.
    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public constant MAX_MINT_AMOUNT = 20;
    uint256 public constant RESERVED_AMOUNT = 10;

    // Core variables.
    string public baseURI = "https://gp.metadata.julianmudd.com/api/v1/tokens/";
    uint256 public price = 0.05 ether;
    bool public isMintEventActive = false;

    // Provenance (will be set once the minting event is finished).
    string public provenanceHash = "";

    // Events.
    event Mint(uint256 fromTokenId, uint256 amount, address owner);
    event Reserve(uint256 fromTokenId, uint256 amount, address owner);

    constructor() ERC721(NAME, SYMBOL) {
        _nextTokenId.increment();
    }

    // Mint.
    function mint(uint256 mintAmount) public payable {
        uint256 totalSupplyPreMint = totalSupply();

        require(isMintEventActive, "Mint event is not currently active");
        require(mintAmount <= MAX_MINT_AMOUNT, "Mint would exceed maximum token amount per mint");
        require((totalSupplyPreMint + mintAmount) <= MAX_SUPPLY, "Mint would exceed maximum supply");
        require(msg.value >= (mintAmount * price), "ETH value sent is not correct");

        uint i;
        for (i = 0; i < mintAmount; i++) {
            _safeMint(msg.sender, _nextTokenId.current());
            _nextTokenId.increment();
        }

        emit Mint(totalSupplyPreMint, mintAmount, msg.sender);
    }

    // Reserve.
    function reserve() public onlyOwner {
        uint256 totalSupplyPreReserve = totalSupply();

        require((totalSupplyPreReserve + RESERVED_AMOUNT) <= MAX_SUPPLY, "Reserve would exceed maximum supply");

        uint i;
        for (i = 0; i < RESERVED_AMOUNT; i++) {
            _safeMint(msg.sender, _nextTokenId.current());
            _nextTokenId.increment();
        }

        emit Reserve(totalSupplyPreReserve, RESERVED_AMOUNT, msg.sender);
    }

    // Total supply.
    function totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

    // Provenance (set it once the minting event is finished as we dynamically generate all the assets).
    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        provenanceHash = _provenanceHash;
    }

    // Price (in case it needs to be changed).
    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    // Base URI.
    // Overrides _baseURI in ERC721.
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    // Emergency measure, should be used only in case something happens with the metadata API.
    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    // Mint event status.
    function startMintEvent() public onlyOwner() {
        isMintEventActive = true;
    }

    function pauseMintEvent() public onlyOwner() {
        isMintEventActive = false;
    }

    // Withdraw.
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(WITHDRAW_ADDRESS).transfer(balance);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"Reserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nextTokenId","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEventActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","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":"pauseMintEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMintEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

6080604052604051806060016040528060318152602001620040fc60319139600890805190602001906200003592919062000253565b5066b1a2bc2ec500006009556000600a60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200008392919062000253565b503480156200009157600080fd5b506040518060400160405280601b81526020017f4a756c69616e204d756464202d2047726f77696e67205061696e7300000000008152506040518060400160405280600481526020017f4a4d47500000000000000000000000000000000000000000000000000000000081525081600090805190602001906200011692919062000253565b5080600190805190602001906200012f92919062000253565b50505062000152620001466200016f60201b60201c565b6200017760201b60201c565b6200016960076200023d60201b620019bb1760201c565b62000368565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620002619062000303565b90600052602060002090601f016020900481019282620002855760008555620002d1565b82601f10620002a057805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d0578251825591602001919060010190620002b3565b5b509050620002e09190620002e4565b5090565b5b80821115620002ff576000816000905550600101620002e5565b5090565b600060028204905060018216806200031c57607f821691505b6020821081141562000333576200033262000339565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d8480620003786000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d85f27401161006f578063d85f274014610720578063e985e9c51461074b578063f2fde38b14610788578063f76f8d78146107b1578063fa9b7018146107dc5761020f565b8063b88d4fde14610678578063c6ab67a3146106a1578063c87b56dd146106cc578063cd3293de146107095761020f565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063a3f4df7e1461064d5761020f565b8063715018a61461051c57806389dd772e146105335780638da5cb5b1461055e57806391b7f5ed146105895761020f565b806332cb6b0c1161019b5780634a60f6201161016a5780634a60f6201461042357806355f804b31461044e5780636352211e146104775780636c0360eb146104b457806370a08231146104df5761020f565b806332cb6b0c146103a15780633ccfd60b146103cc57806340c41a1a146103e357806342842e0e146103fa5761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806310969523146102f9578063122e04a81461032257806318160ddd1461034d57806323b872dd146103785761020f565b806301ffc9a7146102145780630396ad3d1461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af7565b610807565b6040516102489190612fed565b60405180910390f35b34801561025d57600080fd5b506102666108e9565b005b34801561027457600080fd5b5061027d610982565b60405161028a9190613008565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612b8a565b610a14565b6040516102c79190612f86565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612abb565b610a99565b005b34801561030557600080fd5b50610320600480360381019061031b9190612b49565b610bb1565b005b34801561032e57600080fd5b50610337610c47565b6040516103449190612f86565b60405180910390f35b34801561035957600080fd5b50610362610c5f565b60405161036f91906132ca565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a91906129b5565b610c7c565b005b3480156103ad57600080fd5b506103b6610cdc565b6040516103c391906132ca565b60405180910390f35b3480156103d857600080fd5b506103e1610ce2565b005b3480156103ef57600080fd5b506103f8610dc1565b005b34801561040657600080fd5b50610421600480360381019061041c91906129b5565b610e5a565b005b34801561042f57600080fd5b50610438610e7a565b60405161044591906132ca565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612b49565b610e86565b005b34801561048357600080fd5b5061049e60048036038101906104999190612b8a565b610f1c565b6040516104ab9190612f86565b60405180910390f35b3480156104c057600080fd5b506104c9610fce565b6040516104d69190613008565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190612950565b61105c565b60405161051391906132ca565b60405180910390f35b34801561052857600080fd5b50610531611114565b005b34801561053f57600080fd5b5061054861119c565b6040516105559190612fed565b60405180910390f35b34801561056a57600080fd5b506105736111af565b6040516105809190612f86565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612b8a565b6111d9565b005b3480156105be57600080fd5b506105c761125f565b6040516105d49190613008565b60405180910390f35b3480156105e957600080fd5b506105f26112f1565b6040516105ff91906132ca565b60405180910390f35b610622600480360381019061061d9190612b8a565b6112f7565b005b34801561063057600080fd5b5061064b60048036038101906106469190612a7f565b6114b1565b005b34801561065957600080fd5b506106626114c7565b60405161066f9190613008565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190612a04565b611500565b005b3480156106ad57600080fd5b506106b6611562565b6040516106c39190613008565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612b8a565b6115f0565b6040516107009190613008565b60405180910390f35b34801561071557600080fd5b5061071e611697565b005b34801561072c57600080fd5b506107356117ec565b60405161074291906132ca565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612979565b6117f1565b60405161077f9190612fed565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612950565b611885565b005b3480156107bd57600080fd5b506107c661197d565b6040516107d39190613008565b60405180910390f35b3480156107e857600080fd5b506107f16119b6565b6040516107fe91906132ca565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e257506108e1826119d1565b5b9050919050565b6108f1611a3b565b73ffffffffffffffffffffffffffffffffffffffff1661090f6111af565b73ffffffffffffffffffffffffffffffffffffffff1614610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c906131ea565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b606060008054610991906135b1565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd906135b1565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a1f82611a43565b610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a55906131ca565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa482610f1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061324a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b34611a3b565b73ffffffffffffffffffffffffffffffffffffffff161480610b635750610b6281610b5d611a3b565b6117f1565b5b610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b999061314a565b60405180910390fd5b610bac8383611aaf565b505050565b610bb9611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610bd76111af565b73ffffffffffffffffffffffffffffffffffffffff1614610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906131ea565b60405180910390fd5b80600b9080519060200190610c43929190612774565b5050565b7381933d6959de2cc22e5073b3fb32de108b6f02d981565b60006001610c6d6007611b68565b610c7791906134c7565b905090565b610c8d610c87611a3b565b82611b76565b610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc39061328a565b60405180910390fd5b610cd7838383611c54565b505050565b6103e881565b610cea611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610d086111af565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906131ea565b60405180910390fd5b60004790507381933d6959de2cc22e5073b3fb32de108b6f02d973ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dbd573d6000803e3d6000fd5b5050565b610dc9611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610de76111af565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906131ea565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b610e7583838360405180602001604052806000815250611500565b505050565b60078060000154905081565b610e8e611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610eac6111af565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef9906131ea565b60405180910390fd5b8060089080519060200190610f18929190612774565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061318a565b60405180910390fd5b80915050919050565b60088054610fdb906135b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611007906135b1565b80156110545780601f1061102957610100808354040283529160200191611054565b820191906000526020600020905b81548152906001019060200180831161103757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c49061316a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61111c611a3b565b73ffffffffffffffffffffffffffffffffffffffff1661113a6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611187906131ea565b60405180910390fd5b61119a6000611eb0565b565b600a60009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e1611a3b565b73ffffffffffffffffffffffffffffffffffffffff166111ff6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906131ea565b60405180910390fd5b8060098190555050565b60606001805461126e906135b1565b80601f016020809104026020016040519081016040528092919081815260200182805461129a906135b1565b80156112e75780601f106112bc576101008083540402835291602001916112e7565b820191906000526020600020905b8154815290600101906020018083116112ca57829003601f168201915b5050505050905090565b60095481565b6000611301610c5f565b9050600a60009054906101000a900460ff16611352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113499061304a565b60405180910390fd5b6014821115611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d9061302a565b60405180910390fd5b6103e882826113a591906133e6565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061326a565b60405180910390fd5b600954826113f4919061346d565b341015611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d906132aa565b60405180910390fd5b60005b82811015611471576114543361144f6007611b68565b611f76565b61145e60076119bb565b808061146990613614565b915050611439565b7f8334f87aeaf76e52b061d93ee968e51fdd3ad53ca04e80271249227997aab3a08284336040516114a4939291906132e5565b60405180910390a1505050565b6114c36114bc611a3b565b8383611f94565b5050565b6040518060400160405280601b81526020017f4a756c69616e204d756464202d2047726f77696e67205061696e73000000000081525081565b61151161150b611a3b565b83611b76565b611550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115479061328a565b60405180910390fd5b61155c84848484612101565b50505050565b600b805461156f906135b1565b80601f016020809104026020016040519081016040528092919081815260200182805461159b906135b1565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b505050505081565b60606115fb82611a43565b61163a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116319061322a565b60405180910390fd5b600061164461215d565b90506000815111611664576040518060200160405280600081525061168f565b8061166e846121ef565b60405160200161167f929190612f62565b6040516020818303038152906040525b915050919050565b61169f611a3b565b73ffffffffffffffffffffffffffffffffffffffff166116bd6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906131ea565b60405180910390fd5b600061171d610c5f565b90506103e8600a8261172f91906133e6565b1115611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906130ca565b60405180910390fd5b60005b600a8110156117ac5761178f3361178a6007611b68565b611f76565b61179960076119bb565b80806117a490613614565b915050611773565b7f961e3efd1b5cbacb47e6908ed2f9e8e22e8c7ab2f89256411e5b1068c718348f82600a336040516117e0939291906132e5565b60405180910390a15050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188d611a3b565b73ffffffffffffffffffffffffffffffffffffffff166118ab6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f8906131ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119689061308a565b60405180910390fd5b61197a81611eb0565b50565b6040518060400160405280600481526020017f4a4d47500000000000000000000000000000000000000000000000000000000081525081565b601481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b2283610f1c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611b8182611a43565b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb79061312a565b60405180910390fd5b6000611bcb83610f1c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c3a57508373ffffffffffffffffffffffffffffffffffffffff16611c2284610a14565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c4b5750611c4a81856117f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7482610f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc19061320a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d31906130ea565b60405180910390fd5b611d4583838361239c565b611d50600082611aaf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da091906134c7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df791906133e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f908282604051806020016040528060008152506123a1565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061310a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120f49190612fed565b60405180910390a3505050565b61210c848484611c54565b612118848484846123fc565b612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e9061306a565b60405180910390fd5b50505050565b60606008805461216c906135b1565b80601f0160208091040260200160405190810160405280929190818152602001828054612198906135b1565b80156121e55780601f106121ba576101008083540402835291602001916121e5565b820191906000526020600020905b8154815290600101906020018083116121c857829003601f168201915b5050505050905090565b60606000821415612237576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612397565b600082905060005b6000821461226957808061225290613614565b915050600a82612262919061343c565b915061223f565b60008167ffffffffffffffff8111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd5781602001600182028036833780820191505090505b5090505b60008514612390576001826122f691906134c7565b9150600a85612305919061365d565b603061231191906133e6565b60f81b81838151811061234d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612389919061343c565b94506122e1565b8093505050505b919050565b505050565b6123ab8383612593565b6123b860008484846123fc565b6123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee9061306a565b60405180910390fd5b505050565b600061241d8473ffffffffffffffffffffffffffffffffffffffff16612761565b15612586578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612446611a3b565b8786866040518563ffffffff1660e01b81526004016124689493929190612fa1565b602060405180830381600087803b15801561248257600080fd5b505af19250505080156124b357506040513d601f19601f820116820180604052508101906124b09190612b20565b60015b612536573d80600081146124e3576040519150601f19603f3d011682016040523d82523d6000602084013e6124e8565b606091505b5060008151141561252e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125259061306a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061258b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fa906131aa565b60405180910390fd5b61260c81611a43565b1561264c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612643906130aa565b60405180910390fd5b6126586000838361239c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a891906133e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612780906135b1565b90600052602060002090601f0160209004810192826127a257600085556127e9565b82601f106127bb57805160ff19168380011785556127e9565b828001600101855582156127e9579182015b828111156127e85782518255916020019190600101906127cd565b5b5090506127f691906127fa565b5090565b5b808211156128135760008160009055506001016127fb565b5090565b600061282a61282584613341565b61331c565b90508281526020810184848401111561284257600080fd5b61284d84828561356f565b509392505050565b600061286861286384613372565b61331c565b90508281526020810184848401111561288057600080fd5b61288b84828561356f565b509392505050565b6000813590506128a281613cf2565b92915050565b6000813590506128b781613d09565b92915050565b6000813590506128cc81613d20565b92915050565b6000815190506128e181613d20565b92915050565b600082601f8301126128f857600080fd5b8135612908848260208601612817565b91505092915050565b600082601f83011261292257600080fd5b8135612932848260208601612855565b91505092915050565b60008135905061294a81613d37565b92915050565b60006020828403121561296257600080fd5b600061297084828501612893565b91505092915050565b6000806040838503121561298c57600080fd5b600061299a85828601612893565b92505060206129ab85828601612893565b9150509250929050565b6000806000606084860312156129ca57600080fd5b60006129d886828701612893565b93505060206129e986828701612893565b92505060406129fa8682870161293b565b9150509250925092565b60008060008060808587031215612a1a57600080fd5b6000612a2887828801612893565b9450506020612a3987828801612893565b9350506040612a4a8782880161293b565b925050606085013567ffffffffffffffff811115612a6757600080fd5b612a73878288016128e7565b91505092959194509250565b60008060408385031215612a9257600080fd5b6000612aa085828601612893565b9250506020612ab1858286016128a8565b9150509250929050565b60008060408385031215612ace57600080fd5b6000612adc85828601612893565b9250506020612aed8582860161293b565b9150509250929050565b600060208284031215612b0957600080fd5b6000612b17848285016128bd565b91505092915050565b600060208284031215612b3257600080fd5b6000612b40848285016128d2565b91505092915050565b600060208284031215612b5b57600080fd5b600082013567ffffffffffffffff811115612b7557600080fd5b612b8184828501612911565b91505092915050565b600060208284031215612b9c57600080fd5b6000612baa8482850161293b565b91505092915050565b612bbc816134fb565b82525050565b612bcb8161350d565b82525050565b6000612bdc826133a3565b612be681856133b9565b9350612bf681856020860161357e565b612bff8161374a565b840191505092915050565b6000612c15826133ae565b612c1f81856133ca565b9350612c2f81856020860161357e565b612c388161374a565b840191505092915050565b6000612c4e826133ae565b612c5881856133db565b9350612c6881856020860161357e565b80840191505092915050565b6000612c81602f836133ca565b9150612c8c8261375b565b604082019050919050565b6000612ca46022836133ca565b9150612caf826137aa565b604082019050919050565b6000612cc76032836133ca565b9150612cd2826137f9565b604082019050919050565b6000612cea6026836133ca565b9150612cf582613848565b604082019050919050565b6000612d0d601c836133ca565b9150612d1882613897565b602082019050919050565b6000612d306023836133ca565b9150612d3b826138c0565b604082019050919050565b6000612d536024836133ca565b9150612d5e8261390f565b604082019050919050565b6000612d766019836133ca565b9150612d818261395e565b602082019050919050565b6000612d99602c836133ca565b9150612da482613987565b604082019050919050565b6000612dbc6038836133ca565b9150612dc7826139d6565b604082019050919050565b6000612ddf602a836133ca565b9150612dea82613a25565b604082019050919050565b6000612e026029836133ca565b9150612e0d82613a74565b604082019050919050565b6000612e256020836133ca565b9150612e3082613ac3565b602082019050919050565b6000612e48602c836133ca565b9150612e5382613aec565b604082019050919050565b6000612e6b6020836133ca565b9150612e7682613b3b565b602082019050919050565b6000612e8e6029836133ca565b9150612e9982613b64565b604082019050919050565b6000612eb1602f836133ca565b9150612ebc82613bb3565b604082019050919050565b6000612ed46021836133ca565b9150612edf82613c02565b604082019050919050565b6000612ef76020836133ca565b9150612f0282613c51565b602082019050919050565b6000612f1a6031836133ca565b9150612f2582613c7a565b604082019050919050565b6000612f3d601d836133ca565b9150612f4882613cc9565b602082019050919050565b612f5c81613565565b82525050565b6000612f6e8285612c43565b9150612f7a8284612c43565b91508190509392505050565b6000602082019050612f9b6000830184612bb3565b92915050565b6000608082019050612fb66000830187612bb3565b612fc36020830186612bb3565b612fd06040830185612f53565b8181036060830152612fe28184612bd1565b905095945050505050565b60006020820190506130026000830184612bc2565b92915050565b600060208201905081810360008301526130228184612c0a565b905092915050565b6000602082019050818103600083015261304381612c74565b9050919050565b6000602082019050818103600083015261306381612c97565b9050919050565b6000602082019050818103600083015261308381612cba565b9050919050565b600060208201905081810360008301526130a381612cdd565b9050919050565b600060208201905081810360008301526130c381612d00565b9050919050565b600060208201905081810360008301526130e381612d23565b9050919050565b6000602082019050818103600083015261310381612d46565b9050919050565b6000602082019050818103600083015261312381612d69565b9050919050565b6000602082019050818103600083015261314381612d8c565b9050919050565b6000602082019050818103600083015261316381612daf565b9050919050565b6000602082019050818103600083015261318381612dd2565b9050919050565b600060208201905081810360008301526131a381612df5565b9050919050565b600060208201905081810360008301526131c381612e18565b9050919050565b600060208201905081810360008301526131e381612e3b565b9050919050565b6000602082019050818103600083015261320381612e5e565b9050919050565b6000602082019050818103600083015261322381612e81565b9050919050565b6000602082019050818103600083015261324381612ea4565b9050919050565b6000602082019050818103600083015261326381612ec7565b9050919050565b6000602082019050818103600083015261328381612eea565b9050919050565b600060208201905081810360008301526132a381612f0d565b9050919050565b600060208201905081810360008301526132c381612f30565b9050919050565b60006020820190506132df6000830184612f53565b92915050565b60006060820190506132fa6000830186612f53565b6133076020830185612f53565b6133146040830184612bb3565b949350505050565b6000613326613337565b905061333282826135e3565b919050565b6000604051905090565b600067ffffffffffffffff82111561335c5761335b61371b565b5b6133658261374a565b9050602081019050919050565b600067ffffffffffffffff82111561338d5761338c61371b565b5b6133968261374a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133f182613565565b91506133fc83613565565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134315761343061368e565b5b828201905092915050565b600061344782613565565b915061345283613565565b925082613462576134616136bd565b5b828204905092915050565b600061347882613565565b915061348383613565565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134bc576134bb61368e565b5b828202905092915050565b60006134d282613565565b91506134dd83613565565b9250828210156134f0576134ef61368e565b5b828203905092915050565b600061350682613545565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561359c578082015181840152602081019050613581565b838111156135ab576000848401525b50505050565b600060028204905060018216806135c957607f821691505b602082108114156135dd576135dc6136ec565b5b50919050565b6135ec8261374a565b810181811067ffffffffffffffff8211171561360b5761360a61371b565b5b80604052505050565b600061361f82613565565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136525761365161368e565b5b600182019050919050565b600061366882613565565b915061367383613565565b925082613683576136826136bd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e7420776f756c6420657863656564206d6178696d756d20746f6b656e2060008201527f616d6f756e7420706572206d696e740000000000000000000000000000000000602082015250565b7f4d696e74206576656e74206973206e6f742063757272656e746c79206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5265736572766520776f756c6420657863656564206d6178696d756d2073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d6178696d756d20737570706c79600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4554482076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b613cfb816134fb565b8114613d0657600080fd5b50565b613d128161350d565b8114613d1d57600080fd5b50565b613d2981613519565b8114613d3457600080fd5b50565b613d4081613565565b8114613d4b57600080fd5b5056fea264697066735822122096d69294994582efdef02ef15887e57c43eb0cb845e5ffca61d0431db07e833464736f6c6343000804003368747470733a2f2f67702e6d657461646174612e6a756c69616e6d7564642e636f6d2f6170692f76312f746f6b656e732f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d85f27401161006f578063d85f274014610720578063e985e9c51461074b578063f2fde38b14610788578063f76f8d78146107b1578063fa9b7018146107dc5761020f565b8063b88d4fde14610678578063c6ab67a3146106a1578063c87b56dd146106cc578063cd3293de146107095761020f565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063a3f4df7e1461064d5761020f565b8063715018a61461051c57806389dd772e146105335780638da5cb5b1461055e57806391b7f5ed146105895761020f565b806332cb6b0c1161019b5780634a60f6201161016a5780634a60f6201461042357806355f804b31461044e5780636352211e146104775780636c0360eb146104b457806370a08231146104df5761020f565b806332cb6b0c146103a15780633ccfd60b146103cc57806340c41a1a146103e357806342842e0e146103fa5761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806310969523146102f9578063122e04a81461032257806318160ddd1461034d57806323b872dd146103785761020f565b806301ffc9a7146102145780630396ad3d1461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af7565b610807565b6040516102489190612fed565b60405180910390f35b34801561025d57600080fd5b506102666108e9565b005b34801561027457600080fd5b5061027d610982565b60405161028a9190613008565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612b8a565b610a14565b6040516102c79190612f86565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612abb565b610a99565b005b34801561030557600080fd5b50610320600480360381019061031b9190612b49565b610bb1565b005b34801561032e57600080fd5b50610337610c47565b6040516103449190612f86565b60405180910390f35b34801561035957600080fd5b50610362610c5f565b60405161036f91906132ca565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a91906129b5565b610c7c565b005b3480156103ad57600080fd5b506103b6610cdc565b6040516103c391906132ca565b60405180910390f35b3480156103d857600080fd5b506103e1610ce2565b005b3480156103ef57600080fd5b506103f8610dc1565b005b34801561040657600080fd5b50610421600480360381019061041c91906129b5565b610e5a565b005b34801561042f57600080fd5b50610438610e7a565b60405161044591906132ca565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612b49565b610e86565b005b34801561048357600080fd5b5061049e60048036038101906104999190612b8a565b610f1c565b6040516104ab9190612f86565b60405180910390f35b3480156104c057600080fd5b506104c9610fce565b6040516104d69190613008565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190612950565b61105c565b60405161051391906132ca565b60405180910390f35b34801561052857600080fd5b50610531611114565b005b34801561053f57600080fd5b5061054861119c565b6040516105559190612fed565b60405180910390f35b34801561056a57600080fd5b506105736111af565b6040516105809190612f86565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612b8a565b6111d9565b005b3480156105be57600080fd5b506105c761125f565b6040516105d49190613008565b60405180910390f35b3480156105e957600080fd5b506105f26112f1565b6040516105ff91906132ca565b60405180910390f35b610622600480360381019061061d9190612b8a565b6112f7565b005b34801561063057600080fd5b5061064b60048036038101906106469190612a7f565b6114b1565b005b34801561065957600080fd5b506106626114c7565b60405161066f9190613008565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190612a04565b611500565b005b3480156106ad57600080fd5b506106b6611562565b6040516106c39190613008565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612b8a565b6115f0565b6040516107009190613008565b60405180910390f35b34801561071557600080fd5b5061071e611697565b005b34801561072c57600080fd5b506107356117ec565b60405161074291906132ca565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612979565b6117f1565b60405161077f9190612fed565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612950565b611885565b005b3480156107bd57600080fd5b506107c661197d565b6040516107d39190613008565b60405180910390f35b3480156107e857600080fd5b506107f16119b6565b6040516107fe91906132ca565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e257506108e1826119d1565b5b9050919050565b6108f1611a3b565b73ffffffffffffffffffffffffffffffffffffffff1661090f6111af565b73ffffffffffffffffffffffffffffffffffffffff1614610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c906131ea565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b606060008054610991906135b1565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd906135b1565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a1f82611a43565b610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a55906131ca565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa482610f1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061324a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b34611a3b565b73ffffffffffffffffffffffffffffffffffffffff161480610b635750610b6281610b5d611a3b565b6117f1565b5b610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b999061314a565b60405180910390fd5b610bac8383611aaf565b505050565b610bb9611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610bd76111af565b73ffffffffffffffffffffffffffffffffffffffff1614610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906131ea565b60405180910390fd5b80600b9080519060200190610c43929190612774565b5050565b7381933d6959de2cc22e5073b3fb32de108b6f02d981565b60006001610c6d6007611b68565b610c7791906134c7565b905090565b610c8d610c87611a3b565b82611b76565b610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc39061328a565b60405180910390fd5b610cd7838383611c54565b505050565b6103e881565b610cea611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610d086111af565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906131ea565b60405180910390fd5b60004790507381933d6959de2cc22e5073b3fb32de108b6f02d973ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dbd573d6000803e3d6000fd5b5050565b610dc9611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610de76111af565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906131ea565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b610e7583838360405180602001604052806000815250611500565b505050565b60078060000154905081565b610e8e611a3b565b73ffffffffffffffffffffffffffffffffffffffff16610eac6111af565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef9906131ea565b60405180910390fd5b8060089080519060200190610f18929190612774565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061318a565b60405180910390fd5b80915050919050565b60088054610fdb906135b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611007906135b1565b80156110545780601f1061102957610100808354040283529160200191611054565b820191906000526020600020905b81548152906001019060200180831161103757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c49061316a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61111c611a3b565b73ffffffffffffffffffffffffffffffffffffffff1661113a6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611187906131ea565b60405180910390fd5b61119a6000611eb0565b565b600a60009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e1611a3b565b73ffffffffffffffffffffffffffffffffffffffff166111ff6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906131ea565b60405180910390fd5b8060098190555050565b60606001805461126e906135b1565b80601f016020809104026020016040519081016040528092919081815260200182805461129a906135b1565b80156112e75780601f106112bc576101008083540402835291602001916112e7565b820191906000526020600020905b8154815290600101906020018083116112ca57829003601f168201915b5050505050905090565b60095481565b6000611301610c5f565b9050600a60009054906101000a900460ff16611352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113499061304a565b60405180910390fd5b6014821115611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d9061302a565b60405180910390fd5b6103e882826113a591906133e6565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061326a565b60405180910390fd5b600954826113f4919061346d565b341015611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d906132aa565b60405180910390fd5b60005b82811015611471576114543361144f6007611b68565b611f76565b61145e60076119bb565b808061146990613614565b915050611439565b7f8334f87aeaf76e52b061d93ee968e51fdd3ad53ca04e80271249227997aab3a08284336040516114a4939291906132e5565b60405180910390a1505050565b6114c36114bc611a3b565b8383611f94565b5050565b6040518060400160405280601b81526020017f4a756c69616e204d756464202d2047726f77696e67205061696e73000000000081525081565b61151161150b611a3b565b83611b76565b611550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115479061328a565b60405180910390fd5b61155c84848484612101565b50505050565b600b805461156f906135b1565b80601f016020809104026020016040519081016040528092919081815260200182805461159b906135b1565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b505050505081565b60606115fb82611a43565b61163a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116319061322a565b60405180910390fd5b600061164461215d565b90506000815111611664576040518060200160405280600081525061168f565b8061166e846121ef565b60405160200161167f929190612f62565b6040516020818303038152906040525b915050919050565b61169f611a3b565b73ffffffffffffffffffffffffffffffffffffffff166116bd6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906131ea565b60405180910390fd5b600061171d610c5f565b90506103e8600a8261172f91906133e6565b1115611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906130ca565b60405180910390fd5b60005b600a8110156117ac5761178f3361178a6007611b68565b611f76565b61179960076119bb565b80806117a490613614565b915050611773565b7f961e3efd1b5cbacb47e6908ed2f9e8e22e8c7ab2f89256411e5b1068c718348f82600a336040516117e0939291906132e5565b60405180910390a15050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188d611a3b565b73ffffffffffffffffffffffffffffffffffffffff166118ab6111af565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f8906131ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119689061308a565b60405180910390fd5b61197a81611eb0565b50565b6040518060400160405280600481526020017f4a4d47500000000000000000000000000000000000000000000000000000000081525081565b601481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b2283610f1c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611b8182611a43565b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb79061312a565b60405180910390fd5b6000611bcb83610f1c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c3a57508373ffffffffffffffffffffffffffffffffffffffff16611c2284610a14565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c4b5750611c4a81856117f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7482610f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc19061320a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d31906130ea565b60405180910390fd5b611d4583838361239c565b611d50600082611aaf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da091906134c7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df791906133e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f908282604051806020016040528060008152506123a1565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061310a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120f49190612fed565b60405180910390a3505050565b61210c848484611c54565b612118848484846123fc565b612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e9061306a565b60405180910390fd5b50505050565b60606008805461216c906135b1565b80601f0160208091040260200160405190810160405280929190818152602001828054612198906135b1565b80156121e55780601f106121ba576101008083540402835291602001916121e5565b820191906000526020600020905b8154815290600101906020018083116121c857829003601f168201915b5050505050905090565b60606000821415612237576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612397565b600082905060005b6000821461226957808061225290613614565b915050600a82612262919061343c565b915061223f565b60008167ffffffffffffffff8111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd5781602001600182028036833780820191505090505b5090505b60008514612390576001826122f691906134c7565b9150600a85612305919061365d565b603061231191906133e6565b60f81b81838151811061234d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612389919061343c565b94506122e1565b8093505050505b919050565b505050565b6123ab8383612593565b6123b860008484846123fc565b6123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee9061306a565b60405180910390fd5b505050565b600061241d8473ffffffffffffffffffffffffffffffffffffffff16612761565b15612586578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612446611a3b565b8786866040518563ffffffff1660e01b81526004016124689493929190612fa1565b602060405180830381600087803b15801561248257600080fd5b505af19250505080156124b357506040513d601f19601f820116820180604052508101906124b09190612b20565b60015b612536573d80600081146124e3576040519150601f19603f3d011682016040523d82523d6000602084013e6124e8565b606091505b5060008151141561252e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125259061306a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061258b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fa906131aa565b60405180910390fd5b61260c81611a43565b1561264c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612643906130aa565b60405180910390fd5b6126586000838361239c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a891906133e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612780906135b1565b90600052602060002090601f0160209004810192826127a257600085556127e9565b82601f106127bb57805160ff19168380011785556127e9565b828001600101855582156127e9579182015b828111156127e85782518255916020019190600101906127cd565b5b5090506127f691906127fa565b5090565b5b808211156128135760008160009055506001016127fb565b5090565b600061282a61282584613341565b61331c565b90508281526020810184848401111561284257600080fd5b61284d84828561356f565b509392505050565b600061286861286384613372565b61331c565b90508281526020810184848401111561288057600080fd5b61288b84828561356f565b509392505050565b6000813590506128a281613cf2565b92915050565b6000813590506128b781613d09565b92915050565b6000813590506128cc81613d20565b92915050565b6000815190506128e181613d20565b92915050565b600082601f8301126128f857600080fd5b8135612908848260208601612817565b91505092915050565b600082601f83011261292257600080fd5b8135612932848260208601612855565b91505092915050565b60008135905061294a81613d37565b92915050565b60006020828403121561296257600080fd5b600061297084828501612893565b91505092915050565b6000806040838503121561298c57600080fd5b600061299a85828601612893565b92505060206129ab85828601612893565b9150509250929050565b6000806000606084860312156129ca57600080fd5b60006129d886828701612893565b93505060206129e986828701612893565b92505060406129fa8682870161293b565b9150509250925092565b60008060008060808587031215612a1a57600080fd5b6000612a2887828801612893565b9450506020612a3987828801612893565b9350506040612a4a8782880161293b565b925050606085013567ffffffffffffffff811115612a6757600080fd5b612a73878288016128e7565b91505092959194509250565b60008060408385031215612a9257600080fd5b6000612aa085828601612893565b9250506020612ab1858286016128a8565b9150509250929050565b60008060408385031215612ace57600080fd5b6000612adc85828601612893565b9250506020612aed8582860161293b565b9150509250929050565b600060208284031215612b0957600080fd5b6000612b17848285016128bd565b91505092915050565b600060208284031215612b3257600080fd5b6000612b40848285016128d2565b91505092915050565b600060208284031215612b5b57600080fd5b600082013567ffffffffffffffff811115612b7557600080fd5b612b8184828501612911565b91505092915050565b600060208284031215612b9c57600080fd5b6000612baa8482850161293b565b91505092915050565b612bbc816134fb565b82525050565b612bcb8161350d565b82525050565b6000612bdc826133a3565b612be681856133b9565b9350612bf681856020860161357e565b612bff8161374a565b840191505092915050565b6000612c15826133ae565b612c1f81856133ca565b9350612c2f81856020860161357e565b612c388161374a565b840191505092915050565b6000612c4e826133ae565b612c5881856133db565b9350612c6881856020860161357e565b80840191505092915050565b6000612c81602f836133ca565b9150612c8c8261375b565b604082019050919050565b6000612ca46022836133ca565b9150612caf826137aa565b604082019050919050565b6000612cc76032836133ca565b9150612cd2826137f9565b604082019050919050565b6000612cea6026836133ca565b9150612cf582613848565b604082019050919050565b6000612d0d601c836133ca565b9150612d1882613897565b602082019050919050565b6000612d306023836133ca565b9150612d3b826138c0565b604082019050919050565b6000612d536024836133ca565b9150612d5e8261390f565b604082019050919050565b6000612d766019836133ca565b9150612d818261395e565b602082019050919050565b6000612d99602c836133ca565b9150612da482613987565b604082019050919050565b6000612dbc6038836133ca565b9150612dc7826139d6565b604082019050919050565b6000612ddf602a836133ca565b9150612dea82613a25565b604082019050919050565b6000612e026029836133ca565b9150612e0d82613a74565b604082019050919050565b6000612e256020836133ca565b9150612e3082613ac3565b602082019050919050565b6000612e48602c836133ca565b9150612e5382613aec565b604082019050919050565b6000612e6b6020836133ca565b9150612e7682613b3b565b602082019050919050565b6000612e8e6029836133ca565b9150612e9982613b64565b604082019050919050565b6000612eb1602f836133ca565b9150612ebc82613bb3565b604082019050919050565b6000612ed46021836133ca565b9150612edf82613c02565b604082019050919050565b6000612ef76020836133ca565b9150612f0282613c51565b602082019050919050565b6000612f1a6031836133ca565b9150612f2582613c7a565b604082019050919050565b6000612f3d601d836133ca565b9150612f4882613cc9565b602082019050919050565b612f5c81613565565b82525050565b6000612f6e8285612c43565b9150612f7a8284612c43565b91508190509392505050565b6000602082019050612f9b6000830184612bb3565b92915050565b6000608082019050612fb66000830187612bb3565b612fc36020830186612bb3565b612fd06040830185612f53565b8181036060830152612fe28184612bd1565b905095945050505050565b60006020820190506130026000830184612bc2565b92915050565b600060208201905081810360008301526130228184612c0a565b905092915050565b6000602082019050818103600083015261304381612c74565b9050919050565b6000602082019050818103600083015261306381612c97565b9050919050565b6000602082019050818103600083015261308381612cba565b9050919050565b600060208201905081810360008301526130a381612cdd565b9050919050565b600060208201905081810360008301526130c381612d00565b9050919050565b600060208201905081810360008301526130e381612d23565b9050919050565b6000602082019050818103600083015261310381612d46565b9050919050565b6000602082019050818103600083015261312381612d69565b9050919050565b6000602082019050818103600083015261314381612d8c565b9050919050565b6000602082019050818103600083015261316381612daf565b9050919050565b6000602082019050818103600083015261318381612dd2565b9050919050565b600060208201905081810360008301526131a381612df5565b9050919050565b600060208201905081810360008301526131c381612e18565b9050919050565b600060208201905081810360008301526131e381612e3b565b9050919050565b6000602082019050818103600083015261320381612e5e565b9050919050565b6000602082019050818103600083015261322381612e81565b9050919050565b6000602082019050818103600083015261324381612ea4565b9050919050565b6000602082019050818103600083015261326381612ec7565b9050919050565b6000602082019050818103600083015261328381612eea565b9050919050565b600060208201905081810360008301526132a381612f0d565b9050919050565b600060208201905081810360008301526132c381612f30565b9050919050565b60006020820190506132df6000830184612f53565b92915050565b60006060820190506132fa6000830186612f53565b6133076020830185612f53565b6133146040830184612bb3565b949350505050565b6000613326613337565b905061333282826135e3565b919050565b6000604051905090565b600067ffffffffffffffff82111561335c5761335b61371b565b5b6133658261374a565b9050602081019050919050565b600067ffffffffffffffff82111561338d5761338c61371b565b5b6133968261374a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133f182613565565b91506133fc83613565565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134315761343061368e565b5b828201905092915050565b600061344782613565565b915061345283613565565b925082613462576134616136bd565b5b828204905092915050565b600061347882613565565b915061348383613565565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134bc576134bb61368e565b5b828202905092915050565b60006134d282613565565b91506134dd83613565565b9250828210156134f0576134ef61368e565b5b828203905092915050565b600061350682613545565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561359c578082015181840152602081019050613581565b838111156135ab576000848401525b50505050565b600060028204905060018216806135c957607f821691505b602082108114156135dd576135dc6136ec565b5b50919050565b6135ec8261374a565b810181811067ffffffffffffffff8211171561360b5761360a61371b565b5b80604052505050565b600061361f82613565565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136525761365161368e565b5b600182019050919050565b600061366882613565565b915061367383613565565b925082613683576136826136bd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e7420776f756c6420657863656564206d6178696d756d20746f6b656e2060008201527f616d6f756e7420706572206d696e740000000000000000000000000000000000602082015250565b7f4d696e74206576656e74206973206e6f742063757272656e746c79206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5265736572766520776f756c6420657863656564206d6178696d756d2073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d6178696d756d20737570706c79600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4554482076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b613cfb816134fb565b8114613d0657600080fd5b50565b613d128161350d565b8114613d1d57600080fd5b50565b613d2981613519565b8114613d3457600080fd5b50565b613d4081613565565b8114613d4b57600080fd5b5056fea264697066735822122096d69294994582efdef02ef15887e57c43eb0cb845e5ffca61d0431db07e833464736f6c63430008040033

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.