ETH Price: $2,405.54 (+2.84%)

Token

FakeThoughts (FAKETHOUGHTS)
 

Overview

Max Total Supply

120 FAKETHOUGHTS

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FAKETHOUGHTS
0x90F99593761048F38E1B05fFC9807C50260ff578
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FakeThoughts

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : FakeThoughts.sol
// SPDX-License-Identifier: MIT
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 FakeThoughts is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

	// baseURI
    string private baseURI;

    // Mint
    uint256 public constant MAX_SUPPLY = 1000;
    bool public saleIsActive = false;
    Counters.Counter public _nextTokenId;

    // Withdraw addresses
    address WITHDRAW_ADDRESS = 0x6907495b99FF6270B6de708c04f3DaCAedD40A40;

    /*
     *  Constructor
     */
    constructor(string memory newBaseURI) ERC721("FakeThoughts", "FAKETHOUGHTS")  {
        _nextTokenId.increment();
        setBaseURI(newBaseURI);
    }

    /*
     *  Minting
     */
    function mint() public payable {
        uint256 supply = totalSupply();
        require( saleIsActive, "Sale is not currently active" );
        require( supply < MAX_SUPPLY, "Purchase would exceed maximum supply" );
        require( msg.value >= getPrice(supply), "Value sent is not correct" );
        _safeMint(msg.sender, _nextTokenId.current() - 1);
        _nextTokenId.increment();
    }

    /*
     *  Current Supply
     */
    function totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    /*
     *  Price
     */
    function getPrice(uint256 _tokenId) public pure returns (uint256) {
        return ((_tokenId / 100) + 1) * 0.1 ether;
    }

    /*
     *  Sale state
     */
    function pauseSale() public onlyOwner() {
        require(saleIsActive == true, "Sale is already paused");
        saleIsActive = false;
    }

    function startSale() public onlyOwner() {
        require(saleIsActive == false, "Sale has already started");
        saleIsActive = true;
    }

    /*
     *  Tokens at address
     */
    function walletOfOwner(address _address) public view returns (uint256[] memory) {
        uint256 balance = balanceOf(_address);
        uint256[] memory tokenIds = new uint256[](balance);
        uint256 index;
        uint256 loopThrough = totalSupply();
        for (uint256 i; i < loopThrough; i++) {
            if (ownerOf(i) == _address) {
                tokenIds[index] = i;
                index++;
            }
        }
        return tokenIds;
    }

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

}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

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

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

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

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":[{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"startSale","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff021916908315150217905550736907495b99ff6270b6de708c04f3dacaedd40a40600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b5060405162004032380380620040328339818101604052810190620000a7919062000471565b6040518060400160405280600c81526020017f46616b6554686f756768747300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f46414b4554484f5547485453000000000000000000000000000000000000000081525081600090805190602001906200012b9291906200034f565b508060019080519060200190620001449291906200034f565b505050620001676200015b6200019660201b60201c565b6200019e60201b60201c565b6200017e60096200026460201b620016c01760201c565b6200018f816200027a60201b60201c565b50620006a9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b6200028a6200019660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b06200032560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030090620004dd565b60405180910390fd5b8060079080519060200190620003219291906200034f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035d90620005a5565b90600052602060002090601f016020900481019282620003815760008555620003cd565b82601f106200039c57805160ff1916838001178555620003cd565b82800160010185558215620003cd579182015b82811115620003cc578251825591602001919060010190620003af565b5b509050620003dc9190620003e0565b5090565b5b80821115620003fb576000816000905550600101620003e1565b5090565b600062000416620004108462000528565b620004ff565b9050828152602081018484840111156200042f57600080fd5b6200043c8482856200056f565b509392505050565b600082601f8301126200045657600080fd5b815162000468848260208601620003ff565b91505092915050565b6000602082840312156200048457600080fd5b600082015167ffffffffffffffff8111156200049f57600080fd5b620004ad8482850162000444565b91505092915050565b6000620004c56020836200055e565b9150620004d28262000680565b602082019050919050565b60006020820190508181036000830152620004f881620004b6565b9050919050565b60006200050b6200051e565b9050620005198282620005db565b919050565b6000604051905090565b600067ffffffffffffffff82111562000546576200054562000640565b5b62000551826200066f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058f57808201518184015260208101905062000572565b838111156200059f576000848401525b50505050565b60006002820490506001821680620005be57607f821691505b60208210811415620005d557620005d462000611565b5b50919050565b620005e6826200066f565b810181811067ffffffffffffffff8211171562000608576200060762000640565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61397980620006b96000396000f3fe60806040526004361061019c5760003560e01c806355f804b3116100ec578063b66a0e5d1161008a578063e757223011610064578063e75722301461056d578063e985e9c5146105aa578063eb8d2444146105e7578063f2fde38b146106125761019c565b8063b66a0e5d146104f0578063b88d4fde14610507578063c87b56dd146105305761019c565b8063715018a6116100c6578063715018a61461045a5780638da5cb5b1461047157806395d89b411461049c578063a22cb465146104c75761019c565b806355f804b3146103b75780636352211e146103e057806370a082311461041d5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030f578063438b6300146103385780634a60f6201461037557806355367ba9146103a05761019c565b806323b872dd146102a457806332cb6b0c146102cd5780633ccfd60b146102f85761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026f57806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c3919061268f565b61063b565b6040516101d59190612c2c565b60405180910390f35b3480156101ea57600080fd5b506101f361071d565b6040516102009190612c47565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612722565b6107af565b60405161023d9190612ba3565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612653565b610834565b005b61027761094c565b005b34801561028557600080fd5b5061028e610a62565b60405161029b9190612f09565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c6919061254d565b610a7f565b005b3480156102d957600080fd5b506102e2610adf565b6040516102ef9190612f09565b60405180910390f35b34801561030457600080fd5b5061030d610ae5565b005b34801561031b57600080fd5b506103366004803603810190610331919061254d565b610bc9565b005b34801561034457600080fd5b5061035f600480360381019061035a91906124e8565b610be9565b60405161036c9190612c0a565b60405180910390f35b34801561038157600080fd5b5061038a610d34565b6040516103979190612f09565b60405180910390f35b3480156103ac57600080fd5b506103b5610d40565b005b3480156103c357600080fd5b506103de60048036038101906103d991906126e1565b610e2f565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612722565b610ec5565b6040516104149190612ba3565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906124e8565b610f77565b6040516104519190612f09565b60405180910390f35b34801561046657600080fd5b5061046f61102f565b005b34801561047d57600080fd5b506104866110b7565b6040516104939190612ba3565b60405180910390f35b3480156104a857600080fd5b506104b16110e1565b6040516104be9190612c47565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612617565b611173565b005b3480156104fc57600080fd5b506105056112f4565b005b34801561051357600080fd5b5061052e6004803603810190610529919061259c565b6113e3565b005b34801561053c57600080fd5b5061055760048036038101906105529190612722565b611445565b6040516105649190612c47565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190612722565b6114ec565b6040516105a19190612f09565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612511565b611521565b6040516105de9190612c2c565b60405180910390f35b3480156105f357600080fd5b506105fc6115b5565b6040516106099190612c2c565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906124e8565b6115c8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107165750610715826116d6565b5b9050919050565b60606000805461072c906131f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610758906131f2565b80156107a55780601f1061077a576101008083540402835291602001916107a5565b820191906000526020600020905b81548152906001019060200180831161078857829003601f168201915b5050505050905090565b60006107ba82611740565b6107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f090612e09565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083f82610ec5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790612ea9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108cf6117ac565b73ffffffffffffffffffffffffffffffffffffffff1614806108fe57506108fd816108f86117ac565b611521565b5b61093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490612d29565b60405180910390fd5b61094783836117b4565b505050565b6000610956610a62565b9050600860009054906101000a900460ff166109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e90612ec9565b60405180910390fd5b6103e881106109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290612e29565b60405180910390fd5b6109f4816114ec565b341015610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612da9565b60405180910390fd5b610a55336001610a46600961186d565b610a509190613108565b61187b565b610a5f60096116c0565b50565b60006001610a70600961186d565b610a7a9190613108565b905090565b610a90610a8a6117ac565b82611899565b610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac690612ee9565b60405180910390fd5b610ada838383611977565b505050565b6103e881565b610aed6117ac565b73ffffffffffffffffffffffffffffffffffffffff16610b0b6110b7565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890612e49565b60405180910390fd5b6000479050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610bc657600080fd5b50565b610be4838383604051806020016040528060008152506113e3565b505050565b60606000610bf683610f77565b905060008167ffffffffffffffff811115610c3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c685781602001602082028036833780820191505090505b509050600080610c76610a62565b905060005b81811015610d27578673ffffffffffffffffffffffffffffffffffffffff16610ca382610ec5565b73ffffffffffffffffffffffffffffffffffffffff161415610d145780848481518110610cf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508280610d1090613255565b9350505b8080610d1f90613255565b915050610c7b565b5082945050505050919050565b60098060000154905081565b610d486117ac565b73ffffffffffffffffffffffffffffffffffffffff16610d666110b7565b73ffffffffffffffffffffffffffffffffffffffff1614610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612e49565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612dc9565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b610e376117ac565b73ffffffffffffffffffffffffffffffffffffffff16610e556110b7565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612e49565b60405180910390fd5b8060079080519060200190610ec192919061230c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590612d69565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90612d49565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110376117ac565b73ffffffffffffffffffffffffffffffffffffffff166110556110b7565b73ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290612e49565b60405180910390fd5b6110b56000611bd3565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110f0906131f2565b80601f016020809104026020016040519081016040528092919081815260200182805461111c906131f2565b80156111695780601f1061113e57610100808354040283529160200191611169565b820191906000526020600020905b81548152906001019060200180831161114c57829003601f168201915b5050505050905090565b61117b6117ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612ce9565b60405180910390fd5b80600560006111f66117ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112a36117ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e89190612c2c565b60405180910390a35050565b6112fc6117ac565b73ffffffffffffffffffffffffffffffffffffffff1661131a6110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612e49565b60405180910390fd5b60001515600860009054906101000a900460ff161515146113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90612d89565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6113f46113ee6117ac565b83611899565b611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612ee9565b60405180910390fd5b61143f84848484611c99565b50505050565b606061145082611740565b61148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690612e89565b60405180910390fd5b6000611499611cf5565b905060008151116114b957604051806020016040528060008152506114e4565b806114c384611d87565b6040516020016114d4929190612b7f565b6040516020818303038152906040525b915050919050565b600067016345785d8a00006001606484611506919061307d565b6115109190613027565b61151a91906130ae565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900460ff1681565b6115d06117ac565b73ffffffffffffffffffffffffffffffffffffffff166115ee6110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90612e49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90612c89565b60405180910390fd5b6116bd81611bd3565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661182783610ec5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611895828260405180602001604052806000815250611f34565b5050565b60006118a482611740565b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612d09565b60405180910390fd5b60006118ee83610ec5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195d57508373ffffffffffffffffffffffffffffffffffffffff16611945846107af565b73ffffffffffffffffffffffffffffffffffffffff16145b8061196e575061196d8185611521565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661199782610ec5565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490612e69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490612cc9565b60405180910390fd5b611a68838383611f8f565b611a736000826117b4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac39190613108565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1a9190613027565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ca4848484611977565b611cb084848484611f94565b611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690612c69565b60405180910390fd5b50505050565b606060078054611d04906131f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d30906131f2565b8015611d7d5780601f10611d5257610100808354040283529160200191611d7d565b820191906000526020600020905b815481529060010190602001808311611d6057829003601f168201915b5050505050905090565b60606000821415611dcf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2f565b600082905060005b60008214611e01578080611dea90613255565b915050600a82611dfa919061307d565b9150611dd7565b60008167ffffffffffffffff811115611e43577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e755781602001600182028036833780820191505090505b5090505b60008514611f2857600182611e8e9190613108565b9150600a85611e9d919061329e565b6030611ea99190613027565b60f81b818381518110611ee5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f21919061307d565b9450611e79565b8093505050505b919050565b611f3e838361212b565b611f4b6000848484611f94565b611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190612c69565b60405180910390fd5b505050565b505050565b6000611fb58473ffffffffffffffffffffffffffffffffffffffff166122f9565b1561211e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fde6117ac565b8786866040518563ffffffff1660e01b81526004016120009493929190612bbe565b602060405180830381600087803b15801561201a57600080fd5b505af192505050801561204b57506040513d601f19601f8201168201806040525081019061204891906126b8565b60015b6120ce573d806000811461207b576040519150601f19603f3d011682016040523d82523d6000602084013e612080565b606091505b506000815114156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90612c69565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612123565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290612de9565b60405180910390fd5b6121a481611740565b156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90612ca9565b60405180910390fd5b6121f060008383611f8f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122409190613027565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612318906131f2565b90600052602060002090601f01602090048101928261233a5760008555612381565b82601f1061235357805160ff1916838001178555612381565b82800160010185558215612381579182015b82811115612380578251825591602001919060010190612365565b5b50905061238e9190612392565b5090565b5b808211156123ab576000816000905550600101612393565b5090565b60006123c26123bd84612f49565b612f24565b9050828152602081018484840111156123da57600080fd5b6123e58482856131b0565b509392505050565b60006124006123fb84612f7a565b612f24565b90508281526020810184848401111561241857600080fd5b6124238482856131b0565b509392505050565b60008135905061243a816138e7565b92915050565b60008135905061244f816138fe565b92915050565b60008135905061246481613915565b92915050565b60008151905061247981613915565b92915050565b600082601f83011261249057600080fd5b81356124a08482602086016123af565b91505092915050565b600082601f8301126124ba57600080fd5b81356124ca8482602086016123ed565b91505092915050565b6000813590506124e28161392c565b92915050565b6000602082840312156124fa57600080fd5b60006125088482850161242b565b91505092915050565b6000806040838503121561252457600080fd5b60006125328582860161242b565b92505060206125438582860161242b565b9150509250929050565b60008060006060848603121561256257600080fd5b60006125708682870161242b565b93505060206125818682870161242b565b9250506040612592868287016124d3565b9150509250925092565b600080600080608085870312156125b257600080fd5b60006125c08782880161242b565b94505060206125d18782880161242b565b93505060406125e2878288016124d3565b925050606085013567ffffffffffffffff8111156125ff57600080fd5b61260b8782880161247f565b91505092959194509250565b6000806040838503121561262a57600080fd5b60006126388582860161242b565b925050602061264985828601612440565b9150509250929050565b6000806040838503121561266657600080fd5b60006126748582860161242b565b9250506020612685858286016124d3565b9150509250929050565b6000602082840312156126a157600080fd5b60006126af84828501612455565b91505092915050565b6000602082840312156126ca57600080fd5b60006126d88482850161246a565b91505092915050565b6000602082840312156126f357600080fd5b600082013567ffffffffffffffff81111561270d57600080fd5b612719848285016124a9565b91505092915050565b60006020828403121561273457600080fd5b6000612742848285016124d3565b91505092915050565b60006127578383612b61565b60208301905092915050565b61276c8161313c565b82525050565b600061277d82612fbb565b6127878185612fe9565b935061279283612fab565b8060005b838110156127c35781516127aa888261274b565b97506127b583612fdc565b925050600181019050612796565b5085935050505092915050565b6127d98161314e565b82525050565b60006127ea82612fc6565b6127f48185612ffa565b93506128048185602086016131bf565b61280d8161338b565b840191505092915050565b600061282382612fd1565b61282d818561300b565b935061283d8185602086016131bf565b6128468161338b565b840191505092915050565b600061285c82612fd1565b612866818561301c565b93506128768185602086016131bf565b80840191505092915050565b600061288f60328361300b565b915061289a8261339c565b604082019050919050565b60006128b260268361300b565b91506128bd826133eb565b604082019050919050565b60006128d5601c8361300b565b91506128e08261343a565b602082019050919050565b60006128f860248361300b565b915061290382613463565b604082019050919050565b600061291b60198361300b565b9150612926826134b2565b602082019050919050565b600061293e602c8361300b565b9150612949826134db565b604082019050919050565b600061296160388361300b565b915061296c8261352a565b604082019050919050565b6000612984602a8361300b565b915061298f82613579565b604082019050919050565b60006129a760298361300b565b91506129b2826135c8565b604082019050919050565b60006129ca60188361300b565b91506129d582613617565b602082019050919050565b60006129ed60198361300b565b91506129f882613640565b602082019050919050565b6000612a1060168361300b565b9150612a1b82613669565b602082019050919050565b6000612a3360208361300b565b9150612a3e82613692565b602082019050919050565b6000612a56602c8361300b565b9150612a61826136bb565b604082019050919050565b6000612a7960248361300b565b9150612a848261370a565b604082019050919050565b6000612a9c60208361300b565b9150612aa782613759565b602082019050919050565b6000612abf60298361300b565b9150612aca82613782565b604082019050919050565b6000612ae2602f8361300b565b9150612aed826137d1565b604082019050919050565b6000612b0560218361300b565b9150612b1082613820565b604082019050919050565b6000612b28601c8361300b565b9150612b338261386f565b602082019050919050565b6000612b4b60318361300b565b9150612b5682613898565b604082019050919050565b612b6a816131a6565b82525050565b612b79816131a6565b82525050565b6000612b8b8285612851565b9150612b978284612851565b91508190509392505050565b6000602082019050612bb86000830184612763565b92915050565b6000608082019050612bd36000830187612763565b612be06020830186612763565b612bed6040830185612b70565b8181036060830152612bff81846127df565b905095945050505050565b60006020820190508181036000830152612c248184612772565b905092915050565b6000602082019050612c4160008301846127d0565b92915050565b60006020820190508181036000830152612c618184612818565b905092915050565b60006020820190508181036000830152612c8281612882565b9050919050565b60006020820190508181036000830152612ca2816128a5565b9050919050565b60006020820190508181036000830152612cc2816128c8565b9050919050565b60006020820190508181036000830152612ce2816128eb565b9050919050565b60006020820190508181036000830152612d028161290e565b9050919050565b60006020820190508181036000830152612d2281612931565b9050919050565b60006020820190508181036000830152612d4281612954565b9050919050565b60006020820190508181036000830152612d6281612977565b9050919050565b60006020820190508181036000830152612d828161299a565b9050919050565b60006020820190508181036000830152612da2816129bd565b9050919050565b60006020820190508181036000830152612dc2816129e0565b9050919050565b60006020820190508181036000830152612de281612a03565b9050919050565b60006020820190508181036000830152612e0281612a26565b9050919050565b60006020820190508181036000830152612e2281612a49565b9050919050565b60006020820190508181036000830152612e4281612a6c565b9050919050565b60006020820190508181036000830152612e6281612a8f565b9050919050565b60006020820190508181036000830152612e8281612ab2565b9050919050565b60006020820190508181036000830152612ea281612ad5565b9050919050565b60006020820190508181036000830152612ec281612af8565b9050919050565b60006020820190508181036000830152612ee281612b1b565b9050919050565b60006020820190508181036000830152612f0281612b3e565b9050919050565b6000602082019050612f1e6000830184612b70565b92915050565b6000612f2e612f3f565b9050612f3a8282613224565b919050565b6000604051905090565b600067ffffffffffffffff821115612f6457612f6361335c565b5b612f6d8261338b565b9050602081019050919050565b600067ffffffffffffffff821115612f9557612f9461335c565b5b612f9e8261338b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613032826131a6565b915061303d836131a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613072576130716132cf565b5b828201905092915050565b6000613088826131a6565b9150613093836131a6565b9250826130a3576130a26132fe565b5b828204905092915050565b60006130b9826131a6565b91506130c4836131a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130fd576130fc6132cf565b5b828202905092915050565b6000613113826131a6565b915061311e836131a6565b925082821015613131576131306132cf565b5b828203905092915050565b600061314782613186565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131dd5780820151818401526020810190506131c2565b838111156131ec576000848401525b50505050565b6000600282049050600182168061320a57607f821691505b6020821081141561321e5761321d61332d565b5b50919050565b61322d8261338b565b810181811067ffffffffffffffff8211171561324c5761324b61335c565b5b80604052505050565b6000613260826131a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613293576132926132cf565b5b600182019050919050565b60006132a9826131a6565b91506132b4836131a6565b9250826132c4576132c36132fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f53616c6520697320616c72656164792070617573656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178696d756d20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766500000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6138f08161313c565b81146138fb57600080fd5b50565b6139078161314e565b811461391257600080fd5b50565b61391e8161315a565b811461392957600080fd5b50565b613935816131a6565b811461394057600080fd5b5056fea2646970667358221220ae854e848ad2677c76caa284449a39ae38e41d886395adfeebbf9140f4756c0264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525670437252375152535031684237653373393238796e78536970433241503433337644476738596d676f772f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806355f804b3116100ec578063b66a0e5d1161008a578063e757223011610064578063e75722301461056d578063e985e9c5146105aa578063eb8d2444146105e7578063f2fde38b146106125761019c565b8063b66a0e5d146104f0578063b88d4fde14610507578063c87b56dd146105305761019c565b8063715018a6116100c6578063715018a61461045a5780638da5cb5b1461047157806395d89b411461049c578063a22cb465146104c75761019c565b806355f804b3146103b75780636352211e146103e057806370a082311461041d5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030f578063438b6300146103385780634a60f6201461037557806355367ba9146103a05761019c565b806323b872dd146102a457806332cb6b0c146102cd5780633ccfd60b146102f85761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026f57806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c3919061268f565b61063b565b6040516101d59190612c2c565b60405180910390f35b3480156101ea57600080fd5b506101f361071d565b6040516102009190612c47565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612722565b6107af565b60405161023d9190612ba3565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612653565b610834565b005b61027761094c565b005b34801561028557600080fd5b5061028e610a62565b60405161029b9190612f09565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c6919061254d565b610a7f565b005b3480156102d957600080fd5b506102e2610adf565b6040516102ef9190612f09565b60405180910390f35b34801561030457600080fd5b5061030d610ae5565b005b34801561031b57600080fd5b506103366004803603810190610331919061254d565b610bc9565b005b34801561034457600080fd5b5061035f600480360381019061035a91906124e8565b610be9565b60405161036c9190612c0a565b60405180910390f35b34801561038157600080fd5b5061038a610d34565b6040516103979190612f09565b60405180910390f35b3480156103ac57600080fd5b506103b5610d40565b005b3480156103c357600080fd5b506103de60048036038101906103d991906126e1565b610e2f565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612722565b610ec5565b6040516104149190612ba3565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906124e8565b610f77565b6040516104519190612f09565b60405180910390f35b34801561046657600080fd5b5061046f61102f565b005b34801561047d57600080fd5b506104866110b7565b6040516104939190612ba3565b60405180910390f35b3480156104a857600080fd5b506104b16110e1565b6040516104be9190612c47565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612617565b611173565b005b3480156104fc57600080fd5b506105056112f4565b005b34801561051357600080fd5b5061052e6004803603810190610529919061259c565b6113e3565b005b34801561053c57600080fd5b5061055760048036038101906105529190612722565b611445565b6040516105649190612c47565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190612722565b6114ec565b6040516105a19190612f09565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612511565b611521565b6040516105de9190612c2c565b60405180910390f35b3480156105f357600080fd5b506105fc6115b5565b6040516106099190612c2c565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906124e8565b6115c8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107165750610715826116d6565b5b9050919050565b60606000805461072c906131f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610758906131f2565b80156107a55780601f1061077a576101008083540402835291602001916107a5565b820191906000526020600020905b81548152906001019060200180831161078857829003601f168201915b5050505050905090565b60006107ba82611740565b6107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f090612e09565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083f82610ec5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790612ea9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108cf6117ac565b73ffffffffffffffffffffffffffffffffffffffff1614806108fe57506108fd816108f86117ac565b611521565b5b61093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490612d29565b60405180910390fd5b61094783836117b4565b505050565b6000610956610a62565b9050600860009054906101000a900460ff166109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e90612ec9565b60405180910390fd5b6103e881106109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290612e29565b60405180910390fd5b6109f4816114ec565b341015610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612da9565b60405180910390fd5b610a55336001610a46600961186d565b610a509190613108565b61187b565b610a5f60096116c0565b50565b60006001610a70600961186d565b610a7a9190613108565b905090565b610a90610a8a6117ac565b82611899565b610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac690612ee9565b60405180910390fd5b610ada838383611977565b505050565b6103e881565b610aed6117ac565b73ffffffffffffffffffffffffffffffffffffffff16610b0b6110b7565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890612e49565b60405180910390fd5b6000479050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610bc657600080fd5b50565b610be4838383604051806020016040528060008152506113e3565b505050565b60606000610bf683610f77565b905060008167ffffffffffffffff811115610c3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c685781602001602082028036833780820191505090505b509050600080610c76610a62565b905060005b81811015610d27578673ffffffffffffffffffffffffffffffffffffffff16610ca382610ec5565b73ffffffffffffffffffffffffffffffffffffffff161415610d145780848481518110610cf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508280610d1090613255565b9350505b8080610d1f90613255565b915050610c7b565b5082945050505050919050565b60098060000154905081565b610d486117ac565b73ffffffffffffffffffffffffffffffffffffffff16610d666110b7565b73ffffffffffffffffffffffffffffffffffffffff1614610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612e49565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612dc9565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b610e376117ac565b73ffffffffffffffffffffffffffffffffffffffff16610e556110b7565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612e49565b60405180910390fd5b8060079080519060200190610ec192919061230c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590612d69565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90612d49565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110376117ac565b73ffffffffffffffffffffffffffffffffffffffff166110556110b7565b73ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290612e49565b60405180910390fd5b6110b56000611bd3565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110f0906131f2565b80601f016020809104026020016040519081016040528092919081815260200182805461111c906131f2565b80156111695780601f1061113e57610100808354040283529160200191611169565b820191906000526020600020905b81548152906001019060200180831161114c57829003601f168201915b5050505050905090565b61117b6117ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612ce9565b60405180910390fd5b80600560006111f66117ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112a36117ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e89190612c2c565b60405180910390a35050565b6112fc6117ac565b73ffffffffffffffffffffffffffffffffffffffff1661131a6110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612e49565b60405180910390fd5b60001515600860009054906101000a900460ff161515146113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90612d89565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6113f46113ee6117ac565b83611899565b611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612ee9565b60405180910390fd5b61143f84848484611c99565b50505050565b606061145082611740565b61148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690612e89565b60405180910390fd5b6000611499611cf5565b905060008151116114b957604051806020016040528060008152506114e4565b806114c384611d87565b6040516020016114d4929190612b7f565b6040516020818303038152906040525b915050919050565b600067016345785d8a00006001606484611506919061307d565b6115109190613027565b61151a91906130ae565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900460ff1681565b6115d06117ac565b73ffffffffffffffffffffffffffffffffffffffff166115ee6110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90612e49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90612c89565b60405180910390fd5b6116bd81611bd3565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661182783610ec5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611895828260405180602001604052806000815250611f34565b5050565b60006118a482611740565b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612d09565b60405180910390fd5b60006118ee83610ec5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195d57508373ffffffffffffffffffffffffffffffffffffffff16611945846107af565b73ffffffffffffffffffffffffffffffffffffffff16145b8061196e575061196d8185611521565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661199782610ec5565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490612e69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490612cc9565b60405180910390fd5b611a68838383611f8f565b611a736000826117b4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac39190613108565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1a9190613027565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ca4848484611977565b611cb084848484611f94565b611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690612c69565b60405180910390fd5b50505050565b606060078054611d04906131f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d30906131f2565b8015611d7d5780601f10611d5257610100808354040283529160200191611d7d565b820191906000526020600020905b815481529060010190602001808311611d6057829003601f168201915b5050505050905090565b60606000821415611dcf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2f565b600082905060005b60008214611e01578080611dea90613255565b915050600a82611dfa919061307d565b9150611dd7565b60008167ffffffffffffffff811115611e43577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e755781602001600182028036833780820191505090505b5090505b60008514611f2857600182611e8e9190613108565b9150600a85611e9d919061329e565b6030611ea99190613027565b60f81b818381518110611ee5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f21919061307d565b9450611e79565b8093505050505b919050565b611f3e838361212b565b611f4b6000848484611f94565b611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190612c69565b60405180910390fd5b505050565b505050565b6000611fb58473ffffffffffffffffffffffffffffffffffffffff166122f9565b1561211e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fde6117ac565b8786866040518563ffffffff1660e01b81526004016120009493929190612bbe565b602060405180830381600087803b15801561201a57600080fd5b505af192505050801561204b57506040513d601f19601f8201168201806040525081019061204891906126b8565b60015b6120ce573d806000811461207b576040519150601f19603f3d011682016040523d82523d6000602084013e612080565b606091505b506000815114156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90612c69565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612123565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290612de9565b60405180910390fd5b6121a481611740565b156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90612ca9565b60405180910390fd5b6121f060008383611f8f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122409190613027565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612318906131f2565b90600052602060002090601f01602090048101928261233a5760008555612381565b82601f1061235357805160ff1916838001178555612381565b82800160010185558215612381579182015b82811115612380578251825591602001919060010190612365565b5b50905061238e9190612392565b5090565b5b808211156123ab576000816000905550600101612393565b5090565b60006123c26123bd84612f49565b612f24565b9050828152602081018484840111156123da57600080fd5b6123e58482856131b0565b509392505050565b60006124006123fb84612f7a565b612f24565b90508281526020810184848401111561241857600080fd5b6124238482856131b0565b509392505050565b60008135905061243a816138e7565b92915050565b60008135905061244f816138fe565b92915050565b60008135905061246481613915565b92915050565b60008151905061247981613915565b92915050565b600082601f83011261249057600080fd5b81356124a08482602086016123af565b91505092915050565b600082601f8301126124ba57600080fd5b81356124ca8482602086016123ed565b91505092915050565b6000813590506124e28161392c565b92915050565b6000602082840312156124fa57600080fd5b60006125088482850161242b565b91505092915050565b6000806040838503121561252457600080fd5b60006125328582860161242b565b92505060206125438582860161242b565b9150509250929050565b60008060006060848603121561256257600080fd5b60006125708682870161242b565b93505060206125818682870161242b565b9250506040612592868287016124d3565b9150509250925092565b600080600080608085870312156125b257600080fd5b60006125c08782880161242b565b94505060206125d18782880161242b565b93505060406125e2878288016124d3565b925050606085013567ffffffffffffffff8111156125ff57600080fd5b61260b8782880161247f565b91505092959194509250565b6000806040838503121561262a57600080fd5b60006126388582860161242b565b925050602061264985828601612440565b9150509250929050565b6000806040838503121561266657600080fd5b60006126748582860161242b565b9250506020612685858286016124d3565b9150509250929050565b6000602082840312156126a157600080fd5b60006126af84828501612455565b91505092915050565b6000602082840312156126ca57600080fd5b60006126d88482850161246a565b91505092915050565b6000602082840312156126f357600080fd5b600082013567ffffffffffffffff81111561270d57600080fd5b612719848285016124a9565b91505092915050565b60006020828403121561273457600080fd5b6000612742848285016124d3565b91505092915050565b60006127578383612b61565b60208301905092915050565b61276c8161313c565b82525050565b600061277d82612fbb565b6127878185612fe9565b935061279283612fab565b8060005b838110156127c35781516127aa888261274b565b97506127b583612fdc565b925050600181019050612796565b5085935050505092915050565b6127d98161314e565b82525050565b60006127ea82612fc6565b6127f48185612ffa565b93506128048185602086016131bf565b61280d8161338b565b840191505092915050565b600061282382612fd1565b61282d818561300b565b935061283d8185602086016131bf565b6128468161338b565b840191505092915050565b600061285c82612fd1565b612866818561301c565b93506128768185602086016131bf565b80840191505092915050565b600061288f60328361300b565b915061289a8261339c565b604082019050919050565b60006128b260268361300b565b91506128bd826133eb565b604082019050919050565b60006128d5601c8361300b565b91506128e08261343a565b602082019050919050565b60006128f860248361300b565b915061290382613463565b604082019050919050565b600061291b60198361300b565b9150612926826134b2565b602082019050919050565b600061293e602c8361300b565b9150612949826134db565b604082019050919050565b600061296160388361300b565b915061296c8261352a565b604082019050919050565b6000612984602a8361300b565b915061298f82613579565b604082019050919050565b60006129a760298361300b565b91506129b2826135c8565b604082019050919050565b60006129ca60188361300b565b91506129d582613617565b602082019050919050565b60006129ed60198361300b565b91506129f882613640565b602082019050919050565b6000612a1060168361300b565b9150612a1b82613669565b602082019050919050565b6000612a3360208361300b565b9150612a3e82613692565b602082019050919050565b6000612a56602c8361300b565b9150612a61826136bb565b604082019050919050565b6000612a7960248361300b565b9150612a848261370a565b604082019050919050565b6000612a9c60208361300b565b9150612aa782613759565b602082019050919050565b6000612abf60298361300b565b9150612aca82613782565b604082019050919050565b6000612ae2602f8361300b565b9150612aed826137d1565b604082019050919050565b6000612b0560218361300b565b9150612b1082613820565b604082019050919050565b6000612b28601c8361300b565b9150612b338261386f565b602082019050919050565b6000612b4b60318361300b565b9150612b5682613898565b604082019050919050565b612b6a816131a6565b82525050565b612b79816131a6565b82525050565b6000612b8b8285612851565b9150612b978284612851565b91508190509392505050565b6000602082019050612bb86000830184612763565b92915050565b6000608082019050612bd36000830187612763565b612be06020830186612763565b612bed6040830185612b70565b8181036060830152612bff81846127df565b905095945050505050565b60006020820190508181036000830152612c248184612772565b905092915050565b6000602082019050612c4160008301846127d0565b92915050565b60006020820190508181036000830152612c618184612818565b905092915050565b60006020820190508181036000830152612c8281612882565b9050919050565b60006020820190508181036000830152612ca2816128a5565b9050919050565b60006020820190508181036000830152612cc2816128c8565b9050919050565b60006020820190508181036000830152612ce2816128eb565b9050919050565b60006020820190508181036000830152612d028161290e565b9050919050565b60006020820190508181036000830152612d2281612931565b9050919050565b60006020820190508181036000830152612d4281612954565b9050919050565b60006020820190508181036000830152612d6281612977565b9050919050565b60006020820190508181036000830152612d828161299a565b9050919050565b60006020820190508181036000830152612da2816129bd565b9050919050565b60006020820190508181036000830152612dc2816129e0565b9050919050565b60006020820190508181036000830152612de281612a03565b9050919050565b60006020820190508181036000830152612e0281612a26565b9050919050565b60006020820190508181036000830152612e2281612a49565b9050919050565b60006020820190508181036000830152612e4281612a6c565b9050919050565b60006020820190508181036000830152612e6281612a8f565b9050919050565b60006020820190508181036000830152612e8281612ab2565b9050919050565b60006020820190508181036000830152612ea281612ad5565b9050919050565b60006020820190508181036000830152612ec281612af8565b9050919050565b60006020820190508181036000830152612ee281612b1b565b9050919050565b60006020820190508181036000830152612f0281612b3e565b9050919050565b6000602082019050612f1e6000830184612b70565b92915050565b6000612f2e612f3f565b9050612f3a8282613224565b919050565b6000604051905090565b600067ffffffffffffffff821115612f6457612f6361335c565b5b612f6d8261338b565b9050602081019050919050565b600067ffffffffffffffff821115612f9557612f9461335c565b5b612f9e8261338b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613032826131a6565b915061303d836131a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613072576130716132cf565b5b828201905092915050565b6000613088826131a6565b9150613093836131a6565b9250826130a3576130a26132fe565b5b828204905092915050565b60006130b9826131a6565b91506130c4836131a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130fd576130fc6132cf565b5b828202905092915050565b6000613113826131a6565b915061311e836131a6565b925082821015613131576131306132cf565b5b828203905092915050565b600061314782613186565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131dd5780820151818401526020810190506131c2565b838111156131ec576000848401525b50505050565b6000600282049050600182168061320a57607f821691505b6020821081141561321e5761321d61332d565b5b50919050565b61322d8261338b565b810181811067ffffffffffffffff8211171561324c5761324b61335c565b5b80604052505050565b6000613260826131a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613293576132926132cf565b5b600182019050919050565b60006132a9826131a6565b91506132b4836131a6565b9250826132c4576132c36132fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f53616c6520697320616c72656164792070617573656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178696d756d20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766500000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6138f08161313c565b81146138fb57600080fd5b50565b6139078161314e565b811461391257600080fd5b50565b61391e8161315a565b811461392957600080fd5b50565b613935816131a6565b811461394057600080fd5b5056fea2646970667358221220ae854e848ad2677c76caa284449a39ae38e41d886395adfeebbf9140f4756c0264736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525670437252375152535031684237653373393238796e78536970433241503433337644476738596d676f772f00000000000000000000

-----Decoded View---------------
Arg [0] : newBaseURI (string): ipfs://QmRVpCrR7QRSP1hB7e3s928ynxSipC2AP433vDGg8Ymgow/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d525670437252375152535031684237653373393238796e
Arg [3] : 78536970433241503433337644476738596d676f772f00000000000000000000


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.