ETH Price: $3,313.93 (+1.32%)
Gas: 8 Gwei

Token

The Fish Tank Series 1 (TheFishTankSeries1)
 

Overview

Max Total Supply

636 TheFishTankSeries1

Holders

186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TheFishTankSeries1
0x541Be48B9f2Fa888F714dDc13736BCA24073f03d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OCEN Studios™ is pioneering the world's first fully VR compatible social + competitive platform within the metaverse that’s easily accessible to anyone worldwide.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheFishTankSeries1

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

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


contract TheFishTankSeries1 is ERC721, Ownable {
	using Counters
	for Counters.Counter;
	Counters.Counter private _tokenIds;
	
	
	uint public constant MAX_TOKENS = 10000;
	uint public constant MAX_TOKENS_VIP = 0;
	
	
	uint public CURR_MINT_COST = 0.09 ether;
	
	//---- Round based supplies
	string public CURR_ROUND_NAME = "Presale";
	string public CURR_ROUND_PASSWORD = "d7b803f542664af40b49ace67355913b";
	uint public CURR_ROUND_SUPPLY = 2000;
	uint public CURR_ROUND_TIME = 1639796400000;
	
	uint public maxMintAmount = 10;
	uint public nftPerAddressLimit = 50;
	uint public currentVIPs = 20;
	
	bool public hasSaleStarted = false;
	bool public onlyWhitelisted = false;
	
	string public baseURI;
	
	mapping(address => uint) public addressMintedBalance;
	mapping (address => bool) whitelistUserAddresses;

	
	
	
	constructor() ERC721("The Fish Tank Series 1", "TheFishTankSeries1") {
		setBaseURI("http://api.thefishtankgame.com/fish/");
	}

	function totalSupply() public view returns(uint) {
		return _tokenIds.current();
	}


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

	function mintNFT(uint _mintAmount) public payable {
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
		require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded");
		require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds");
		require(hasSaleStarted == true, "Sale hasn't started");
		require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");
		
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "User is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFT per address exceeded");
        }
        
		
		for (uint256 i = 1; i <= _mintAmount; i++) {
		  addressMintedBalance[msg.sender]++;
		  _tokenIds.increment();
		  CURR_ROUND_SUPPLY--;
		  _safeMint(msg.sender, _tokenIds.current());
		}

	}

	
	function isWhitelisted(address _user) public view returns (bool) {
		return whitelistUserAddresses[_user];
	}
	
   function getInformations() public view returns (string memory)
   {
	   string memory information = string(abi.encodePacked(CURR_ROUND_NAME,",", Strings.toString(CURR_ROUND_SUPPLY),",",Strings.toString(CURR_ROUND_TIME),",",Strings.toString(CURR_MINT_COST),",",Strings.toString(maxMintAmount), ",",CURR_ROUND_PASSWORD));
	   return information;
   }
	
	
	//only owner functions
	
	function setNewRound(uint _supply, uint cost, string memory name, uint maxMint, uint perAddressLimit, uint theTime, string memory password) public onlyOwner {
		require(_supply <= MAX_TOKENS - totalSupply(), "Exceeded supply");
		CURR_ROUND_SUPPLY = _supply;
		CURR_MINT_COST = cost;
		CURR_ROUND_NAME = name;
		maxMintAmount = maxMint;
		nftPerAddressLimit = perAddressLimit;
		CURR_ROUND_TIME = theTime;
		CURR_ROUND_PASSWORD = password;
	}
	
	function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
		nftPerAddressLimit = _limit;
	}

	function setmaxMintAmount(uint _newmaxMintAmount) public onlyOwner {
		maxMintAmount = _newmaxMintAmount;
	}

	function setCurrentSupply(uint numSupply) public onlyOwner{
		require(numSupply<=MAX_TOKENS - totalSupply(), "Can't add new character NFTs. Would exceed supply");
		CURR_ROUND_SUPPLY = numSupply;
	}

	function setCost(uint _newCost) public onlyOwner {
		CURR_MINT_COST = _newCost;
	}
	
	
	function whitelistAddresses (address[] calldata users) public onlyOwner {
		for (uint i = 0; i < users.length; i++) {
			whitelistUserAddresses[users[i]] = true;
		}
	}


	function removeWhitelistAddresses (address[] calldata users) external onlyOwner {
		for (uint i = 0; i < users.length; i++) {
			delete whitelistUserAddresses[users[i]];
		}
	}
	
	function setOnlyWhitelisted(bool _state) public onlyOwner {
		onlyWhitelisted = _state;
	}


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

	function getBaseURI() public onlyOwner view returns(string memory) {
		return baseURI;
	}

	function reserveVIP(uint numTokens, address recipient) public onlyOwner {
		require((currentVIPs + numTokens) <= MAX_TOKENS_VIP, "Exceeded VIP supply");
		uint index;
		for(index = 1; index <= numTokens; index++) {
			_tokenIds.increment();
			currentVIPs = currentVIPs + 1;
			uint theToken = currentVIPs + MAX_TOKENS;
			addressMintedBalance[recipient]++;
			_safeMint(recipient, theToken);
		}
	}

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
		require((_tokenIds.current() + numTokens) <= MAX_TOKENS, "Exceeded supply");
		uint index;
		// Reserved for the people who helped build this project
		for(index = 1; index <= numTokens; index++) {
			_tokenIds.increment();
			addressMintedBalance[recipient]++;
			_safeMint(recipient, _tokenIds.current());
		}
	}

	function withdrawAll() public payable onlyOwner {
		require(payable(msg.sender).send(address(this).balance));
	}
	
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_PASSWORD","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_VIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentVIPs","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":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reserveVIP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSupply","type":"uint256"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"perAddressLimit","type":"uint256"},{"internalType":"uint256","name":"theTime","type":"uint256"},{"internalType":"string","name":"password","type":"string"}],"name":"setNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267013fbe85edc900006008556040518060400160405280600781526020017f50726573616c6500000000000000000000000000000000000000000000000000815250600990805190602001906200005d929190620003a2565b506040518060400160405280602081526020017f6437623830336635343236363461663430623439616365363733353539313362815250600a9080519060200190620000ab929190620003a2565b506107d0600b5565017dcb7b5f80600c55600a600d556032600e556014600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200010e57600080fd5b506040518060400160405280601681526020017f54686520466973682054616e6b205365726965732031000000000000000000008152506040518060400160405280601281526020017f5468654669736854616e6b536572696573310000000000000000000000000000815250816000908051906020019062000193929190620003a2565b508060019080519060200190620001ac929190620003a2565b505050620001cf620001c3620001ff60201b60201c565b6200020760201b60201c565b620001f96040518060600160405280602481526020016200530f60249139620002cd60201b60201c565b6200052c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002dd620001ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003036200037860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200035c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003539062000494565b60405180910390fd5b806011908051906020019062000374929190620003a2565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b090620004c7565b90600052602060002090601f016020900481019282620003d4576000855562000420565b82601f10620003ef57805160ff191683800117855562000420565b8280016001018555821562000420579182015b828111156200041f57825182559160200191906001019062000402565b5b5090506200042f919062000433565b5090565b5b808211156200044e57600081600090555060010162000434565b5090565b600062000461602083620004b6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004af8162000452565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004e057607f821691505b60208210811415620004f757620004f6620004fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614dd3806200053c6000396000f3fe6080604052600436106102935760003560e01c8063715018a61161015a578063b88d4fde116100c1578063d0eb26b01161007a578063d0eb26b0146109c2578063dc547301146109eb578063e985e9c514610a14578063f2fde38b14610a51578063f47c84c514610a7a578063f79e66ba14610aa557610293565b8063b88d4fde146108b4578063ba7d2c76146108dd578063bff84fc514610908578063c342784414610931578063c87b56dd1461095c578063cc0b8d151461099957610293565b806395d89b411161011357806395d89b41146107b857806397000de1146107e35780639c70b5121461080e578063a22cb46514610839578063a854ffba14610862578063b83921a61461088b57610293565b8063715018a6146106fc5780637f00c7a614610713578063853828b61461073c5780638626af27146107465780638da5cb5b14610771578063926427441461079c57610293565b80632bf04304116101fe57806344a0d68a116101b757806344a0d68a146105da57806355f804b3146106035780636352211e1461062c5780636c0360eb1461066957806370a0823114610694578063714c5398146106d157610293565b80632bf04304146104ce5780633af32abf146104f75780633b557f56146105345780633c5e310b1461055d5780633c9527641461058857806342842e0e146105b157610293565b806318160ddd1161025057806318160ddd146103bc57806318cae269146103e75780631c8b232d14610424578063239c70ae1461044f57806323b872dd1461047a57806329540530146104a357610293565b806301ffc9a714610298578063027b2513146102d5578063042ebb481461030057806306fdde031461032b578063081812fc14610356578063095ea7b314610393575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba919061384f565b610ad0565b6040516102cc9190614552565b60405180910390f35b3480156102e157600080fd5b506102ea610bb2565b6040516102f791906148cf565b60405180910390f35b34801561030c57600080fd5b50610315610bb8565b60405161032291906148cf565b60405180910390f35b34801561033757600080fd5b50610340610bbe565b60405161034d919061456d565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906138e2565b610c50565b60405161038a91906144eb565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906137a5565b610cd5565b005b3480156103c857600080fd5b506103d1610ded565b6040516103de91906148cf565b60405180910390f35b3480156103f357600080fd5b5061040e6004803603810190610409919061363a565b610dfe565b60405161041b91906148cf565b60405180910390f35b34801561043057600080fd5b50610439610e16565b6040516104469190614552565b60405180910390f35b34801561045b57600080fd5b50610464610e29565b60405161047191906148cf565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061369f565b610e2f565b005b3480156104af57600080fd5b506104b8610e8f565b6040516104c5919061456d565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906137e1565b610f1d565b005b34801561050357600080fd5b5061051e6004803603810190610519919061363a565b611064565b60405161052b9190614552565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613947565b6110ba565b005b34801561056957600080fd5b506105726111e7565b60405161057f919061456d565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613826565b611248565b005b3480156105bd57600080fd5b506105d860048036038101906105d3919061369f565b6112e1565b005b3480156105e657600080fd5b5061060160048036038101906105fc91906138e2565b611301565b005b34801561060f57600080fd5b5061062a600480360381019061062591906138a1565b611387565b005b34801561063857600080fd5b50610653600480360381019061064e91906138e2565b61141d565b60405161066091906144eb565b60405180910390f35b34801561067557600080fd5b5061067e6114cf565b60405161068b919061456d565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061363a565b61155d565b6040516106c891906148cf565b60405180910390f35b3480156106dd57600080fd5b506106e6611615565b6040516106f3919061456d565b60405180910390f35b34801561070857600080fd5b50610711611723565b005b34801561071f57600080fd5b5061073a600480360381019061073591906138e2565b6117ab565b005b610744611831565b005b34801561075257600080fd5b5061075b6118ed565b604051610768919061456d565b60405180910390f35b34801561077d57600080fd5b5061078661197b565b60405161079391906144eb565b60405180910390f35b6107b660048036038101906107b191906138e2565b6119a5565b005b3480156107c457600080fd5b506107cd611cc1565b6040516107da919061456d565b60405180910390f35b3480156107ef57600080fd5b506107f8611d53565b60405161080591906148cf565b60405180910390f35b34801561081a57600080fd5b50610823611d59565b6040516108309190614552565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613769565b611d6c565b005b34801561086e57600080fd5b5061088960048036038101906108849190613826565b611d82565b005b34801561089757600080fd5b506108b260048036038101906108ad91906137e1565b611e1b565b005b3480156108c057600080fd5b506108db60048036038101906108d691906136ee565b611f59565b005b3480156108e957600080fd5b506108f2611fbb565b6040516108ff91906148cf565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a919061390b565b611fc1565b005b34801561093d57600080fd5b50610946612147565b60405161095391906148cf565b60405180910390f35b34801561096857600080fd5b50610983600480360381019061097e91906138e2565b61214d565b604051610990919061456d565b60405180910390f35b3480156109a557600080fd5b506109c060048036038101906109bb919061390b565b6121f4565b005b3480156109ce57600080fd5b506109e960048036038101906109e491906138e2565b612361565b005b3480156109f757600080fd5b50610a126004803603810190610a0d91906138e2565b6123e7565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613663565b6124c4565b604051610a489190614552565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a73919061363a565b612558565b005b348015610a8657600080fd5b50610a8f612650565b604051610a9c91906148cf565b60405180910390f35b348015610ab157600080fd5b50610aba612656565b604051610ac791906148cf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bab5750610baa8261265b565b5b9050919050565b600c5481565b600f5481565b606060008054610bcd90614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990614bc8565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b5050505050905090565b6000610c5b826126c5565b610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c919061474f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce08261141d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d489061480f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d70612731565b73ffffffffffffffffffffffffffffffffffffffff161480610d9f5750610d9e81610d99612731565b6124c4565b5b610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906146af565b60405180910390fd5b610de88383612739565b505050565b6000610df960076127f2565b905090565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b600d5481565b610e40610e3a612731565b82612800565b610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e769061484f565b60405180910390fd5b610e8a8383836128de565b505050565b60098054610e9c90614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec890614bc8565b8015610f155780601f10610eea57610100808354040283529160200191610f15565b820191906000526020600020905b815481529060010190602001808311610ef857829003601f168201915b505050505081565b610f25612731565b73ffffffffffffffffffffffffffffffffffffffff16610f4361197b565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061476f565b60405180910390fd5b60005b8282905081101561105f57600160136000858585818110610fe6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ffb919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061105790614bfa565b915050610f9c565b505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c2612731565b73ffffffffffffffffffffffffffffffffffffffff166110e061197b565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d9061476f565b60405180910390fd5b61113e610ded565b61271061114b9190614ab4565b87111561118d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111849061486f565b60405180910390fd5b86600b819055508560088190555084600990805190602001906111b1929190613414565b5083600d8190555082600e8190555081600c8190555080600a90805190602001906111dd929190613414565b5050505050505050565b6060600060096111f8600b54612b3a565b611203600c54612b3a565b61120e600854612b3a565b611219600d54612b3a565b600a6040516020016112309695949392919061445c565b60405160208183030381529060405290508091505090565b611250612731565b73ffffffffffffffffffffffffffffffffffffffff1661126e61197b565b73ffffffffffffffffffffffffffffffffffffffff16146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb9061476f565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6112fc83838360405180602001604052806000815250611f59565b505050565b611309612731565b73ffffffffffffffffffffffffffffffffffffffff1661132761197b565b73ffffffffffffffffffffffffffffffffffffffff161461137d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113749061476f565b60405180910390fd5b8060088190555050565b61138f612731565b73ffffffffffffffffffffffffffffffffffffffff166113ad61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061476f565b60405180910390fd5b8060119080519060200190611419929190613414565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd906146ef565b60405180910390fd5b80915050919050565b601180546114dc90614bc8565b80601f016020809104026020016040519081016040528092919081815260200182805461150890614bc8565b80156115555780601f1061152a57610100808354040283529160200191611555565b820191906000526020600020905b81548152906001019060200180831161153857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906146cf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061161f612731565b73ffffffffffffffffffffffffffffffffffffffff1661163d61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a9061476f565b60405180910390fd5b601180546116a090614bc8565b80601f01602080910402602001604051908101604052809291908181526020018280546116cc90614bc8565b80156117195780601f106116ee57610100808354040283529160200191611719565b820191906000526020600020905b8154815290600101906020018083116116fc57829003601f168201915b5050505050905090565b61172b612731565b73ffffffffffffffffffffffffffffffffffffffff1661174961197b565b73ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117969061476f565b60405180910390fd5b6117a96000612ce7565b565b6117b3612731565b73ffffffffffffffffffffffffffffffffffffffff166117d161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061476f565b60405180910390fd5b80600d8190555050565b611839612731565b73ffffffffffffffffffffffffffffffffffffffff1661185761197b565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a49061476f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118eb57600080fd5b565b600a80546118fa90614bc8565b80601f016020809104026020016040519081016040528092919081815260200182805461192690614bc8565b80156119735780601f1061194857610100808354040283529160200191611973565b820191906000526020600020905b81548152906001019060200180831161195657829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081116119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df906148af565b60405180910390fd5b600d54811115611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906145ef565b60405180910390fd5b80600854611a3b9190614a5a565b341015611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061466f565b60405180910390fd5b60011515601060009054906101000a900460ff16151514611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca9061488f565b60405180910390fd5b600b54811115611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f9061482f565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415611c1257611b3d33611064565b611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b739061468f565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611bcf91906149d3565b1115611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c07906147ef565b60405180910390fd5b505b6000600190505b818111611cbd57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c7090614bfa565b9190505550611c7f6007612dad565b600b6000815480929190611c9290614b9e565b9190505550611caa33611ca560076127f2565b612dc3565b8080611cb590614bfa565b915050611c19565b5050565b606060018054611cd090614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054611cfc90614bc8565b8015611d495780601f10611d1e57610100808354040283529160200191611d49565b820191906000526020600020905b815481529060010190602001808311611d2c57829003601f168201915b5050505050905090565b600b5481565b601060019054906101000a900460ff1681565b611d7e611d77612731565b8383612de1565b5050565b611d8a612731565b73ffffffffffffffffffffffffffffffffffffffff16611da861197b565b73ffffffffffffffffffffffffffffffffffffffff1614611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df59061476f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611e23612731565b73ffffffffffffffffffffffffffffffffffffffff16611e4161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9061476f565b60405180910390fd5b60005b82829050811015611f545760136000848484818110611ee2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ef7919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558080611f4c90614bfa565b915050611e9a565b505050565b611f6a611f64612731565b83612800565b611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa09061484f565b60405180910390fd5b611fb584848484612f4e565b50505050565b600e5481565b611fc9612731565b73ffffffffffffffffffffffffffffffffffffffff16611fe761197b565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120349061476f565b60405180910390fd5b600082600f5461204d91906149d3565b111561208e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612085906147cf565b60405180910390fd5b6000600190505b828111612142576120a66007612dad565b6001600f546120b591906149d3565b600f819055506000612710600f546120cd91906149d3565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061211f90614bfa565b919050555061212e8382612dc3565b50808061213a90614bfa565b915050612095565b505050565b60085481565b6060612158826126c5565b612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906147af565b60405180910390fd5b60006121a1612faa565b905060008151116121c157604051806020016040528060008152506121ec565b806121cb84612b3a565b6040516020016121dc929190614438565b6040516020818303038152906040525b915050919050565b6121fc612731565b73ffffffffffffffffffffffffffffffffffffffff1661221a61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122679061476f565b60405180910390fd5b6127108261227e60076127f2565b61228891906149d3565b11156122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c09061486f565b60405180910390fd5b6000600190505b82811161235c576122e16007612dad565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061233190614bfa565b91905055506123498261234460076127f2565b612dc3565b808061235490614bfa565b9150506122d0565b505050565b612369612731565b73ffffffffffffffffffffffffffffffffffffffff1661238761197b565b73ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d49061476f565b60405180910390fd5b80600e8190555050565b6123ef612731565b73ffffffffffffffffffffffffffffffffffffffff1661240d61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061476f565b60405180910390fd5b61246b610ded565b6127106124789190614ab4565b8111156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b19061470f565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612560612731565b73ffffffffffffffffffffffffffffffffffffffff1661257e61197b565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb9061476f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906145af565b60405180910390fd5b61264d81612ce7565b50565b61271081565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ac8361141d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061280b826126c5565b61284a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128419061464f565b60405180910390fd5b60006128558361141d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128c457508373ffffffffffffffffffffffffffffffffffffffff166128ac84610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d557506128d481856124c4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128fe8261141d565b73ffffffffffffffffffffffffffffffffffffffff1614612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b9061478f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bb9061460f565b60405180910390fd5b6129cf83838361303c565b6129da600082612739565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2a9190614ab4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8191906149d3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612b82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ce2565b600082905060005b60008214612bb4578080612b9d90614bfa565b915050600a82612bad9190614a29565b9150612b8a565b60008167ffffffffffffffff811115612bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c285781602001600182028036833780820191505090505b5090505b60008514612cdb57600182612c419190614ab4565b9150600a85612c509190614c43565b6030612c5c91906149d3565b60f81b818381518110612c98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cd49190614a29565b9450612c2c565b8093505050505b919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612ddd828260405180602001604052806000815250613041565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e479061462f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f419190614552565b60405180910390a3505050565b612f598484846128de565b612f658484848461309c565b612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b9061458f565b60405180910390fd5b50505050565b606060118054612fb990614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054612fe590614bc8565b80156130325780601f1061300757610100808354040283529160200191613032565b820191906000526020600020905b81548152906001019060200180831161301557829003601f168201915b5050505050905090565b505050565b61304b8383613233565b613058600084848461309c565b613097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308e9061458f565b60405180910390fd5b505050565b60006130bd8473ffffffffffffffffffffffffffffffffffffffff16613401565b15613226578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e6612731565b8786866040518563ffffffff1660e01b81526004016131089493929190614506565b602060405180830381600087803b15801561312257600080fd5b505af192505050801561315357506040513d601f19601f820116820180604052508101906131509190613878565b60015b6131d6573d8060008114613183576040519150601f19603f3d011682016040523d82523d6000602084013e613188565b606091505b506000815114156131ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c59061458f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a9061472f565b60405180910390fd5b6132ac816126c5565b156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e3906145cf565b60405180910390fd5b6132f86000838361303c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461334891906149d3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461342090614bc8565b90600052602060002090601f0160209004810192826134425760008555613489565b82601f1061345b57805160ff1916838001178555613489565b82800160010185558215613489579182015b8281111561348857825182559160200191906001019061346d565b5b509050613496919061349a565b5090565b5b808211156134b357600081600090555060010161349b565b5090565b60006134ca6134c58461491b565b6148ea565b9050828152602081018484840111156134e257600080fd5b6134ed848285614b5c565b509392505050565b60006135086135038461494b565b6148ea565b90508281526020810184848401111561352057600080fd5b61352b848285614b5c565b509392505050565b60008135905061354281614d41565b92915050565b60008083601f84011261355a57600080fd5b8235905067ffffffffffffffff81111561357357600080fd5b60208301915083602082028301111561358b57600080fd5b9250929050565b6000813590506135a181614d58565b92915050565b6000813590506135b681614d6f565b92915050565b6000815190506135cb81614d6f565b92915050565b600082601f8301126135e257600080fd5b81356135f28482602086016134b7565b91505092915050565b600082601f83011261360c57600080fd5b813561361c8482602086016134f5565b91505092915050565b60008135905061363481614d86565b92915050565b60006020828403121561364c57600080fd5b600061365a84828501613533565b91505092915050565b6000806040838503121561367657600080fd5b600061368485828601613533565b925050602061369585828601613533565b9150509250929050565b6000806000606084860312156136b457600080fd5b60006136c286828701613533565b93505060206136d386828701613533565b92505060406136e486828701613625565b9150509250925092565b6000806000806080858703121561370457600080fd5b600061371287828801613533565b945050602061372387828801613533565b935050604061373487828801613625565b925050606085013567ffffffffffffffff81111561375157600080fd5b61375d878288016135d1565b91505092959194509250565b6000806040838503121561377c57600080fd5b600061378a85828601613533565b925050602061379b85828601613592565b9150509250929050565b600080604083850312156137b857600080fd5b60006137c685828601613533565b92505060206137d785828601613625565b9150509250929050565b600080602083850312156137f457600080fd5b600083013567ffffffffffffffff81111561380e57600080fd5b61381a85828601613548565b92509250509250929050565b60006020828403121561383857600080fd5b600061384684828501613592565b91505092915050565b60006020828403121561386157600080fd5b600061386f848285016135a7565b91505092915050565b60006020828403121561388a57600080fd5b6000613898848285016135bc565b91505092915050565b6000602082840312156138b357600080fd5b600082013567ffffffffffffffff8111156138cd57600080fd5b6138d9848285016135fb565b91505092915050565b6000602082840312156138f457600080fd5b600061390284828501613625565b91505092915050565b6000806040838503121561391e57600080fd5b600061392c85828601613625565b925050602061393d85828601613533565b9150509250929050565b600080600080600080600060e0888a03121561396257600080fd5b60006139708a828b01613625565b97505060206139818a828b01613625565b965050604088013567ffffffffffffffff81111561399e57600080fd5b6139aa8a828b016135fb565b95505060606139bb8a828b01613625565b94505060806139cc8a828b01613625565b93505060a06139dd8a828b01613625565b92505060c088013567ffffffffffffffff8111156139fa57600080fd5b613a068a828b016135fb565b91505092959891949750929550565b613a1e81614ae8565b82525050565b613a2d81614afa565b82525050565b6000613a3e82614990565b613a4881856149a6565b9350613a58818560208601614b6b565b613a6181614d30565b840191505092915050565b6000613a778261499b565b613a8181856149b7565b9350613a91818560208601614b6b565b613a9a81614d30565b840191505092915050565b6000613ab08261499b565b613aba81856149c8565b9350613aca818560208601614b6b565b80840191505092915050565b60008154613ae381614bc8565b613aed81866149c8565b94506001821660008114613b085760018114613b1957613b4c565b60ff19831686528186019350613b4c565b613b228561497b565b60005b83811015613b4457815481890152600182019150602081019050613b25565b838801955050505b50505092915050565b6000613b626032836149b7565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613bc86026836149b7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2e601c836149b7565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613c6e6028836149b7565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd46001836149c8565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613d146024836149b7565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d7a6019836149b7565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dba602c836149b7565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e206012836149b7565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613e606017836149b7565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613ea06038836149b7565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f06602a836149b7565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6c6029836149b7565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd26031836149b7565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b60006140386020836149b7565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614078602c836149b7565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140de6020836149b7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061411e6029836149b7565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614184602f836149b7565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141ea6013836149b7565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b600061422a601c836149b7565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b600061426a6021836149b7565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d06014836149b7565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b60006143106031836149b7565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614376600f836149b7565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b60006143b66013836149b7565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b60006143f6601b836149b7565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61443281614b52565b82525050565b60006144448285613aa5565b91506144508284613aa5565b91508190509392505050565b60006144688289613ad6565b915061447382613cc7565b915061447f8288613aa5565b915061448a82613cc7565b91506144968287613aa5565b91506144a182613cc7565b91506144ad8286613aa5565b91506144b882613cc7565b91506144c48285613aa5565b91506144cf82613cc7565b91506144db8284613ad6565b9150819050979650505050505050565b60006020820190506145006000830184613a15565b92915050565b600060808201905061451b6000830187613a15565b6145286020830186613a15565b6145356040830185614429565b81810360608301526145478184613a33565b905095945050505050565b60006020820190506145676000830184613a24565b92915050565b600060208201905081810360008301526145878184613a6c565b905092915050565b600060208201905081810360008301526145a881613b55565b9050919050565b600060208201905081810360008301526145c881613bbb565b9050919050565b600060208201905081810360008301526145e881613c21565b9050919050565b6000602082019050818103600083015261460881613c61565b9050919050565b6000602082019050818103600083015261462881613d07565b9050919050565b6000602082019050818103600083015261464881613d6d565b9050919050565b6000602082019050818103600083015261466881613dad565b9050919050565b6000602082019050818103600083015261468881613e13565b9050919050565b600060208201905081810360008301526146a881613e53565b9050919050565b600060208201905081810360008301526146c881613e93565b9050919050565b600060208201905081810360008301526146e881613ef9565b9050919050565b6000602082019050818103600083015261470881613f5f565b9050919050565b6000602082019050818103600083015261472881613fc5565b9050919050565b600060208201905081810360008301526147488161402b565b9050919050565b600060208201905081810360008301526147688161406b565b9050919050565b60006020820190508181036000830152614788816140d1565b9050919050565b600060208201905081810360008301526147a881614111565b9050919050565b600060208201905081810360008301526147c881614177565b9050919050565b600060208201905081810360008301526147e8816141dd565b9050919050565b600060208201905081810360008301526148088161421d565b9050919050565b600060208201905081810360008301526148288161425d565b9050919050565b60006020820190508181036000830152614848816142c3565b9050919050565b6000602082019050818103600083015261486881614303565b9050919050565b6000602082019050818103600083015261488881614369565b9050919050565b600060208201905081810360008301526148a8816143a9565b9050919050565b600060208201905081810360008301526148c8816143e9565b9050919050565b60006020820190506148e46000830184614429565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561491157614910614d01565b5b8060405250919050565b600067ffffffffffffffff82111561493657614935614d01565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561496657614965614d01565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149de82614b52565b91506149e983614b52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1e57614a1d614c74565b5b828201905092915050565b6000614a3482614b52565b9150614a3f83614b52565b925082614a4f57614a4e614ca3565b5b828204905092915050565b6000614a6582614b52565b9150614a7083614b52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa957614aa8614c74565b5b828202905092915050565b6000614abf82614b52565b9150614aca83614b52565b925082821015614add57614adc614c74565b5b828203905092915050565b6000614af382614b32565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b89578082015181840152602081019050614b6e565b83811115614b98576000848401525b50505050565b6000614ba982614b52565b91506000821415614bbd57614bbc614c74565b5b600182039050919050565b60006002820490506001821680614be057607f821691505b60208210811415614bf457614bf3614cd2565b5b50919050565b6000614c0582614b52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c3857614c37614c74565b5b600182019050919050565b6000614c4e82614b52565b9150614c5983614b52565b925082614c6957614c68614ca3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d4a81614ae8565b8114614d5557600080fd5b50565b614d6181614afa565b8114614d6c57600080fd5b50565b614d7881614b06565b8114614d8357600080fd5b50565b614d8f81614b52565b8114614d9a57600080fd5b5056fea26469706673582212201f3a6650843fa10fc10b78031076583a5e57f3a222aadf073f6dbe9ca7d9b82264736f6c63430008000033687474703a2f2f6170692e7468656669736874616e6b67616d652e636f6d2f666973682f

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063715018a61161015a578063b88d4fde116100c1578063d0eb26b01161007a578063d0eb26b0146109c2578063dc547301146109eb578063e985e9c514610a14578063f2fde38b14610a51578063f47c84c514610a7a578063f79e66ba14610aa557610293565b8063b88d4fde146108b4578063ba7d2c76146108dd578063bff84fc514610908578063c342784414610931578063c87b56dd1461095c578063cc0b8d151461099957610293565b806395d89b411161011357806395d89b41146107b857806397000de1146107e35780639c70b5121461080e578063a22cb46514610839578063a854ffba14610862578063b83921a61461088b57610293565b8063715018a6146106fc5780637f00c7a614610713578063853828b61461073c5780638626af27146107465780638da5cb5b14610771578063926427441461079c57610293565b80632bf04304116101fe57806344a0d68a116101b757806344a0d68a146105da57806355f804b3146106035780636352211e1461062c5780636c0360eb1461066957806370a0823114610694578063714c5398146106d157610293565b80632bf04304146104ce5780633af32abf146104f75780633b557f56146105345780633c5e310b1461055d5780633c9527641461058857806342842e0e146105b157610293565b806318160ddd1161025057806318160ddd146103bc57806318cae269146103e75780631c8b232d14610424578063239c70ae1461044f57806323b872dd1461047a57806329540530146104a357610293565b806301ffc9a714610298578063027b2513146102d5578063042ebb481461030057806306fdde031461032b578063081812fc14610356578063095ea7b314610393575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba919061384f565b610ad0565b6040516102cc9190614552565b60405180910390f35b3480156102e157600080fd5b506102ea610bb2565b6040516102f791906148cf565b60405180910390f35b34801561030c57600080fd5b50610315610bb8565b60405161032291906148cf565b60405180910390f35b34801561033757600080fd5b50610340610bbe565b60405161034d919061456d565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906138e2565b610c50565b60405161038a91906144eb565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906137a5565b610cd5565b005b3480156103c857600080fd5b506103d1610ded565b6040516103de91906148cf565b60405180910390f35b3480156103f357600080fd5b5061040e6004803603810190610409919061363a565b610dfe565b60405161041b91906148cf565b60405180910390f35b34801561043057600080fd5b50610439610e16565b6040516104469190614552565b60405180910390f35b34801561045b57600080fd5b50610464610e29565b60405161047191906148cf565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061369f565b610e2f565b005b3480156104af57600080fd5b506104b8610e8f565b6040516104c5919061456d565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906137e1565b610f1d565b005b34801561050357600080fd5b5061051e6004803603810190610519919061363a565b611064565b60405161052b9190614552565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613947565b6110ba565b005b34801561056957600080fd5b506105726111e7565b60405161057f919061456d565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613826565b611248565b005b3480156105bd57600080fd5b506105d860048036038101906105d3919061369f565b6112e1565b005b3480156105e657600080fd5b5061060160048036038101906105fc91906138e2565b611301565b005b34801561060f57600080fd5b5061062a600480360381019061062591906138a1565b611387565b005b34801561063857600080fd5b50610653600480360381019061064e91906138e2565b61141d565b60405161066091906144eb565b60405180910390f35b34801561067557600080fd5b5061067e6114cf565b60405161068b919061456d565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061363a565b61155d565b6040516106c891906148cf565b60405180910390f35b3480156106dd57600080fd5b506106e6611615565b6040516106f3919061456d565b60405180910390f35b34801561070857600080fd5b50610711611723565b005b34801561071f57600080fd5b5061073a600480360381019061073591906138e2565b6117ab565b005b610744611831565b005b34801561075257600080fd5b5061075b6118ed565b604051610768919061456d565b60405180910390f35b34801561077d57600080fd5b5061078661197b565b60405161079391906144eb565b60405180910390f35b6107b660048036038101906107b191906138e2565b6119a5565b005b3480156107c457600080fd5b506107cd611cc1565b6040516107da919061456d565b60405180910390f35b3480156107ef57600080fd5b506107f8611d53565b60405161080591906148cf565b60405180910390f35b34801561081a57600080fd5b50610823611d59565b6040516108309190614552565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613769565b611d6c565b005b34801561086e57600080fd5b5061088960048036038101906108849190613826565b611d82565b005b34801561089757600080fd5b506108b260048036038101906108ad91906137e1565b611e1b565b005b3480156108c057600080fd5b506108db60048036038101906108d691906136ee565b611f59565b005b3480156108e957600080fd5b506108f2611fbb565b6040516108ff91906148cf565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a919061390b565b611fc1565b005b34801561093d57600080fd5b50610946612147565b60405161095391906148cf565b60405180910390f35b34801561096857600080fd5b50610983600480360381019061097e91906138e2565b61214d565b604051610990919061456d565b60405180910390f35b3480156109a557600080fd5b506109c060048036038101906109bb919061390b565b6121f4565b005b3480156109ce57600080fd5b506109e960048036038101906109e491906138e2565b612361565b005b3480156109f757600080fd5b50610a126004803603810190610a0d91906138e2565b6123e7565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613663565b6124c4565b604051610a489190614552565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a73919061363a565b612558565b005b348015610a8657600080fd5b50610a8f612650565b604051610a9c91906148cf565b60405180910390f35b348015610ab157600080fd5b50610aba612656565b604051610ac791906148cf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bab5750610baa8261265b565b5b9050919050565b600c5481565b600f5481565b606060008054610bcd90614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990614bc8565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b5050505050905090565b6000610c5b826126c5565b610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c919061474f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce08261141d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d489061480f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d70612731565b73ffffffffffffffffffffffffffffffffffffffff161480610d9f5750610d9e81610d99612731565b6124c4565b5b610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906146af565b60405180910390fd5b610de88383612739565b505050565b6000610df960076127f2565b905090565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b600d5481565b610e40610e3a612731565b82612800565b610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e769061484f565b60405180910390fd5b610e8a8383836128de565b505050565b60098054610e9c90614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec890614bc8565b8015610f155780601f10610eea57610100808354040283529160200191610f15565b820191906000526020600020905b815481529060010190602001808311610ef857829003601f168201915b505050505081565b610f25612731565b73ffffffffffffffffffffffffffffffffffffffff16610f4361197b565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061476f565b60405180910390fd5b60005b8282905081101561105f57600160136000858585818110610fe6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ffb919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061105790614bfa565b915050610f9c565b505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c2612731565b73ffffffffffffffffffffffffffffffffffffffff166110e061197b565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d9061476f565b60405180910390fd5b61113e610ded565b61271061114b9190614ab4565b87111561118d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111849061486f565b60405180910390fd5b86600b819055508560088190555084600990805190602001906111b1929190613414565b5083600d8190555082600e8190555081600c8190555080600a90805190602001906111dd929190613414565b5050505050505050565b6060600060096111f8600b54612b3a565b611203600c54612b3a565b61120e600854612b3a565b611219600d54612b3a565b600a6040516020016112309695949392919061445c565b60405160208183030381529060405290508091505090565b611250612731565b73ffffffffffffffffffffffffffffffffffffffff1661126e61197b565b73ffffffffffffffffffffffffffffffffffffffff16146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb9061476f565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6112fc83838360405180602001604052806000815250611f59565b505050565b611309612731565b73ffffffffffffffffffffffffffffffffffffffff1661132761197b565b73ffffffffffffffffffffffffffffffffffffffff161461137d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113749061476f565b60405180910390fd5b8060088190555050565b61138f612731565b73ffffffffffffffffffffffffffffffffffffffff166113ad61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061476f565b60405180910390fd5b8060119080519060200190611419929190613414565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd906146ef565b60405180910390fd5b80915050919050565b601180546114dc90614bc8565b80601f016020809104026020016040519081016040528092919081815260200182805461150890614bc8565b80156115555780601f1061152a57610100808354040283529160200191611555565b820191906000526020600020905b81548152906001019060200180831161153857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906146cf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061161f612731565b73ffffffffffffffffffffffffffffffffffffffff1661163d61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a9061476f565b60405180910390fd5b601180546116a090614bc8565b80601f01602080910402602001604051908101604052809291908181526020018280546116cc90614bc8565b80156117195780601f106116ee57610100808354040283529160200191611719565b820191906000526020600020905b8154815290600101906020018083116116fc57829003601f168201915b5050505050905090565b61172b612731565b73ffffffffffffffffffffffffffffffffffffffff1661174961197b565b73ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117969061476f565b60405180910390fd5b6117a96000612ce7565b565b6117b3612731565b73ffffffffffffffffffffffffffffffffffffffff166117d161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061476f565b60405180910390fd5b80600d8190555050565b611839612731565b73ffffffffffffffffffffffffffffffffffffffff1661185761197b565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a49061476f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118eb57600080fd5b565b600a80546118fa90614bc8565b80601f016020809104026020016040519081016040528092919081815260200182805461192690614bc8565b80156119735780601f1061194857610100808354040283529160200191611973565b820191906000526020600020905b81548152906001019060200180831161195657829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081116119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df906148af565b60405180910390fd5b600d54811115611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906145ef565b60405180910390fd5b80600854611a3b9190614a5a565b341015611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061466f565b60405180910390fd5b60011515601060009054906101000a900460ff16151514611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca9061488f565b60405180910390fd5b600b54811115611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f9061482f565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415611c1257611b3d33611064565b611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b739061468f565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611bcf91906149d3565b1115611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c07906147ef565b60405180910390fd5b505b6000600190505b818111611cbd57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c7090614bfa565b9190505550611c7f6007612dad565b600b6000815480929190611c9290614b9e565b9190505550611caa33611ca560076127f2565b612dc3565b8080611cb590614bfa565b915050611c19565b5050565b606060018054611cd090614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054611cfc90614bc8565b8015611d495780601f10611d1e57610100808354040283529160200191611d49565b820191906000526020600020905b815481529060010190602001808311611d2c57829003601f168201915b5050505050905090565b600b5481565b601060019054906101000a900460ff1681565b611d7e611d77612731565b8383612de1565b5050565b611d8a612731565b73ffffffffffffffffffffffffffffffffffffffff16611da861197b565b73ffffffffffffffffffffffffffffffffffffffff1614611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df59061476f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611e23612731565b73ffffffffffffffffffffffffffffffffffffffff16611e4161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9061476f565b60405180910390fd5b60005b82829050811015611f545760136000848484818110611ee2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ef7919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558080611f4c90614bfa565b915050611e9a565b505050565b611f6a611f64612731565b83612800565b611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa09061484f565b60405180910390fd5b611fb584848484612f4e565b50505050565b600e5481565b611fc9612731565b73ffffffffffffffffffffffffffffffffffffffff16611fe761197b565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120349061476f565b60405180910390fd5b600082600f5461204d91906149d3565b111561208e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612085906147cf565b60405180910390fd5b6000600190505b828111612142576120a66007612dad565b6001600f546120b591906149d3565b600f819055506000612710600f546120cd91906149d3565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061211f90614bfa565b919050555061212e8382612dc3565b50808061213a90614bfa565b915050612095565b505050565b60085481565b6060612158826126c5565b612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906147af565b60405180910390fd5b60006121a1612faa565b905060008151116121c157604051806020016040528060008152506121ec565b806121cb84612b3a565b6040516020016121dc929190614438565b6040516020818303038152906040525b915050919050565b6121fc612731565b73ffffffffffffffffffffffffffffffffffffffff1661221a61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122679061476f565b60405180910390fd5b6127108261227e60076127f2565b61228891906149d3565b11156122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c09061486f565b60405180910390fd5b6000600190505b82811161235c576122e16007612dad565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061233190614bfa565b91905055506123498261234460076127f2565b612dc3565b808061235490614bfa565b9150506122d0565b505050565b612369612731565b73ffffffffffffffffffffffffffffffffffffffff1661238761197b565b73ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d49061476f565b60405180910390fd5b80600e8190555050565b6123ef612731565b73ffffffffffffffffffffffffffffffffffffffff1661240d61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061476f565b60405180910390fd5b61246b610ded565b6127106124789190614ab4565b8111156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b19061470f565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612560612731565b73ffffffffffffffffffffffffffffffffffffffff1661257e61197b565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb9061476f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906145af565b60405180910390fd5b61264d81612ce7565b50565b61271081565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ac8361141d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061280b826126c5565b61284a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128419061464f565b60405180910390fd5b60006128558361141d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128c457508373ffffffffffffffffffffffffffffffffffffffff166128ac84610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d557506128d481856124c4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128fe8261141d565b73ffffffffffffffffffffffffffffffffffffffff1614612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b9061478f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bb9061460f565b60405180910390fd5b6129cf83838361303c565b6129da600082612739565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2a9190614ab4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8191906149d3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612b82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ce2565b600082905060005b60008214612bb4578080612b9d90614bfa565b915050600a82612bad9190614a29565b9150612b8a565b60008167ffffffffffffffff811115612bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c285781602001600182028036833780820191505090505b5090505b60008514612cdb57600182612c419190614ab4565b9150600a85612c509190614c43565b6030612c5c91906149d3565b60f81b818381518110612c98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cd49190614a29565b9450612c2c565b8093505050505b919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612ddd828260405180602001604052806000815250613041565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e479061462f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f419190614552565b60405180910390a3505050565b612f598484846128de565b612f658484848461309c565b612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b9061458f565b60405180910390fd5b50505050565b606060118054612fb990614bc8565b80601f0160208091040260200160405190810160405280929190818152602001828054612fe590614bc8565b80156130325780601f1061300757610100808354040283529160200191613032565b820191906000526020600020905b81548152906001019060200180831161301557829003601f168201915b5050505050905090565b505050565b61304b8383613233565b613058600084848461309c565b613097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308e9061458f565b60405180910390fd5b505050565b60006130bd8473ffffffffffffffffffffffffffffffffffffffff16613401565b15613226578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e6612731565b8786866040518563ffffffff1660e01b81526004016131089493929190614506565b602060405180830381600087803b15801561312257600080fd5b505af192505050801561315357506040513d601f19601f820116820180604052508101906131509190613878565b60015b6131d6573d8060008114613183576040519150601f19603f3d011682016040523d82523d6000602084013e613188565b606091505b506000815114156131ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c59061458f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a9061472f565b60405180910390fd5b6132ac816126c5565b156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e3906145cf565b60405180910390fd5b6132f86000838361303c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461334891906149d3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461342090614bc8565b90600052602060002090601f0160209004810192826134425760008555613489565b82601f1061345b57805160ff1916838001178555613489565b82800160010185558215613489579182015b8281111561348857825182559160200191906001019061346d565b5b509050613496919061349a565b5090565b5b808211156134b357600081600090555060010161349b565b5090565b60006134ca6134c58461491b565b6148ea565b9050828152602081018484840111156134e257600080fd5b6134ed848285614b5c565b509392505050565b60006135086135038461494b565b6148ea565b90508281526020810184848401111561352057600080fd5b61352b848285614b5c565b509392505050565b60008135905061354281614d41565b92915050565b60008083601f84011261355a57600080fd5b8235905067ffffffffffffffff81111561357357600080fd5b60208301915083602082028301111561358b57600080fd5b9250929050565b6000813590506135a181614d58565b92915050565b6000813590506135b681614d6f565b92915050565b6000815190506135cb81614d6f565b92915050565b600082601f8301126135e257600080fd5b81356135f28482602086016134b7565b91505092915050565b600082601f83011261360c57600080fd5b813561361c8482602086016134f5565b91505092915050565b60008135905061363481614d86565b92915050565b60006020828403121561364c57600080fd5b600061365a84828501613533565b91505092915050565b6000806040838503121561367657600080fd5b600061368485828601613533565b925050602061369585828601613533565b9150509250929050565b6000806000606084860312156136b457600080fd5b60006136c286828701613533565b93505060206136d386828701613533565b92505060406136e486828701613625565b9150509250925092565b6000806000806080858703121561370457600080fd5b600061371287828801613533565b945050602061372387828801613533565b935050604061373487828801613625565b925050606085013567ffffffffffffffff81111561375157600080fd5b61375d878288016135d1565b91505092959194509250565b6000806040838503121561377c57600080fd5b600061378a85828601613533565b925050602061379b85828601613592565b9150509250929050565b600080604083850312156137b857600080fd5b60006137c685828601613533565b92505060206137d785828601613625565b9150509250929050565b600080602083850312156137f457600080fd5b600083013567ffffffffffffffff81111561380e57600080fd5b61381a85828601613548565b92509250509250929050565b60006020828403121561383857600080fd5b600061384684828501613592565b91505092915050565b60006020828403121561386157600080fd5b600061386f848285016135a7565b91505092915050565b60006020828403121561388a57600080fd5b6000613898848285016135bc565b91505092915050565b6000602082840312156138b357600080fd5b600082013567ffffffffffffffff8111156138cd57600080fd5b6138d9848285016135fb565b91505092915050565b6000602082840312156138f457600080fd5b600061390284828501613625565b91505092915050565b6000806040838503121561391e57600080fd5b600061392c85828601613625565b925050602061393d85828601613533565b9150509250929050565b600080600080600080600060e0888a03121561396257600080fd5b60006139708a828b01613625565b97505060206139818a828b01613625565b965050604088013567ffffffffffffffff81111561399e57600080fd5b6139aa8a828b016135fb565b95505060606139bb8a828b01613625565b94505060806139cc8a828b01613625565b93505060a06139dd8a828b01613625565b92505060c088013567ffffffffffffffff8111156139fa57600080fd5b613a068a828b016135fb565b91505092959891949750929550565b613a1e81614ae8565b82525050565b613a2d81614afa565b82525050565b6000613a3e82614990565b613a4881856149a6565b9350613a58818560208601614b6b565b613a6181614d30565b840191505092915050565b6000613a778261499b565b613a8181856149b7565b9350613a91818560208601614b6b565b613a9a81614d30565b840191505092915050565b6000613ab08261499b565b613aba81856149c8565b9350613aca818560208601614b6b565b80840191505092915050565b60008154613ae381614bc8565b613aed81866149c8565b94506001821660008114613b085760018114613b1957613b4c565b60ff19831686528186019350613b4c565b613b228561497b565b60005b83811015613b4457815481890152600182019150602081019050613b25565b838801955050505b50505092915050565b6000613b626032836149b7565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613bc86026836149b7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2e601c836149b7565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613c6e6028836149b7565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd46001836149c8565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613d146024836149b7565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d7a6019836149b7565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dba602c836149b7565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e206012836149b7565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613e606017836149b7565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613ea06038836149b7565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f06602a836149b7565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6c6029836149b7565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd26031836149b7565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b60006140386020836149b7565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614078602c836149b7565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140de6020836149b7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061411e6029836149b7565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614184602f836149b7565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141ea6013836149b7565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b600061422a601c836149b7565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b600061426a6021836149b7565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d06014836149b7565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b60006143106031836149b7565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614376600f836149b7565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b60006143b66013836149b7565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b60006143f6601b836149b7565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61443281614b52565b82525050565b60006144448285613aa5565b91506144508284613aa5565b91508190509392505050565b60006144688289613ad6565b915061447382613cc7565b915061447f8288613aa5565b915061448a82613cc7565b91506144968287613aa5565b91506144a182613cc7565b91506144ad8286613aa5565b91506144b882613cc7565b91506144c48285613aa5565b91506144cf82613cc7565b91506144db8284613ad6565b9150819050979650505050505050565b60006020820190506145006000830184613a15565b92915050565b600060808201905061451b6000830187613a15565b6145286020830186613a15565b6145356040830185614429565b81810360608301526145478184613a33565b905095945050505050565b60006020820190506145676000830184613a24565b92915050565b600060208201905081810360008301526145878184613a6c565b905092915050565b600060208201905081810360008301526145a881613b55565b9050919050565b600060208201905081810360008301526145c881613bbb565b9050919050565b600060208201905081810360008301526145e881613c21565b9050919050565b6000602082019050818103600083015261460881613c61565b9050919050565b6000602082019050818103600083015261462881613d07565b9050919050565b6000602082019050818103600083015261464881613d6d565b9050919050565b6000602082019050818103600083015261466881613dad565b9050919050565b6000602082019050818103600083015261468881613e13565b9050919050565b600060208201905081810360008301526146a881613e53565b9050919050565b600060208201905081810360008301526146c881613e93565b9050919050565b600060208201905081810360008301526146e881613ef9565b9050919050565b6000602082019050818103600083015261470881613f5f565b9050919050565b6000602082019050818103600083015261472881613fc5565b9050919050565b600060208201905081810360008301526147488161402b565b9050919050565b600060208201905081810360008301526147688161406b565b9050919050565b60006020820190508181036000830152614788816140d1565b9050919050565b600060208201905081810360008301526147a881614111565b9050919050565b600060208201905081810360008301526147c881614177565b9050919050565b600060208201905081810360008301526147e8816141dd565b9050919050565b600060208201905081810360008301526148088161421d565b9050919050565b600060208201905081810360008301526148288161425d565b9050919050565b60006020820190508181036000830152614848816142c3565b9050919050565b6000602082019050818103600083015261486881614303565b9050919050565b6000602082019050818103600083015261488881614369565b9050919050565b600060208201905081810360008301526148a8816143a9565b9050919050565b600060208201905081810360008301526148c8816143e9565b9050919050565b60006020820190506148e46000830184614429565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561491157614910614d01565b5b8060405250919050565b600067ffffffffffffffff82111561493657614935614d01565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561496657614965614d01565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149de82614b52565b91506149e983614b52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1e57614a1d614c74565b5b828201905092915050565b6000614a3482614b52565b9150614a3f83614b52565b925082614a4f57614a4e614ca3565b5b828204905092915050565b6000614a6582614b52565b9150614a7083614b52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa957614aa8614c74565b5b828202905092915050565b6000614abf82614b52565b9150614aca83614b52565b925082821015614add57614adc614c74565b5b828203905092915050565b6000614af382614b32565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b89578082015181840152602081019050614b6e565b83811115614b98576000848401525b50505050565b6000614ba982614b52565b91506000821415614bbd57614bbc614c74565b5b600182039050919050565b60006002820490506001821680614be057607f821691505b60208210811415614bf457614bf3614cd2565b5b50919050565b6000614c0582614b52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c3857614c37614c74565b5b600182019050919050565b6000614c4e82614b52565b9150614c5983614b52565b925082614c6957614c68614ca3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d4a81614ae8565b8114614d5557600080fd5b50565b614d6181614afa565b8114614d6c57600080fd5b50565b614d7881614b06565b8114614d8357600080fd5b50565b614d8f81614b52565b8114614d9a57600080fd5b5056fea26469706673582212201f3a6650843fa10fc10b78031076583a5e57f3a222aadf073f6dbe9ca7d9b82264736f6c63430008000033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.