ETH Price: $3,075.81 (-6.57%)
Gas: 11 Gwei

Worst City (WC)
 

Overview

TokenID

894

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
WorstCityNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : WorstCityNFT.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

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

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

    uint256 public totalSupply;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;
    uint256 public maxSupply = 5555;
    uint256 public maxMintAmountPerContract = 2;
    address[] whitelistAddresses;
    bool public paused = true;
    bool public whitelistRound = false;
    bool public revealed = false;

    constructor() ERC721("Worst City", "WC") {
        setHiddenMetadataUri("ipfs://QmapT2NxsbKbAdabFDQua2vCsSCpruqqt55QotWXdrrKxW");
        totalSupply = 0;
    }

    function setIswhitelistEnabled(bool _state) public onlyOwner {
        whitelistRound = _state;
    }
    function mint() public  {
        require(!paused, "Mint event is paused!");
        require(balanceOf(msg.sender) < maxMintAmountPerContract, "you have already max mint !");

        if(whitelistRound==true){
            require(isWhitelistted(msg.sender), "user is not Whitelisted");
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }else if(whitelistRound==false){
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
            if(totalSupply == 1500 || totalSupply == 3000 ){
                paused = true;
            }
        }

    }


    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

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

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

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

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }
    function whitelistUsers(address[] calldata _users) public onlyOwner {
        whitelistAddresses = _users;
    }
    function isWhitelistted(address _user) public view returns (bool) {
        for (uint i = 0; i < whitelistAddresses.length; i++) {
            if (whitelistAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }
    function setMaxMintAmountPerContract(uint256 _maxMintAmountPerContract) public onlyOwner {
        maxMintAmountPerContract = _maxMintAmountPerContract;
    }


    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner {

        (bool os,) = payable(owner()).call{value: address(this).balance}("");
        require(os);

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

File 2 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 8 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelistted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIswhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerContract","type":"uint256"}],"name":"setMaxMintAmountPerContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000391565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000391565b506115b3600b556002600c556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600a81526020017f576f7273742043697479000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f574300000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016892919062000391565b5080600190805190602001906200018192919062000391565b505050620001a462000198620001dc60201b60201c565b620001e460201b60201c565b620001ce6040518060600160405280603581526020016200400f60359139620002aa60201b60201c565b600060078190555062000529565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ba620002d660201b60201c565b80600a9080519060200190620002d292919062000391565b5050565b620002e6620001dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030c6200036760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035c9062000468565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200039f906200049b565b90600052602060002090601f016020900481019282620003c357600085556200040f565b82601f10620003de57805160ff19168380011785556200040f565b828001600101855582156200040f579182015b828111156200040e578251825591602001919060010190620003f1565b5b5090506200041e919062000422565b5090565b5b808211156200043d57600081600090555060010162000423565b5090565b6000620004506020836200048a565b91506200045d8262000500565b602082019050919050565b60006020820190508181036000830152620004838162000441565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004b457607f821691505b60208210811415620004cb57620004ca620004d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ad680620005396000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80636352211e11610130578063a45ba8e7116100b8578063e0a808531161007c578063e0a808531461061a578063e985e9c514610636578063ed86ebdc14610666578063edec5f2714610682578063f2fde38b1461069e57610227565b8063a45ba8e714610576578063ad024d6e14610594578063b88d4fde146105b0578063c87b56dd146105cc578063d5abeb01146105fc57610227565b80637ec4a659116100ff5780637ec4a659146104e45780638da5cb5b1461050057806395d89b411461051e578063a22cb4651461053c578063a40212991461055857610227565b80636352211e1461045c578063651b1a281461048c57806370a08231146104aa578063715018a6146104da57610227565b80633ccfd60b116101b35780634fdd43cb116101825780634fdd43cb146103c857806351830227146103e45780635503a0e8146104025780635c975abb1461042057806362b99ad41461043e57610227565b80633ccfd60b1461034257806342842e0e1461034c578063438b6300146103685780634acab3b41461039857610227565b80631249c58b116101fa5780631249c58b146102c657806316ba10e0146102d057806316c38b3c146102ec57806318160ddd1461030857806323b872dd1461032657610227565b806301ffc9a71461022c57806306fdde031461025c578063081812fc1461027a578063095ea7b3146102aa575b600080fd5b61024660048036038101906102419190612946565b6106ba565b6040516102539190612f2f565b60405180910390f35b61026461079c565b6040516102719190612f4a565b60405180910390f35b610294600480360381019061028f91906129e9565b61082e565b6040516102a19190612ea6565b60405180910390f35b6102c460048036038101906102bf919061288c565b610874565b005b6102ce61098c565b005b6102ea60048036038101906102e591906129a0565b610b53565b005b61030660048036038101906103019190612919565b610b75565b005b610310610b9a565b60405161031d919061318c565b60405180910390f35b610340600480360381019061033b9190612776565b610ba0565b005b61034a610c00565b005b61036660048036038101906103619190612776565b610c88565b005b610382600480360381019061037d9190612709565b610ca8565b60405161038f9190612f0d565b60405180910390f35b6103b260048036038101906103ad9190612709565b610db3565b6040516103bf9190612f2f565b60405180910390f35b6103e260048036038101906103dd91906129a0565b610e62565b005b6103ec610e84565b6040516103f99190612f2f565b60405180910390f35b61040a610e97565b6040516104179190612f4a565b60405180910390f35b610428610f25565b6040516104359190612f2f565b60405180910390f35b610446610f38565b6040516104539190612f4a565b60405180910390f35b610476600480360381019061047191906129e9565b610fc6565b6040516104839190612ea6565b60405180910390f35b610494611078565b6040516104a1919061318c565b60405180910390f35b6104c460048036038101906104bf9190612709565b61107e565b6040516104d1919061318c565b60405180910390f35b6104e2611136565b005b6104fe60048036038101906104f991906129a0565b61114a565b005b61050861116c565b6040516105159190612ea6565b60405180910390f35b610526611196565b6040516105339190612f4a565b60405180910390f35b6105566004803603810190610551919061284c565b611228565b005b61056061123e565b60405161056d9190612f2f565b60405180910390f35b61057e611251565b60405161058b9190612f4a565b60405180910390f35b6105ae60048036038101906105a99190612919565b6112df565b005b6105ca60048036038101906105c591906127c9565b611304565b005b6105e660048036038101906105e191906129e9565b611366565b6040516105f39190612f4a565b60405180910390f35b6106046114bf565b604051610611919061318c565b60405180910390f35b610634600480360381019061062f9190612919565b6114c5565b005b610650600480360381019061064b9190612736565b6114ea565b60405161065d9190612f2f565b60405180910390f35b610680600480360381019061067b91906129e9565b61157e565b005b61069c600480360381019061069791906128cc565b611590565b005b6106b860048036038101906106b39190612709565b6115ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610795575061079482611632565b5b9050919050565b6060600080546107ab9061343b565b80601f01602080910402602001604051908101604052809291908181526020018280546107d79061343b565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108398261169c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087f82610fc6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e79061314c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090f6116e7565b73ffffffffffffffffffffffffffffffffffffffff16148061093e575061093d816109386116e7565b6114ea565b5b61097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906130ac565b60405180910390fd5b61098783836116ef565b505050565b600e60009054906101000a900460ff16156109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061300c565b60405180910390fd5b600c546109e83361107e565b10610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f9061306c565b60405180910390fd5b60011515600e60019054906101000a900460ff1615151415610ac757610a4d33610db3565b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612f6c565b60405180910390fd5b60006001600754610a9d91906132ca565b905060076000815480929190610ab29061349e565b9190505550610ac133826117a8565b50610b51565b60001515600e60019054906101000a900460ff1615151415610b505760006001600754610af491906132ca565b905060076000815480929190610b099061349e565b9190505550610b1833826117a8565b6105dc6007541480610b2d5750610bb8600754145b15610b4e576001600e60006101000a81548160ff0219169083151502179055505b505b5b565b610b5b6117c6565b8060099080519060200190610b71929190612427565b5050565b610b7d6117c6565b80600e60006101000a81548160ff02191690831515021790555050565b60075481565b610bb1610bab6116e7565b82611844565b610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be79061316c565b60405180910390fd5b610bfb8383836118d9565b505050565b610c086117c6565b6000610c1261116c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c3590612e91565b60006040518083038185875af1925050503d8060008114610c72576040519150601f19603f3d011682016040523d82523d6000602084013e610c77565b606091505b5050905080610c8557600080fd5b50565b610ca383838360405180602001604052806000815250611304565b505050565b60606000610cb58361107e565b905060008167ffffffffffffffff811115610cd357610cd26135d4565b5b604051908082528060200260200182016040528015610d015781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d1e5750600b548211155b15610da7576000610d2e83610fc6565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d935782848381518110610d7857610d776135a5565b5b6020026020010181815250508180610d8f9061349e565b9250505b8280610d9e9061349e565b93505050610d0d565b82945050505050919050565b600080600090505b600d80549050811015610e57578273ffffffffffffffffffffffffffffffffffffffff16600d8281548110610df357610df26135a5565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e44576001915050610e5d565b8080610e4f9061349e565b915050610dbb565b50600090505b919050565b610e6a6117c6565b80600a9080519060200190610e80929190612427565b5050565b600e60029054906101000a900460ff1681565b60098054610ea49061343b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed09061343b565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610f459061343b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f719061343b565b8015610fbe5780601f10610f9357610100808354040283529160200191610fbe565b820191906000526020600020905b815481529060010190602001808311610fa157829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061312c565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e69061308c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113e6117c6565b6111486000611b40565b565b6111526117c6565b8060089080519060200190611168929190612427565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a59061343b565b80601f01602080910402602001604051908101604052809291908181526020018280546111d19061343b565b801561121e5780601f106111f35761010080835404028352916020019161121e565b820191906000526020600020905b81548152906001019060200180831161120157829003601f168201915b5050505050905090565b61123a6112336116e7565b8383611c06565b5050565b600e60019054906101000a900460ff1681565b600a805461125e9061343b565b80601f016020809104026020016040519081016040528092919081815260200182805461128a9061343b565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e76117c6565b80600e60016101000a81548160ff02191690831515021790555050565b61131561130f6116e7565b83611844565b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b9061316c565b60405180910390fd5b61136084848484611d73565b50505050565b606061137182611dcf565b6113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a79061310c565b60405180910390fd5b60001515600e60029054906101000a900460ff161515141561145e57600a80546113d99061343b565b80601f01602080910402602001604051908101604052809291908181526020018280546114059061343b565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b505050505090506114ba565b6000611468611e3b565b9050600081511161148857604051806020016040528060008152506114b6565b8061149284611ecd565b60096040516020016114a693929190612e60565b6040516020818303038152906040525b9150505b919050565b600b5481565b6114cd6117c6565b80600e60026101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115866117c6565b80600c8190555050565b6115986117c6565b8181600d91906115a99291906124ad565b505050565b6115b66117c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90612fac565b60405180910390fd5b61162f81611b40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116a581611dcf565b6116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061312c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661176283610fc6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117c282826040518060200160405280600081525061202e565b5050565b6117ce6116e7565b73ffffffffffffffffffffffffffffffffffffffff166117ec61116c565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906130ec565b60405180910390fd5b565b60008061185083610fc6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611892575061189181856114ea565b5b806118d057508373ffffffffffffffffffffffffffffffffffffffff166118b88461082e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118f982610fc6565b73ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690612fcc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b69061302c565b60405180910390fd5b6119ca838383612089565b6119d56000826116ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a259190613351565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a7c91906132ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3b83838361208e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c9061304c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d669190612f2f565b60405180910390a3505050565b611d7e8484846118d9565b611d8a84848484612093565b611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090612f8c565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611e4a9061343b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e769061343b565b8015611ec35780601f10611e9857610100808354040283529160200191611ec3565b820191906000526020600020905b815481529060010190602001808311611ea657829003601f168201915b5050505050905090565b60606000821415611f15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612029565b600082905060005b60008214611f47578080611f309061349e565b915050600a82611f409190613320565b9150611f1d565b60008167ffffffffffffffff811115611f6357611f626135d4565b5b6040519080825280601f01601f191660200182016040528015611f955781602001600182028036833780820191505090505b5090505b6000851461202257600182611fae9190613351565b9150600a85611fbd91906134e7565b6030611fc991906132ca565b60f81b818381518110611fdf57611fde6135a5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561201b9190613320565b9450611f99565b8093505050505b919050565b612038838361222a565b6120456000848484612093565b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90612f8c565b60405180910390fd5b505050565b505050565b505050565b60006120b48473ffffffffffffffffffffffffffffffffffffffff16612404565b1561221d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120dd6116e7565b8786866040518563ffffffff1660e01b81526004016120ff9493929190612ec1565b602060405180830381600087803b15801561211957600080fd5b505af192505050801561214a57506040513d601f19601f820116820180604052508101906121479190612973565b60015b6121cd573d806000811461217a576040519150601f19603f3d011682016040523d82523d6000602084013e61217f565b606091505b506000815114156121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90612f8c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612222565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906130cc565b60405180910390fd5b6122a381611dcf565b156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90612fec565b60405180910390fd5b6122ef60008383612089565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233f91906132ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124006000838361208e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546124339061343b565b90600052602060002090601f016020900481019282612455576000855561249c565b82601f1061246e57805160ff191683800117855561249c565b8280016001018555821561249c579182015b8281111561249b578251825591602001919060010190612480565b5b5090506124a9919061254d565b5090565b82805482825590600052602060002090810192821561253c579160200282015b8281111561253b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906124cd565b5b509050612549919061254d565b5090565b5b8082111561256657600081600090555060010161254e565b5090565b600061257d612578846131cc565b6131a7565b90508281526020810184848401111561259957612598613612565b5b6125a48482856133f9565b509392505050565b60006125bf6125ba846131fd565b6131a7565b9050828152602081018484840111156125db576125da613612565b5b6125e68482856133f9565b509392505050565b6000813590506125fd81613a44565b92915050565b60008083601f84011261261957612618613608565b5b8235905067ffffffffffffffff81111561263657612635613603565b5b6020830191508360208202830111156126525761265161360d565b5b9250929050565b60008135905061266881613a5b565b92915050565b60008135905061267d81613a72565b92915050565b60008151905061269281613a72565b92915050565b600082601f8301126126ad576126ac613608565b5b81356126bd84826020860161256a565b91505092915050565b600082601f8301126126db576126da613608565b5b81356126eb8482602086016125ac565b91505092915050565b60008135905061270381613a89565b92915050565b60006020828403121561271f5761271e61361c565b5b600061272d848285016125ee565b91505092915050565b6000806040838503121561274d5761274c61361c565b5b600061275b858286016125ee565b925050602061276c858286016125ee565b9150509250929050565b60008060006060848603121561278f5761278e61361c565b5b600061279d868287016125ee565b93505060206127ae868287016125ee565b92505060406127bf868287016126f4565b9150509250925092565b600080600080608085870312156127e3576127e261361c565b5b60006127f1878288016125ee565b9450506020612802878288016125ee565b9350506040612813878288016126f4565b925050606085013567ffffffffffffffff81111561283457612833613617565b5b61284087828801612698565b91505092959194509250565b600080604083850312156128635761286261361c565b5b6000612871858286016125ee565b925050602061288285828601612659565b9150509250929050565b600080604083850312156128a3576128a261361c565b5b60006128b1858286016125ee565b92505060206128c2858286016126f4565b9150509250929050565b600080602083850312156128e3576128e261361c565b5b600083013567ffffffffffffffff81111561290157612900613617565b5b61290d85828601612603565b92509250509250929050565b60006020828403121561292f5761292e61361c565b5b600061293d84828501612659565b91505092915050565b60006020828403121561295c5761295b61361c565b5b600061296a8482850161266e565b91505092915050565b6000602082840312156129895761298861361c565b5b600061299784828501612683565b91505092915050565b6000602082840312156129b6576129b561361c565b5b600082013567ffffffffffffffff8111156129d4576129d3613617565b5b6129e0848285016126c6565b91505092915050565b6000602082840312156129ff576129fe61361c565b5b6000612a0d848285016126f4565b91505092915050565b6000612a228383612e42565b60208301905092915050565b612a3781613385565b82525050565b6000612a4882613253565b612a528185613281565b9350612a5d8361322e565b8060005b83811015612a8e578151612a758882612a16565b9750612a8083613274565b925050600181019050612a61565b5085935050505092915050565b612aa481613397565b82525050565b6000612ab58261325e565b612abf8185613292565b9350612acf818560208601613408565b612ad881613621565b840191505092915050565b6000612aee82613269565b612af881856132ae565b9350612b08818560208601613408565b612b1181613621565b840191505092915050565b6000612b2782613269565b612b3181856132bf565b9350612b41818560208601613408565b80840191505092915050565b60008154612b5a8161343b565b612b6481866132bf565b94506001821660008114612b7f5760018114612b9057612bc3565b60ff19831686528186019350612bc3565b612b998561323e565b60005b83811015612bbb57815481890152600182019150602081019050612b9c565b838801955050505b50505092915050565b6000612bd96017836132ae565b9150612be482613632565b602082019050919050565b6000612bfc6032836132ae565b9150612c078261365b565b604082019050919050565b6000612c1f6026836132ae565b9150612c2a826136aa565b604082019050919050565b6000612c426025836132ae565b9150612c4d826136f9565b604082019050919050565b6000612c65601c836132ae565b9150612c7082613748565b602082019050919050565b6000612c886015836132ae565b9150612c9382613771565b602082019050919050565b6000612cab6024836132ae565b9150612cb68261379a565b604082019050919050565b6000612cce6019836132ae565b9150612cd9826137e9565b602082019050919050565b6000612cf1601b836132ae565b9150612cfc82613812565b602082019050919050565b6000612d146029836132ae565b9150612d1f8261383b565b604082019050919050565b6000612d37603e836132ae565b9150612d428261388a565b604082019050919050565b6000612d5a6020836132ae565b9150612d65826138d9565b602082019050919050565b6000612d7d6020836132ae565b9150612d8882613902565b602082019050919050565b6000612da0602f836132ae565b9150612dab8261392b565b604082019050919050565b6000612dc36018836132ae565b9150612dce8261397a565b602082019050919050565b6000612de66021836132ae565b9150612df1826139a3565b604082019050919050565b6000612e096000836132a3565b9150612e14826139f2565b600082019050919050565b6000612e2c602e836132ae565b9150612e37826139f5565b604082019050919050565b612e4b816133ef565b82525050565b612e5a816133ef565b82525050565b6000612e6c8286612b1c565b9150612e788285612b1c565b9150612e848284612b4d565b9150819050949350505050565b6000612e9c82612dfc565b9150819050919050565b6000602082019050612ebb6000830184612a2e565b92915050565b6000608082019050612ed66000830187612a2e565b612ee36020830186612a2e565b612ef06040830185612e51565b8181036060830152612f028184612aaa565b905095945050505050565b60006020820190508181036000830152612f278184612a3d565b905092915050565b6000602082019050612f446000830184612a9b565b92915050565b60006020820190508181036000830152612f648184612ae3565b905092915050565b60006020820190508181036000830152612f8581612bcc565b9050919050565b60006020820190508181036000830152612fa581612bef565b9050919050565b60006020820190508181036000830152612fc581612c12565b9050919050565b60006020820190508181036000830152612fe581612c35565b9050919050565b6000602082019050818103600083015261300581612c58565b9050919050565b6000602082019050818103600083015261302581612c7b565b9050919050565b6000602082019050818103600083015261304581612c9e565b9050919050565b6000602082019050818103600083015261306581612cc1565b9050919050565b6000602082019050818103600083015261308581612ce4565b9050919050565b600060208201905081810360008301526130a581612d07565b9050919050565b600060208201905081810360008301526130c581612d2a565b9050919050565b600060208201905081810360008301526130e581612d4d565b9050919050565b6000602082019050818103600083015261310581612d70565b9050919050565b6000602082019050818103600083015261312581612d93565b9050919050565b6000602082019050818103600083015261314581612db6565b9050919050565b6000602082019050818103600083015261316581612dd9565b9050919050565b6000602082019050818103600083015261318581612e1f565b9050919050565b60006020820190506131a16000830184612e51565b92915050565b60006131b16131c2565b90506131bd828261346d565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e7576131e66135d4565b5b6131f082613621565b9050602081019050919050565b600067ffffffffffffffff821115613218576132176135d4565b5b61322182613621565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132d5826133ef565b91506132e0836133ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561331557613314613518565b5b828201905092915050565b600061332b826133ef565b9150613336836133ef565b92508261334657613345613547565b5b828204905092915050565b600061335c826133ef565b9150613367836133ef565b92508282101561337a57613379613518565b5b828203905092915050565b6000613390826133cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561342657808201518184015260208101905061340b565b83811115613435576000848401525b50505050565b6000600282049050600182168061345357607f821691505b6020821081141561346757613466613576565b5b50919050565b61347682613621565b810181811067ffffffffffffffff82111715613495576134946135d4565b5b80604052505050565b60006134a9826133ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134dc576134db613518565b5b600182019050919050565b60006134f2826133ef565b91506134fd836133ef565b92508261350d5761350c613547565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f75736572206973206e6f742057686974656c6973746564000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74206576656e7420697320706175736564210000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f796f75206861766520616c7265616479206d6178206d696e7420210000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613a4d81613385565b8114613a5857600080fd5b50565b613a6481613397565b8114613a6f57600080fd5b50565b613a7b816133a3565b8114613a8657600080fd5b50565b613a92816133ef565b8114613a9d57600080fd5b5056fea264697066735822122091847d1c41b263fd3bb14cc3948a8d3b4def8439bf6fa1a32c45aab3c9404b0b64736f6c63430008070033697066733a2f2f516d617054324e7873624b624164616246445175613276437353437072757171743535516f7457586472724b7857

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80636352211e11610130578063a45ba8e7116100b8578063e0a808531161007c578063e0a808531461061a578063e985e9c514610636578063ed86ebdc14610666578063edec5f2714610682578063f2fde38b1461069e57610227565b8063a45ba8e714610576578063ad024d6e14610594578063b88d4fde146105b0578063c87b56dd146105cc578063d5abeb01146105fc57610227565b80637ec4a659116100ff5780637ec4a659146104e45780638da5cb5b1461050057806395d89b411461051e578063a22cb4651461053c578063a40212991461055857610227565b80636352211e1461045c578063651b1a281461048c57806370a08231146104aa578063715018a6146104da57610227565b80633ccfd60b116101b35780634fdd43cb116101825780634fdd43cb146103c857806351830227146103e45780635503a0e8146104025780635c975abb1461042057806362b99ad41461043e57610227565b80633ccfd60b1461034257806342842e0e1461034c578063438b6300146103685780634acab3b41461039857610227565b80631249c58b116101fa5780631249c58b146102c657806316ba10e0146102d057806316c38b3c146102ec57806318160ddd1461030857806323b872dd1461032657610227565b806301ffc9a71461022c57806306fdde031461025c578063081812fc1461027a578063095ea7b3146102aa575b600080fd5b61024660048036038101906102419190612946565b6106ba565b6040516102539190612f2f565b60405180910390f35b61026461079c565b6040516102719190612f4a565b60405180910390f35b610294600480360381019061028f91906129e9565b61082e565b6040516102a19190612ea6565b60405180910390f35b6102c460048036038101906102bf919061288c565b610874565b005b6102ce61098c565b005b6102ea60048036038101906102e591906129a0565b610b53565b005b61030660048036038101906103019190612919565b610b75565b005b610310610b9a565b60405161031d919061318c565b60405180910390f35b610340600480360381019061033b9190612776565b610ba0565b005b61034a610c00565b005b61036660048036038101906103619190612776565b610c88565b005b610382600480360381019061037d9190612709565b610ca8565b60405161038f9190612f0d565b60405180910390f35b6103b260048036038101906103ad9190612709565b610db3565b6040516103bf9190612f2f565b60405180910390f35b6103e260048036038101906103dd91906129a0565b610e62565b005b6103ec610e84565b6040516103f99190612f2f565b60405180910390f35b61040a610e97565b6040516104179190612f4a565b60405180910390f35b610428610f25565b6040516104359190612f2f565b60405180910390f35b610446610f38565b6040516104539190612f4a565b60405180910390f35b610476600480360381019061047191906129e9565b610fc6565b6040516104839190612ea6565b60405180910390f35b610494611078565b6040516104a1919061318c565b60405180910390f35b6104c460048036038101906104bf9190612709565b61107e565b6040516104d1919061318c565b60405180910390f35b6104e2611136565b005b6104fe60048036038101906104f991906129a0565b61114a565b005b61050861116c565b6040516105159190612ea6565b60405180910390f35b610526611196565b6040516105339190612f4a565b60405180910390f35b6105566004803603810190610551919061284c565b611228565b005b61056061123e565b60405161056d9190612f2f565b60405180910390f35b61057e611251565b60405161058b9190612f4a565b60405180910390f35b6105ae60048036038101906105a99190612919565b6112df565b005b6105ca60048036038101906105c591906127c9565b611304565b005b6105e660048036038101906105e191906129e9565b611366565b6040516105f39190612f4a565b60405180910390f35b6106046114bf565b604051610611919061318c565b60405180910390f35b610634600480360381019061062f9190612919565b6114c5565b005b610650600480360381019061064b9190612736565b6114ea565b60405161065d9190612f2f565b60405180910390f35b610680600480360381019061067b91906129e9565b61157e565b005b61069c600480360381019061069791906128cc565b611590565b005b6106b860048036038101906106b39190612709565b6115ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610795575061079482611632565b5b9050919050565b6060600080546107ab9061343b565b80601f01602080910402602001604051908101604052809291908181526020018280546107d79061343b565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108398261169c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087f82610fc6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e79061314c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090f6116e7565b73ffffffffffffffffffffffffffffffffffffffff16148061093e575061093d816109386116e7565b6114ea565b5b61097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906130ac565b60405180910390fd5b61098783836116ef565b505050565b600e60009054906101000a900460ff16156109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061300c565b60405180910390fd5b600c546109e83361107e565b10610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f9061306c565b60405180910390fd5b60011515600e60019054906101000a900460ff1615151415610ac757610a4d33610db3565b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612f6c565b60405180910390fd5b60006001600754610a9d91906132ca565b905060076000815480929190610ab29061349e565b9190505550610ac133826117a8565b50610b51565b60001515600e60019054906101000a900460ff1615151415610b505760006001600754610af491906132ca565b905060076000815480929190610b099061349e565b9190505550610b1833826117a8565b6105dc6007541480610b2d5750610bb8600754145b15610b4e576001600e60006101000a81548160ff0219169083151502179055505b505b5b565b610b5b6117c6565b8060099080519060200190610b71929190612427565b5050565b610b7d6117c6565b80600e60006101000a81548160ff02191690831515021790555050565b60075481565b610bb1610bab6116e7565b82611844565b610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be79061316c565b60405180910390fd5b610bfb8383836118d9565b505050565b610c086117c6565b6000610c1261116c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c3590612e91565b60006040518083038185875af1925050503d8060008114610c72576040519150601f19603f3d011682016040523d82523d6000602084013e610c77565b606091505b5050905080610c8557600080fd5b50565b610ca383838360405180602001604052806000815250611304565b505050565b60606000610cb58361107e565b905060008167ffffffffffffffff811115610cd357610cd26135d4565b5b604051908082528060200260200182016040528015610d015781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d1e5750600b548211155b15610da7576000610d2e83610fc6565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d935782848381518110610d7857610d776135a5565b5b6020026020010181815250508180610d8f9061349e565b9250505b8280610d9e9061349e565b93505050610d0d565b82945050505050919050565b600080600090505b600d80549050811015610e57578273ffffffffffffffffffffffffffffffffffffffff16600d8281548110610df357610df26135a5565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e44576001915050610e5d565b8080610e4f9061349e565b915050610dbb565b50600090505b919050565b610e6a6117c6565b80600a9080519060200190610e80929190612427565b5050565b600e60029054906101000a900460ff1681565b60098054610ea49061343b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed09061343b565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610f459061343b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f719061343b565b8015610fbe5780601f10610f9357610100808354040283529160200191610fbe565b820191906000526020600020905b815481529060010190602001808311610fa157829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061312c565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e69061308c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113e6117c6565b6111486000611b40565b565b6111526117c6565b8060089080519060200190611168929190612427565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a59061343b565b80601f01602080910402602001604051908101604052809291908181526020018280546111d19061343b565b801561121e5780601f106111f35761010080835404028352916020019161121e565b820191906000526020600020905b81548152906001019060200180831161120157829003601f168201915b5050505050905090565b61123a6112336116e7565b8383611c06565b5050565b600e60019054906101000a900460ff1681565b600a805461125e9061343b565b80601f016020809104026020016040519081016040528092919081815260200182805461128a9061343b565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e76117c6565b80600e60016101000a81548160ff02191690831515021790555050565b61131561130f6116e7565b83611844565b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b9061316c565b60405180910390fd5b61136084848484611d73565b50505050565b606061137182611dcf565b6113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a79061310c565b60405180910390fd5b60001515600e60029054906101000a900460ff161515141561145e57600a80546113d99061343b565b80601f01602080910402602001604051908101604052809291908181526020018280546114059061343b565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b505050505090506114ba565b6000611468611e3b565b9050600081511161148857604051806020016040528060008152506114b6565b8061149284611ecd565b60096040516020016114a693929190612e60565b6040516020818303038152906040525b9150505b919050565b600b5481565b6114cd6117c6565b80600e60026101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115866117c6565b80600c8190555050565b6115986117c6565b8181600d91906115a99291906124ad565b505050565b6115b66117c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90612fac565b60405180910390fd5b61162f81611b40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116a581611dcf565b6116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061312c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661176283610fc6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117c282826040518060200160405280600081525061202e565b5050565b6117ce6116e7565b73ffffffffffffffffffffffffffffffffffffffff166117ec61116c565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906130ec565b60405180910390fd5b565b60008061185083610fc6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611892575061189181856114ea565b5b806118d057508373ffffffffffffffffffffffffffffffffffffffff166118b88461082e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118f982610fc6565b73ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690612fcc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b69061302c565b60405180910390fd5b6119ca838383612089565b6119d56000826116ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a259190613351565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a7c91906132ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3b83838361208e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c9061304c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d669190612f2f565b60405180910390a3505050565b611d7e8484846118d9565b611d8a84848484612093565b611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090612f8c565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611e4a9061343b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e769061343b565b8015611ec35780601f10611e9857610100808354040283529160200191611ec3565b820191906000526020600020905b815481529060010190602001808311611ea657829003601f168201915b5050505050905090565b60606000821415611f15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612029565b600082905060005b60008214611f47578080611f309061349e565b915050600a82611f409190613320565b9150611f1d565b60008167ffffffffffffffff811115611f6357611f626135d4565b5b6040519080825280601f01601f191660200182016040528015611f955781602001600182028036833780820191505090505b5090505b6000851461202257600182611fae9190613351565b9150600a85611fbd91906134e7565b6030611fc991906132ca565b60f81b818381518110611fdf57611fde6135a5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561201b9190613320565b9450611f99565b8093505050505b919050565b612038838361222a565b6120456000848484612093565b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90612f8c565b60405180910390fd5b505050565b505050565b505050565b60006120b48473ffffffffffffffffffffffffffffffffffffffff16612404565b1561221d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120dd6116e7565b8786866040518563ffffffff1660e01b81526004016120ff9493929190612ec1565b602060405180830381600087803b15801561211957600080fd5b505af192505050801561214a57506040513d601f19601f820116820180604052508101906121479190612973565b60015b6121cd573d806000811461217a576040519150601f19603f3d011682016040523d82523d6000602084013e61217f565b606091505b506000815114156121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90612f8c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612222565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906130cc565b60405180910390fd5b6122a381611dcf565b156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90612fec565b60405180910390fd5b6122ef60008383612089565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233f91906132ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124006000838361208e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546124339061343b565b90600052602060002090601f016020900481019282612455576000855561249c565b82601f1061246e57805160ff191683800117855561249c565b8280016001018555821561249c579182015b8281111561249b578251825591602001919060010190612480565b5b5090506124a9919061254d565b5090565b82805482825590600052602060002090810192821561253c579160200282015b8281111561253b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906124cd565b5b509050612549919061254d565b5090565b5b8082111561256657600081600090555060010161254e565b5090565b600061257d612578846131cc565b6131a7565b90508281526020810184848401111561259957612598613612565b5b6125a48482856133f9565b509392505050565b60006125bf6125ba846131fd565b6131a7565b9050828152602081018484840111156125db576125da613612565b5b6125e68482856133f9565b509392505050565b6000813590506125fd81613a44565b92915050565b60008083601f84011261261957612618613608565b5b8235905067ffffffffffffffff81111561263657612635613603565b5b6020830191508360208202830111156126525761265161360d565b5b9250929050565b60008135905061266881613a5b565b92915050565b60008135905061267d81613a72565b92915050565b60008151905061269281613a72565b92915050565b600082601f8301126126ad576126ac613608565b5b81356126bd84826020860161256a565b91505092915050565b600082601f8301126126db576126da613608565b5b81356126eb8482602086016125ac565b91505092915050565b60008135905061270381613a89565b92915050565b60006020828403121561271f5761271e61361c565b5b600061272d848285016125ee565b91505092915050565b6000806040838503121561274d5761274c61361c565b5b600061275b858286016125ee565b925050602061276c858286016125ee565b9150509250929050565b60008060006060848603121561278f5761278e61361c565b5b600061279d868287016125ee565b93505060206127ae868287016125ee565b92505060406127bf868287016126f4565b9150509250925092565b600080600080608085870312156127e3576127e261361c565b5b60006127f1878288016125ee565b9450506020612802878288016125ee565b9350506040612813878288016126f4565b925050606085013567ffffffffffffffff81111561283457612833613617565b5b61284087828801612698565b91505092959194509250565b600080604083850312156128635761286261361c565b5b6000612871858286016125ee565b925050602061288285828601612659565b9150509250929050565b600080604083850312156128a3576128a261361c565b5b60006128b1858286016125ee565b92505060206128c2858286016126f4565b9150509250929050565b600080602083850312156128e3576128e261361c565b5b600083013567ffffffffffffffff81111561290157612900613617565b5b61290d85828601612603565b92509250509250929050565b60006020828403121561292f5761292e61361c565b5b600061293d84828501612659565b91505092915050565b60006020828403121561295c5761295b61361c565b5b600061296a8482850161266e565b91505092915050565b6000602082840312156129895761298861361c565b5b600061299784828501612683565b91505092915050565b6000602082840312156129b6576129b561361c565b5b600082013567ffffffffffffffff8111156129d4576129d3613617565b5b6129e0848285016126c6565b91505092915050565b6000602082840312156129ff576129fe61361c565b5b6000612a0d848285016126f4565b91505092915050565b6000612a228383612e42565b60208301905092915050565b612a3781613385565b82525050565b6000612a4882613253565b612a528185613281565b9350612a5d8361322e565b8060005b83811015612a8e578151612a758882612a16565b9750612a8083613274565b925050600181019050612a61565b5085935050505092915050565b612aa481613397565b82525050565b6000612ab58261325e565b612abf8185613292565b9350612acf818560208601613408565b612ad881613621565b840191505092915050565b6000612aee82613269565b612af881856132ae565b9350612b08818560208601613408565b612b1181613621565b840191505092915050565b6000612b2782613269565b612b3181856132bf565b9350612b41818560208601613408565b80840191505092915050565b60008154612b5a8161343b565b612b6481866132bf565b94506001821660008114612b7f5760018114612b9057612bc3565b60ff19831686528186019350612bc3565b612b998561323e565b60005b83811015612bbb57815481890152600182019150602081019050612b9c565b838801955050505b50505092915050565b6000612bd96017836132ae565b9150612be482613632565b602082019050919050565b6000612bfc6032836132ae565b9150612c078261365b565b604082019050919050565b6000612c1f6026836132ae565b9150612c2a826136aa565b604082019050919050565b6000612c426025836132ae565b9150612c4d826136f9565b604082019050919050565b6000612c65601c836132ae565b9150612c7082613748565b602082019050919050565b6000612c886015836132ae565b9150612c9382613771565b602082019050919050565b6000612cab6024836132ae565b9150612cb68261379a565b604082019050919050565b6000612cce6019836132ae565b9150612cd9826137e9565b602082019050919050565b6000612cf1601b836132ae565b9150612cfc82613812565b602082019050919050565b6000612d146029836132ae565b9150612d1f8261383b565b604082019050919050565b6000612d37603e836132ae565b9150612d428261388a565b604082019050919050565b6000612d5a6020836132ae565b9150612d65826138d9565b602082019050919050565b6000612d7d6020836132ae565b9150612d8882613902565b602082019050919050565b6000612da0602f836132ae565b9150612dab8261392b565b604082019050919050565b6000612dc36018836132ae565b9150612dce8261397a565b602082019050919050565b6000612de66021836132ae565b9150612df1826139a3565b604082019050919050565b6000612e096000836132a3565b9150612e14826139f2565b600082019050919050565b6000612e2c602e836132ae565b9150612e37826139f5565b604082019050919050565b612e4b816133ef565b82525050565b612e5a816133ef565b82525050565b6000612e6c8286612b1c565b9150612e788285612b1c565b9150612e848284612b4d565b9150819050949350505050565b6000612e9c82612dfc565b9150819050919050565b6000602082019050612ebb6000830184612a2e565b92915050565b6000608082019050612ed66000830187612a2e565b612ee36020830186612a2e565b612ef06040830185612e51565b8181036060830152612f028184612aaa565b905095945050505050565b60006020820190508181036000830152612f278184612a3d565b905092915050565b6000602082019050612f446000830184612a9b565b92915050565b60006020820190508181036000830152612f648184612ae3565b905092915050565b60006020820190508181036000830152612f8581612bcc565b9050919050565b60006020820190508181036000830152612fa581612bef565b9050919050565b60006020820190508181036000830152612fc581612c12565b9050919050565b60006020820190508181036000830152612fe581612c35565b9050919050565b6000602082019050818103600083015261300581612c58565b9050919050565b6000602082019050818103600083015261302581612c7b565b9050919050565b6000602082019050818103600083015261304581612c9e565b9050919050565b6000602082019050818103600083015261306581612cc1565b9050919050565b6000602082019050818103600083015261308581612ce4565b9050919050565b600060208201905081810360008301526130a581612d07565b9050919050565b600060208201905081810360008301526130c581612d2a565b9050919050565b600060208201905081810360008301526130e581612d4d565b9050919050565b6000602082019050818103600083015261310581612d70565b9050919050565b6000602082019050818103600083015261312581612d93565b9050919050565b6000602082019050818103600083015261314581612db6565b9050919050565b6000602082019050818103600083015261316581612dd9565b9050919050565b6000602082019050818103600083015261318581612e1f565b9050919050565b60006020820190506131a16000830184612e51565b92915050565b60006131b16131c2565b90506131bd828261346d565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e7576131e66135d4565b5b6131f082613621565b9050602081019050919050565b600067ffffffffffffffff821115613218576132176135d4565b5b61322182613621565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132d5826133ef565b91506132e0836133ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561331557613314613518565b5b828201905092915050565b600061332b826133ef565b9150613336836133ef565b92508261334657613345613547565b5b828204905092915050565b600061335c826133ef565b9150613367836133ef565b92508282101561337a57613379613518565b5b828203905092915050565b6000613390826133cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561342657808201518184015260208101905061340b565b83811115613435576000848401525b50505050565b6000600282049050600182168061345357607f821691505b6020821081141561346757613466613576565b5b50919050565b61347682613621565b810181811067ffffffffffffffff82111715613495576134946135d4565b5b80604052505050565b60006134a9826133ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134dc576134db613518565b5b600182019050919050565b60006134f2826133ef565b91506134fd836133ef565b92508261350d5761350c613547565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f75736572206973206e6f742057686974656c6973746564000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74206576656e7420697320706175736564210000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f796f75206861766520616c7265616479206d6178206d696e7420210000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613a4d81613385565b8114613a5857600080fd5b50565b613a6481613397565b8114613a6f57600080fd5b50565b613a7b816133a3565b8114613a8657600080fd5b50565b613a92816133ef565b8114613a9d57600080fd5b5056fea264697066735822122091847d1c41b263fd3bb14cc3948a8d3b4def8439bf6fa1a32c45aab3c9404b0b64736f6c63430008070033

Loading...
Loading
Loading...
Loading
[ 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.