Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
59 DANG
Holders
42
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 DANGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract NFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri ; uint256 public whiteListCost = 0.1 ether; uint256 public releaseCost = 0.15 ether; uint256 public maxSupply = 8888; uint256 public maxMintAmount = 5; uint256 public nftPerAddressLimit = 5; address ownerWallet = 0xd9D61DE32508f15CCb4533Bbda6363f71e95996F; // hidden image url : ipfs://QmVEMfjD6Jg9LzXFumbo2h3vwUFeo6oxFNGeTSVsHeybAQ/hidden.json // initBaseUrl = ipfs://QmWHyGPRNyvqCSpxkmewnJDdS73pTgWzRKerRPyQ9B6MKP/ // Simbol DANG // NAME DeAngels uint whitelistStartDate = 1647003600; uint releaseDate = 1647014400; uint revealDate = 1647262800; bool public paused = false; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //ipfs://QmWHyGPRNyvqCSpxkmewnJDdS73pTgWzRKerRPyQ9B6MKP/ // // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); require(isPresale() || isMintTime(), "Contract has not started"); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); if (msg.sender != owner()) { if(isPresale()) { require(isWhitelisted(msg.sender), "user is not whitelisted"); } require(msg.value >= getCost() * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function isPresale() public view returns (bool) { return block.timestamp > whitelistStartDate && block.timestamp < releaseDate; } function isMintTime() public view returns (bool) { return block.timestamp > releaseDate; } function getCost() public view returns (uint256) { return isPresale() ? whiteListCost : releaseCost; } function isRevield() public view returns (bool) { return block.timestamp > revealDate; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(!isRevield()) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setWhitelistCost(uint256 _newCost) public onlyOwner { whiteListCost = _newCost; } function setReleaseCost(uint256 _newCost) public onlyOwner { releaseCost = _newCost; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setWhiteListStartDate(uint date) public onlyOwner { whitelistStartDate = date; } function setReleaseDate(uint date) public onlyOwner { releaseDate = date; } function setRevealDate(uint date) public onlyOwner { revealDate = date; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function setOwnerWallet(address _owner) public onlyOwner { ownerWallet = _owner; } function getOwnerWallet() public onlyOwner view returns (address) { return ownerWallet; } function withdraw() public payable onlyOwner { (bool hs, ) = payable(ownerWallet).call{value: address(this).balance}(""); require(hs); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwnerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevield","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwnerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setReleaseCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"}],"name":"setReleaseDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"}],"name":"setRevealDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"}],"name":"setWhiteListStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000405565b5067016345785d8a0000600e55670214e8348c4f0000600f556122b86010556005601155600560125573d9d61de32508f15ccb4533bbda6363f71e95996f601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555063622b47d060145563622b720060155563622f3c506016556000601760006101000a81548160ff0219169083151502179055503480156200010f57600080fd5b5060405162005dbd38038062005dbd833981810160405281019062000135919062000533565b838381600090805190602001906200014f92919062000405565b5080600190805190602001906200016892919062000405565b5050506200018b6200017f620001b760201b60201c565b620001bf60201b60201c565b6200019c826200028560201b60201c565b620001ad816200033060201b60201c565b5050505062000828565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000295620001b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bb620003db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000314576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030b9062000648565b60405180910390fd5b80600b90805190602001906200032c92919062000405565b5050565b62000340620001b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000366620003db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b69062000648565b60405180910390fd5b80600d9080519060200190620003d792919062000405565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004139062000710565b90600052602060002090601f01602090048101928262000437576000855562000483565b82601f106200045257805160ff191683800117855562000483565b8280016001018555821562000483579182015b828111156200048257825182559160200191906001019062000465565b5b50905062000492919062000496565b5090565b5b80821115620004b157600081600090555060010162000497565b5090565b6000620004cc620004c68462000693565b6200066a565b905082815260208101848484011115620004eb57620004ea620007df565b5b620004f8848285620006da565b509392505050565b600082601f830112620005185762000517620007da565b5b81516200052a848260208601620004b5565b91505092915050565b6000806000806080858703121562000550576200054f620007e9565b5b600085015167ffffffffffffffff811115620005715762000570620007e4565b5b6200057f8782880162000500565b945050602085015167ffffffffffffffff811115620005a357620005a2620007e4565b5b620005b18782880162000500565b935050604085015167ffffffffffffffff811115620005d557620005d4620007e4565b5b620005e38782880162000500565b925050606085015167ffffffffffffffff811115620006075762000606620007e4565b5b620006158782880162000500565b91505092959194509250565b600062000630602083620006c9565b91506200063d82620007ff565b602082019050919050565b60006020820190508181036000830152620006638162000621565b9050919050565b60006200067662000689565b905062000684828262000746565b919050565b6000604051905090565b600067ffffffffffffffff821115620006b157620006b0620007ab565b5b620006bc82620007ee565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006fa578082015181840152602081019050620006dd565b838111156200070a576000848401525b50505050565b600060028204905060018216806200072957607f821691505b6020821081141562000740576200073f6200077c565b5b50919050565b6200075182620007ee565b810181811067ffffffffffffffff82111715620007735762000772620007ab565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61558580620008386000396000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063bb542ef0116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610b76578063edec5f2714610bb3578063f2c4ce1e14610bdc578063f2fde38b14610c05576102ff565b8063d5abeb0114610af9578063da3ef23f14610b24578063df1ed5bf14610b4d576102ff565b8063bb542ef0146109eb578063bd3e19d414610a14578063c668286214610a3f578063c87b56dd14610a6a578063d0eb26b014610aa7578063d49479eb14610ad0576102ff565b80639efd3b8011610149578063ad64b3e511610123578063ad64b3e514610931578063b88d4fde1461095a578063ba4e5c4914610983578063ba7d2c76146109c0576102ff565b80639efd3b80146108c1578063a0712d68146108ec578063a22cb46514610908576102ff565b8063715018a6146107d55780637f00c7a6146107ec5780638da5cb5b146108155780639257e0441461084057806395364a841461086b57806395d89b4114610896576102ff565b806337259ebb1161024f5780634f6ccce7116102085780635c975abb116101e25780635c975abb146107055780636352211e146107305780636c0360eb1461076d57806370a0823114610798576102ff565b80634f6ccce7146106745780634fc7986a146106b157806355f804b3146106dc576102ff565b806337259ebb146105715780633af32abf1461059c5780633c4966b7146105d95780633ccfd60b1461060457806342842e0e1461060e578063438b630014610637576102ff565b80630c88b731116102bc57806318cae2691161029657806318cae269146104a3578063239c70ae146104e057806323b872dd1461050b5780632f745c5914610534576102ff565b80630c88b731146104265780631352faec1461044f57806318160ddd14610478576102ff565b806301ffc9a71461030457806302329a291461034157806306fdde031461036a578063081812fc14610395578063081c8c44146103d2578063095ea7b3146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613ebc565b610c2e565b60405161033891906145e0565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613e8f565b610ca8565b005b34801561037657600080fd5b5061037f610d41565b60405161038c91906145fb565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613f5f565b610dd3565b6040516103c99190614557565b60405180910390f35b3480156103de57600080fd5b506103e7610e58565b6040516103f491906145fb565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613e02565b610ee6565b005b34801561043257600080fd5b5061044d60048036038101906104489190613f5f565b610ffe565b005b34801561045b57600080fd5b5061047660048036038101906104719190613f5f565b611084565b005b34801561048457600080fd5b5061048d61110a565b60405161049a919061495d565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613c7f565b611117565b6040516104d7919061495d565b60405180910390f35b3480156104ec57600080fd5b506104f561112f565b604051610502919061495d565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613cec565b611135565b005b34801561054057600080fd5b5061055b60048036038101906105569190613e02565b611195565b604051610568919061495d565b60405180910390f35b34801561057d57600080fd5b5061058661123a565b60405161059391906145e0565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613c7f565b611246565b6040516105d091906145e0565b60405180910390f35b3480156105e557600080fd5b506105ee6112f5565b6040516105fb9190614557565b60405180910390f35b61060c61139b565b005b34801561061a57600080fd5b5061063560048036038101906106309190613cec565b6114b2565b005b34801561064357600080fd5b5061065e60048036038101906106599190613c7f565b6114d2565b60405161066b91906145be565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190613f5f565b611580565b6040516106a8919061495d565b60405180910390f35b3480156106bd57600080fd5b506106c66115f1565b6040516106d3919061495d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613f16565b6115f7565b005b34801561071157600080fd5b5061071a61168d565b60405161072791906145e0565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613f5f565b6116a0565b6040516107649190614557565b60405180910390f35b34801561077957600080fd5b50610782611752565b60405161078f91906145fb565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613c7f565b6117e0565b6040516107cc919061495d565b60405180910390f35b3480156107e157600080fd5b506107ea611898565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613f5f565b611920565b005b34801561082157600080fd5b5061082a6119a6565b6040516108379190614557565b60405180910390f35b34801561084c57600080fd5b506108556119d0565b604051610862919061495d565b60405180910390f35b34801561087757600080fd5b506108806119d6565b60405161088d91906145e0565b60405180910390f35b3480156108a257600080fd5b506108ab6119ef565b6040516108b891906145fb565b60405180910390f35b3480156108cd57600080fd5b506108d6611a81565b6040516108e391906145e0565b60405180910390f35b61090660048036038101906109019190613f5f565b611a8d565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613dc2565b611e22565b005b34801561093d57600080fd5b5061095860048036038101906109539190613f5f565b611e38565b005b34801561096657600080fd5b50610981600480360381019061097c9190613d3f565b611ebe565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190613f5f565b611f20565b6040516109b79190614557565b60405180910390f35b3480156109cc57600080fd5b506109d5611f5f565b6040516109e2919061495d565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613c7f565b611f65565b005b348015610a2057600080fd5b50610a29612025565b604051610a36919061495d565b60405180910390f35b348015610a4b57600080fd5b50610a54612044565b604051610a6191906145fb565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c9190613f5f565b6120d2565b604051610a9e91906145fb565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190613f5f565b61221b565b005b348015610adc57600080fd5b50610af76004803603810190610af29190613f5f565b6122a1565b005b348015610b0557600080fd5b50610b0e612327565b604051610b1b919061495d565b60405180910390f35b348015610b3057600080fd5b50610b4b6004803603810190610b469190613f16565b61232d565b005b348015610b5957600080fd5b50610b746004803603810190610b6f9190613f5f565b6123c3565b005b348015610b8257600080fd5b50610b9d6004803603810190610b989190613cac565b612449565b604051610baa91906145e0565b60405180910390f35b348015610bbf57600080fd5b50610bda6004803603810190610bd59190613e42565b6124dd565b005b348015610be857600080fd5b50610c036004803603810190610bfe9190613f16565b61257d565b005b348015610c1157600080fd5b50610c2c6004803603810190610c279190613c7f565b612613565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca15750610ca08261270b565b5b9050919050565b610cb06127ed565b73ffffffffffffffffffffffffffffffffffffffff16610cce6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b9061483d565b60405180910390fd5b80601760006101000a81548160ff02191690831515021790555050565b606060008054610d5090614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90614c66565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b5050505050905090565b6000610dde826127f5565b610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e149061481d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e6590614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9190614c66565b8015610ede5780601f10610eb357610100808354040283529160200191610ede565b820191906000526020600020905b815481529060010190602001808311610ec157829003601f168201915b505050505081565b6000610ef1826116a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061489d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f816127ed565b73ffffffffffffffffffffffffffffffffffffffff161480610fb05750610faf81610faa6127ed565b612449565b5b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061475d565b60405180910390fd5b610ff98383612861565b505050565b6110066127ed565b73ffffffffffffffffffffffffffffffffffffffff166110246119a6565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110719061483d565b60405180910390fd5b8060168190555050565b61108c6127ed565b73ffffffffffffffffffffffffffffffffffffffff166110aa6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f79061483d565b60405180910390fd5b8060158190555050565b6000600880549050905090565b60196020528060005260406000206000915090505481565b60115481565b6111466111406127ed565b8261291a565b611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c906148dd565b60405180910390fd5b6111908383836129f8565b505050565b60006111a0836117e0565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061461d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006016544211905090565b600080600090505b6018805490508110156112ea578273ffffffffffffffffffffffffffffffffffffffff166018828154811061128657611285614dff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156112d75760019150506112f0565b80806112e290614cc9565b91505061124e565b50600090505b919050565b60006112ff6127ed565b73ffffffffffffffffffffffffffffffffffffffff1661131d6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061483d565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113a36127ed565b73ffffffffffffffffffffffffffffffffffffffff166113c16119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e9061483d565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161145f90614542565b60006040518083038185875af1925050503d806000811461149c576040519150601f19603f3d011682016040523d82523d6000602084013e6114a1565b606091505b50509050806114af57600080fd5b50565b6114cd83838360405180602001604052806000815250611ebe565b505050565b606060006114df836117e0565b905060008167ffffffffffffffff8111156114fd576114fc614e2e565b5b60405190808252806020026020018201604052801561152b5781602001602082028036833780820191505090505b50905060005b82811015611575576115438582611195565b82828151811061155657611555614dff565b5b602002602001018181525050808061156d90614cc9565b915050611531565b508092505050919050565b600061158a61110a565b82106115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c2906148fd565b60405180910390fd5b600882815481106115df576115de614dff565b5b90600052602060002001549050919050565b600f5481565b6115ff6127ed565b73ffffffffffffffffffffffffffffffffffffffff1661161d6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a9061483d565b60405180910390fd5b80600b908051906020019061168992919061397c565b5050565b601760009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117409061479d565b60405180910390fd5b80915050919050565b600b805461175f90614c66565b80601f016020809104026020016040519081016040528092919081815260200182805461178b90614c66565b80156117d85780601f106117ad576101008083540402835291602001916117d8565b820191906000526020600020905b8154815290600101906020018083116117bb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118489061477d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118a06127ed565b73ffffffffffffffffffffffffffffffffffffffff166118be6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b9061483d565b60405180910390fd5b61191e6000612c5f565b565b6119286127ed565b73ffffffffffffffffffffffffffffffffffffffff166119466119a6565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119939061483d565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6000601454421180156119ea575060155442105b905090565b6060600180546119fe90614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2a90614c66565b8015611a775780601f10611a4c57610100808354040283529160200191611a77565b820191906000526020600020905b815481529060010190602001808311611a5a57829003601f168201915b5050505050905090565b60006015544211905090565b601760009054906101000a900460ff1615611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad49061485d565b60405180910390fd5b611ae56119d6565b80611af45750611af3611a81565b5b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906146bd565b60405180910390fd5b60008111611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d9061493d565b60405180910390fd5b601154811115611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb2906147dd565b60405180910390fd5b6000611bc561110a565b90506010548282611bd69190614a9b565b1115611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906147bd565b60405180910390fd5b6000601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548382611c6a9190614a9b565b1115611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca2906146dd565b60405180910390fd5b611cb36119a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d9157611ced6119d6565b15611d3b57611cfb33611246565b611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d319061491d565b60405180910390fd5b5b82611d44612025565b611d4e9190614b22565b341015611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906148bd565b60405180910390fd5b5b6000600190505b838111611e1c57601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611def90614cc9565b9190505550611e09338285611e049190614a9b565b612d25565b8080611e1490614cc9565b915050611d98565b50505050565b611e34611e2d6127ed565b8383612d43565b5050565b611e406127ed565b73ffffffffffffffffffffffffffffffffffffffff16611e5e6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab9061483d565b60405180910390fd5b8060148190555050565b611ecf611ec96127ed565b8361291a565b611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f05906148dd565b60405180910390fd5b611f1a84848484612eb0565b50505050565b60188181548110611f3057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611f6d6127ed565b73ffffffffffffffffffffffffffffffffffffffff16611f8b6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd89061483d565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061202f6119d6565b61203b57600f5461203f565b600e545b905090565b600c805461205190614c66565b80601f016020809104026020016040519081016040528092919081815260200182805461207d90614c66565b80156120ca5780601f1061209f576101008083540402835291602001916120ca565b820191906000526020600020905b8154815290600101906020018083116120ad57829003601f168201915b505050505081565b60606120dd826127f5565b61211c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121139061487d565b60405180910390fd5b61212461123a565b6121ba57600d805461213590614c66565b80601f016020809104026020016040519081016040528092919081815260200182805461216190614c66565b80156121ae5780601f10612183576101008083540402835291602001916121ae565b820191906000526020600020905b81548152906001019060200180831161219157829003601f168201915b50505050509050612216565b60006121c4612f0c565b905060008151116121e45760405180602001604052806000815250612212565b806121ee84612f9e565b600c60405160200161220293929190614511565b6040516020818303038152906040525b9150505b919050565b6122236127ed565b73ffffffffffffffffffffffffffffffffffffffff166122416119a6565b73ffffffffffffffffffffffffffffffffffffffff1614612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e9061483d565b60405180910390fd5b8060128190555050565b6122a96127ed565b73ffffffffffffffffffffffffffffffffffffffff166122c76119a6565b73ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123149061483d565b60405180910390fd5b80600e8190555050565b60105481565b6123356127ed565b73ffffffffffffffffffffffffffffffffffffffff166123536119a6565b73ffffffffffffffffffffffffffffffffffffffff16146123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a09061483d565b60405180910390fd5b80600c90805190602001906123bf92919061397c565b5050565b6123cb6127ed565b73ffffffffffffffffffffffffffffffffffffffff166123e96119a6565b73ffffffffffffffffffffffffffffffffffffffff161461243f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124369061483d565b60405180910390fd5b80600f8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124e56127ed565b73ffffffffffffffffffffffffffffffffffffffff166125036119a6565b73ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125509061483d565b60405180910390fd5b601860006125679190613a02565b818160189190612578929190613a23565b505050565b6125856127ed565b73ffffffffffffffffffffffffffffffffffffffff166125a36119a6565b73ffffffffffffffffffffffffffffffffffffffff16146125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f09061483d565b60405180910390fd5b80600d908051906020019061260f92919061397c565b5050565b61261b6127ed565b73ffffffffffffffffffffffffffffffffffffffff166126396119a6565b73ffffffffffffffffffffffffffffffffffffffff161461268f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126869061483d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f69061465d565b60405180910390fd5b61270881612c5f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127e657506127e5826130ff565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128d4836116a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612925826127f5565b612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b9061473d565b60405180910390fd5b600061296f836116a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129de57508373ffffffffffffffffffffffffffffffffffffffff166129c684610dd3565b73ffffffffffffffffffffffffffffffffffffffff16145b806129ef57506129ee8185612449565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a18826116a0565b73ffffffffffffffffffffffffffffffffffffffff1614612a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a659061467d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad5906146fd565b60405180910390fd5b612ae9838383613169565b612af4600082612861565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b449190614b7c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9b9190614a9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5a83838361327d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d3f828260405180602001604052806000815250613282565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da99061471d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ea391906145e0565b60405180910390a3505050565b612ebb8484846129f8565b612ec7848484846132dd565b612f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd9061463d565b60405180910390fd5b50505050565b6060600b8054612f1b90614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4790614c66565b8015612f945780601f10612f6957610100808354040283529160200191612f94565b820191906000526020600020905b815481529060010190602001808311612f7757829003601f168201915b5050505050905090565b60606000821415612fe6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130fa565b600082905060005b6000821461301857808061300190614cc9565b915050600a826130119190614af1565b9150612fee565b60008167ffffffffffffffff81111561303457613033614e2e565b5b6040519080825280601f01601f1916602001820160405280156130665781602001600182028036833780820191505090505b5090505b600085146130f35760018261307f9190614b7c565b9150600a8561308e9190614d12565b603061309a9190614a9b565b60f81b8183815181106130b0576130af614dff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130ec9190614af1565b945061306a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613174838383613474565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131b7576131b281613479565b6131f6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131f5576131f483826134c2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613239576132348161362f565b613278565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613277576132768282613700565b5b5b505050565b505050565b61328c838361377f565b61329960008484846132dd565b6132d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf9061463d565b60405180910390fd5b505050565b60006132fe8473ffffffffffffffffffffffffffffffffffffffff16613959565b15613467578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133276127ed565b8786866040518563ffffffff1660e01b81526004016133499493929190614572565b602060405180830381600087803b15801561336357600080fd5b505af192505050801561339457506040513d601f19601f820116820180604052508101906133919190613ee9565b60015b613417573d80600081146133c4576040519150601f19603f3d011682016040523d82523d6000602084013e6133c9565b606091505b5060008151141561340f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134069061463d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061346c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134cf846117e0565b6134d99190614b7c565b90506000600760008481526020019081526020016000205490508181146135be576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136439190614b7c565b905060006009600084815260200190815260200160002054905060006008838154811061367357613672614dff565b5b90600052602060002001549050806008838154811061369557613694614dff565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136e4576136e3614dd0565b5b6001900381819060005260206000200160009055905550505050565b600061370b836117e0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e6906147fd565b60405180910390fd5b6137f8816127f5565b15613838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382f9061469d565b60405180910390fd5b61384460008383613169565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138949190614a9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139556000838361327d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461398890614c66565b90600052602060002090601f0160209004810192826139aa57600085556139f1565b82601f106139c357805160ff19168380011785556139f1565b828001600101855582156139f1579182015b828111156139f05782518255916020019190600101906139d5565b5b5090506139fe9190613ac3565b5090565b5080546000825590600052602060002090810190613a209190613ac3565b50565b828054828255906000526020600020908101928215613ab2579160200282015b82811115613ab157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613a43565b5b509050613abf9190613ac3565b5090565b5b80821115613adc576000816000905550600101613ac4565b5090565b6000613af3613aee8461499d565b614978565b905082815260208101848484011115613b0f57613b0e614e6c565b5b613b1a848285614c24565b509392505050565b6000613b35613b30846149ce565b614978565b905082815260208101848484011115613b5157613b50614e6c565b5b613b5c848285614c24565b509392505050565b600081359050613b73816154f3565b92915050565b60008083601f840112613b8f57613b8e614e62565b5b8235905067ffffffffffffffff811115613bac57613bab614e5d565b5b602083019150836020820283011115613bc857613bc7614e67565b5b9250929050565b600081359050613bde8161550a565b92915050565b600081359050613bf381615521565b92915050565b600081519050613c0881615521565b92915050565b600082601f830112613c2357613c22614e62565b5b8135613c33848260208601613ae0565b91505092915050565b600082601f830112613c5157613c50614e62565b5b8135613c61848260208601613b22565b91505092915050565b600081359050613c7981615538565b92915050565b600060208284031215613c9557613c94614e76565b5b6000613ca384828501613b64565b91505092915050565b60008060408385031215613cc357613cc2614e76565b5b6000613cd185828601613b64565b9250506020613ce285828601613b64565b9150509250929050565b600080600060608486031215613d0557613d04614e76565b5b6000613d1386828701613b64565b9350506020613d2486828701613b64565b9250506040613d3586828701613c6a565b9150509250925092565b60008060008060808587031215613d5957613d58614e76565b5b6000613d6787828801613b64565b9450506020613d7887828801613b64565b9350506040613d8987828801613c6a565b925050606085013567ffffffffffffffff811115613daa57613da9614e71565b5b613db687828801613c0e565b91505092959194509250565b60008060408385031215613dd957613dd8614e76565b5b6000613de785828601613b64565b9250506020613df885828601613bcf565b9150509250929050565b60008060408385031215613e1957613e18614e76565b5b6000613e2785828601613b64565b9250506020613e3885828601613c6a565b9150509250929050565b60008060208385031215613e5957613e58614e76565b5b600083013567ffffffffffffffff811115613e7757613e76614e71565b5b613e8385828601613b79565b92509250509250929050565b600060208284031215613ea557613ea4614e76565b5b6000613eb384828501613bcf565b91505092915050565b600060208284031215613ed257613ed1614e76565b5b6000613ee084828501613be4565b91505092915050565b600060208284031215613eff57613efe614e76565b5b6000613f0d84828501613bf9565b91505092915050565b600060208284031215613f2c57613f2b614e76565b5b600082013567ffffffffffffffff811115613f4a57613f49614e71565b5b613f5684828501613c3c565b91505092915050565b600060208284031215613f7557613f74614e76565b5b6000613f8384828501613c6a565b91505092915050565b6000613f9883836144f3565b60208301905092915050565b613fad81614bb0565b82525050565b6000613fbe82614a24565b613fc88185614a52565b9350613fd3836149ff565b8060005b83811015614004578151613feb8882613f8c565b9750613ff683614a45565b925050600181019050613fd7565b5085935050505092915050565b61401a81614bc2565b82525050565b600061402b82614a2f565b6140358185614a63565b9350614045818560208601614c33565b61404e81614e7b565b840191505092915050565b600061406482614a3a565b61406e8185614a7f565b935061407e818560208601614c33565b61408781614e7b565b840191505092915050565b600061409d82614a3a565b6140a78185614a90565b93506140b7818560208601614c33565b80840191505092915050565b600081546140d081614c66565b6140da8186614a90565b945060018216600081146140f5576001811461410657614139565b60ff19831686528186019350614139565b61410f85614a0f565b60005b8381101561413157815481890152600182019150602081019050614112565b838801955050505b50505092915050565b600061414f602b83614a7f565b915061415a82614e8c565b604082019050919050565b6000614172603283614a7f565b915061417d82614edb565b604082019050919050565b6000614195602683614a7f565b91506141a082614f2a565b604082019050919050565b60006141b8602583614a7f565b91506141c382614f79565b604082019050919050565b60006141db601c83614a7f565b91506141e682614fc8565b602082019050919050565b60006141fe601883614a7f565b915061420982614ff1565b602082019050919050565b6000614221601c83614a7f565b915061422c8261501a565b602082019050919050565b6000614244602483614a7f565b915061424f82615043565b604082019050919050565b6000614267601983614a7f565b915061427282615092565b602082019050919050565b600061428a602c83614a7f565b9150614295826150bb565b604082019050919050565b60006142ad603883614a7f565b91506142b88261510a565b604082019050919050565b60006142d0602a83614a7f565b91506142db82615159565b604082019050919050565b60006142f3602983614a7f565b91506142fe826151a8565b604082019050919050565b6000614316601683614a7f565b9150614321826151f7565b602082019050919050565b6000614339602483614a7f565b915061434482615220565b604082019050919050565b600061435c602083614a7f565b91506143678261526f565b602082019050919050565b600061437f602c83614a7f565b915061438a82615298565b604082019050919050565b60006143a2602083614a7f565b91506143ad826152e7565b602082019050919050565b60006143c5601683614a7f565b91506143d082615310565b602082019050919050565b60006143e8602f83614a7f565b91506143f382615339565b604082019050919050565b600061440b602183614a7f565b915061441682615388565b604082019050919050565b600061442e600083614a74565b9150614439826153d7565b600082019050919050565b6000614451601283614a7f565b915061445c826153da565b602082019050919050565b6000614474603183614a7f565b915061447f82615403565b604082019050919050565b6000614497602c83614a7f565b91506144a282615452565b604082019050919050565b60006144ba601783614a7f565b91506144c5826154a1565b602082019050919050565b60006144dd601b83614a7f565b91506144e8826154ca565b602082019050919050565b6144fc81614c1a565b82525050565b61450b81614c1a565b82525050565b600061451d8286614092565b91506145298285614092565b915061453582846140c3565b9150819050949350505050565b600061454d82614421565b9150819050919050565b600060208201905061456c6000830184613fa4565b92915050565b60006080820190506145876000830187613fa4565b6145946020830186613fa4565b6145a16040830185614502565b81810360608301526145b38184614020565b905095945050505050565b600060208201905081810360008301526145d88184613fb3565b905092915050565b60006020820190506145f56000830184614011565b92915050565b600060208201905081810360008301526146158184614059565b905092915050565b6000602082019050818103600083015261463681614142565b9050919050565b6000602082019050818103600083015261465681614165565b9050919050565b6000602082019050818103600083015261467681614188565b9050919050565b60006020820190508181036000830152614696816141ab565b9050919050565b600060208201905081810360008301526146b6816141ce565b9050919050565b600060208201905081810360008301526146d6816141f1565b9050919050565b600060208201905081810360008301526146f681614214565b9050919050565b6000602082019050818103600083015261471681614237565b9050919050565b600060208201905081810360008301526147368161425a565b9050919050565b600060208201905081810360008301526147568161427d565b9050919050565b60006020820190508181036000830152614776816142a0565b9050919050565b60006020820190508181036000830152614796816142c3565b9050919050565b600060208201905081810360008301526147b6816142e6565b9050919050565b600060208201905081810360008301526147d681614309565b9050919050565b600060208201905081810360008301526147f68161432c565b9050919050565b600060208201905081810360008301526148168161434f565b9050919050565b6000602082019050818103600083015261483681614372565b9050919050565b6000602082019050818103600083015261485681614395565b9050919050565b60006020820190508181036000830152614876816143b8565b9050919050565b60006020820190508181036000830152614896816143db565b9050919050565b600060208201905081810360008301526148b6816143fe565b9050919050565b600060208201905081810360008301526148d681614444565b9050919050565b600060208201905081810360008301526148f681614467565b9050919050565b600060208201905081810360008301526149168161448a565b9050919050565b60006020820190508181036000830152614936816144ad565b9050919050565b60006020820190508181036000830152614956816144d0565b9050919050565b60006020820190506149726000830184614502565b92915050565b6000614982614993565b905061498e8282614c98565b919050565b6000604051905090565b600067ffffffffffffffff8211156149b8576149b7614e2e565b5b6149c182614e7b565b9050602081019050919050565b600067ffffffffffffffff8211156149e9576149e8614e2e565b5b6149f282614e7b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614aa682614c1a565b9150614ab183614c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ae657614ae5614d43565b5b828201905092915050565b6000614afc82614c1a565b9150614b0783614c1a565b925082614b1757614b16614d72565b5b828204905092915050565b6000614b2d82614c1a565b9150614b3883614c1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b7157614b70614d43565b5b828202905092915050565b6000614b8782614c1a565b9150614b9283614c1a565b925082821015614ba557614ba4614d43565b5b828203905092915050565b6000614bbb82614bfa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c51578082015181840152602081019050614c36565b83811115614c60576000848401525b50505050565b60006002820490506001821680614c7e57607f821691505b60208210811415614c9257614c91614da1565b5b50919050565b614ca182614e7b565b810181811067ffffffffffffffff82111715614cc057614cbf614e2e565b5b80604052505050565b6000614cd482614c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d0757614d06614d43565b5b600182019050919050565b6000614d1d82614c1a565b9150614d2883614c1a565b925082614d3857614d37614d72565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e747261637420686173206e6f7420737461727465640000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6154fc81614bb0565b811461550757600080fd5b50565b61551381614bc2565b811461551e57600080fd5b50565b61552a81614bce565b811461553557600080fd5b50565b61554181614c1a565b811461554c57600080fd5b5056fea2646970667358221220d98fb75dbe1fb6aaea6c668a4a295bd5a743ab5a8a3cbc0d4aa39b89b199678c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000084465416e67656c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444414e47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5748794750524e797671435370786b6d65776e4a4464533733705467577a524b6572525079513942364d4b502f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d56454d666a44364a67394c7a5846756d626f32683376775546656f366f78464e4765545356734865796241512f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c8063715018a611610190578063bb542ef0116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610b76578063edec5f2714610bb3578063f2c4ce1e14610bdc578063f2fde38b14610c05576102ff565b8063d5abeb0114610af9578063da3ef23f14610b24578063df1ed5bf14610b4d576102ff565b8063bb542ef0146109eb578063bd3e19d414610a14578063c668286214610a3f578063c87b56dd14610a6a578063d0eb26b014610aa7578063d49479eb14610ad0576102ff565b80639efd3b8011610149578063ad64b3e511610123578063ad64b3e514610931578063b88d4fde1461095a578063ba4e5c4914610983578063ba7d2c76146109c0576102ff565b80639efd3b80146108c1578063a0712d68146108ec578063a22cb46514610908576102ff565b8063715018a6146107d55780637f00c7a6146107ec5780638da5cb5b146108155780639257e0441461084057806395364a841461086b57806395d89b4114610896576102ff565b806337259ebb1161024f5780634f6ccce7116102085780635c975abb116101e25780635c975abb146107055780636352211e146107305780636c0360eb1461076d57806370a0823114610798576102ff565b80634f6ccce7146106745780634fc7986a146106b157806355f804b3146106dc576102ff565b806337259ebb146105715780633af32abf1461059c5780633c4966b7146105d95780633ccfd60b1461060457806342842e0e1461060e578063438b630014610637576102ff565b80630c88b731116102bc57806318cae2691161029657806318cae269146104a3578063239c70ae146104e057806323b872dd1461050b5780632f745c5914610534576102ff565b80630c88b731146104265780631352faec1461044f57806318160ddd14610478576102ff565b806301ffc9a71461030457806302329a291461034157806306fdde031461036a578063081812fc14610395578063081c8c44146103d2578063095ea7b3146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613ebc565b610c2e565b60405161033891906145e0565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613e8f565b610ca8565b005b34801561037657600080fd5b5061037f610d41565b60405161038c91906145fb565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613f5f565b610dd3565b6040516103c99190614557565b60405180910390f35b3480156103de57600080fd5b506103e7610e58565b6040516103f491906145fb565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613e02565b610ee6565b005b34801561043257600080fd5b5061044d60048036038101906104489190613f5f565b610ffe565b005b34801561045b57600080fd5b5061047660048036038101906104719190613f5f565b611084565b005b34801561048457600080fd5b5061048d61110a565b60405161049a919061495d565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613c7f565b611117565b6040516104d7919061495d565b60405180910390f35b3480156104ec57600080fd5b506104f561112f565b604051610502919061495d565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613cec565b611135565b005b34801561054057600080fd5b5061055b60048036038101906105569190613e02565b611195565b604051610568919061495d565b60405180910390f35b34801561057d57600080fd5b5061058661123a565b60405161059391906145e0565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613c7f565b611246565b6040516105d091906145e0565b60405180910390f35b3480156105e557600080fd5b506105ee6112f5565b6040516105fb9190614557565b60405180910390f35b61060c61139b565b005b34801561061a57600080fd5b5061063560048036038101906106309190613cec565b6114b2565b005b34801561064357600080fd5b5061065e60048036038101906106599190613c7f565b6114d2565b60405161066b91906145be565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190613f5f565b611580565b6040516106a8919061495d565b60405180910390f35b3480156106bd57600080fd5b506106c66115f1565b6040516106d3919061495d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613f16565b6115f7565b005b34801561071157600080fd5b5061071a61168d565b60405161072791906145e0565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613f5f565b6116a0565b6040516107649190614557565b60405180910390f35b34801561077957600080fd5b50610782611752565b60405161078f91906145fb565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613c7f565b6117e0565b6040516107cc919061495d565b60405180910390f35b3480156107e157600080fd5b506107ea611898565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613f5f565b611920565b005b34801561082157600080fd5b5061082a6119a6565b6040516108379190614557565b60405180910390f35b34801561084c57600080fd5b506108556119d0565b604051610862919061495d565b60405180910390f35b34801561087757600080fd5b506108806119d6565b60405161088d91906145e0565b60405180910390f35b3480156108a257600080fd5b506108ab6119ef565b6040516108b891906145fb565b60405180910390f35b3480156108cd57600080fd5b506108d6611a81565b6040516108e391906145e0565b60405180910390f35b61090660048036038101906109019190613f5f565b611a8d565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613dc2565b611e22565b005b34801561093d57600080fd5b5061095860048036038101906109539190613f5f565b611e38565b005b34801561096657600080fd5b50610981600480360381019061097c9190613d3f565b611ebe565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190613f5f565b611f20565b6040516109b79190614557565b60405180910390f35b3480156109cc57600080fd5b506109d5611f5f565b6040516109e2919061495d565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613c7f565b611f65565b005b348015610a2057600080fd5b50610a29612025565b604051610a36919061495d565b60405180910390f35b348015610a4b57600080fd5b50610a54612044565b604051610a6191906145fb565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c9190613f5f565b6120d2565b604051610a9e91906145fb565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190613f5f565b61221b565b005b348015610adc57600080fd5b50610af76004803603810190610af29190613f5f565b6122a1565b005b348015610b0557600080fd5b50610b0e612327565b604051610b1b919061495d565b60405180910390f35b348015610b3057600080fd5b50610b4b6004803603810190610b469190613f16565b61232d565b005b348015610b5957600080fd5b50610b746004803603810190610b6f9190613f5f565b6123c3565b005b348015610b8257600080fd5b50610b9d6004803603810190610b989190613cac565b612449565b604051610baa91906145e0565b60405180910390f35b348015610bbf57600080fd5b50610bda6004803603810190610bd59190613e42565b6124dd565b005b348015610be857600080fd5b50610c036004803603810190610bfe9190613f16565b61257d565b005b348015610c1157600080fd5b50610c2c6004803603810190610c279190613c7f565b612613565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca15750610ca08261270b565b5b9050919050565b610cb06127ed565b73ffffffffffffffffffffffffffffffffffffffff16610cce6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b9061483d565b60405180910390fd5b80601760006101000a81548160ff02191690831515021790555050565b606060008054610d5090614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90614c66565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b5050505050905090565b6000610dde826127f5565b610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e149061481d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e6590614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9190614c66565b8015610ede5780601f10610eb357610100808354040283529160200191610ede565b820191906000526020600020905b815481529060010190602001808311610ec157829003601f168201915b505050505081565b6000610ef1826116a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061489d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f816127ed565b73ffffffffffffffffffffffffffffffffffffffff161480610fb05750610faf81610faa6127ed565b612449565b5b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061475d565b60405180910390fd5b610ff98383612861565b505050565b6110066127ed565b73ffffffffffffffffffffffffffffffffffffffff166110246119a6565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110719061483d565b60405180910390fd5b8060168190555050565b61108c6127ed565b73ffffffffffffffffffffffffffffffffffffffff166110aa6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f79061483d565b60405180910390fd5b8060158190555050565b6000600880549050905090565b60196020528060005260406000206000915090505481565b60115481565b6111466111406127ed565b8261291a565b611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c906148dd565b60405180910390fd5b6111908383836129f8565b505050565b60006111a0836117e0565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061461d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006016544211905090565b600080600090505b6018805490508110156112ea578273ffffffffffffffffffffffffffffffffffffffff166018828154811061128657611285614dff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156112d75760019150506112f0565b80806112e290614cc9565b91505061124e565b50600090505b919050565b60006112ff6127ed565b73ffffffffffffffffffffffffffffffffffffffff1661131d6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061483d565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113a36127ed565b73ffffffffffffffffffffffffffffffffffffffff166113c16119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e9061483d565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161145f90614542565b60006040518083038185875af1925050503d806000811461149c576040519150601f19603f3d011682016040523d82523d6000602084013e6114a1565b606091505b50509050806114af57600080fd5b50565b6114cd83838360405180602001604052806000815250611ebe565b505050565b606060006114df836117e0565b905060008167ffffffffffffffff8111156114fd576114fc614e2e565b5b60405190808252806020026020018201604052801561152b5781602001602082028036833780820191505090505b50905060005b82811015611575576115438582611195565b82828151811061155657611555614dff565b5b602002602001018181525050808061156d90614cc9565b915050611531565b508092505050919050565b600061158a61110a565b82106115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c2906148fd565b60405180910390fd5b600882815481106115df576115de614dff565b5b90600052602060002001549050919050565b600f5481565b6115ff6127ed565b73ffffffffffffffffffffffffffffffffffffffff1661161d6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a9061483d565b60405180910390fd5b80600b908051906020019061168992919061397c565b5050565b601760009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117409061479d565b60405180910390fd5b80915050919050565b600b805461175f90614c66565b80601f016020809104026020016040519081016040528092919081815260200182805461178b90614c66565b80156117d85780601f106117ad576101008083540402835291602001916117d8565b820191906000526020600020905b8154815290600101906020018083116117bb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118489061477d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118a06127ed565b73ffffffffffffffffffffffffffffffffffffffff166118be6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b9061483d565b60405180910390fd5b61191e6000612c5f565b565b6119286127ed565b73ffffffffffffffffffffffffffffffffffffffff166119466119a6565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119939061483d565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6000601454421180156119ea575060155442105b905090565b6060600180546119fe90614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2a90614c66565b8015611a775780601f10611a4c57610100808354040283529160200191611a77565b820191906000526020600020905b815481529060010190602001808311611a5a57829003601f168201915b5050505050905090565b60006015544211905090565b601760009054906101000a900460ff1615611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad49061485d565b60405180910390fd5b611ae56119d6565b80611af45750611af3611a81565b5b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906146bd565b60405180910390fd5b60008111611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d9061493d565b60405180910390fd5b601154811115611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb2906147dd565b60405180910390fd5b6000611bc561110a565b90506010548282611bd69190614a9b565b1115611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906147bd565b60405180910390fd5b6000601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548382611c6a9190614a9b565b1115611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca2906146dd565b60405180910390fd5b611cb36119a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d9157611ced6119d6565b15611d3b57611cfb33611246565b611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d319061491d565b60405180910390fd5b5b82611d44612025565b611d4e9190614b22565b341015611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906148bd565b60405180910390fd5b5b6000600190505b838111611e1c57601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611def90614cc9565b9190505550611e09338285611e049190614a9b565b612d25565b8080611e1490614cc9565b915050611d98565b50505050565b611e34611e2d6127ed565b8383612d43565b5050565b611e406127ed565b73ffffffffffffffffffffffffffffffffffffffff16611e5e6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab9061483d565b60405180910390fd5b8060148190555050565b611ecf611ec96127ed565b8361291a565b611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f05906148dd565b60405180910390fd5b611f1a84848484612eb0565b50505050565b60188181548110611f3057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611f6d6127ed565b73ffffffffffffffffffffffffffffffffffffffff16611f8b6119a6565b73ffffffffffffffffffffffffffffffffffffffff1614611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd89061483d565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061202f6119d6565b61203b57600f5461203f565b600e545b905090565b600c805461205190614c66565b80601f016020809104026020016040519081016040528092919081815260200182805461207d90614c66565b80156120ca5780601f1061209f576101008083540402835291602001916120ca565b820191906000526020600020905b8154815290600101906020018083116120ad57829003601f168201915b505050505081565b60606120dd826127f5565b61211c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121139061487d565b60405180910390fd5b61212461123a565b6121ba57600d805461213590614c66565b80601f016020809104026020016040519081016040528092919081815260200182805461216190614c66565b80156121ae5780601f10612183576101008083540402835291602001916121ae565b820191906000526020600020905b81548152906001019060200180831161219157829003601f168201915b50505050509050612216565b60006121c4612f0c565b905060008151116121e45760405180602001604052806000815250612212565b806121ee84612f9e565b600c60405160200161220293929190614511565b6040516020818303038152906040525b9150505b919050565b6122236127ed565b73ffffffffffffffffffffffffffffffffffffffff166122416119a6565b73ffffffffffffffffffffffffffffffffffffffff1614612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e9061483d565b60405180910390fd5b8060128190555050565b6122a96127ed565b73ffffffffffffffffffffffffffffffffffffffff166122c76119a6565b73ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123149061483d565b60405180910390fd5b80600e8190555050565b60105481565b6123356127ed565b73ffffffffffffffffffffffffffffffffffffffff166123536119a6565b73ffffffffffffffffffffffffffffffffffffffff16146123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a09061483d565b60405180910390fd5b80600c90805190602001906123bf92919061397c565b5050565b6123cb6127ed565b73ffffffffffffffffffffffffffffffffffffffff166123e96119a6565b73ffffffffffffffffffffffffffffffffffffffff161461243f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124369061483d565b60405180910390fd5b80600f8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124e56127ed565b73ffffffffffffffffffffffffffffffffffffffff166125036119a6565b73ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125509061483d565b60405180910390fd5b601860006125679190613a02565b818160189190612578929190613a23565b505050565b6125856127ed565b73ffffffffffffffffffffffffffffffffffffffff166125a36119a6565b73ffffffffffffffffffffffffffffffffffffffff16146125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f09061483d565b60405180910390fd5b80600d908051906020019061260f92919061397c565b5050565b61261b6127ed565b73ffffffffffffffffffffffffffffffffffffffff166126396119a6565b73ffffffffffffffffffffffffffffffffffffffff161461268f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126869061483d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f69061465d565b60405180910390fd5b61270881612c5f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127e657506127e5826130ff565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128d4836116a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612925826127f5565b612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b9061473d565b60405180910390fd5b600061296f836116a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129de57508373ffffffffffffffffffffffffffffffffffffffff166129c684610dd3565b73ffffffffffffffffffffffffffffffffffffffff16145b806129ef57506129ee8185612449565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a18826116a0565b73ffffffffffffffffffffffffffffffffffffffff1614612a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a659061467d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad5906146fd565b60405180910390fd5b612ae9838383613169565b612af4600082612861565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b449190614b7c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9b9190614a9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5a83838361327d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d3f828260405180602001604052806000815250613282565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da99061471d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ea391906145e0565b60405180910390a3505050565b612ebb8484846129f8565b612ec7848484846132dd565b612f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd9061463d565b60405180910390fd5b50505050565b6060600b8054612f1b90614c66565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4790614c66565b8015612f945780601f10612f6957610100808354040283529160200191612f94565b820191906000526020600020905b815481529060010190602001808311612f7757829003601f168201915b5050505050905090565b60606000821415612fe6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130fa565b600082905060005b6000821461301857808061300190614cc9565b915050600a826130119190614af1565b9150612fee565b60008167ffffffffffffffff81111561303457613033614e2e565b5b6040519080825280601f01601f1916602001820160405280156130665781602001600182028036833780820191505090505b5090505b600085146130f35760018261307f9190614b7c565b9150600a8561308e9190614d12565b603061309a9190614a9b565b60f81b8183815181106130b0576130af614dff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130ec9190614af1565b945061306a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613174838383613474565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131b7576131b281613479565b6131f6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131f5576131f483826134c2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613239576132348161362f565b613278565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613277576132768282613700565b5b5b505050565b505050565b61328c838361377f565b61329960008484846132dd565b6132d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf9061463d565b60405180910390fd5b505050565b60006132fe8473ffffffffffffffffffffffffffffffffffffffff16613959565b15613467578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133276127ed565b8786866040518563ffffffff1660e01b81526004016133499493929190614572565b602060405180830381600087803b15801561336357600080fd5b505af192505050801561339457506040513d601f19601f820116820180604052508101906133919190613ee9565b60015b613417573d80600081146133c4576040519150601f19603f3d011682016040523d82523d6000602084013e6133c9565b606091505b5060008151141561340f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134069061463d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061346c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134cf846117e0565b6134d99190614b7c565b90506000600760008481526020019081526020016000205490508181146135be576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136439190614b7c565b905060006009600084815260200190815260200160002054905060006008838154811061367357613672614dff565b5b90600052602060002001549050806008838154811061369557613694614dff565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136e4576136e3614dd0565b5b6001900381819060005260206000200160009055905550505050565b600061370b836117e0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e6906147fd565b60405180910390fd5b6137f8816127f5565b15613838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382f9061469d565b60405180910390fd5b61384460008383613169565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138949190614a9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139556000838361327d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461398890614c66565b90600052602060002090601f0160209004810192826139aa57600085556139f1565b82601f106139c357805160ff19168380011785556139f1565b828001600101855582156139f1579182015b828111156139f05782518255916020019190600101906139d5565b5b5090506139fe9190613ac3565b5090565b5080546000825590600052602060002090810190613a209190613ac3565b50565b828054828255906000526020600020908101928215613ab2579160200282015b82811115613ab157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613a43565b5b509050613abf9190613ac3565b5090565b5b80821115613adc576000816000905550600101613ac4565b5090565b6000613af3613aee8461499d565b614978565b905082815260208101848484011115613b0f57613b0e614e6c565b5b613b1a848285614c24565b509392505050565b6000613b35613b30846149ce565b614978565b905082815260208101848484011115613b5157613b50614e6c565b5b613b5c848285614c24565b509392505050565b600081359050613b73816154f3565b92915050565b60008083601f840112613b8f57613b8e614e62565b5b8235905067ffffffffffffffff811115613bac57613bab614e5d565b5b602083019150836020820283011115613bc857613bc7614e67565b5b9250929050565b600081359050613bde8161550a565b92915050565b600081359050613bf381615521565b92915050565b600081519050613c0881615521565b92915050565b600082601f830112613c2357613c22614e62565b5b8135613c33848260208601613ae0565b91505092915050565b600082601f830112613c5157613c50614e62565b5b8135613c61848260208601613b22565b91505092915050565b600081359050613c7981615538565b92915050565b600060208284031215613c9557613c94614e76565b5b6000613ca384828501613b64565b91505092915050565b60008060408385031215613cc357613cc2614e76565b5b6000613cd185828601613b64565b9250506020613ce285828601613b64565b9150509250929050565b600080600060608486031215613d0557613d04614e76565b5b6000613d1386828701613b64565b9350506020613d2486828701613b64565b9250506040613d3586828701613c6a565b9150509250925092565b60008060008060808587031215613d5957613d58614e76565b5b6000613d6787828801613b64565b9450506020613d7887828801613b64565b9350506040613d8987828801613c6a565b925050606085013567ffffffffffffffff811115613daa57613da9614e71565b5b613db687828801613c0e565b91505092959194509250565b60008060408385031215613dd957613dd8614e76565b5b6000613de785828601613b64565b9250506020613df885828601613bcf565b9150509250929050565b60008060408385031215613e1957613e18614e76565b5b6000613e2785828601613b64565b9250506020613e3885828601613c6a565b9150509250929050565b60008060208385031215613e5957613e58614e76565b5b600083013567ffffffffffffffff811115613e7757613e76614e71565b5b613e8385828601613b79565b92509250509250929050565b600060208284031215613ea557613ea4614e76565b5b6000613eb384828501613bcf565b91505092915050565b600060208284031215613ed257613ed1614e76565b5b6000613ee084828501613be4565b91505092915050565b600060208284031215613eff57613efe614e76565b5b6000613f0d84828501613bf9565b91505092915050565b600060208284031215613f2c57613f2b614e76565b5b600082013567ffffffffffffffff811115613f4a57613f49614e71565b5b613f5684828501613c3c565b91505092915050565b600060208284031215613f7557613f74614e76565b5b6000613f8384828501613c6a565b91505092915050565b6000613f9883836144f3565b60208301905092915050565b613fad81614bb0565b82525050565b6000613fbe82614a24565b613fc88185614a52565b9350613fd3836149ff565b8060005b83811015614004578151613feb8882613f8c565b9750613ff683614a45565b925050600181019050613fd7565b5085935050505092915050565b61401a81614bc2565b82525050565b600061402b82614a2f565b6140358185614a63565b9350614045818560208601614c33565b61404e81614e7b565b840191505092915050565b600061406482614a3a565b61406e8185614a7f565b935061407e818560208601614c33565b61408781614e7b565b840191505092915050565b600061409d82614a3a565b6140a78185614a90565b93506140b7818560208601614c33565b80840191505092915050565b600081546140d081614c66565b6140da8186614a90565b945060018216600081146140f5576001811461410657614139565b60ff19831686528186019350614139565b61410f85614a0f565b60005b8381101561413157815481890152600182019150602081019050614112565b838801955050505b50505092915050565b600061414f602b83614a7f565b915061415a82614e8c565b604082019050919050565b6000614172603283614a7f565b915061417d82614edb565b604082019050919050565b6000614195602683614a7f565b91506141a082614f2a565b604082019050919050565b60006141b8602583614a7f565b91506141c382614f79565b604082019050919050565b60006141db601c83614a7f565b91506141e682614fc8565b602082019050919050565b60006141fe601883614a7f565b915061420982614ff1565b602082019050919050565b6000614221601c83614a7f565b915061422c8261501a565b602082019050919050565b6000614244602483614a7f565b915061424f82615043565b604082019050919050565b6000614267601983614a7f565b915061427282615092565b602082019050919050565b600061428a602c83614a7f565b9150614295826150bb565b604082019050919050565b60006142ad603883614a7f565b91506142b88261510a565b604082019050919050565b60006142d0602a83614a7f565b91506142db82615159565b604082019050919050565b60006142f3602983614a7f565b91506142fe826151a8565b604082019050919050565b6000614316601683614a7f565b9150614321826151f7565b602082019050919050565b6000614339602483614a7f565b915061434482615220565b604082019050919050565b600061435c602083614a7f565b91506143678261526f565b602082019050919050565b600061437f602c83614a7f565b915061438a82615298565b604082019050919050565b60006143a2602083614a7f565b91506143ad826152e7565b602082019050919050565b60006143c5601683614a7f565b91506143d082615310565b602082019050919050565b60006143e8602f83614a7f565b91506143f382615339565b604082019050919050565b600061440b602183614a7f565b915061441682615388565b604082019050919050565b600061442e600083614a74565b9150614439826153d7565b600082019050919050565b6000614451601283614a7f565b915061445c826153da565b602082019050919050565b6000614474603183614a7f565b915061447f82615403565b604082019050919050565b6000614497602c83614a7f565b91506144a282615452565b604082019050919050565b60006144ba601783614a7f565b91506144c5826154a1565b602082019050919050565b60006144dd601b83614a7f565b91506144e8826154ca565b602082019050919050565b6144fc81614c1a565b82525050565b61450b81614c1a565b82525050565b600061451d8286614092565b91506145298285614092565b915061453582846140c3565b9150819050949350505050565b600061454d82614421565b9150819050919050565b600060208201905061456c6000830184613fa4565b92915050565b60006080820190506145876000830187613fa4565b6145946020830186613fa4565b6145a16040830185614502565b81810360608301526145b38184614020565b905095945050505050565b600060208201905081810360008301526145d88184613fb3565b905092915050565b60006020820190506145f56000830184614011565b92915050565b600060208201905081810360008301526146158184614059565b905092915050565b6000602082019050818103600083015261463681614142565b9050919050565b6000602082019050818103600083015261465681614165565b9050919050565b6000602082019050818103600083015261467681614188565b9050919050565b60006020820190508181036000830152614696816141ab565b9050919050565b600060208201905081810360008301526146b6816141ce565b9050919050565b600060208201905081810360008301526146d6816141f1565b9050919050565b600060208201905081810360008301526146f681614214565b9050919050565b6000602082019050818103600083015261471681614237565b9050919050565b600060208201905081810360008301526147368161425a565b9050919050565b600060208201905081810360008301526147568161427d565b9050919050565b60006020820190508181036000830152614776816142a0565b9050919050565b60006020820190508181036000830152614796816142c3565b9050919050565b600060208201905081810360008301526147b6816142e6565b9050919050565b600060208201905081810360008301526147d681614309565b9050919050565b600060208201905081810360008301526147f68161432c565b9050919050565b600060208201905081810360008301526148168161434f565b9050919050565b6000602082019050818103600083015261483681614372565b9050919050565b6000602082019050818103600083015261485681614395565b9050919050565b60006020820190508181036000830152614876816143b8565b9050919050565b60006020820190508181036000830152614896816143db565b9050919050565b600060208201905081810360008301526148b6816143fe565b9050919050565b600060208201905081810360008301526148d681614444565b9050919050565b600060208201905081810360008301526148f681614467565b9050919050565b600060208201905081810360008301526149168161448a565b9050919050565b60006020820190508181036000830152614936816144ad565b9050919050565b60006020820190508181036000830152614956816144d0565b9050919050565b60006020820190506149726000830184614502565b92915050565b6000614982614993565b905061498e8282614c98565b919050565b6000604051905090565b600067ffffffffffffffff8211156149b8576149b7614e2e565b5b6149c182614e7b565b9050602081019050919050565b600067ffffffffffffffff8211156149e9576149e8614e2e565b5b6149f282614e7b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614aa682614c1a565b9150614ab183614c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ae657614ae5614d43565b5b828201905092915050565b6000614afc82614c1a565b9150614b0783614c1a565b925082614b1757614b16614d72565b5b828204905092915050565b6000614b2d82614c1a565b9150614b3883614c1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b7157614b70614d43565b5b828202905092915050565b6000614b8782614c1a565b9150614b9283614c1a565b925082821015614ba557614ba4614d43565b5b828203905092915050565b6000614bbb82614bfa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c51578082015181840152602081019050614c36565b83811115614c60576000848401525b50505050565b60006002820490506001821680614c7e57607f821691505b60208210811415614c9257614c91614da1565b5b50919050565b614ca182614e7b565b810181811067ffffffffffffffff82111715614cc057614cbf614e2e565b5b80604052505050565b6000614cd482614c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d0757614d06614d43565b5b600182019050919050565b6000614d1d82614c1a565b9150614d2883614c1a565b925082614d3857614d37614d72565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e747261637420686173206e6f7420737461727465640000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6154fc81614bb0565b811461550757600080fd5b50565b61551381614bc2565b811461551e57600080fd5b50565b61552a81614bce565b811461553557600080fd5b50565b61554181614c1a565b811461554c57600080fd5b5056fea2646970667358221220d98fb75dbe1fb6aaea6c668a4a295bd5a743ab5a8a3cbc0d4aa39b89b199678c64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000084465416e67656c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444414e47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5748794750524e797671435370786b6d65776e4a4464533733705467577a524b6572525079513942364d4b502f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d56454d666a44364a67394c7a5846756d626f32683376775546656f366f78464e4765545356734865796241512f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): DeAngels
Arg [1] : _symbol (string): DANG
Arg [2] : _initBaseURI (string): ipfs://QmWHyGPRNyvqCSpxkmewnJDdS73pTgWzRKerRPyQ9B6MKP/
Arg [3] : _initNotRevealedUri (string): ipfs://QmVEMfjD6Jg9LzXFumbo2h3vwUFeo6oxFNGeTSVsHeybAQ/hidden.json
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4465416e67656c73000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 44414e4700000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5748794750524e797671435370786b6d65776e4a446453
Arg [10] : 3733705467577a524b6572525079513942364d4b502f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d56454d666a44364a67394c7a5846756d626f3268337677
Arg [13] : 5546656f366f78464e4765545356734865796241512f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.