ETH Price: $3,314.04 (+1.98%)
Gas: 3 Gwei

Token

SecretSocietyNFT (SecretSocietyNFT)
 

Overview

Max Total Supply

184 SecretSocietyNFT

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
peruggia-v.eth
Balance
1 SecretSocietyNFT
0xf4b4A58974524E183c275F3c6EA895bC2368E738
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Secret Society is starting with an exclusive collection of 5,000 Unique Mafia NFTs—unique digital collectibles. The mafias are stored as ERC-721 tokens on the Ethereum blockchain and hosted on IPFS.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SecretSocietyNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : SecretSocietyNFT.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 SecretSocietyNFT is ERC721, Ownable {
	using Counters
	for Counters.Counter;
	Counters.Counter private _tokenIds;
	
	
	uint public constant MAX_TOKENS = 9999;
	uint public constant MAX_TOKENS_VIP = 9;
	
	
	uint public CURR_MINT_COST = 0.05 ether;
	
	//---- Round based supplies
	string public CURR_ROUND_NAME = "Presale";
	string public CURR_ROUND_PASSWORD = "8ef4c40896adf48a4d4e59b844b0b3a8";
	uint public CURR_ROUND_SUPPLY = 3;
	uint public CURR_ROUND_TIME = 0;
	
	uint public maxMintAmount = 20;
	uint public nftPerAddressLimit = 20;
	uint public currentVIPs = 0;
	
	bool public hasSaleStarted = true;
	bool public onlyWhitelisted = false;
	
	string public baseURI;
	
	mapping(address => uint) public addressMintedBalance;
	mapping (address => bool) whitelistUserAddresses;

	
	
	
	constructor() ERC721("SecretSocietyNFT", "SecretSocietyNFT") {
		setBaseURI("http://api.secretsocietynft.com/ssmeta/");
	}

	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 mintNFT(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":[],"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":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","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"}]

