ETH Price: $3,152.13 (+1.05%)
Gas: 2 Gwei

Token

vApez (VAPEZ)
 

Overview

Max Total Supply

0 VAPEZ

Holders

1,138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
y0styler.eth
Balance
1 VAPEZ
0x13c57655e9f4970d8a5555f08b7afe2e186d939d
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:
Vapez

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Vapez.sol
//SPDX-License-Identifier: MIT
/*
                                
         (                      
   )     )\              (      
  /(( ((((_)(   `  )    ))\ (   
 (_))\ )\ _ )\  /(/(   /((_))\  
 _)((_)(_)_\(_)((_)_\ (_)) ((_) 
 \ V /  / _ \  | '_ \)/ -_)|_ / 
  \_/  /_/ \_\ | .__/ \___|/__| 
               |_|              
*/
pragma solidity ^0.8.0;

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

contract Vapez is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenIdCounter;

    string baseURI;
    string public baseExtension = ".json";
    string public preRevealURI;
    uint256 public currentPrice = 0.03 ether;
    uint256 public totalVapez = 3000;
    uint256 public maxFreeVapez = 200;
    bool public paused = true;
    bool public revealed = false;

    constructor(string memory _initBaseURI, string memory _preRevealURI)
        ERC721("vApez", "VAPEZ")
    {
        setBaseURI(_initBaseURI);
        setPreRevealURI(_preRevealURI);
        //mintVapez(msg.sender, 20);
    }

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

    //free vApez
    function freeVape(uint256 mintAmount) public {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(supply + mintAmount < maxFreeVapez, "No more free vApez left");
        mintVapez(msg.sender, mintAmount);
    }

    //public mint function
    function blazeVape(uint256 mintAmount) external payable {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 9, "You can only give vapes to 8 Apes");
        require(
            supply + mintAmount < totalVapez + 1,
            "Exceeds maximum vApez supply"
        );
        require(
            msg.value >= currentPrice * mintAmount,
            "Not enough Ether sent"
        );

        mintVapez(msg.sender, mintAmount);
    }

    function mintVapez(address addr, uint256 mintAmount) private {
        for (uint256 i = 0; i < mintAmount; i++) {
            tokenIdCounter.increment();
            _safeMint(addr, tokenIdCounter.current());
        }
    }

    //returns number of vApez minted
    function getCurrentId() external view returns (uint256) {
        return tokenIdCounter.current();
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return preRevealURI;
        }

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

    //----------------Owner functions--------------------
    function pause(bool val) public onlyOwner {
        paused = val;
    }

    //one way change, cannot be reverted
    function reveal() public onlyOwner {
        revealed = true;
    }

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

    function setPreRevealURI(string memory _newPreRevealURI) public onlyOwner {
        preRevealURI = _newPreRevealURI;
    }

    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Failed to send Ether");
    }
}

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.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);
    }

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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":"_initBaseURI","type":"string"},{"internalType":"string","name":"_preRevealURI","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"blazeVape","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"freeVape","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeVapez","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPreRevealURI","type":"string"}],"name":"setPreRevealURI","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":"totalVapez","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200005192919062000409565b50666a94d74f430000600b55610bb8600c5560c8600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b5060405162004465380380620044658339818101604052810190620000d191906200052b565b6040518060400160405280600581526020017f764170657a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f564150455a00000000000000000000000000000000000000000000000000000081525081600090805190602001906200015592919062000409565b5080600190805190602001906200016e92919062000409565b5050506200019162000185620001bb60201b60201c565b620001c360201b60201c565b620001a2826200028960201b60201c565b620001b3816200033460201b60201c565b505062000791565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000299620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bf620003df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f90620005c5565b60405180910390fd5b80600890805190602001906200033092919062000409565b5050565b62000344620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200036a620003df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ba90620005c5565b60405180910390fd5b80600a9080519060200190620003db92919062000409565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000417906200068d565b90600052602060002090601f0160209004810192826200043b576000855562000487565b82601f106200045657805160ff191683800117855562000487565b8280016001018555821562000487579182015b828111156200048657825182559160200191906001019062000469565b5b5090506200049691906200049a565b5090565b5b80821115620004b55760008160009055506001016200049b565b5090565b6000620004d0620004ca8462000610565b620005e7565b905082815260208101848484011115620004e957600080fd5b620004f684828562000657565b509392505050565b600082601f8301126200051057600080fd5b815162000522848260208601620004b9565b91505092915050565b600080604083850312156200053f57600080fd5b600083015167ffffffffffffffff8111156200055a57600080fd5b6200056885828601620004fe565b925050602083015167ffffffffffffffff8111156200058657600080fd5b6200059485828601620004fe565b9150509250929050565b6000620005ad60208362000646565b9150620005ba8262000768565b602082019050919050565b60006020820190508181036000830152620005e0816200059e565b9050919050565b6000620005f362000606565b9050620006018282620006c3565b919050565b6000604051905090565b600067ffffffffffffffff8211156200062e576200062d62000728565b5b620006398262000757565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006775780820151818401526020810190506200065a565b8381111562000687576000848401525b50505050565b60006002820490506001821680620006a657607f821691505b60208210811415620006bd57620006bc620006f9565b5b50919050565b620006ce8262000757565b810181811067ffffffffffffffff82111715620006f057620006ef62000728565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613cc480620007a16000396000f3fe6080604052600436106101d85760003560e01c80636c14386211610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610651578063e985e9c51461068e578063f2fde38b146106cb578063f9cd5a39146106f4576101d8565b8063a22cb465146105bd578063a475b5dd146105e6578063b88d4fde146105fd578063c668286214610626576101d8565b80638da5cb5b116100d15780638da5cb5b1461051157806395d89b411461053c57806398e33202146105675780639d1b464a14610592576101d8565b80636c1438621461046757806370a0823114610492578063715018a6146104cf57806379b6ed36146104e6576101d8565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103ad5780635c975abb146103d65780636352211e1461040157806368ea58231461043e576101d8565b80633ccfd60b1461032657806342842e0e1461033d5780634d07d9d0146103665780635183022714610382576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806323b872dd146102d45780632a85db55146102fd576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612967565b61071f565b6040516102119190612f44565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061293e565b610801565b005b34801561024f57600080fd5b5061025861089a565b6040516102659190612f5f565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906129fa565b61092c565b6040516102a29190612edd565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612902565b6109b1565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906127fc565b610ac9565b005b34801561030957600080fd5b50610324600480360381019061031f91906129b9565b610b29565b005b34801561033257600080fd5b5061033b610bbf565b005b34801561034957600080fd5b50610364600480360381019061035f91906127fc565b610cf0565b005b610380600480360381019061037b91906129fa565b610d10565b005b34801561038e57600080fd5b50610397610e6a565b6040516103a49190612f44565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906129b9565b610e7d565b005b3480156103e257600080fd5b506103eb610f13565b6040516103f89190612f44565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906129fa565b610f26565b6040516104359190612edd565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906129fa565b610fd8565b005b34801561047357600080fd5b5061047c611093565b6040516104899190613241565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612797565b6110a4565b6040516104c69190613241565b60405180910390f35b3480156104db57600080fd5b506104e461115c565b005b3480156104f257600080fd5b506104fb6111e4565b6040516105089190612f5f565b60405180910390f35b34801561051d57600080fd5b50610526611272565b6040516105339190612edd565b60405180910390f35b34801561054857600080fd5b5061055161129c565b60405161055e9190612f5f565b60405180910390f35b34801561057357600080fd5b5061057c61132e565b6040516105899190613241565b60405180910390f35b34801561059e57600080fd5b506105a7611334565b6040516105b49190613241565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906128c6565b61133a565b005b3480156105f257600080fd5b506105fb6114bb565b005b34801561060957600080fd5b50610624600480360381019061061f919061284b565b611554565b005b34801561063257600080fd5b5061063b6115b6565b6040516106489190612f5f565b60405180910390f35b34801561065d57600080fd5b50610678600480360381019061067391906129fa565b611644565b6040516106859190612f5f565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b091906127c0565b61179d565b6040516106c29190612f44565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612797565b611831565b005b34801561070057600080fd5b50610709611929565b6040516107169190613241565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fa57506107f98261192f565b5b9050919050565b610809611999565b73ffffffffffffffffffffffffffffffffffffffff16610827611272565b73ffffffffffffffffffffffffffffffffffffffff161461087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490613181565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546108a990613511565b80601f01602080910402602001604051908101604052809291908181526020018280546108d590613511565b80156109225780601f106108f757610100808354040283529160200191610922565b820191906000526020600020905b81548152906001019060200180831161090557829003601f168201915b5050505050905090565b6000610937826119a1565b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90613161565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bc82610f26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906131e1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4c611999565b73ffffffffffffffffffffffffffffffffffffffff161480610a7b5750610a7a81610a75611999565b61179d565b5b610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab1906130e1565b60405180910390fd5b610ac48383611a0d565b505050565b610ada610ad4611999565b82611ac6565b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090613201565b60405180910390fd5b610b24838383611ba4565b505050565b610b31611999565b73ffffffffffffffffffffffffffffffffffffffff16610b4f611272565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90613181565b60405180910390fd5b80600a9080519060200190610bbb9291906125bb565b5050565b610bc7611999565b73ffffffffffffffffffffffffffffffffffffffff16610be5611272565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613181565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610c6690612ec8565b60006040518083038185875af1925050503d8060008114610ca3576040519150601f19603f3d011682016040523d82523d6000602084013e610ca8565b606091505b5050905080610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390613061565b60405180910390fd5b5050565b610d0b83838360405180602001604052806000815250611554565b505050565b6000610d1c6007611e00565b9050600e60009054906101000a900460ff1615610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590612fa1565b60405180910390fd5b60098210610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890612f81565b60405180910390fd5b6001600c54610dc09190613346565b8282610dcc9190613346565b10610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613041565b60405180910390fd5b81600b54610e1a91906133cd565b341015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390612fc1565b60405180910390fd5b610e663383611e0e565b5050565b600e60019054906101000a900460ff1681565b610e85611999565b73ffffffffffffffffffffffffffffffffffffffff16610ea3611272565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613181565b60405180910390fd5b8060089080519060200190610f0f9291906125bb565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613121565b60405180910390fd5b80915050919050565b6000610fe46007611e00565b9050600e60009054906101000a900460ff1615611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90612fa1565b60405180910390fd5b600d5482826110459190613346565b10611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613221565b60405180910390fd5b61108f3383611e0e565b5050565b600061109f6007611e00565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90613101565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611164611999565b73ffffffffffffffffffffffffffffffffffffffff16611182611272565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613181565b60405180910390fd5b6111e26000611e4e565b565b600a80546111f190613511565b80601f016020809104026020016040519081016040528092919081815260200182805461121d90613511565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112ab90613511565b80601f01602080910402602001604051908101604052809291908181526020018280546112d790613511565b80156113245780601f106112f957610100808354040283529160200191611324565b820191906000526020600020905b81548152906001019060200180831161130757829003601f168201915b5050505050905090565b600d5481565b600b5481565b611342611999565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906130a1565b60405180910390fd5b80600560006113bd611999565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146a611999565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114af9190612f44565b60405180910390a35050565b6114c3611999565b73ffffffffffffffffffffffffffffffffffffffff166114e1611272565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613181565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b61156561155f611999565b83611ac6565b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613201565b60405180910390fd5b6115b084848484611f14565b50505050565b600980546115c390613511565b80601f01602080910402602001604051908101604052809291908181526020018280546115ef90613511565b801561163c5780601f106116115761010080835404028352916020019161163c565b820191906000526020600020905b81548152906001019060200180831161161f57829003601f168201915b505050505081565b606061164f826119a1565b61168e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611685906131c1565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561173c57600a80546116b790613511565b80601f01602080910402602001604051908101604052809291908181526020018280546116e390613511565b80156117305780601f1061170557610100808354040283529160200191611730565b820191906000526020600020905b81548152906001019060200180831161171357829003601f168201915b50505050509050611798565b6000611746611f70565b905060008151116117665760405180602001604052806000815250611794565b8061177084612002565b600960405160200161178493929190612e97565b6040516020818303038152906040525b9150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611839611999565b73ffffffffffffffffffffffffffffffffffffffff16611857611272565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613181565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490613001565b60405180910390fd5b61192681611e4e565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a8083610f26565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ad1826119a1565b611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906130c1565b60405180910390fd5b6000611b1b83610f26565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8a57508373ffffffffffffffffffffffffffffffffffffffff16611b728461092c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b9b5750611b9a818561179d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc482610f26565b73ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c11906131a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613081565b60405180910390fd5b611c958383836121af565b611ca0600082611a0d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf09190613427565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d479190613346565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60005b81811015611e4957611e2360076121b4565b611e3683611e316007611e00565b6121ca565b8080611e4190613574565b915050611e11565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f1f848484611ba4565b611f2b848484846121e8565b611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6190612fe1565b60405180910390fd5b50505050565b606060088054611f7f90613511565b80601f0160208091040260200160405190810160405280929190818152602001828054611fab90613511565b8015611ff85780601f10611fcd57610100808354040283529160200191611ff8565b820191906000526020600020905b815481529060010190602001808311611fdb57829003601f168201915b5050505050905090565b6060600082141561204a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121aa565b600082905060005b6000821461207c57808061206590613574565b915050600a82612075919061339c565b9150612052565b60008167ffffffffffffffff8111156120be577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120f05781602001600182028036833780820191505090505b5090505b600085146121a3576001826121099190613427565b9150600a8561211891906135bd565b60306121249190613346565b60f81b818381518110612160577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219c919061339c565b94506120f4565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6121e482826040518060200160405280600081525061237f565b5050565b60006122098473ffffffffffffffffffffffffffffffffffffffff166123da565b15612372578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612232611999565b8786866040518563ffffffff1660e01b81526004016122549493929190612ef8565b602060405180830381600087803b15801561226e57600080fd5b505af192505050801561229f57506040513d601f19601f8201168201806040525081019061229c9190612990565b60015b612322573d80600081146122cf576040519150601f19603f3d011682016040523d82523d6000602084013e6122d4565b606091505b5060008151141561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190612fe1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612377565b600190505b949350505050565b61238983836123ed565b61239660008484846121e8565b6123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc90612fe1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490613141565b60405180910390fd5b612466816119a1565b156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d90613021565b60405180910390fd5b6124b2600083836121af565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125029190613346565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125c790613511565b90600052602060002090601f0160209004810192826125e95760008555612630565b82601f1061260257805160ff1916838001178555612630565b82800160010185558215612630579182015b8281111561262f578251825591602001919060010190612614565b5b50905061263d9190612641565b5090565b5b8082111561265a576000816000905550600101612642565b5090565b600061267161266c84613281565b61325c565b90508281526020810184848401111561268957600080fd5b6126948482856134cf565b509392505050565b60006126af6126aa846132b2565b61325c565b9050828152602081018484840111156126c757600080fd5b6126d28482856134cf565b509392505050565b6000813590506126e981613c32565b92915050565b6000813590506126fe81613c49565b92915050565b60008135905061271381613c60565b92915050565b60008151905061272881613c60565b92915050565b600082601f83011261273f57600080fd5b813561274f84826020860161265e565b91505092915050565b600082601f83011261276957600080fd5b813561277984826020860161269c565b91505092915050565b60008135905061279181613c77565b92915050565b6000602082840312156127a957600080fd5b60006127b7848285016126da565b91505092915050565b600080604083850312156127d357600080fd5b60006127e1858286016126da565b92505060206127f2858286016126da565b9150509250929050565b60008060006060848603121561281157600080fd5b600061281f868287016126da565b9350506020612830868287016126da565b925050604061284186828701612782565b9150509250925092565b6000806000806080858703121561286157600080fd5b600061286f878288016126da565b9450506020612880878288016126da565b935050604061289187828801612782565b925050606085013567ffffffffffffffff8111156128ae57600080fd5b6128ba8782880161272e565b91505092959194509250565b600080604083850312156128d957600080fd5b60006128e7858286016126da565b92505060206128f8858286016126ef565b9150509250929050565b6000806040838503121561291557600080fd5b6000612923858286016126da565b925050602061293485828601612782565b9150509250929050565b60006020828403121561295057600080fd5b600061295e848285016126ef565b91505092915050565b60006020828403121561297957600080fd5b600061298784828501612704565b91505092915050565b6000602082840312156129a257600080fd5b60006129b084828501612719565b91505092915050565b6000602082840312156129cb57600080fd5b600082013567ffffffffffffffff8111156129e557600080fd5b6129f184828501612758565b91505092915050565b600060208284031215612a0c57600080fd5b6000612a1a84828501612782565b91505092915050565b612a2c8161345b565b82525050565b612a3b8161346d565b82525050565b6000612a4c826132f8565b612a56818561330e565b9350612a668185602086016134de565b612a6f816136aa565b840191505092915050565b6000612a8582613303565b612a8f818561332a565b9350612a9f8185602086016134de565b612aa8816136aa565b840191505092915050565b6000612abe82613303565b612ac8818561333b565b9350612ad88185602086016134de565b80840191505092915050565b60008154612af181613511565b612afb818661333b565b94506001821660008114612b165760018114612b2757612b5a565b60ff19831686528186019350612b5a565b612b30856132e3565b60005b83811015612b5257815481890152600182019150602081019050612b33565b838801955050505b50505092915050565b6000612b7060218361332a565b9150612b7b826136bb565b604082019050919050565b6000612b93600b8361332a565b9150612b9e8261370a565b602082019050919050565b6000612bb660158361332a565b9150612bc182613733565b602082019050919050565b6000612bd960328361332a565b9150612be48261375c565b604082019050919050565b6000612bfc60268361332a565b9150612c07826137ab565b604082019050919050565b6000612c1f601c8361332a565b9150612c2a826137fa565b602082019050919050565b6000612c42601c8361332a565b9150612c4d82613823565b602082019050919050565b6000612c6560148361332a565b9150612c708261384c565b602082019050919050565b6000612c8860248361332a565b9150612c9382613875565b604082019050919050565b6000612cab60198361332a565b9150612cb6826138c4565b602082019050919050565b6000612cce602c8361332a565b9150612cd9826138ed565b604082019050919050565b6000612cf160388361332a565b9150612cfc8261393c565b604082019050919050565b6000612d14602a8361332a565b9150612d1f8261398b565b604082019050919050565b6000612d3760298361332a565b9150612d42826139da565b604082019050919050565b6000612d5a60208361332a565b9150612d6582613a29565b602082019050919050565b6000612d7d602c8361332a565b9150612d8882613a52565b604082019050919050565b6000612da060208361332a565b9150612dab82613aa1565b602082019050919050565b6000612dc360298361332a565b9150612dce82613aca565b604082019050919050565b6000612de6602f8361332a565b9150612df182613b19565b604082019050919050565b6000612e0960218361332a565b9150612e1482613b68565b604082019050919050565b6000612e2c60008361331f565b9150612e3782613bb7565b600082019050919050565b6000612e4f60318361332a565b9150612e5a82613bba565b604082019050919050565b6000612e7260178361332a565b9150612e7d82613c09565b602082019050919050565b612e91816134c5565b82525050565b6000612ea38286612ab3565b9150612eaf8285612ab3565b9150612ebb8284612ae4565b9150819050949350505050565b6000612ed382612e1f565b9150819050919050565b6000602082019050612ef26000830184612a23565b92915050565b6000608082019050612f0d6000830187612a23565b612f1a6020830186612a23565b612f276040830185612e88565b8181036060830152612f398184612a41565b905095945050505050565b6000602082019050612f596000830184612a32565b92915050565b60006020820190508181036000830152612f798184612a7a565b905092915050565b60006020820190508181036000830152612f9a81612b63565b9050919050565b60006020820190508181036000830152612fba81612b86565b9050919050565b60006020820190508181036000830152612fda81612ba9565b9050919050565b60006020820190508181036000830152612ffa81612bcc565b9050919050565b6000602082019050818103600083015261301a81612bef565b9050919050565b6000602082019050818103600083015261303a81612c12565b9050919050565b6000602082019050818103600083015261305a81612c35565b9050919050565b6000602082019050818103600083015261307a81612c58565b9050919050565b6000602082019050818103600083015261309a81612c7b565b9050919050565b600060208201905081810360008301526130ba81612c9e565b9050919050565b600060208201905081810360008301526130da81612cc1565b9050919050565b600060208201905081810360008301526130fa81612ce4565b9050919050565b6000602082019050818103600083015261311a81612d07565b9050919050565b6000602082019050818103600083015261313a81612d2a565b9050919050565b6000602082019050818103600083015261315a81612d4d565b9050919050565b6000602082019050818103600083015261317a81612d70565b9050919050565b6000602082019050818103600083015261319a81612d93565b9050919050565b600060208201905081810360008301526131ba81612db6565b9050919050565b600060208201905081810360008301526131da81612dd9565b9050919050565b600060208201905081810360008301526131fa81612dfc565b9050919050565b6000602082019050818103600083015261321a81612e42565b9050919050565b6000602082019050818103600083015261323a81612e65565b9050919050565b60006020820190506132566000830184612e88565b92915050565b6000613266613277565b90506132728282613543565b919050565b6000604051905090565b600067ffffffffffffffff82111561329c5761329b61367b565b5b6132a5826136aa565b9050602081019050919050565b600067ffffffffffffffff8211156132cd576132cc61367b565b5b6132d6826136aa565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613351826134c5565b915061335c836134c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613391576133906135ee565b5b828201905092915050565b60006133a7826134c5565b91506133b2836134c5565b9250826133c2576133c161361d565b5b828204905092915050565b60006133d8826134c5565b91506133e3836134c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561341c5761341b6135ee565b5b828202905092915050565b6000613432826134c5565b915061343d836134c5565b9250828210156134505761344f6135ee565b5b828203905092915050565b6000613466826134a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134fc5780820151818401526020810190506134e1565b8381111561350b576000848401525b50505050565b6000600282049050600182168061352957607f821691505b6020821081141561353d5761353c61364c565b5b50919050565b61354c826136aa565b810181811067ffffffffffffffff8211171561356b5761356a61367b565b5b80604052505050565b600061357f826134c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135b2576135b16135ee565b5b600182019050919050565b60006135c8826134c5565b91506135d3836134c5565b9250826135e3576135e261361d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f752063616e206f6e6c79206769766520766170657320746f20382041706560008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473206d6178696d756d20764170657a20737570706c7900000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f206d6f7265206672656520764170657a206c656674000000000000000000600082015250565b613c3b8161345b565b8114613c4657600080fd5b50565b613c528161346d565b8114613c5d57600080fd5b50565b613c6981613479565b8114613c7457600080fd5b50565b613c80816134c5565b8114613c8b57600080fd5b5056fea26469706673582212205050c32ab42e1ebbb926aabe2af13b66e0121987cfe7a0dec2b13d4b3e0ea38164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63725a7943744272797137413158776e335832344e634c746436615857666568634a447863524d47467743322f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d644a426f6337675047664552414d44787448456164686e51436b696e6d5770436569487a78567a44746b57362f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c14386211610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610651578063e985e9c51461068e578063f2fde38b146106cb578063f9cd5a39146106f4576101d8565b8063a22cb465146105bd578063a475b5dd146105e6578063b88d4fde146105fd578063c668286214610626576101d8565b80638da5cb5b116100d15780638da5cb5b1461051157806395d89b411461053c57806398e33202146105675780639d1b464a14610592576101d8565b80636c1438621461046757806370a0823114610492578063715018a6146104cf57806379b6ed36146104e6576101d8565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103ad5780635c975abb146103d65780636352211e1461040157806368ea58231461043e576101d8565b80633ccfd60b1461032657806342842e0e1461033d5780634d07d9d0146103665780635183022714610382576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806323b872dd146102d45780632a85db55146102fd576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612967565b61071f565b6040516102119190612f44565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061293e565b610801565b005b34801561024f57600080fd5b5061025861089a565b6040516102659190612f5f565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906129fa565b61092c565b6040516102a29190612edd565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612902565b6109b1565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906127fc565b610ac9565b005b34801561030957600080fd5b50610324600480360381019061031f91906129b9565b610b29565b005b34801561033257600080fd5b5061033b610bbf565b005b34801561034957600080fd5b50610364600480360381019061035f91906127fc565b610cf0565b005b610380600480360381019061037b91906129fa565b610d10565b005b34801561038e57600080fd5b50610397610e6a565b6040516103a49190612f44565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906129b9565b610e7d565b005b3480156103e257600080fd5b506103eb610f13565b6040516103f89190612f44565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906129fa565b610f26565b6040516104359190612edd565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906129fa565b610fd8565b005b34801561047357600080fd5b5061047c611093565b6040516104899190613241565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612797565b6110a4565b6040516104c69190613241565b60405180910390f35b3480156104db57600080fd5b506104e461115c565b005b3480156104f257600080fd5b506104fb6111e4565b6040516105089190612f5f565b60405180910390f35b34801561051d57600080fd5b50610526611272565b6040516105339190612edd565b60405180910390f35b34801561054857600080fd5b5061055161129c565b60405161055e9190612f5f565b60405180910390f35b34801561057357600080fd5b5061057c61132e565b6040516105899190613241565b60405180910390f35b34801561059e57600080fd5b506105a7611334565b6040516105b49190613241565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906128c6565b61133a565b005b3480156105f257600080fd5b506105fb6114bb565b005b34801561060957600080fd5b50610624600480360381019061061f919061284b565b611554565b005b34801561063257600080fd5b5061063b6115b6565b6040516106489190612f5f565b60405180910390f35b34801561065d57600080fd5b50610678600480360381019061067391906129fa565b611644565b6040516106859190612f5f565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b091906127c0565b61179d565b6040516106c29190612f44565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612797565b611831565b005b34801561070057600080fd5b50610709611929565b6040516107169190613241565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fa57506107f98261192f565b5b9050919050565b610809611999565b73ffffffffffffffffffffffffffffffffffffffff16610827611272565b73ffffffffffffffffffffffffffffffffffffffff161461087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490613181565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546108a990613511565b80601f01602080910402602001604051908101604052809291908181526020018280546108d590613511565b80156109225780601f106108f757610100808354040283529160200191610922565b820191906000526020600020905b81548152906001019060200180831161090557829003601f168201915b5050505050905090565b6000610937826119a1565b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90613161565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bc82610f26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906131e1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4c611999565b73ffffffffffffffffffffffffffffffffffffffff161480610a7b5750610a7a81610a75611999565b61179d565b5b610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab1906130e1565b60405180910390fd5b610ac48383611a0d565b505050565b610ada610ad4611999565b82611ac6565b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090613201565b60405180910390fd5b610b24838383611ba4565b505050565b610b31611999565b73ffffffffffffffffffffffffffffffffffffffff16610b4f611272565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90613181565b60405180910390fd5b80600a9080519060200190610bbb9291906125bb565b5050565b610bc7611999565b73ffffffffffffffffffffffffffffffffffffffff16610be5611272565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613181565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610c6690612ec8565b60006040518083038185875af1925050503d8060008114610ca3576040519150601f19603f3d011682016040523d82523d6000602084013e610ca8565b606091505b5050905080610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390613061565b60405180910390fd5b5050565b610d0b83838360405180602001604052806000815250611554565b505050565b6000610d1c6007611e00565b9050600e60009054906101000a900460ff1615610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590612fa1565b60405180910390fd5b60098210610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890612f81565b60405180910390fd5b6001600c54610dc09190613346565b8282610dcc9190613346565b10610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613041565b60405180910390fd5b81600b54610e1a91906133cd565b341015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390612fc1565b60405180910390fd5b610e663383611e0e565b5050565b600e60019054906101000a900460ff1681565b610e85611999565b73ffffffffffffffffffffffffffffffffffffffff16610ea3611272565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613181565b60405180910390fd5b8060089080519060200190610f0f9291906125bb565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613121565b60405180910390fd5b80915050919050565b6000610fe46007611e00565b9050600e60009054906101000a900460ff1615611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90612fa1565b60405180910390fd5b600d5482826110459190613346565b10611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613221565b60405180910390fd5b61108f3383611e0e565b5050565b600061109f6007611e00565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90613101565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611164611999565b73ffffffffffffffffffffffffffffffffffffffff16611182611272565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613181565b60405180910390fd5b6111e26000611e4e565b565b600a80546111f190613511565b80601f016020809104026020016040519081016040528092919081815260200182805461121d90613511565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112ab90613511565b80601f01602080910402602001604051908101604052809291908181526020018280546112d790613511565b80156113245780601f106112f957610100808354040283529160200191611324565b820191906000526020600020905b81548152906001019060200180831161130757829003601f168201915b5050505050905090565b600d5481565b600b5481565b611342611999565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906130a1565b60405180910390fd5b80600560006113bd611999565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146a611999565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114af9190612f44565b60405180910390a35050565b6114c3611999565b73ffffffffffffffffffffffffffffffffffffffff166114e1611272565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613181565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b61156561155f611999565b83611ac6565b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613201565b60405180910390fd5b6115b084848484611f14565b50505050565b600980546115c390613511565b80601f01602080910402602001604051908101604052809291908181526020018280546115ef90613511565b801561163c5780601f106116115761010080835404028352916020019161163c565b820191906000526020600020905b81548152906001019060200180831161161f57829003601f168201915b505050505081565b606061164f826119a1565b61168e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611685906131c1565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561173c57600a80546116b790613511565b80601f01602080910402602001604051908101604052809291908181526020018280546116e390613511565b80156117305780601f1061170557610100808354040283529160200191611730565b820191906000526020600020905b81548152906001019060200180831161171357829003601f168201915b50505050509050611798565b6000611746611f70565b905060008151116117665760405180602001604052806000815250611794565b8061177084612002565b600960405160200161178493929190612e97565b6040516020818303038152906040525b9150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611839611999565b73ffffffffffffffffffffffffffffffffffffffff16611857611272565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613181565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490613001565b60405180910390fd5b61192681611e4e565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a8083610f26565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ad1826119a1565b611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906130c1565b60405180910390fd5b6000611b1b83610f26565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8a57508373ffffffffffffffffffffffffffffffffffffffff16611b728461092c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b9b5750611b9a818561179d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc482610f26565b73ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c11906131a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613081565b60405180910390fd5b611c958383836121af565b611ca0600082611a0d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf09190613427565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d479190613346565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60005b81811015611e4957611e2360076121b4565b611e3683611e316007611e00565b6121ca565b8080611e4190613574565b915050611e11565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f1f848484611ba4565b611f2b848484846121e8565b611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6190612fe1565b60405180910390fd5b50505050565b606060088054611f7f90613511565b80601f0160208091040260200160405190810160405280929190818152602001828054611fab90613511565b8015611ff85780601f10611fcd57610100808354040283529160200191611ff8565b820191906000526020600020905b815481529060010190602001808311611fdb57829003601f168201915b5050505050905090565b6060600082141561204a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121aa565b600082905060005b6000821461207c57808061206590613574565b915050600a82612075919061339c565b9150612052565b60008167ffffffffffffffff8111156120be577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120f05781602001600182028036833780820191505090505b5090505b600085146121a3576001826121099190613427565b9150600a8561211891906135bd565b60306121249190613346565b60f81b818381518110612160577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219c919061339c565b94506120f4565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6121e482826040518060200160405280600081525061237f565b5050565b60006122098473ffffffffffffffffffffffffffffffffffffffff166123da565b15612372578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612232611999565b8786866040518563ffffffff1660e01b81526004016122549493929190612ef8565b602060405180830381600087803b15801561226e57600080fd5b505af192505050801561229f57506040513d601f19601f8201168201806040525081019061229c9190612990565b60015b612322573d80600081146122cf576040519150601f19603f3d011682016040523d82523d6000602084013e6122d4565b606091505b5060008151141561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190612fe1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612377565b600190505b949350505050565b61238983836123ed565b61239660008484846121e8565b6123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc90612fe1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490613141565b60405180910390fd5b612466816119a1565b156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d90613021565b60405180910390fd5b6124b2600083836121af565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125029190613346565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125c790613511565b90600052602060002090601f0160209004810192826125e95760008555612630565b82601f1061260257805160ff1916838001178555612630565b82800160010185558215612630579182015b8281111561262f578251825591602001919060010190612614565b5b50905061263d9190612641565b5090565b5b8082111561265a576000816000905550600101612642565b5090565b600061267161266c84613281565b61325c565b90508281526020810184848401111561268957600080fd5b6126948482856134cf565b509392505050565b60006126af6126aa846132b2565b61325c565b9050828152602081018484840111156126c757600080fd5b6126d28482856134cf565b509392505050565b6000813590506126e981613c32565b92915050565b6000813590506126fe81613c49565b92915050565b60008135905061271381613c60565b92915050565b60008151905061272881613c60565b92915050565b600082601f83011261273f57600080fd5b813561274f84826020860161265e565b91505092915050565b600082601f83011261276957600080fd5b813561277984826020860161269c565b91505092915050565b60008135905061279181613c77565b92915050565b6000602082840312156127a957600080fd5b60006127b7848285016126da565b91505092915050565b600080604083850312156127d357600080fd5b60006127e1858286016126da565b92505060206127f2858286016126da565b9150509250929050565b60008060006060848603121561281157600080fd5b600061281f868287016126da565b9350506020612830868287016126da565b925050604061284186828701612782565b9150509250925092565b6000806000806080858703121561286157600080fd5b600061286f878288016126da565b9450506020612880878288016126da565b935050604061289187828801612782565b925050606085013567ffffffffffffffff8111156128ae57600080fd5b6128ba8782880161272e565b91505092959194509250565b600080604083850312156128d957600080fd5b60006128e7858286016126da565b92505060206128f8858286016126ef565b9150509250929050565b6000806040838503121561291557600080fd5b6000612923858286016126da565b925050602061293485828601612782565b9150509250929050565b60006020828403121561295057600080fd5b600061295e848285016126ef565b91505092915050565b60006020828403121561297957600080fd5b600061298784828501612704565b91505092915050565b6000602082840312156129a257600080fd5b60006129b084828501612719565b91505092915050565b6000602082840312156129cb57600080fd5b600082013567ffffffffffffffff8111156129e557600080fd5b6129f184828501612758565b91505092915050565b600060208284031215612a0c57600080fd5b6000612a1a84828501612782565b91505092915050565b612a2c8161345b565b82525050565b612a3b8161346d565b82525050565b6000612a4c826132f8565b612a56818561330e565b9350612a668185602086016134de565b612a6f816136aa565b840191505092915050565b6000612a8582613303565b612a8f818561332a565b9350612a9f8185602086016134de565b612aa8816136aa565b840191505092915050565b6000612abe82613303565b612ac8818561333b565b9350612ad88185602086016134de565b80840191505092915050565b60008154612af181613511565b612afb818661333b565b94506001821660008114612b165760018114612b2757612b5a565b60ff19831686528186019350612b5a565b612b30856132e3565b60005b83811015612b5257815481890152600182019150602081019050612b33565b838801955050505b50505092915050565b6000612b7060218361332a565b9150612b7b826136bb565b604082019050919050565b6000612b93600b8361332a565b9150612b9e8261370a565b602082019050919050565b6000612bb660158361332a565b9150612bc182613733565b602082019050919050565b6000612bd960328361332a565b9150612be48261375c565b604082019050919050565b6000612bfc60268361332a565b9150612c07826137ab565b604082019050919050565b6000612c1f601c8361332a565b9150612c2a826137fa565b602082019050919050565b6000612c42601c8361332a565b9150612c4d82613823565b602082019050919050565b6000612c6560148361332a565b9150612c708261384c565b602082019050919050565b6000612c8860248361332a565b9150612c9382613875565b604082019050919050565b6000612cab60198361332a565b9150612cb6826138c4565b602082019050919050565b6000612cce602c8361332a565b9150612cd9826138ed565b604082019050919050565b6000612cf160388361332a565b9150612cfc8261393c565b604082019050919050565b6000612d14602a8361332a565b9150612d1f8261398b565b604082019050919050565b6000612d3760298361332a565b9150612d42826139da565b604082019050919050565b6000612d5a60208361332a565b9150612d6582613a29565b602082019050919050565b6000612d7d602c8361332a565b9150612d8882613a52565b604082019050919050565b6000612da060208361332a565b9150612dab82613aa1565b602082019050919050565b6000612dc360298361332a565b9150612dce82613aca565b604082019050919050565b6000612de6602f8361332a565b9150612df182613b19565b604082019050919050565b6000612e0960218361332a565b9150612e1482613b68565b604082019050919050565b6000612e2c60008361331f565b9150612e3782613bb7565b600082019050919050565b6000612e4f60318361332a565b9150612e5a82613bba565b604082019050919050565b6000612e7260178361332a565b9150612e7d82613c09565b602082019050919050565b612e91816134c5565b82525050565b6000612ea38286612ab3565b9150612eaf8285612ab3565b9150612ebb8284612ae4565b9150819050949350505050565b6000612ed382612e1f565b9150819050919050565b6000602082019050612ef26000830184612a23565b92915050565b6000608082019050612f0d6000830187612a23565b612f1a6020830186612a23565b612f276040830185612e88565b8181036060830152612f398184612a41565b905095945050505050565b6000602082019050612f596000830184612a32565b92915050565b60006020820190508181036000830152612f798184612a7a565b905092915050565b60006020820190508181036000830152612f9a81612b63565b9050919050565b60006020820190508181036000830152612fba81612b86565b9050919050565b60006020820190508181036000830152612fda81612ba9565b9050919050565b60006020820190508181036000830152612ffa81612bcc565b9050919050565b6000602082019050818103600083015261301a81612bef565b9050919050565b6000602082019050818103600083015261303a81612c12565b9050919050565b6000602082019050818103600083015261305a81612c35565b9050919050565b6000602082019050818103600083015261307a81612c58565b9050919050565b6000602082019050818103600083015261309a81612c7b565b9050919050565b600060208201905081810360008301526130ba81612c9e565b9050919050565b600060208201905081810360008301526130da81612cc1565b9050919050565b600060208201905081810360008301526130fa81612ce4565b9050919050565b6000602082019050818103600083015261311a81612d07565b9050919050565b6000602082019050818103600083015261313a81612d2a565b9050919050565b6000602082019050818103600083015261315a81612d4d565b9050919050565b6000602082019050818103600083015261317a81612d70565b9050919050565b6000602082019050818103600083015261319a81612d93565b9050919050565b600060208201905081810360008301526131ba81612db6565b9050919050565b600060208201905081810360008301526131da81612dd9565b9050919050565b600060208201905081810360008301526131fa81612dfc565b9050919050565b6000602082019050818103600083015261321a81612e42565b9050919050565b6000602082019050818103600083015261323a81612e65565b9050919050565b60006020820190506132566000830184612e88565b92915050565b6000613266613277565b90506132728282613543565b919050565b6000604051905090565b600067ffffffffffffffff82111561329c5761329b61367b565b5b6132a5826136aa565b9050602081019050919050565b600067ffffffffffffffff8211156132cd576132cc61367b565b5b6132d6826136aa565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613351826134c5565b915061335c836134c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613391576133906135ee565b5b828201905092915050565b60006133a7826134c5565b91506133b2836134c5565b9250826133c2576133c161361d565b5b828204905092915050565b60006133d8826134c5565b91506133e3836134c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561341c5761341b6135ee565b5b828202905092915050565b6000613432826134c5565b915061343d836134c5565b9250828210156134505761344f6135ee565b5b828203905092915050565b6000613466826134a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134fc5780820151818401526020810190506134e1565b8381111561350b576000848401525b50505050565b6000600282049050600182168061352957607f821691505b6020821081141561353d5761353c61364c565b5b50919050565b61354c826136aa565b810181811067ffffffffffffffff8211171561356b5761356a61367b565b5b80604052505050565b600061357f826134c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135b2576135b16135ee565b5b600182019050919050565b60006135c8826134c5565b91506135d3836134c5565b9250826135e3576135e261361d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f752063616e206f6e6c79206769766520766170657320746f20382041706560008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473206d6178696d756d20764170657a20737570706c7900000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f206d6f7265206672656520764170657a206c656674000000000000000000600082015250565b613c3b8161345b565b8114613c4657600080fd5b50565b613c528161346d565b8114613c5d57600080fd5b50565b613c6981613479565b8114613c7457600080fd5b50565b613c80816134c5565b8114613c8b57600080fd5b5056fea26469706673582212205050c32ab42e1ebbb926aabe2af13b66e0121987cfe7a0dec2b13d4b3e0ea38164736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63725a7943744272797137413158776e335832344e634c746436615857666568634a447863524d47467743322f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d644a426f6337675047664552414d44787448456164686e51436b696e6d5770436569487a78567a44746b57362f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmcrZyCtBryq7A1Xwn3X24NcLtd6aXWfehcJDxcRMGFwC2/
Arg [1] : _preRevealURI (string): ipfs://QmdJBoc7gPGfERAMDxtHEadhnQCkinmWpCeiHzxVzDtkW6/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d63725a7943744272797137413158776e335832344e634c
Arg [4] : 746436615857666568634a447863524d47467743322f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d644a426f6337675047664552414d44787448456164686e
Arg [7] : 51436b696e6d5770436569487a78567a44746b57362f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


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.