ETH Price: $2,837.39 (-7.09%)
Gas: 10 Gwei

Token

Wassilikes (WASSI)
 

Overview

Max Total Supply

0 WASSI

Holders

138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WASSI
0x782864f786b95c4731ef8c015c729454703a6548
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:
Wassilikes

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Wassilikes.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Wassilikes is Ownable, ERC721Burnable {
    // Setup imports
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private _tokenIdCounter;

    uint256 public constant PUBLIC_MINT_PRICE = 40000000000000000; // 0.04 ETH
    uint256 public constant MAX_SUPPLY = 333;
    bool public paused = true;
    address payable[2] royaltyRecipients;

    string public baseURI;

    constructor(
        string memory initialBaseURI,
        address payable[2] memory _royaltyRecipients
    ) public ERC721("Wassilikes", "WASSI") {
        require(_royaltyRecipients[0] != address(0), "Invalid address");
        require(_royaltyRecipients[1] != address(0), "Invalid address");

        baseURI = initialBaseURI;
        royaltyRecipients = _royaltyRecipients;
    }

    function claim(address recipient)
        public
        payable
        returns (uint256)
    {
        require(!paused, "Contract must be unpaused to mint");
        uint256 nextId = _tokenIdCounter.current();
        require(nextId < MAX_SUPPLY, "Token limit reached. Sorry.");
        require(msg.value >= PUBLIC_MINT_PRICE, "The price is .04 ETH or more.");

        _safeMint(recipient, nextId);
        _tokenIdCounter.increment();

        return nextId;
    }

    function ownerClaim(address recipient) public onlyOwner {
        require(_tokenIdCounter.current() < 2, "Owner can only mint the first two.");
        _safeMint(recipient, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }

    function pause(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function getSupply() public view returns(uint256) {
        return _tokenIdCounter.current();
    }

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

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

        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function withdrawETH() public onlyOwner  {
        uint256 royalty = address(this).balance / 3;

        Address.sendValue(payable(royaltyRecipients[0]), royalty * 2);
        Address.sendValue(payable(royaltyRecipients[1]), royalty);
    }

}

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

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 13 : 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 6 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initialBaseURI","type":"string"},{"internalType":"address payable[2]","name":"_royaltyRecipients","type":"address[2]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupply","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":"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":"address","name":"recipient","type":"address"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","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":"_paused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","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":[{"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":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600860006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620044bb380380620044bb8339818101604052810190620000529190620005c8565b6040518060400160405280600a81526020017f57617373696c696b6573000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5741535349000000000000000000000000000000000000000000000000000000815250620000de620000d2620002ab60201b60201c565b620002b360201b60201c565b8160019080519060200190620000f692919062000377565b5080600290805190602001906200010f92919062000377565b505050600073ffffffffffffffffffffffffffffffffffffffff168160006002811062000165577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015173ffffffffffffffffffffffffffffffffffffffff161415620001c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001bb9062000649565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168160016002811062000217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015173ffffffffffffffffffffffffffffffffffffffff16141562000276576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026d9062000649565b60405180910390fd5b81600b90805190602001906200028e92919062000377565b50806009906002620002a292919062000408565b5050506200088c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000385906200076e565b90600052602060002090601f016020900481019282620003a95760008555620003f5565b82601f10620003c457805160ff1916838001178555620003f5565b82800160010185558215620003f5579182015b82811115620003f4578251825591602001919060010190620003d7565b5b5090506200040491906200048a565b5090565b826002810192821562000477579160200282015b82811115620004765782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200041c565b5b5090506200048691906200048a565b5090565b5b80821115620004a55760008160009055506001016200048b565b5090565b6000620004c0620004ba8462000694565b6200066b565b90508082856020860282011115620004d757600080fd5b60005b858110156200050b5781620004f088826200055a565b845260208401935060208301925050600181019050620004da565b5050509392505050565b60006200052c6200052684620006bd565b6200066b565b9050828152602081018484840111156200054557600080fd5b6200055284828562000738565b509392505050565b6000815190506200056b8162000872565b92915050565b600082601f8301126200058357600080fd5b600262000592848285620004a9565b91505092915050565b600082601f830112620005ad57600080fd5b8151620005bf84826020860162000515565b91505092915050565b60008060608385031215620005dc57600080fd5b600083015167ffffffffffffffff811115620005f757600080fd5b62000605858286016200059b565b9250506020620006188582860162000571565b9150509250929050565b600062000631600f83620006f3565b91506200063e8262000849565b602082019050919050565b60006020820190508181036000830152620006648162000622565b9050919050565b6000620006776200068a565b9050620006858282620007a4565b919050565b6000604051905090565b600067ffffffffffffffff821115620006b257620006b162000809565b5b602082029050919050565b600067ffffffffffffffff821115620006db57620006da62000809565b5b620006e68262000838565b9050602081019050919050565b600082825260208201905092915050565b6000620007118262000718565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620007585780820151818401526020810190506200073b565b8381111562000768576000848401525b50505050565b600060028204905060018216806200078757607f821691505b602082108114156200079e576200079d620007da565b5b50919050565b620007af8262000838565b810181811067ffffffffffffffff82111715620007d157620007d062000809565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6200087d8162000704565b81146200088957600080fd5b50565b613c1f806200089c6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd146105a5578063e086e5ec146105e2578063e985e9c5146105f9578063f2fde38b146106365761019c565b806395d89b4114610528578063a22cb46514610553578063b88d4fde1461057c5761019c565b80636c9c2faf116100c65780636c9c2faf1461047e57806370a08231146104a9578063715018a6146104e65780638da5cb5b146104fd5761019c565b80636352211e146103eb5780636bde2627146104285780636c0360eb146104535761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461034557806342966c681461036e57806355f804b3146103975780635c975abb146103c05761019c565b806323b872dd146102c857806332cb6b0c146102f157806336d044331461031c5761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f5780631e83409a14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c3919061279a565b61065f565b6040516101d59190612dbb565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612771565b610741565b005b34801561021357600080fd5b5061021c6107da565b6040516102299190612dd6565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061282d565b61086c565b6040516102669190612d54565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612735565b6108f1565b005b6102b260048036038101906102ad91906125ca565b610a09565b6040516102bf91906130d8565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea919061262f565b610b14565b005b3480156102fd57600080fd5b50610306610b74565b60405161031391906130d8565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906125ca565b610b7a565b005b34801561035157600080fd5b5061036c6004803603810190610367919061262f565b610c62565b005b34801561037a57600080fd5b506103956004803603810190610390919061282d565b610c82565b005b3480156103a357600080fd5b506103be60048036038101906103b991906127ec565b610cde565b005b3480156103cc57600080fd5b506103d5610d74565b6040516103e29190612dbb565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061282d565b610d87565b60405161041f9190612d54565b60405180910390f35b34801561043457600080fd5b5061043d610e39565b60405161044a91906130d8565b60405180910390f35b34801561045f57600080fd5b50610468610e44565b6040516104759190612dd6565b60405180910390f35b34801561048a57600080fd5b50610493610ed2565b6040516104a091906130d8565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906125ca565b610ee3565b6040516104dd91906130d8565b60405180910390f35b3480156104f257600080fd5b506104fb610f9b565b005b34801561050957600080fd5b50610512611023565b60405161051f9190612d54565b60405180910390f35b34801561053457600080fd5b5061053d61104c565b60405161054a9190612dd6565b60405180910390f35b34801561055f57600080fd5b5061057a600480360381019061057591906126f9565b6110de565b005b34801561058857600080fd5b506105a3600480360381019061059e919061267e565b61125f565b005b3480156105b157600080fd5b506105cc60048036038101906105c7919061282d565b6112c1565b6040516105d99190612dd6565b60405180910390f35b3480156105ee57600080fd5b506105f761133d565b005b34801561060557600080fd5b50610620600480360381019061061b91906125f3565b6114a5565b60405161062d9190612dbb565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906125ca565b611539565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a575061073982611631565b5b9050919050565b61074961169b565b73ffffffffffffffffffffffffffffffffffffffff16610767611023565b73ffffffffffffffffffffffffffffffffffffffff16146107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490612fd8565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b6060600180546107e9906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610815906133a8565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826116a3565b6108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90612fb8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108fc82610d87565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613038565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098c61169b565b73ffffffffffffffffffffffffffffffffffffffff1614806109bb57506109ba816109b561169b565b6114a5565b5b6109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612f38565b60405180910390fd5b610a04838361170f565b505050565b6000600860009054906101000a900460ff1615610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290612eb8565b60405180910390fd5b6000610a6760076117c8565b905061014d8110610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613098565b60405180910390fd5b668e1bc9bf040000341015610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613078565b60405180910390fd5b610b0183826117d6565b610b0b60076117f4565b80915050919050565b610b25610b1f61169b565b8261180a565b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613058565b60405180910390fd5b610b6f8383836118e8565b505050565b61014d81565b610b8261169b565b73ffffffffffffffffffffffffffffffffffffffff16610ba0611023565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90612fd8565b60405180910390fd5b6002610c0260076117c8565b10610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612e58565b60405180910390fd5b610c5581610c5060076117c8565b6117d6565b610c5f60076117f4565b50565b610c7d8383836040518060200160405280600081525061125f565b505050565b610c93610c8d61169b565b8261180a565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906130b8565b60405180910390fd5b610cdb81611b44565b50565b610ce661169b565b73ffffffffffffffffffffffffffffffffffffffff16610d04611023565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190612fd8565b60405180910390fd5b80600b9080519060200190610d709291906123ee565b5050565b600860009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790612f78565b60405180910390fd5b80915050919050565b668e1bc9bf04000081565b600b8054610e51906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7d906133a8565b8015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b505050505081565b6000610ede60076117c8565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90612f58565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa361169b565b73ffffffffffffffffffffffffffffffffffffffff16610fc1611023565b73ffffffffffffffffffffffffffffffffffffffff1614611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90612fd8565b60405180910390fd5b6110216000611c55565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461105b906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611087906133a8565b80156110d45780601f106110a9576101008083540402835291602001916110d4565b820191906000526020600020905b8154815290600101906020018083116110b757829003601f168201915b5050505050905090565b6110e661169b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612e98565b60405180910390fd5b806006600061116161169b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120e61169b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112539190612dbb565b60405180910390a35050565b61127061126a61169b565b8361180a565b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613058565b60405180910390fd5b6112bb84848484611d19565b50505050565b60606112cc826116a3565b61130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613018565b60405180910390fd5b600b61131683611d75565b604051602001611327929190612d10565b6040516020818303038152906040529050919050565b61134561169b565b73ffffffffffffffffffffffffffffffffffffffff16611363611023565b73ffffffffffffffffffffffffffffffffffffffff16146113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090612fd8565b60405180910390fd5b60006003476113c89190613233565b905061143c6009600060028110611408577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002836114379190613264565b611f22565b6114a2600960016002811061147a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611f22565b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154161169b565b73ffffffffffffffffffffffffffffffffffffffff1661155f611023565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612e18565b60405180910390fd5b61162e81611c55565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178283610d87565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6117f0828260405180602001604052806000815250612016565b5050565b6001816000016000828254019250508190555050565b6000611815826116a3565b611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90612f18565b60405180910390fd5b600061185f83610d87565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118ce57508373ffffffffffffffffffffffffffffffffffffffff166118b68461086c565b73ffffffffffffffffffffffffffffffffffffffff16145b806118df57506118de81856114a5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661190882610d87565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590612ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590612e78565b60405180910390fd5b6119d9838383612071565b6119e460008261170f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a3491906132be565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8b91906131dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611b4f82610d87565b9050611b5d81600084612071565b611b6860008361170f565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb891906132be565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d248484846118e8565b611d3084848484612076565b611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612df8565b60405180910390fd5b50505050565b60606000821415611dbd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f1d565b600082905060005b60008214611def578080611dd89061340b565b915050600a82611de89190613233565b9150611dc5565b60008167ffffffffffffffff811115611e31577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e635781602001600182028036833780820191505090505b5090505b60008514611f1657600182611e7c91906132be565b9150600a85611e8b9190613454565b6030611e9791906131dd565b60f81b818381518110611ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f0f9190613233565b9450611e67565b8093505050505b919050565b80471015611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c90612ef8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f8b90612d3f565b60006040518083038185875af1925050503d8060008114611fc8576040519150601f19603f3d011682016040523d82523d6000602084013e611fcd565b606091505b5050905080612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890612ed8565b60405180910390fd5b505050565b612020838361220d565b61202d6000848484612076565b61206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390612df8565b60405180910390fd5b505050565b505050565b60006120978473ffffffffffffffffffffffffffffffffffffffff166123db565b15612200578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c061169b565b8786866040518563ffffffff1660e01b81526004016120e29493929190612d6f565b602060405180830381600087803b1580156120fc57600080fd5b505af192505050801561212d57506040513d601f19601f8201168201806040525081019061212a91906127c3565b60015b6121b0573d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b506000815114156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90612df8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612205565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490612f98565b60405180910390fd5b612286816116a3565b156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90612e38565b60405180910390fd5b6122d260008383612071565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232291906131dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546123fa906133a8565b90600052602060002090601f01602090048101928261241c5760008555612463565b82601f1061243557805160ff1916838001178555612463565b82800160010185558215612463579182015b82811115612462578251825591602001919060010190612447565b5b5090506124709190612474565b5090565b5b8082111561248d576000816000905550600101612475565b5090565b60006124a461249f84613118565b6130f3565b9050828152602081018484840111156124bc57600080fd5b6124c7848285613366565b509392505050565b60006124e26124dd84613149565b6130f3565b9050828152602081018484840111156124fa57600080fd5b612505848285613366565b509392505050565b60008135905061251c81613b8d565b92915050565b60008135905061253181613ba4565b92915050565b60008135905061254681613bbb565b92915050565b60008151905061255b81613bbb565b92915050565b600082601f83011261257257600080fd5b8135612582848260208601612491565b91505092915050565b600082601f83011261259c57600080fd5b81356125ac8482602086016124cf565b91505092915050565b6000813590506125c481613bd2565b92915050565b6000602082840312156125dc57600080fd5b60006125ea8482850161250d565b91505092915050565b6000806040838503121561260657600080fd5b60006126148582860161250d565b92505060206126258582860161250d565b9150509250929050565b60008060006060848603121561264457600080fd5b60006126528682870161250d565b93505060206126638682870161250d565b9250506040612674868287016125b5565b9150509250925092565b6000806000806080858703121561269457600080fd5b60006126a28782880161250d565b94505060206126b38782880161250d565b93505060406126c4878288016125b5565b925050606085013567ffffffffffffffff8111156126e157600080fd5b6126ed87828801612561565b91505092959194509250565b6000806040838503121561270c57600080fd5b600061271a8582860161250d565b925050602061272b85828601612522565b9150509250929050565b6000806040838503121561274857600080fd5b60006127568582860161250d565b9250506020612767858286016125b5565b9150509250929050565b60006020828403121561278357600080fd5b600061279184828501612522565b91505092915050565b6000602082840312156127ac57600080fd5b60006127ba84828501612537565b91505092915050565b6000602082840312156127d557600080fd5b60006127e38482850161254c565b91505092915050565b6000602082840312156127fe57600080fd5b600082013567ffffffffffffffff81111561281857600080fd5b6128248482850161258b565b91505092915050565b60006020828403121561283f57600080fd5b600061284d848285016125b5565b91505092915050565b61285f816132f2565b82525050565b61286e81613304565b82525050565b600061287f8261318f565b61288981856131a5565b9350612899818560208601613375565b6128a281613541565b840191505092915050565b60006128b88261319a565b6128c281856131c1565b93506128d2818560208601613375565b6128db81613541565b840191505092915050565b60006128f18261319a565b6128fb81856131d2565b935061290b818560208601613375565b80840191505092915050565b60008154612924816133a8565b61292e81866131d2565b94506001821660008114612949576001811461295a5761298d565b60ff1983168652818601935061298d565b6129638561317a565b60005b8381101561298557815481890152600182019150602081019050612966565b838801955050505b50505092915050565b60006129a36032836131c1565b91506129ae82613552565b604082019050919050565b60006129c66026836131c1565b91506129d1826135a1565b604082019050919050565b60006129e9601c836131c1565b91506129f4826135f0565b602082019050919050565b6000612a0c6022836131c1565b9150612a1782613619565b604082019050919050565b6000612a2f6024836131c1565b9150612a3a82613668565b604082019050919050565b6000612a526019836131c1565b9150612a5d826136b7565b602082019050919050565b6000612a756021836131c1565b9150612a80826136e0565b604082019050919050565b6000612a98603a836131c1565b9150612aa38261372f565b604082019050919050565b6000612abb601d836131c1565b9150612ac68261377e565b602082019050919050565b6000612ade602c836131c1565b9150612ae9826137a7565b604082019050919050565b6000612b016038836131c1565b9150612b0c826137f6565b604082019050919050565b6000612b24602a836131c1565b9150612b2f82613845565b604082019050919050565b6000612b476029836131c1565b9150612b5282613894565b604082019050919050565b6000612b6a6020836131c1565b9150612b75826138e3565b602082019050919050565b6000612b8d602c836131c1565b9150612b988261390c565b604082019050919050565b6000612bb06005836131d2565b9150612bbb8261395b565b600582019050919050565b6000612bd36020836131c1565b9150612bde82613984565b602082019050919050565b6000612bf66029836131c1565b9150612c01826139ad565b604082019050919050565b6000612c19602f836131c1565b9150612c24826139fc565b604082019050919050565b6000612c3c6021836131c1565b9150612c4782613a4b565b604082019050919050565b6000612c5f6000836131b6565b9150612c6a82613a9a565b600082019050919050565b6000612c826031836131c1565b9150612c8d82613a9d565b604082019050919050565b6000612ca5601d836131c1565b9150612cb082613aec565b602082019050919050565b6000612cc8601b836131c1565b9150612cd382613b15565b602082019050919050565b6000612ceb6030836131c1565b9150612cf682613b3e565b604082019050919050565b612d0a8161335c565b82525050565b6000612d1c8285612917565b9150612d2882846128e6565b9150612d3382612ba3565b91508190509392505050565b6000612d4a82612c52565b9150819050919050565b6000602082019050612d696000830184612856565b92915050565b6000608082019050612d846000830187612856565b612d916020830186612856565b612d9e6040830185612d01565b8181036060830152612db08184612874565b905095945050505050565b6000602082019050612dd06000830184612865565b92915050565b60006020820190508181036000830152612df081846128ad565b905092915050565b60006020820190508181036000830152612e1181612996565b9050919050565b60006020820190508181036000830152612e31816129b9565b9050919050565b60006020820190508181036000830152612e51816129dc565b9050919050565b60006020820190508181036000830152612e71816129ff565b9050919050565b60006020820190508181036000830152612e9181612a22565b9050919050565b60006020820190508181036000830152612eb181612a45565b9050919050565b60006020820190508181036000830152612ed181612a68565b9050919050565b60006020820190508181036000830152612ef181612a8b565b9050919050565b60006020820190508181036000830152612f1181612aae565b9050919050565b60006020820190508181036000830152612f3181612ad1565b9050919050565b60006020820190508181036000830152612f5181612af4565b9050919050565b60006020820190508181036000830152612f7181612b17565b9050919050565b60006020820190508181036000830152612f9181612b3a565b9050919050565b60006020820190508181036000830152612fb181612b5d565b9050919050565b60006020820190508181036000830152612fd181612b80565b9050919050565b60006020820190508181036000830152612ff181612bc6565b9050919050565b6000602082019050818103600083015261301181612be9565b9050919050565b6000602082019050818103600083015261303181612c0c565b9050919050565b6000602082019050818103600083015261305181612c2f565b9050919050565b6000602082019050818103600083015261307181612c75565b9050919050565b6000602082019050818103600083015261309181612c98565b9050919050565b600060208201905081810360008301526130b181612cbb565b9050919050565b600060208201905081810360008301526130d181612cde565b9050919050565b60006020820190506130ed6000830184612d01565b92915050565b60006130fd61310e565b905061310982826133da565b919050565b6000604051905090565b600067ffffffffffffffff82111561313357613132613512565b5b61313c82613541565b9050602081019050919050565b600067ffffffffffffffff82111561316457613163613512565b5b61316d82613541565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131e88261335c565b91506131f38361335c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322857613227613485565b5b828201905092915050565b600061323e8261335c565b91506132498361335c565b925082613259576132586134b4565b5b828204905092915050565b600061326f8261335c565b915061327a8361335c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b3576132b2613485565b5b828202905092915050565b60006132c98261335c565b91506132d48361335c565b9250828210156132e7576132e6613485565b5b828203905092915050565b60006132fd8261333c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613393578082015181840152602081019050613378565b838111156133a2576000848401525b50505050565b600060028204905060018216806133c057607f821691505b602082108114156133d4576133d36134e3565b5b50919050565b6133e382613541565b810181811067ffffffffffffffff8211171561340257613401613512565b5b80604052505050565b60006134168261335c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344957613448613485565b5b600182019050919050565b600061345f8261335c565b915061346a8361335c565b92508261347a576134796134b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f776e65722063616e206f6e6c79206d696e742074686520666972737420747760008201527f6f2e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436f6e7472616374206d75737420626520756e70617573656420746f206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f546865207072696365206973202e303420455448206f72206d6f72652e000000600082015250565b7f546f6b656e206c696d697420726561636865642e20536f7272792e0000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613b96816132f2565b8114613ba157600080fd5b50565b613bad81613304565b8114613bb857600080fd5b50565b613bc481613310565b8114613bcf57600080fd5b50565b613bdb8161335c565b8114613be657600080fd5b5056fea2646970667358221220ecc012e56a99c3c9c11079345d27fab2ff5d6142606439a578f257785d54a10864736f6c634300080300330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000532d46deb3de797d7d1af7b1631dbc35e8b1630f000000000000000000000000bccb95a6a69ca3154c765e75ed7660be3dd9f253000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d574774597738664c504772727a4339706150647567376437756a366b6b626e56474c6f3542777537645343562f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd146105a5578063e086e5ec146105e2578063e985e9c5146105f9578063f2fde38b146106365761019c565b806395d89b4114610528578063a22cb46514610553578063b88d4fde1461057c5761019c565b80636c9c2faf116100c65780636c9c2faf1461047e57806370a08231146104a9578063715018a6146104e65780638da5cb5b146104fd5761019c565b80636352211e146103eb5780636bde2627146104285780636c0360eb146104535761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461034557806342966c681461036e57806355f804b3146103975780635c975abb146103c05761019c565b806323b872dd146102c857806332cb6b0c146102f157806336d044331461031c5761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f5780631e83409a14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c3919061279a565b61065f565b6040516101d59190612dbb565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612771565b610741565b005b34801561021357600080fd5b5061021c6107da565b6040516102299190612dd6565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061282d565b61086c565b6040516102669190612d54565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612735565b6108f1565b005b6102b260048036038101906102ad91906125ca565b610a09565b6040516102bf91906130d8565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea919061262f565b610b14565b005b3480156102fd57600080fd5b50610306610b74565b60405161031391906130d8565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906125ca565b610b7a565b005b34801561035157600080fd5b5061036c6004803603810190610367919061262f565b610c62565b005b34801561037a57600080fd5b506103956004803603810190610390919061282d565b610c82565b005b3480156103a357600080fd5b506103be60048036038101906103b991906127ec565b610cde565b005b3480156103cc57600080fd5b506103d5610d74565b6040516103e29190612dbb565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061282d565b610d87565b60405161041f9190612d54565b60405180910390f35b34801561043457600080fd5b5061043d610e39565b60405161044a91906130d8565b60405180910390f35b34801561045f57600080fd5b50610468610e44565b6040516104759190612dd6565b60405180910390f35b34801561048a57600080fd5b50610493610ed2565b6040516104a091906130d8565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906125ca565b610ee3565b6040516104dd91906130d8565b60405180910390f35b3480156104f257600080fd5b506104fb610f9b565b005b34801561050957600080fd5b50610512611023565b60405161051f9190612d54565b60405180910390f35b34801561053457600080fd5b5061053d61104c565b60405161054a9190612dd6565b60405180910390f35b34801561055f57600080fd5b5061057a600480360381019061057591906126f9565b6110de565b005b34801561058857600080fd5b506105a3600480360381019061059e919061267e565b61125f565b005b3480156105b157600080fd5b506105cc60048036038101906105c7919061282d565b6112c1565b6040516105d99190612dd6565b60405180910390f35b3480156105ee57600080fd5b506105f761133d565b005b34801561060557600080fd5b50610620600480360381019061061b91906125f3565b6114a5565b60405161062d9190612dbb565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906125ca565b611539565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a575061073982611631565b5b9050919050565b61074961169b565b73ffffffffffffffffffffffffffffffffffffffff16610767611023565b73ffffffffffffffffffffffffffffffffffffffff16146107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490612fd8565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b6060600180546107e9906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610815906133a8565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826116a3565b6108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90612fb8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108fc82610d87565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613038565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098c61169b565b73ffffffffffffffffffffffffffffffffffffffff1614806109bb57506109ba816109b561169b565b6114a5565b5b6109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612f38565b60405180910390fd5b610a04838361170f565b505050565b6000600860009054906101000a900460ff1615610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290612eb8565b60405180910390fd5b6000610a6760076117c8565b905061014d8110610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613098565b60405180910390fd5b668e1bc9bf040000341015610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613078565b60405180910390fd5b610b0183826117d6565b610b0b60076117f4565b80915050919050565b610b25610b1f61169b565b8261180a565b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613058565b60405180910390fd5b610b6f8383836118e8565b505050565b61014d81565b610b8261169b565b73ffffffffffffffffffffffffffffffffffffffff16610ba0611023565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90612fd8565b60405180910390fd5b6002610c0260076117c8565b10610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612e58565b60405180910390fd5b610c5581610c5060076117c8565b6117d6565b610c5f60076117f4565b50565b610c7d8383836040518060200160405280600081525061125f565b505050565b610c93610c8d61169b565b8261180a565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906130b8565b60405180910390fd5b610cdb81611b44565b50565b610ce661169b565b73ffffffffffffffffffffffffffffffffffffffff16610d04611023565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190612fd8565b60405180910390fd5b80600b9080519060200190610d709291906123ee565b5050565b600860009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790612f78565b60405180910390fd5b80915050919050565b668e1bc9bf04000081565b600b8054610e51906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7d906133a8565b8015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b505050505081565b6000610ede60076117c8565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90612f58565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa361169b565b73ffffffffffffffffffffffffffffffffffffffff16610fc1611023565b73ffffffffffffffffffffffffffffffffffffffff1614611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90612fd8565b60405180910390fd5b6110216000611c55565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461105b906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611087906133a8565b80156110d45780601f106110a9576101008083540402835291602001916110d4565b820191906000526020600020905b8154815290600101906020018083116110b757829003601f168201915b5050505050905090565b6110e661169b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612e98565b60405180910390fd5b806006600061116161169b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120e61169b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112539190612dbb565b60405180910390a35050565b61127061126a61169b565b8361180a565b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613058565b60405180910390fd5b6112bb84848484611d19565b50505050565b60606112cc826116a3565b61130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613018565b60405180910390fd5b600b61131683611d75565b604051602001611327929190612d10565b6040516020818303038152906040529050919050565b61134561169b565b73ffffffffffffffffffffffffffffffffffffffff16611363611023565b73ffffffffffffffffffffffffffffffffffffffff16146113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090612fd8565b60405180910390fd5b60006003476113c89190613233565b905061143c6009600060028110611408577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002836114379190613264565b611f22565b6114a2600960016002811061147a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611f22565b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154161169b565b73ffffffffffffffffffffffffffffffffffffffff1661155f611023565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612e18565b60405180910390fd5b61162e81611c55565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178283610d87565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6117f0828260405180602001604052806000815250612016565b5050565b6001816000016000828254019250508190555050565b6000611815826116a3565b611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90612f18565b60405180910390fd5b600061185f83610d87565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118ce57508373ffffffffffffffffffffffffffffffffffffffff166118b68461086c565b73ffffffffffffffffffffffffffffffffffffffff16145b806118df57506118de81856114a5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661190882610d87565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590612ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590612e78565b60405180910390fd5b6119d9838383612071565b6119e460008261170f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a3491906132be565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8b91906131dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611b4f82610d87565b9050611b5d81600084612071565b611b6860008361170f565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb891906132be565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d248484846118e8565b611d3084848484612076565b611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612df8565b60405180910390fd5b50505050565b60606000821415611dbd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f1d565b600082905060005b60008214611def578080611dd89061340b565b915050600a82611de89190613233565b9150611dc5565b60008167ffffffffffffffff811115611e31577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e635781602001600182028036833780820191505090505b5090505b60008514611f1657600182611e7c91906132be565b9150600a85611e8b9190613454565b6030611e9791906131dd565b60f81b818381518110611ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f0f9190613233565b9450611e67565b8093505050505b919050565b80471015611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c90612ef8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f8b90612d3f565b60006040518083038185875af1925050503d8060008114611fc8576040519150601f19603f3d011682016040523d82523d6000602084013e611fcd565b606091505b5050905080612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890612ed8565b60405180910390fd5b505050565b612020838361220d565b61202d6000848484612076565b61206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390612df8565b60405180910390fd5b505050565b505050565b60006120978473ffffffffffffffffffffffffffffffffffffffff166123db565b15612200578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c061169b565b8786866040518563ffffffff1660e01b81526004016120e29493929190612d6f565b602060405180830381600087803b1580156120fc57600080fd5b505af192505050801561212d57506040513d601f19601f8201168201806040525081019061212a91906127c3565b60015b6121b0573d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b506000815114156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90612df8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612205565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490612f98565b60405180910390fd5b612286816116a3565b156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90612e38565b60405180910390fd5b6122d260008383612071565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232291906131dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546123fa906133a8565b90600052602060002090601f01602090048101928261241c5760008555612463565b82601f1061243557805160ff1916838001178555612463565b82800160010185558215612463579182015b82811115612462578251825591602001919060010190612447565b5b5090506124709190612474565b5090565b5b8082111561248d576000816000905550600101612475565b5090565b60006124a461249f84613118565b6130f3565b9050828152602081018484840111156124bc57600080fd5b6124c7848285613366565b509392505050565b60006124e26124dd84613149565b6130f3565b9050828152602081018484840111156124fa57600080fd5b612505848285613366565b509392505050565b60008135905061251c81613b8d565b92915050565b60008135905061253181613ba4565b92915050565b60008135905061254681613bbb565b92915050565b60008151905061255b81613bbb565b92915050565b600082601f83011261257257600080fd5b8135612582848260208601612491565b91505092915050565b600082601f83011261259c57600080fd5b81356125ac8482602086016124cf565b91505092915050565b6000813590506125c481613bd2565b92915050565b6000602082840312156125dc57600080fd5b60006125ea8482850161250d565b91505092915050565b6000806040838503121561260657600080fd5b60006126148582860161250d565b92505060206126258582860161250d565b9150509250929050565b60008060006060848603121561264457600080fd5b60006126528682870161250d565b93505060206126638682870161250d565b9250506040612674868287016125b5565b9150509250925092565b6000806000806080858703121561269457600080fd5b60006126a28782880161250d565b94505060206126b38782880161250d565b93505060406126c4878288016125b5565b925050606085013567ffffffffffffffff8111156126e157600080fd5b6126ed87828801612561565b91505092959194509250565b6000806040838503121561270c57600080fd5b600061271a8582860161250d565b925050602061272b85828601612522565b9150509250929050565b6000806040838503121561274857600080fd5b60006127568582860161250d565b9250506020612767858286016125b5565b9150509250929050565b60006020828403121561278357600080fd5b600061279184828501612522565b91505092915050565b6000602082840312156127ac57600080fd5b60006127ba84828501612537565b91505092915050565b6000602082840312156127d557600080fd5b60006127e38482850161254c565b91505092915050565b6000602082840312156127fe57600080fd5b600082013567ffffffffffffffff81111561281857600080fd5b6128248482850161258b565b91505092915050565b60006020828403121561283f57600080fd5b600061284d848285016125b5565b91505092915050565b61285f816132f2565b82525050565b61286e81613304565b82525050565b600061287f8261318f565b61288981856131a5565b9350612899818560208601613375565b6128a281613541565b840191505092915050565b60006128b88261319a565b6128c281856131c1565b93506128d2818560208601613375565b6128db81613541565b840191505092915050565b60006128f18261319a565b6128fb81856131d2565b935061290b818560208601613375565b80840191505092915050565b60008154612924816133a8565b61292e81866131d2565b94506001821660008114612949576001811461295a5761298d565b60ff1983168652818601935061298d565b6129638561317a565b60005b8381101561298557815481890152600182019150602081019050612966565b838801955050505b50505092915050565b60006129a36032836131c1565b91506129ae82613552565b604082019050919050565b60006129c66026836131c1565b91506129d1826135a1565b604082019050919050565b60006129e9601c836131c1565b91506129f4826135f0565b602082019050919050565b6000612a0c6022836131c1565b9150612a1782613619565b604082019050919050565b6000612a2f6024836131c1565b9150612a3a82613668565b604082019050919050565b6000612a526019836131c1565b9150612a5d826136b7565b602082019050919050565b6000612a756021836131c1565b9150612a80826136e0565b604082019050919050565b6000612a98603a836131c1565b9150612aa38261372f565b604082019050919050565b6000612abb601d836131c1565b9150612ac68261377e565b602082019050919050565b6000612ade602c836131c1565b9150612ae9826137a7565b604082019050919050565b6000612b016038836131c1565b9150612b0c826137f6565b604082019050919050565b6000612b24602a836131c1565b9150612b2f82613845565b604082019050919050565b6000612b476029836131c1565b9150612b5282613894565b604082019050919050565b6000612b6a6020836131c1565b9150612b75826138e3565b602082019050919050565b6000612b8d602c836131c1565b9150612b988261390c565b604082019050919050565b6000612bb06005836131d2565b9150612bbb8261395b565b600582019050919050565b6000612bd36020836131c1565b9150612bde82613984565b602082019050919050565b6000612bf66029836131c1565b9150612c01826139ad565b604082019050919050565b6000612c19602f836131c1565b9150612c24826139fc565b604082019050919050565b6000612c3c6021836131c1565b9150612c4782613a4b565b604082019050919050565b6000612c5f6000836131b6565b9150612c6a82613a9a565b600082019050919050565b6000612c826031836131c1565b9150612c8d82613a9d565b604082019050919050565b6000612ca5601d836131c1565b9150612cb082613aec565b602082019050919050565b6000612cc8601b836131c1565b9150612cd382613b15565b602082019050919050565b6000612ceb6030836131c1565b9150612cf682613b3e565b604082019050919050565b612d0a8161335c565b82525050565b6000612d1c8285612917565b9150612d2882846128e6565b9150612d3382612ba3565b91508190509392505050565b6000612d4a82612c52565b9150819050919050565b6000602082019050612d696000830184612856565b92915050565b6000608082019050612d846000830187612856565b612d916020830186612856565b612d9e6040830185612d01565b8181036060830152612db08184612874565b905095945050505050565b6000602082019050612dd06000830184612865565b92915050565b60006020820190508181036000830152612df081846128ad565b905092915050565b60006020820190508181036000830152612e1181612996565b9050919050565b60006020820190508181036000830152612e31816129b9565b9050919050565b60006020820190508181036000830152612e51816129dc565b9050919050565b60006020820190508181036000830152612e71816129ff565b9050919050565b60006020820190508181036000830152612e9181612a22565b9050919050565b60006020820190508181036000830152612eb181612a45565b9050919050565b60006020820190508181036000830152612ed181612a68565b9050919050565b60006020820190508181036000830152612ef181612a8b565b9050919050565b60006020820190508181036000830152612f1181612aae565b9050919050565b60006020820190508181036000830152612f3181612ad1565b9050919050565b60006020820190508181036000830152612f5181612af4565b9050919050565b60006020820190508181036000830152612f7181612b17565b9050919050565b60006020820190508181036000830152612f9181612b3a565b9050919050565b60006020820190508181036000830152612fb181612b5d565b9050919050565b60006020820190508181036000830152612fd181612b80565b9050919050565b60006020820190508181036000830152612ff181612bc6565b9050919050565b6000602082019050818103600083015261301181612be9565b9050919050565b6000602082019050818103600083015261303181612c0c565b9050919050565b6000602082019050818103600083015261305181612c2f565b9050919050565b6000602082019050818103600083015261307181612c75565b9050919050565b6000602082019050818103600083015261309181612c98565b9050919050565b600060208201905081810360008301526130b181612cbb565b9050919050565b600060208201905081810360008301526130d181612cde565b9050919050565b60006020820190506130ed6000830184612d01565b92915050565b60006130fd61310e565b905061310982826133da565b919050565b6000604051905090565b600067ffffffffffffffff82111561313357613132613512565b5b61313c82613541565b9050602081019050919050565b600067ffffffffffffffff82111561316457613163613512565b5b61316d82613541565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131e88261335c565b91506131f38361335c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322857613227613485565b5b828201905092915050565b600061323e8261335c565b91506132498361335c565b925082613259576132586134b4565b5b828204905092915050565b600061326f8261335c565b915061327a8361335c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b3576132b2613485565b5b828202905092915050565b60006132c98261335c565b91506132d48361335c565b9250828210156132e7576132e6613485565b5b828203905092915050565b60006132fd8261333c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613393578082015181840152602081019050613378565b838111156133a2576000848401525b50505050565b600060028204905060018216806133c057607f821691505b602082108114156133d4576133d36134e3565b5b50919050565b6133e382613541565b810181811067ffffffffffffffff8211171561340257613401613512565b5b80604052505050565b60006134168261335c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344957613448613485565b5b600182019050919050565b600061345f8261335c565b915061346a8361335c565b92508261347a576134796134b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f776e65722063616e206f6e6c79206d696e742074686520666972737420747760008201527f6f2e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436f6e7472616374206d75737420626520756e70617573656420746f206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f546865207072696365206973202e303420455448206f72206d6f72652e000000600082015250565b7f546f6b656e206c696d697420726561636865642e20536f7272792e0000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613b96816132f2565b8114613ba157600080fd5b50565b613bad81613304565b8114613bb857600080fd5b50565b613bc481613310565b8114613bcf57600080fd5b50565b613bdb8161335c565b8114613be657600080fd5b5056fea2646970667358221220ecc012e56a99c3c9c11079345d27fab2ff5d6142606439a578f257785d54a10864736f6c63430008030033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000532d46deb3de797d7d1af7b1631dbc35e8b1630f000000000000000000000000bccb95a6a69ca3154c765e75ed7660be3dd9f253000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d574774597738664c504772727a4339706150647567376437756a366b6b626e56474c6f3542777537645343562f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialBaseURI (string): https://gateway.pinata.cloud/ipfs/QmWGtYw8fLPGrrzC9paPdug7d7uj6kkbnVGLo5Bwu7dSCV/
Arg [1] : _royaltyRecipients (address[2]): 0x532D46dEB3de797d7d1AF7B1631DBC35e8B1630f,0xbCcb95a6a69cA3154C765E75ed7660BE3DD9F253

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000532d46deb3de797d7d1af7b1631dbc35e8b1630f
Arg [2] : 000000000000000000000000bccb95a6a69ca3154c765e75ed7660be3dd9f253
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d574774597738664c504772727a4339706150647567376437756a366b
Arg [6] : 6b626e56474c6f3542777537645343562f000000000000000000000000000000


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.