608060405266b1a2bc2ec500006008556040518060400160405280600781526020017f50726573616c6500000000000000000000000000000000000000000000000000815250600990805190602001906200005c9291906200039b565b506040518060400160405280602081526020017f3865663463343038393661646634386134643465353962383434623062336138815250600a9080519060200190620000aa9291906200039b565b506003600b556000600c556014600d556014600e556000600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200010757600080fd5b506040518060400160405280601081526020017f536563726574536f63696574794e4654000000000000000000000000000000008152506040518060400160405280601081526020017f536563726574536f63696574794e46540000000000000000000000000000000081525081600090805190602001906200018c9291906200039b565b508060019080519060200190620001a59291906200039b565b505050620001c8620001bc620001f860201b60201c565b6200020060201b60201c565b620001f2604051806060016040528060278152602001620052fd60279139620002c660201b60201c565b62000525565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d6620001f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fc6200037160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c906200048d565b60405180910390fd5b80601190805190602001906200036d9291906200039b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a990620004c0565b90600052602060002090601f016020900481019282620003cd576000855562000419565b82601f10620003e857805160ff191683800117855562000419565b8280016001018555821562000419579182015b8281111562000418578251825591602001919060010190620003fb565b5b5090506200042891906200042c565b5090565b5b80821115620004475760008160009055506001016200042d565b5090565b60006200045a602083620004af565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004a8816200044b565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004d957607f821691505b60208210811415620004f057620004ef620004f6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614dc880620005356000396000f3fe6080604052600436106102935760003560e01c8063714c53981161015a578063b83921a6116100c1578063d0eb26b01161007a578063d0eb26b0146109c2578063dc547301146109eb578063e985e9c514610a14578063f2fde38b14610a51578063f47c84c514610a7a578063f79e66ba14610aa557610293565b8063b83921a6146108b4578063b88d4fde146108dd578063ba7d2c7614610906578063bff84fc514610931578063c34278441461095a578063c87b56dd1461098557610293565b8063926427441161011357806392642744146107c557806395d89b41146107e157806397000de11461080c5780639c70b51214610837578063a22cb46514610862578063a854ffba1461088b57610293565b8063714c5398146106fa578063715018a6146107255780637f00c7a61461073c578063853828b6146107655780638626af271461076f5780638da5cb5b1461079a57610293565b80632bf04304116101fe57806344a0d68a116101b757806344a0d68a146105da57806355f804b3146106035780636352211e1461062c578063669f5a51146106695780636c0360eb1461069257806370a08231146106bd57610293565b80632bf04304146104ce5780633af32abf146104f75780633b557f56146105345780633c5e310b1461055d5780633c9527641461058857806342842e0e146105b157610293565b806318160ddd1161025057806318160ddd146103bc57806318cae269146103e75780631c8b232d14610424578063239c70ae1461044f57806323b872dd1461047a57806329540530146104a357610293565b806301ffc9a714610298578063027b2513146102d5578063042ebb481461030057806306fdde031461032b578063081812fc14610356578063095ea7b314610393575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba919061384f565b610ad0565b6040516102cc9190614547565b60405180910390f35b3480156102e157600080fd5b506102ea610bb2565b6040516102f791906148c4565b60405180910390f35b34801561030c57600080fd5b50610315610bb8565b60405161032291906148c4565b60405180910390f35b34801561033757600080fd5b50610340610bbe565b60405161034d9190614562565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906138e2565b610c50565b60405161038a91906144e0565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906137a5565b610cd5565b005b3480156103c857600080fd5b506103d1610ded565b6040516103de91906148c4565b60405180910390f35b3480156103f357600080fd5b5061040e6004803603810190610409919061363a565b610dfe565b60405161041b91906148c4565b60405180910390f35b34801561043057600080fd5b50610439610e16565b6040516104469190614547565b60405180910390f35b34801561045b57600080fd5b50610464610e29565b60405161047191906148c4565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061369f565b610e2f565b005b3480156104af57600080fd5b506104b8610e8f565b6040516104c59190614562565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906137e1565b610f1d565b005b34801561050357600080fd5b5061051e6004803603810190610519919061363a565b611064565b60405161052b9190614547565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613947565b6110ba565b005b34801561056957600080fd5b506105726111e7565b60405161057f9190614562565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613826565b611248565b005b3480156105bd57600080fd5b506105d860048036038101906105d3919061369f565b6112e1565b005b3480156105e657600080fd5b5061060160048036038101906105fc91906138e2565b611301565b005b34801561060f57600080fd5b5061062a600480360381019061062591906138a1565b611387565b005b34801561063857600080fd5b50610653600480360381019061064e91906138e2565b61141d565b60405161066091906144e0565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b919061390b565b6114cf565b005b34801561069e57600080fd5b506106a761163c565b6040516106b49190614562565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df919061363a565b6116ca565b6040516106f191906148c4565b60405180910390f35b34801561070657600080fd5b5061070f611782565b60405161071c9190614562565b60405180910390f35b34801561073157600080fd5b5061073a611890565b005b34801561074857600080fd5b50610763600480360381019061075e91906138e2565b611918565b005b61076d61199e565b005b34801561077b57600080fd5b50610784611a5a565b6040516107919190614562565b60405180910390f35b3480156107a657600080fd5b506107af611ae8565b6040516107bc91906144e0565b60405180910390f35b6107df60048036038101906107da91906138e2565b611b12565b005b3480156107ed57600080fd5b506107f6611e2e565b6040516108039190614562565b60405180910390f35b34801561081857600080fd5b50610821611ec0565b60405161082e91906148c4565b60405180910390f35b34801561084357600080fd5b5061084c611ec6565b6040516108599190614547565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613769565b611ed9565b005b34801561089757600080fd5b506108b260048036038101906108ad9190613826565b611eef565b005b3480156108c057600080fd5b506108db60048036038101906108d691906137e1565b611f88565b005b3480156108e957600080fd5b5061090460048036038101906108ff91906136ee565b6120c6565b005b34801561091257600080fd5b5061091b612128565b60405161092891906148c4565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061390b565b61212e565b005b34801561096657600080fd5b5061096f6122b4565b60405161097c91906148c4565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a791906138e2565b6122ba565b6040516109b99190614562565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906138e2565b612361565b005b3480156109f757600080fd5b50610a126004803603810190610a0d91906138e2565b6123e7565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613663565b6124c4565b604051610a489190614547565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a73919061363a565b612558565b005b348015610a8657600080fd5b50610a8f612650565b604051610a9c91906148c4565b60405180910390f35b348015610ab157600080fd5b50610aba612656565b604051610ac791906148c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bab5750610baa8261265b565b5b9050919050565b600c5481565b600f5481565b606060008054610bcd90614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990614bbd565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b5050505050905090565b6000610c5b826126c5565b610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190614744565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce08261141d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890614804565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d70612731565b73ffffffffffffffffffffffffffffffffffffffff161480610d9f5750610d9e81610d99612731565b6124c4565b5b610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906146a4565b60405180910390fd5b610de88383612739565b505050565b6000610df960076127f2565b905090565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b600d5481565b610e40610e3a612731565b82612800565b610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690614844565b60405180910390fd5b610e8a8383836128de565b505050565b60098054610e9c90614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec890614bbd565b8015610f155780601f10610eea57610100808354040283529160200191610f15565b820191906000526020600020905b815481529060010190602001808311610ef857829003601f168201915b505050505081565b610f25612731565b73ffffffffffffffffffffffffffffffffffffffff16610f43611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090614764565b60405180910390fd5b60005b8282905081101561105f57600160136000858585818110610fe6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ffb919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061105790614bef565b915050610f9c565b505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c2612731565b73ffffffffffffffffffffffffffffffffffffffff166110e0611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90614764565b60405180910390fd5b61113e610ded565b61270f61114b9190614aa9565b87111561118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490614864565b60405180910390fd5b86600b819055508560088190555084600990805190602001906111b1929190613414565b5083600d8190555082600e8190555081600c8190555080600a90805190602001906111dd929190613414565b5050505050505050565b6060600060096111f8600b54612b3a565b611203600c54612b3a565b61120e600854612b3a565b611219600d54612b3a565b600a6040516020016112309695949392919061445c565b60405160208183030381529060405290508091505090565b611250612731565b73ffffffffffffffffffffffffffffffffffffffff1661126e611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614764565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6112fc838383604051806020016040528060008152506120c6565b505050565b611309612731565b73ffffffffffffffffffffffffffffffffffffffff16611327611ae8565b73ffffffffffffffffffffffffffffffffffffffff161461137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490614764565b60405180910390fd5b8060088190555050565b61138f612731565b73ffffffffffffffffffffffffffffffffffffffff166113ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614764565b60405180910390fd5b8060119080519060200190611419929190613414565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd906146e4565b60405180910390fd5b80915050919050565b6114d7612731565b73ffffffffffffffffffffffffffffffffffffffff166114f5611ae8565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290614764565b60405180910390fd5b61270f8261155960076127f2565b61156391906149c8565b11156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614864565b60405180910390fd5b6000600190505b828111611637576115bc6007612ce7565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061160c90614bef565b91905055506116248261161f60076127f2565b612cfd565b808061162f90614bef565b9150506115ab565b505050565b6011805461164990614bbd565b80601f016020809104026020016040519081016040528092919081815260200182805461167590614bbd565b80156116c25780601f10611697576101008083540402835291602001916116c2565b820191906000526020600020905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906146c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061178c612731565b73ffffffffffffffffffffffffffffffffffffffff166117aa611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790614764565b60405180910390fd5b6011805461180d90614bbd565b80601f016020809104026020016040519081016040528092919081815260200182805461183990614bbd565b80156118865780601f1061185b57610100808354040283529160200191611886565b820191906000526020600020905b81548152906001019060200180831161186957829003601f168201915b5050505050905090565b611898612731565b73ffffffffffffffffffffffffffffffffffffffff166118b6611ae8565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614764565b60405180910390fd5b6119166000612d1b565b565b611920612731565b73ffffffffffffffffffffffffffffffffffffffff1661193e611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614764565b60405180910390fd5b80600d8190555050565b6119a6612731565b73ffffffffffffffffffffffffffffffffffffffff166119c4611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614764565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611a5857600080fd5b565b600a8054611a6790614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9390614bbd565b8015611ae05780601f10611ab557610100808354040283529160200191611ae0565b820191906000526020600020905b815481529060010190602001808311611ac357829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906148a4565b60405180910390fd5b600d54811115611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906145e4565b60405180910390fd5b80600854611ba89190614a4f565b341015611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614664565b60405180910390fd5b60011515601060009054906101000a900460ff16151514611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614884565b60405180910390fd5b600b54811115611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614824565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415611d7f57611caa33611064565b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce090614684565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611d3c91906149c8565b1115611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906147e4565b60405180910390fd5b505b6000600190505b818111611e2a57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ddd90614bef565b9190505550611dec6007612ce7565b600b6000815480929190611dff90614b93565b9190505550611e1733611e1260076127f2565b612cfd565b8080611e2290614bef565b915050611d86565b5050565b606060018054611e3d90614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6990614bbd565b8015611eb65780601f10611e8b57610100808354040283529160200191611eb6565b820191906000526020600020905b815481529060010190602001808311611e9957829003601f168201915b5050505050905090565b600b5481565b601060019054906101000a900460ff1681565b611eeb611ee4612731565b8383612de1565b5050565b611ef7612731565b73ffffffffffffffffffffffffffffffffffffffff16611f15611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614764565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611f90612731565b73ffffffffffffffffffffffffffffffffffffffff16611fae611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb90614764565b60405180910390fd5b60005b828290508110156120c1576013600084848481811061204f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612064919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806120b990614bef565b915050612007565b505050565b6120d76120d1612731565b83612800565b612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614844565b60405180910390fd5b61212284848484612f4e565b50505050565b600e5481565b612136612731565b73ffffffffffffffffffffffffffffffffffffffff16612154611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146121aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a190614764565b60405180910390fd5b600982600f546121ba91906149c8565b11156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f2906147c4565b60405180910390fd5b6000600190505b8281116122af576122136007612ce7565b6001600f5461222291906149c8565b600f81905550600061270f600f5461223a91906149c8565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061228c90614bef565b919050555061229b8382612cfd565b5080806122a790614bef565b915050612202565b505050565b60085481565b60606122c5826126c5565b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906147a4565b60405180910390fd5b600061230e612faa565b9050600081511161232e5760405180602001604052806000815250612359565b8061233884612b3a565b604051602001612349929190614438565b6040516020818303038152906040525b915050919050565b612369612731565b73ffffffffffffffffffffffffffffffffffffffff16612387611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614764565b60405180910390fd5b80600e8190555050565b6123ef612731565b73ffffffffffffffffffffffffffffffffffffffff1661240d611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a90614764565b60405180910390fd5b61246b610ded565b61270f6124789190614aa9565b8111156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614704565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612560612731565b73ffffffffffffffffffffffffffffffffffffffff1661257e611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90614764565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906145a4565b60405180910390fd5b61264d81612d1b565b50565b61270f81565b600981565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ac8361141d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061280b826126c5565b61284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284190614644565b60405180910390fd5b60006128558361141d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128c457508373ffffffffffffffffffffffffffffffffffffffff166128ac84610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d557506128d481856124c4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128fe8261141d565b73ffffffffffffffffffffffffffffffffffffffff1614612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90614784565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bb90614604565b60405180910390fd5b6129cf83838361303c565b6129da600082612739565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2a9190614aa9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8191906149c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612b82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ce2565b600082905060005b60008214612bb4578080612b9d90614bef565b915050600a82612bad9190614a1e565b9150612b8a565b60008167ffffffffffffffff811115612bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c285781602001600182028036833780820191505090505b5090505b60008514612cdb57600182612c419190614aa9565b9150600a85612c509190614c38565b6030612c5c91906149c8565b60f81b818381518110612c98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cd49190614a1e565b9450612c2c565b8093505050505b919050565b6001816000016000828254019250508190555050565b612d17828260405180602001604052806000815250613041565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790614624565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f419190614547565b60405180910390a3505050565b612f598484846128de565b612f658484848461309c565b612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b90614584565b60405180910390fd5b50505050565b606060118054612fb990614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054612fe590614bbd565b80156130325780601f1061300757610100808354040283529160200191613032565b820191906000526020600020905b81548152906001019060200180831161301557829003601f168201915b5050505050905090565b505050565b61304b8383613233565b613058600084848461309c565b613097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308e90614584565b60405180910390fd5b505050565b60006130bd8473ffffffffffffffffffffffffffffffffffffffff16613401565b15613226578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e6612731565b8786866040518563ffffffff1660e01b815260040161310894939291906144fb565b602060405180830381600087803b15801561312257600080fd5b505af192505050801561315357506040513d601f19601f820116820180604052508101906131509190613878565b60015b6131d6573d8060008114613183576040519150601f19603f3d011682016040523d82523d6000602084013e613188565b606091505b506000815114156131ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c590614584565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a90614724565b60405180910390fd5b6132ac816126c5565b156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e3906145c4565b60405180910390fd5b6132f86000838361303c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461334891906149c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461342090614bbd565b90600052602060002090601f0160209004810192826134425760008555613489565b82601f1061345b57805160ff1916838001178555613489565b82800160010185558215613489579182015b8281111561348857825182559160200191906001019061346d565b5b509050613496919061349a565b5090565b5b808211156134b357600081600090555060010161349b565b5090565b60006134ca6134c584614910565b6148df565b9050828152602081018484840111156134e257600080fd5b6134ed848285614b51565b509392505050565b600061350861350384614940565b6148df565b90508281526020810184848401111561352057600080fd5b61352b848285614b51565b509392505050565b60008135905061354281614d36565b92915050565b60008083601f84011261355a57600080fd5b8235905067ffffffffffffffff81111561357357600080fd5b60208301915083602082028301111561358b57600080fd5b9250929050565b6000813590506135a181614d4d565b92915050565b6000813590506135b681614d64565b92915050565b6000815190506135cb81614d64565b92915050565b600082601f8301126135e257600080fd5b81356135f28482602086016134b7565b91505092915050565b600082601f83011261360c57600080fd5b813561361c8482602086016134f5565b91505092915050565b60008135905061363481614d7b565b92915050565b60006020828403121561364c57600080fd5b600061365a84828501613533565b91505092915050565b6000806040838503121561367657600080fd5b600061368485828601613533565b925050602061369585828601613533565b9150509250929050565b6000806000606084860312156136b457600080fd5b60006136c286828701613533565b93505060206136d386828701613533565b92505060406136e486828701613625565b9150509250925092565b6000806000806080858703121561370457600080fd5b600061371287828801613533565b945050602061372387828801613533565b935050604061373487828801613625565b925050606085013567ffffffffffffffff81111561375157600080fd5b61375d878288016135d1565b91505092959194509250565b6000806040838503121561377c57600080fd5b600061378a85828601613533565b925050602061379b85828601613592565b9150509250929050565b600080604083850312156137b857600080fd5b60006137c685828601613533565b92505060206137d785828601613625565b9150509250929050565b600080602083850312156137f457600080fd5b600083013567ffffffffffffffff81111561380e57600080fd5b61381a85828601613548565b92509250509250929050565b60006020828403121561383857600080fd5b600061384684828501613592565b91505092915050565b60006020828403121561386157600080fd5b600061386f848285016135a7565b91505092915050565b60006020828403121561388a57600080fd5b6000613898848285016135bc565b91505092915050565b6000602082840312156138b357600080fd5b600082013567ffffffffffffffff8111156138cd57600080fd5b6138d9848285016135fb565b91505092915050565b6000602082840312156138f457600080fd5b600061390284828501613625565b91505092915050565b6000806040838503121561391e57600080fd5b600061392c85828601613625565b925050602061393d85828601613533565b9150509250929050565b600080600080600080600060e0888a03121561396257600080fd5b60006139708a828b01613625565b97505060206139818a828b01613625565b965050604088013567ffffffffffffffff81111561399e57600080fd5b6139aa8a828b016135fb565b95505060606139bb8a828b01613625565b94505060806139cc8a828b01613625565b93505060a06139dd8a828b01613625565b92505060c088013567ffffffffffffffff8111156139fa57600080fd5b613a068a828b016135fb565b91505092959891949750929550565b613a1e81614add565b82525050565b613a2d81614aef565b82525050565b6000613a3e82614985565b613a48818561499b565b9350613a58818560208601614b60565b613a6181614d25565b840191505092915050565b6000613a7782614990565b613a8181856149ac565b9350613a91818560208601614b60565b613a9a81614d25565b840191505092915050565b6000613ab082614990565b613aba81856149bd565b9350613aca818560208601614b60565b80840191505092915050565b60008154613ae381614bbd565b613aed81866149bd565b94506001821660008114613b085760018114613b1957613b4c565b60ff19831686528186019350613b4c565b613b2285614970565b60005b83811015613b4457815481890152600182019150602081019050613b25565b838801955050505b50505092915050565b6000613b626032836149ac565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613bc86026836149ac565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2e601c836149ac565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613c6e6028836149ac565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd46001836149bd565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613d146024836149ac565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d7a6019836149ac565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dba602c836149ac565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e206012836149ac565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613e606017836149ac565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613ea06038836149ac565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f06602a836149ac565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6c6029836149ac565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd26031836149ac565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b60006140386020836149ac565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614078602c836149ac565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140de6020836149ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061411e6029836149ac565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614184602f836149ac565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141ea6013836149ac565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b600061422a601c836149ac565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b600061426a6021836149ac565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d06014836149ac565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b60006143106031836149ac565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614376600f836149ac565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b60006143b66013836149ac565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b60006143f6601b836149ac565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61443281614b47565b82525050565b60006144448285613aa5565b91506144508284613aa5565b91508190509392505050565b60006144688289613ad6565b915061447382613cc7565b915061447f8288613aa5565b915061448a82613cc7565b91506144968287613aa5565b91506144a182613cc7565b91506144ad8286613aa5565b91506144b882613cc7565b91506144c48285613aa5565b91506144d08284613ad6565b9150819050979650505050505050565b60006020820190506144f56000830184613a15565b92915050565b60006080820190506145106000830187613a15565b61451d6020830186613a15565b61452a6040830185614429565b818103606083015261453c8184613a33565b905095945050505050565b600060208201905061455c6000830184613a24565b92915050565b6000602082019050818103600083015261457c8184613a6c565b905092915050565b6000602082019050818103600083015261459d81613b55565b9050919050565b600060208201905081810360008301526145bd81613bbb565b9050919050565b600060208201905081810360008301526145dd81613c21565b9050919050565b600060208201905081810360008301526145fd81613c61565b9050919050565b6000602082019050818103600083015261461d81613d07565b9050919050565b6000602082019050818103600083015261463d81613d6d565b9050919050565b6000602082019050818103600083015261465d81613dad565b9050919050565b6000602082019050818103600083015261467d81613e13565b9050919050565b6000602082019050818103600083015261469d81613e53565b9050919050565b600060208201905081810360008301526146bd81613e93565b9050919050565b600060208201905081810360008301526146dd81613ef9565b9050919050565b600060208201905081810360008301526146fd81613f5f565b9050919050565b6000602082019050818103600083015261471d81613fc5565b9050919050565b6000602082019050818103600083015261473d8161402b565b9050919050565b6000602082019050818103600083015261475d8161406b565b9050919050565b6000602082019050818103600083015261477d816140d1565b9050919050565b6000602082019050818103600083015261479d81614111565b9050919050565b600060208201905081810360008301526147bd81614177565b9050919050565b600060208201905081810360008301526147dd816141dd565b9050919050565b600060208201905081810360008301526147fd8161421d565b9050919050565b6000602082019050818103600083015261481d8161425d565b9050919050565b6000602082019050818103600083015261483d816142c3565b9050919050565b6000602082019050818103600083015261485d81614303565b9050919050565b6000602082019050818103600083015261487d81614369565b9050919050565b6000602082019050818103600083015261489d816143a9565b9050919050565b600060208201905081810360008301526148bd816143e9565b9050919050565b60006020820190506148d96000830184614429565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561490657614905614cf6565b5b8060405250919050565b600067ffffffffffffffff82111561492b5761492a614cf6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561495b5761495a614cf6565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149d382614b47565b91506149de83614b47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1357614a12614c69565b5b828201905092915050565b6000614a2982614b47565b9150614a3483614b47565b925082614a4457614a43614c98565b5b828204905092915050565b6000614a5a82614b47565b9150614a6583614b47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a9e57614a9d614c69565b5b828202905092915050565b6000614ab482614b47565b9150614abf83614b47565b925082821015614ad257614ad1614c69565b5b828203905092915050565b6000614ae882614b27565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b7e578082015181840152602081019050614b63565b83811115614b8d576000848401525b50505050565b6000614b9e82614b47565b91506000821415614bb257614bb1614c69565b5b600182039050919050565b60006002820490506001821680614bd557607f821691505b60208210811415614be957614be8614cc7565b5b50919050565b6000614bfa82614b47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c2d57614c2c614c69565b5b600182019050919050565b6000614c4382614b47565b9150614c4e83614b47565b925082614c5e57614c5d614c98565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d3f81614add565b8114614d4a57600080fd5b50565b614d5681614aef565b8114614d6157600080fd5b50565b614d6d81614afb565b8114614d7857600080fd5b50565b614d8481614b47565b8114614d8f57600080fd5b5056fea2646970667358221220262f848f3f98ab84991c900ad0e945229964eb72ab5a0b065f9581d12ba8aaa364736f6c63430008000033687474703a2f2f6170692e736563726574736f63696574796e66742e636f6d2f73736d6574612f

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063714c53981161015a578063b83921a6116100c1578063d0eb26b01161007a578063d0eb26b0146109c2578063dc547301146109eb578063e985e9c514610a14578063f2fde38b14610a51578063f47c84c514610a7a578063f79e66ba14610aa557610293565b8063b83921a6146108b4578063b88d4fde146108dd578063ba7d2c7614610906578063bff84fc514610931578063c34278441461095a578063c87b56dd1461098557610293565b8063926427441161011357806392642744146107c557806395d89b41146107e157806397000de11461080c5780639c70b51214610837578063a22cb46514610862578063a854ffba1461088b57610293565b8063714c5398146106fa578063715018a6146107255780637f00c7a61461073c578063853828b6146107655780638626af271461076f5780638da5cb5b1461079a57610293565b80632bf04304116101fe57806344a0d68a116101b757806344a0d68a146105da57806355f804b3146106035780636352211e1461062c578063669f5a51146106695780636c0360eb1461069257806370a08231146106bd57610293565b80632bf04304146104ce5780633af32abf146104f75780633b557f56146105345780633c5e310b1461055d5780633c9527641461058857806342842e0e146105b157610293565b806318160ddd1161025057806318160ddd146103bc57806318cae269146103e75780631c8b232d14610424578063239c70ae1461044f57806323b872dd1461047a57806329540530146104a357610293565b806301ffc9a714610298578063027b2513146102d5578063042ebb481461030057806306fdde031461032b578063081812fc14610356578063095ea7b314610393575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba919061384f565b610ad0565b6040516102cc9190614547565b60405180910390f35b3480156102e157600080fd5b506102ea610bb2565b6040516102f791906148c4565b60405180910390f35b34801561030c57600080fd5b50610315610bb8565b60405161032291906148c4565b60405180910390f35b34801561033757600080fd5b50610340610bbe565b60405161034d9190614562565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906138e2565b610c50565b60405161038a91906144e0565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906137a5565b610cd5565b005b3480156103c857600080fd5b506103d1610ded565b6040516103de91906148c4565b60405180910390f35b3480156103f357600080fd5b5061040e6004803603810190610409919061363a565b610dfe565b60405161041b91906148c4565b60405180910390f35b34801561043057600080fd5b50610439610e16565b6040516104469190614547565b60405180910390f35b34801561045b57600080fd5b50610464610e29565b60405161047191906148c4565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061369f565b610e2f565b005b3480156104af57600080fd5b506104b8610e8f565b6040516104c59190614562565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906137e1565b610f1d565b005b34801561050357600080fd5b5061051e6004803603810190610519919061363a565b611064565b60405161052b9190614547565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613947565b6110ba565b005b34801561056957600080fd5b506105726111e7565b60405161057f9190614562565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613826565b611248565b005b3480156105bd57600080fd5b506105d860048036038101906105d3919061369f565b6112e1565b005b3480156105e657600080fd5b5061060160048036038101906105fc91906138e2565b611301565b005b34801561060f57600080fd5b5061062a600480360381019061062591906138a1565b611387565b005b34801561063857600080fd5b50610653600480360381019061064e91906138e2565b61141d565b60405161066091906144e0565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b919061390b565b6114cf565b005b34801561069e57600080fd5b506106a761163c565b6040516106b49190614562565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df919061363a565b6116ca565b6040516106f191906148c4565b60405180910390f35b34801561070657600080fd5b5061070f611782565b60405161071c9190614562565b60405180910390f35b34801561073157600080fd5b5061073a611890565b005b34801561074857600080fd5b50610763600480360381019061075e91906138e2565b611918565b005b61076d61199e565b005b34801561077b57600080fd5b50610784611a5a565b6040516107919190614562565b60405180910390f35b3480156107a657600080fd5b506107af611ae8565b6040516107bc91906144e0565b60405180910390f35b6107df60048036038101906107da91906138e2565b611b12565b005b3480156107ed57600080fd5b506107f6611e2e565b6040516108039190614562565b60405180910390f35b34801561081857600080fd5b50610821611ec0565b60405161082e91906148c4565b60405180910390f35b34801561084357600080fd5b5061084c611ec6565b6040516108599190614547565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613769565b611ed9565b005b34801561089757600080fd5b506108b260048036038101906108ad9190613826565b611eef565b005b3480156108c057600080fd5b506108db60048036038101906108d691906137e1565b611f88565b005b3480156108e957600080fd5b5061090460048036038101906108ff91906136ee565b6120c6565b005b34801561091257600080fd5b5061091b612128565b60405161092891906148c4565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061390b565b61212e565b005b34801561096657600080fd5b5061096f6122b4565b60405161097c91906148c4565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a791906138e2565b6122ba565b6040516109b99190614562565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906138e2565b612361565b005b3480156109f757600080fd5b50610a126004803603810190610a0d91906138e2565b6123e7565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613663565b6124c4565b604051610a489190614547565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a73919061363a565b612558565b005b348015610a8657600080fd5b50610a8f612650565b604051610a9c91906148c4565b60405180910390f35b348015610ab157600080fd5b50610aba612656565b604051610ac791906148c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bab5750610baa8261265b565b5b9050919050565b600c5481565b600f5481565b606060008054610bcd90614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990614bbd565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b5050505050905090565b6000610c5b826126c5565b610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190614744565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce08261141d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890614804565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d70612731565b73ffffffffffffffffffffffffffffffffffffffff161480610d9f5750610d9e81610d99612731565b6124c4565b5b610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906146a4565b60405180910390fd5b610de88383612739565b505050565b6000610df960076127f2565b905090565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b600d5481565b610e40610e3a612731565b82612800565b610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690614844565b60405180910390fd5b610e8a8383836128de565b505050565b60098054610e9c90614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec890614bbd565b8015610f155780601f10610eea57610100808354040283529160200191610f15565b820191906000526020600020905b815481529060010190602001808311610ef857829003601f168201915b505050505081565b610f25612731565b73ffffffffffffffffffffffffffffffffffffffff16610f43611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090614764565b60405180910390fd5b60005b8282905081101561105f57600160136000858585818110610fe6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ffb919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061105790614bef565b915050610f9c565b505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c2612731565b73ffffffffffffffffffffffffffffffffffffffff166110e0611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90614764565b60405180910390fd5b61113e610ded565b61270f61114b9190614aa9565b87111561118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490614864565b60405180910390fd5b86600b819055508560088190555084600990805190602001906111b1929190613414565b5083600d8190555082600e8190555081600c8190555080600a90805190602001906111dd929190613414565b5050505050505050565b6060600060096111f8600b54612b3a565b611203600c54612b3a565b61120e600854612b3a565b611219600d54612b3a565b600a6040516020016112309695949392919061445c565b60405160208183030381529060405290508091505090565b611250612731565b73ffffffffffffffffffffffffffffffffffffffff1661126e611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614764565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6112fc838383604051806020016040528060008152506120c6565b505050565b611309612731565b73ffffffffffffffffffffffffffffffffffffffff16611327611ae8565b73ffffffffffffffffffffffffffffffffffffffff161461137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490614764565b60405180910390fd5b8060088190555050565b61138f612731565b73ffffffffffffffffffffffffffffffffffffffff166113ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614764565b60405180910390fd5b8060119080519060200190611419929190613414565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd906146e4565b60405180910390fd5b80915050919050565b6114d7612731565b73ffffffffffffffffffffffffffffffffffffffff166114f5611ae8565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290614764565b60405180910390fd5b61270f8261155960076127f2565b61156391906149c8565b11156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614864565b60405180910390fd5b6000600190505b828111611637576115bc6007612ce7565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061160c90614bef565b91905055506116248261161f60076127f2565b612cfd565b808061162f90614bef565b9150506115ab565b505050565b6011805461164990614bbd565b80601f016020809104026020016040519081016040528092919081815260200182805461167590614bbd565b80156116c25780601f10611697576101008083540402835291602001916116c2565b820191906000526020600020905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906146c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061178c612731565b73ffffffffffffffffffffffffffffffffffffffff166117aa611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790614764565b60405180910390fd5b6011805461180d90614bbd565b80601f016020809104026020016040519081016040528092919081815260200182805461183990614bbd565b80156118865780601f1061185b57610100808354040283529160200191611886565b820191906000526020600020905b81548152906001019060200180831161186957829003601f168201915b5050505050905090565b611898612731565b73ffffffffffffffffffffffffffffffffffffffff166118b6611ae8565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614764565b60405180910390fd5b6119166000612d1b565b565b611920612731565b73ffffffffffffffffffffffffffffffffffffffff1661193e611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614764565b60405180910390fd5b80600d8190555050565b6119a6612731565b73ffffffffffffffffffffffffffffffffffffffff166119c4611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614764565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611a5857600080fd5b565b600a8054611a6790614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9390614bbd565b8015611ae05780601f10611ab557610100808354040283529160200191611ae0565b820191906000526020600020905b815481529060010190602001808311611ac357829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906148a4565b60405180910390fd5b600d54811115611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906145e4565b60405180910390fd5b80600854611ba89190614a4f565b341015611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614664565b60405180910390fd5b60011515601060009054906101000a900460ff16151514611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614884565b60405180910390fd5b600b54811115611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614824565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415611d7f57611caa33611064565b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce090614684565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611d3c91906149c8565b1115611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906147e4565b60405180910390fd5b505b6000600190505b818111611e2a57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ddd90614bef565b9190505550611dec6007612ce7565b600b6000815480929190611dff90614b93565b9190505550611e1733611e1260076127f2565b612cfd565b8080611e2290614bef565b915050611d86565b5050565b606060018054611e3d90614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6990614bbd565b8015611eb65780601f10611e8b57610100808354040283529160200191611eb6565b820191906000526020600020905b815481529060010190602001808311611e9957829003601f168201915b5050505050905090565b600b5481565b601060019054906101000a900460ff1681565b611eeb611ee4612731565b8383612de1565b5050565b611ef7612731565b73ffffffffffffffffffffffffffffffffffffffff16611f15611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614764565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611f90612731565b73ffffffffffffffffffffffffffffffffffffffff16611fae611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb90614764565b60405180910390fd5b60005b828290508110156120c1576013600084848481811061204f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612064919061363a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806120b990614bef565b915050612007565b505050565b6120d76120d1612731565b83612800565b612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614844565b60405180910390fd5b61212284848484612f4e565b50505050565b600e5481565b612136612731565b73ffffffffffffffffffffffffffffffffffffffff16612154611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146121aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a190614764565b60405180910390fd5b600982600f546121ba91906149c8565b11156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f2906147c4565b60405180910390fd5b6000600190505b8281116122af576122136007612ce7565b6001600f5461222291906149c8565b600f81905550600061270f600f5461223a91906149c8565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061228c90614bef565b919050555061229b8382612cfd565b5080806122a790614bef565b915050612202565b505050565b60085481565b60606122c5826126c5565b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906147a4565b60405180910390fd5b600061230e612faa565b9050600081511161232e5760405180602001604052806000815250612359565b8061233884612b3a565b604051602001612349929190614438565b6040516020818303038152906040525b915050919050565b612369612731565b73ffffffffffffffffffffffffffffffffffffffff16612387611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614764565b60405180910390fd5b80600e8190555050565b6123ef612731565b73ffffffffffffffffffffffffffffffffffffffff1661240d611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a90614764565b60405180910390fd5b61246b610ded565b61270f6124789190614aa9565b8111156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614704565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612560612731565b73ffffffffffffffffffffffffffffffffffffffff1661257e611ae8565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90614764565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906145a4565b60405180910390fd5b61264d81612d1b565b50565b61270f81565b600981565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ac8361141d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061280b826126c5565b61284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284190614644565b60405180910390fd5b60006128558361141d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128c457508373ffffffffffffffffffffffffffffffffffffffff166128ac84610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d557506128d481856124c4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128fe8261141d565b73ffffffffffffffffffffffffffffffffffffffff1614612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90614784565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bb90614604565b60405180910390fd5b6129cf83838361303c565b6129da600082612739565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2a9190614aa9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8191906149c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612b82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ce2565b600082905060005b60008214612bb4578080612b9d90614bef565b915050600a82612bad9190614a1e565b9150612b8a565b60008167ffffffffffffffff811115612bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c285781602001600182028036833780820191505090505b5090505b60008514612cdb57600182612c419190614aa9565b9150600a85612c509190614c38565b6030612c5c91906149c8565b60f81b818381518110612c98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cd49190614a1e565b9450612c2c565b8093505050505b919050565b6001816000016000828254019250508190555050565b612d17828260405180602001604052806000815250613041565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790614624565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f419190614547565b60405180910390a3505050565b612f598484846128de565b612f658484848461309c565b612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b90614584565b60405180910390fd5b50505050565b606060118054612fb990614bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054612fe590614bbd565b80156130325780601f1061300757610100808354040283529160200191613032565b820191906000526020600020905b81548152906001019060200180831161301557829003601f168201915b5050505050905090565b505050565b61304b8383613233565b613058600084848461309c565b613097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308e90614584565b60405180910390fd5b505050565b60006130bd8473ffffffffffffffffffffffffffffffffffffffff16613401565b15613226578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e6612731565b8786866040518563ffffffff1660e01b815260040161310894939291906144fb565b602060405180830381600087803b15801561312257600080fd5b505af192505050801561315357506040513d601f19601f820116820180604052508101906131509190613878565b60015b6131d6573d8060008114613183576040519150601f19603f3d011682016040523d82523d6000602084013e613188565b606091505b506000815114156131ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c590614584565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a90614724565b60405180910390fd5b6132ac816126c5565b156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e3906145c4565b60405180910390fd5b6132f86000838361303c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461334891906149c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461342090614bbd565b90600052602060002090601f0160209004810192826134425760008555613489565b82601f1061345b57805160ff1916838001178555613489565b82800160010185558215613489579182015b8281111561348857825182559160200191906001019061346d565b5b509050613496919061349a565b5090565b5b808211156134b357600081600090555060010161349b565b5090565b60006134ca6134c584614910565b6148df565b9050828152602081018484840111156134e257600080fd5b6134ed848285614b51565b509392505050565b600061350861350384614940565b6148df565b90508281526020810184848401111561352057600080fd5b61352b848285614b51565b509392505050565b60008135905061354281614d36565b92915050565b60008083601f84011261355a57600080fd5b8235905067ffffffffffffffff81111561357357600080fd5b60208301915083602082028301111561358b57600080fd5b9250929050565b6000813590506135a181614d4d565b92915050565b6000813590506135b681614d64565b92915050565b6000815190506135cb81614d64565b92915050565b600082601f8301126135e257600080fd5b81356135f28482602086016134b7565b91505092915050565b600082601f83011261360c57600080fd5b813561361c8482602086016134f5565b91505092915050565b60008135905061363481614d7b565b92915050565b60006020828403121561364c57600080fd5b600061365a84828501613533565b91505092915050565b6000806040838503121561367657600080fd5b600061368485828601613533565b925050602061369585828601613533565b9150509250929050565b6000806000606084860312156136b457600080fd5b60006136c286828701613533565b93505060206136d386828701613533565b92505060406136e486828701613625565b9150509250925092565b6000806000806080858703121561370457600080fd5b600061371287828801613533565b945050602061372387828801613533565b935050604061373487828801613625565b925050606085013567ffffffffffffffff81111561375157600080fd5b61375d878288016135d1565b91505092959194509250565b6000806040838503121561377c57600080fd5b600061378a85828601613533565b925050602061379b85828601613592565b9150509250929050565b600080604083850312156137b857600080fd5b60006137c685828601613533565b92505060206137d785828601613625565b9150509250929050565b600080602083850312156137f457600080fd5b600083013567ffffffffffffffff81111561380e57600080fd5b61381a85828601613548565b92509250509250929050565b60006020828403121561383857600080fd5b600061384684828501613592565b91505092915050565b60006020828403121561386157600080fd5b600061386f848285016135a7565b91505092915050565b60006020828403121561388a57600080fd5b6000613898848285016135bc565b91505092915050565b6000602082840312156138b357600080fd5b600082013567ffffffffffffffff8111156138cd57600080fd5b6138d9848285016135fb565b91505092915050565b6000602082840312156138f457600080fd5b600061390284828501613625565b91505092915050565b6000806040838503121561391e57600080fd5b600061392c85828601613625565b925050602061393d85828601613533565b9150509250929050565b600080600080600080600060e0888a03121561396257600080fd5b60006139708a828b01613625565b97505060206139818a828b01613625565b965050604088013567ffffffffffffffff81111561399e57600080fd5b6139aa8a828b016135fb565b95505060606139bb8a828b01613625565b94505060806139cc8a828b01613625565b93505060a06139dd8a828b01613625565b92505060c088013567ffffffffffffffff8111156139fa57600080fd5b613a068a828b016135fb565b91505092959891949750929550565b613a1e81614add565b82525050565b613a2d81614aef565b82525050565b6000613a3e82614985565b613a48818561499b565b9350613a58818560208601614b60565b613a6181614d25565b840191505092915050565b6000613a7782614990565b613a8181856149ac565b9350613a91818560208601614b60565b613a9a81614d25565b840191505092915050565b6000613ab082614990565b613aba81856149bd565b9350613aca818560208601614b60565b80840191505092915050565b60008154613ae381614bbd565b613aed81866149bd565b94506001821660008114613b085760018114613b1957613b4c565b60ff19831686528186019350613b4c565b613b2285614970565b60005b83811015613b4457815481890152600182019150602081019050613b25565b838801955050505b50505092915050565b6000613b626032836149ac565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613bc86026836149ac565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2e601c836149ac565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613c6e6028836149ac565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd46001836149bd565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613d146024836149ac565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d7a6019836149ac565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dba602c836149ac565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e206012836149ac565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613e606017836149ac565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613ea06038836149ac565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f06602a836149ac565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6c6029836149ac565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd26031836149ac565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b60006140386020836149ac565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614078602c836149ac565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140de6020836149ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061411e6029836149ac565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614184602f836149ac565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141ea6013836149ac565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b600061422a601c836149ac565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b600061426a6021836149ac565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d06014836149ac565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b60006143106031836149ac565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614376600f836149ac565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b60006143b66013836149ac565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b60006143f6601b836149ac565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61443281614b47565b82525050565b60006144448285613aa5565b91506144508284613aa5565b91508190509392505050565b60006144688289613ad6565b915061447382613cc7565b915061447f8288613aa5565b915061448a82613cc7565b91506144968287613aa5565b91506144a182613cc7565b91506144ad8286613aa5565b91506144b882613cc7565b91506144c48285613aa5565b91506144d08284613ad6565b9150819050979650505050505050565b60006020820190506144f56000830184613a15565b92915050565b60006080820190506145106000830187613a15565b61451d6020830186613a15565b61452a6040830185614429565b818103606083015261453c8184613a33565b905095945050505050565b600060208201905061455c6000830184613a24565b92915050565b6000602082019050818103600083015261457c8184613a6c565b905092915050565b6000602082019050818103600083015261459d81613b55565b9050919050565b600060208201905081810360008301526145bd81613bbb565b9050919050565b600060208201905081810360008301526145dd81613c21565b9050919050565b600060208201905081810360008301526145fd81613c61565b9050919050565b6000602082019050818103600083015261461d81613d07565b9050919050565b6000602082019050818103600083015261463d81613d6d565b9050919050565b6000602082019050818103600083015261465d81613dad565b9050919050565b6000602082019050818103600083015261467d81613e13565b9050919050565b6000602082019050818103600083015261469d81613e53565b9050919050565b600060208201905081810360008301526146bd81613e93565b9050919050565b600060208201905081810360008301526146dd81613ef9565b9050919050565b600060208201905081810360008301526146fd81613f5f565b9050919050565b6000602082019050818103600083015261471d81613fc5565b9050919050565b6000602082019050818103600083015261473d8161402b565b9050919050565b6000602082019050818103600083015261475d8161406b565b9050919050565b6000602082019050818103600083015261477d816140d1565b9050919050565b6000602082019050818103600083015261479d81614111565b9050919050565b600060208201905081810360008301526147bd81614177565b9050919050565b600060208201905081810360008301526147dd816141dd565b9050919050565b600060208201905081810360008301526147fd8161421d565b9050919050565b6000602082019050818103600083015261481d8161425d565b9050919050565b6000602082019050818103600083015261483d816142c3565b9050919050565b6000602082019050818103600083015261485d81614303565b9050919050565b6000602082019050818103600083015261487d81614369565b9050919050565b6000602082019050818103600083015261489d816143a9565b9050919050565b600060208201905081810360008301526148bd816143e9565b9050919050565b60006020820190506148d96000830184614429565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561490657614905614cf6565b5b8060405250919050565b600067ffffffffffffffff82111561492b5761492a614cf6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561495b5761495a614cf6565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149d382614b47565b91506149de83614b47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1357614a12614c69565b5b828201905092915050565b6000614a2982614b47565b9150614a3483614b47565b925082614a4457614a43614c98565b5b828204905092915050565b6000614a5a82614b47565b9150614a6583614b47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a9e57614a9d614c69565b5b828202905092915050565b6000614ab482614b47565b9150614abf83614b47565b925082821015614ad257614ad1614c69565b5b828203905092915050565b6000614ae882614b27565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b7e578082015181840152602081019050614b63565b83811115614b8d576000848401525b50505050565b6000614b9e82614b47565b91506000821415614bb257614bb1614c69565b5b600182039050919050565b60006002820490506001821680614bd557607f821691505b60208210811415614be957614be8614cc7565b5b50919050565b6000614bfa82614b47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c2d57614c2c614c69565b5b600182019050919050565b6000614c4382614b47565b9150614c4e83614b47565b925082614c5e57614c5d614c98565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d3f81614add565b8114614d4a57600080fd5b50565b614d5681614aef565b8114614d6157600080fd5b50565b614d6d81614afb565b8114614d7857600080fd5b50565b614d8481614b47565b8114614d8f57600080fd5b5056fea2646970667358221220262f848f3f98ab84991c900ad0e945229964eb72ab5a0b065f9581d12ba8aaa364736f6c63430008000033

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.