ERC-721
Overview
Max Total Supply
27 FIRE
Holders
26
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FIRELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FIRE
Compiler Version
v0.8.1+commit.df193b15
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "hardhat/console.sol"; contract FIRE is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string baseURI; string public baseExtension = ""; string public notRevealedUri; uint256 public maxSupply = 335; uint256 public cost = 0.3 ether; uint256 public whiteListCost = 0.3 ether; mapping(address => bool) public whiteList; bool public paused = false; bool public revealed = false; bool private lock = true; uint256 public whiteListStartTime = 1653094800; uint256 public whiteListEndTime = 1653138000; address public devteam; address public operator; constructor ( string memory _initNotRevealedUri, address _operator, address _devteam ) ERC721("FIRE NFT", "FIRE") { devteam = _devteam; operator = _operator; setNotRevealedURI(_initNotRevealedUri); _safeMint(0xFAFb15E12846d95eFA31e347da6ade77a68c71a2, 1); _safeMint(0x0aA18f119BB6053C64de6857bd9e61ED204B2952, 2); _safeMint(0xa9f715cdF6b1fdf88e0f465CbB289a908fd20648, 3); _safeMint(0x72D8Ac7896fDBC80A204E3Bb741A039890Ffd831, 4); _safeMint(0x0A8F4C21A980b0A76b4f7071CB4713d8a74753F1, 5); _safeMint(0x25B43cf78C969D11a093BC838E16750579c492cb, 6); _safeMint(0xA58C9Fd88A71cb0E861E92a117C04daC354613A8, 7); _safeMint(0x0689Ffa5dd8F13c38dF446c8AbAf55B38Bd91CfE, 8); _safeMint(0x97136c9315821C85224C216bB1AA0cF63B0E9e87, 9); _safeMint(0x24E4F4C4Ec4eC1eD04d728EF7D8b7923386e82c9, 10); _safeMint(0x1bEfa7EE8828f1918C5a5115d628F504fB1F7dE3, 11); _safeMint(0x1bEfa7EE8828f1918C5a5115d628F504fB1F7dE3, 12); _safeMint(0x1F4450E3432A9d84b19BcC6AF5b156e1211c166F, 13); _safeMint(0x8bDD8c53d05ec982d500d8FBa0C9370B36AC5222, 14); _safeMint(0xdDFAe26b1a405e62Ad17f9d2963B858CDD49859c, 15); _safeMint(0x2Ba981545C6C9cbbcdA365F289eDfa6AAdCEcE9E, 16); _safeMint(0xDfEb1dE4C6519a514EB05dA328183f2292db2Cf3, 17); } function setWhiteList(address[] calldata _whiteList) external onlyOwner { for (uint i = 0; i < _whiteList.length; i++) { whiteList[_whiteList[i]] = true; } } function mint(uint256 _mintAmount) public payable { require(!paused, "FIRE: Minting is temporary close"); require(_mintAmount > 0, "FIRE: qty should gte 0"); uint256 _supply = totalSupply(); require(_supply + _mintAmount <= maxSupply, "FIRE: Achieve max supply"); _publicOffering(_mintAmount); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_msgSender(), _supply + i); } } function setWhiteListTime(uint256 _startTime, uint256 _endTime) public onlyOwner { whiteListStartTime = _startTime; whiteListEndTime = _endTime; } function setCost(uint256 _cost, uint256 _whiteListCost) public onlyOwner { cost = _cost; whiteListCost = _whiteListCost; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setRevealedWithURI(bool _isOpen, string memory _URI, string memory _baseExtension) public onlyOwner { revealed = _isOpen; baseURI = _URI; baseExtension = _baseExtension; } function flipReveal() public onlyOwner { revealed = !revealed; } function flipPause() public onlyOwner { paused = !paused; } function flipLock() public onlyDevTeam { lock = !lock; } function withdraw() public onlyOwner { require(!lock, "FIRE: Lock"); // 100% to operator (bool sendToOperator, ) = payable(operator).call{ value: address(this).balance }(""); require(sendToOperator, "FIRE: Fail to withdraw to operator"); } 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 (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function _publicOffering(uint256 _mintAmount) internal { require(block.timestamp >= whiteListStartTime, "FIRE: Not start sell yet"); if (block.timestamp >= whiteListStartTime && block.timestamp <= whiteListEndTime) { // Presale require(msg.value >= whiteListCost * _mintAmount, "FIRE: Insufficient balance"); require(whiteList[_msgSender()], "FIRE: You are not in the whiteList"); require(_mintAmount == 1 && balanceOf(_msgSender()) < 1, "FIRE: Can only mint 1 NFT during whiteList time"); } else { // public sale require(msg.value >= cost * _mintAmount, "FIRE: Insufficient balance"); } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } modifier onlyDevTeam() { require(devteam == _msgSender(), "FIRE: caller is not the devTeam"); _; } }
// 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 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 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// 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 (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 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 (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 (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 (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 (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 (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 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/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" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_devteam","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devteam","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","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":"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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_whiteListCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpen","type":"bool"},{"internalType":"string","name":"_URI","type":"string"},{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setRevealedWithURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whiteList","type":"address[]"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setWhiteListTime","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":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600c90805190602001906200002b929190620010f1565b5061014f600e55670429d069189e0000600f55670429d069189e00006010556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055506362883990601355636288e250601455348015620000b857600080fd5b50604051620069fa380380620069fa8339818101604052810190620000de91906200126d565b6040518060400160405280600881526020017f46495245204e46540000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4649524500000000000000000000000000000000000000000000000000000000815250816000908051906020019062000162929190620010f1565b5080600190805190602001906200017b929190620010f1565b5050506200019e62000192620004d160201b60201c565b620004d960201b60201c565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000231836200059f60201b60201c565b6200025873fafb15e12846d95efa31e347da6ade77a68c71a260016200064a60201b60201c565b6200027f730aa18f119bb6053c64de6857bd9e61ed204b295260026200064a60201b60201c565b620002a673a9f715cdf6b1fdf88e0f465cbb289a908fd2064860036200064a60201b60201c565b620002cd7372d8ac7896fdbc80a204e3bb741a039890ffd83160046200064a60201b60201c565b620002f4730a8f4c21a980b0a76b4f7071cb4713d8a74753f160056200064a60201b60201c565b6200031b7325b43cf78c969d11a093bc838e16750579c492cb60066200064a60201b60201c565b6200034273a58c9fd88a71cb0e861e92a117c04dac354613a860076200064a60201b60201c565b62000369730689ffa5dd8f13c38df446c8abaf55b38bd91cfe60086200064a60201b60201c565b620003907397136c9315821c85224c216bb1aa0cf63b0e9e8760096200064a60201b60201c565b620003b77324e4f4c4ec4ec1ed04d728ef7d8b7923386e82c9600a6200064a60201b60201c565b620003de731befa7ee8828f1918c5a5115d628f504fb1f7de3600b6200064a60201b60201c565b62000405731befa7ee8828f1918c5a5115d628f504fb1f7de3600c6200064a60201b60201c565b6200042c731f4450e3432a9d84b19bcc6af5b156e1211c166f600d6200064a60201b60201c565b62000453738bdd8c53d05ec982d500d8fba0c9370b36ac5222600e6200064a60201b60201c565b6200047a73ddfae26b1a405e62ad17f9d2963b858cdd49859c600f6200064a60201b60201c565b620004a1732ba981545c6c9cbbcda365f289edfa6aadcece9e60106200064a60201b60201c565b620004c873dfeb1de4c6519a514eb05da328183f2292db2cf360116200064a60201b60201c565b5050506200191b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005af620004d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005d56200067060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200062e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062590620014de565b60405180910390fd5b80600d908051906020019062000646929190620010f1565b5050565b6200066c8282604051806020016040528060008152506200069a60201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006ac83836200070860201b60201c565b620006c160008484846200090260201b60201c565b62000703576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fa9062001456565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200077b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077290620014bc565b60405180910390fd5b6200078c8162000abc60201b60201c565b15620007cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c69062001478565b60405180910390fd5b620007e36000838362000b2860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200083591906200158c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620008fe6000838362000c6f60201b60201c565b5050565b6000620009308473ffffffffffffffffffffffffffffffffffffffff1662000c7460201b62001f7e1760201c565b1562000aaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000962620004d160201b60201c565b8786866040518563ffffffff1660e01b815260040162000986949392919062001402565b602060405180830381600087803b158015620009a157600080fd5b505af1925050508015620009d557506040513d601f19601f82011682018060405250810190620009d2919062001241565b60015b62000a5e573d806000811462000a08576040519150601f19603f3d011682016040523d82523d6000602084013e62000a0d565b606091505b5060008151141562000a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4d9062001456565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000ab4565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000b4083838362000c9760201b62001fa11760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b8d5762000b878162000c9c60201b60201c565b62000bd5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000bd45762000bd3838262000ce560201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c225762000c1c8162000e6260201b60201c565b62000c6a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000c695762000c68828262000faa60201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000cff846200103660201b620015171760201c565b62000d0b9190620015e9565b905060006007600084815260200190815260200160002054905081811462000df1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000e789190620015e9565b905060006009600084815260200190815260200160002054905060006008838154811062000ecf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000f18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000f8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000fc2836200103660201b620015171760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620010aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010a1906200149a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620010ff90620016c4565b90600052602060002090601f0160209004810192826200112357600085556200116f565b82601f106200113e57805160ff19168380011785556200116f565b828001600101855582156200116f579182015b828111156200116e57825182559160200191906001019062001151565b5b5090506200117e919062001182565b5090565b5b808211156200119d57600081600090555060010162001183565b5090565b6000620011b8620011b28462001529565b62001500565b905082815260208101848484011115620011d157600080fd5b620011de8482856200168e565b509392505050565b600081519050620011f781620018e7565b92915050565b6000815190506200120e8162001901565b92915050565b600082601f8301126200122657600080fd5b815162001238848260208601620011a1565b91505092915050565b6000602082840312156200125457600080fd5b60006200126484828501620011fd565b91505092915050565b6000806000606084860312156200128357600080fd5b600084015167ffffffffffffffff8111156200129e57600080fd5b620012ac8682870162001214565b9350506020620012bf86828701620011e6565b9250506040620012d286828701620011e6565b9150509250925092565b620012e78162001624565b82525050565b6000620012fa826200155f565b6200130681856200156a565b9350620013188185602086016200168e565b6200132381620017bd565b840191505092915050565b60006200133d6032836200157b565b91506200134a82620017ce565b604082019050919050565b600062001364601c836200157b565b915062001371826200181d565b602082019050919050565b60006200138b602a836200157b565b9150620013988262001846565b604082019050919050565b6000620013b26020836200157b565b9150620013bf8262001895565b602082019050919050565b6000620013d96020836200157b565b9150620013e682620018be565b602082019050919050565b620013fc8162001684565b82525050565b6000608082019050620014196000830187620012dc565b620014286020830186620012dc565b620014376040830185620013f1565b81810360608301526200144b8184620012ed565b905095945050505050565b6000602082019050818103600083015262001471816200132e565b9050919050565b60006020820190508181036000830152620014938162001355565b9050919050565b60006020820190508181036000830152620014b5816200137c565b9050919050565b60006020820190508181036000830152620014d781620013a3565b9050919050565b60006020820190508181036000830152620014f981620013ca565b9050919050565b60006200150c6200151f565b90506200151a8282620016fa565b919050565b6000604051905090565b600067ffffffffffffffff8211156200154757620015466200178e565b5b6200155282620017bd565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620015998262001684565b9150620015a68362001684565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015de57620015dd62001730565b5b828201905092915050565b6000620015f68262001684565b9150620016038362001684565b92508282101562001619576200161862001730565b5b828203905092915050565b6000620016318262001664565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620016ae57808201518184015260208101905062001691565b83811115620016be576000848401525b50505050565b60006002820490506001821680620016dd57607f821691505b60208210811415620016f457620016f36200175f565b5b50919050565b6200170582620017bd565b810181811067ffffffffffffffff821117156200172757620017266200178e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620018f28162001624565b8114620018fe57600080fd5b50565b6200190c8162001638565b81146200191857600080fd5b50565b6150cf806200192b6000396000f3fe6080604052600436106102515760003560e01c80635c975abb1161013957806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd1461086d578063d5abeb01146108aa578063df90c98d146108d5578063e985e9c514610900578063f2c4ce1e1461093d578063f2fde38b1461096657610251565b806395d89b41146107a9578063a0712d68146107d4578063a22cb465146107f0578063b88d4fde14610819578063c66828621461084257610251565b80637696e088116100fd5780637696e088146106d8578063775b9c1314610701578063847efea11461072a5780638da5cb5b146107535780639257e0441461077e57610251565b80635c975abb146106055780636352211e146106305780636718161e1461066d57806370a0823114610684578063715018a6146106c157610251565b8063372c12b1116101d25780633ccfd60b116101965780633ccfd60b146104f557806342842e0e1461050c578063438b6300146105355780634f6ccce71461057257806351830227146105af578063570ca735146105da57610251565b8063372c12b1146104345780633811056314610471578063385df6491461049c578063397cfcbe146104b35780633b84d9c6146104de57610251565b806313faede61161021957806313faede61461034f57806318160ddd1461037a578063213506b3146103a557806323b872dd146103ce5780632f745c59146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063081c8c44146102fb578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613936565b61098f565b60405161028a91906140c8565b60405180910390f35b34801561029f57600080fd5b506102a8610a09565b6040516102b591906140e3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906139c9565b610a9b565b6040516102f2919061403f565b60405180910390f35b34801561030757600080fd5b50610310610b20565b60405161031d91906140e3565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613836565b610bae565b005b34801561035b57600080fd5b50610364610cc6565b6040516103719190614485565b60405180910390f35b34801561038657600080fd5b5061038f610ccc565b60405161039c9190614485565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906139f2565b610cd9565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613730565b610d67565b005b34801561040357600080fd5b5061041e60048036038101906104199190613836565b610dc7565b60405161042b9190614485565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906136cb565b610e6c565b60405161046891906140c8565b60405180910390f35b34801561047d57600080fd5b50610486610e8c565b6040516104939190614485565b60405180910390f35b3480156104a857600080fd5b506104b1610e92565b005b3480156104bf57600080fd5b506104c8610f3a565b6040516104d5919061403f565b60405180910390f35b3480156104ea57600080fd5b506104f3610f60565b005b34801561050157600080fd5b5061050a611008565b005b34801561051857600080fd5b50610533600480360381019061052e9190613730565b6111a5565b005b34801561054157600080fd5b5061055c600480360381019061055791906136cb565b6111c5565b60405161056991906140a6565b60405180910390f35b34801561057e57600080fd5b50610599600480360381019061059491906139c9565b6112bf565b6040516105a69190614485565b60405180910390f35b3480156105bb57600080fd5b506105c4611356565b6040516105d191906140c8565b60405180910390f35b3480156105e657600080fd5b506105ef611369565b6040516105fc919061403f565b60405180910390f35b34801561061157600080fd5b5061061a61138f565b60405161062791906140c8565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906139c9565b6113a2565b604051610664919061403f565b60405180910390f35b34801561067957600080fd5b50610682611454565b005b34801561069057600080fd5b506106ab60048036038101906106a691906136cb565b611517565b6040516106b89190614485565b60405180910390f35b3480156106cd57600080fd5b506106d66115cf565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906139f2565b611657565b005b34801561070d57600080fd5b5061072860048036038101906107239190613872565b6116e5565b005b34801561073657600080fd5b50610751600480360381019061074c91906138b7565b61182c565b005b34801561075f57600080fd5b506107686118f5565b604051610775919061403f565b60405180910390f35b34801561078a57600080fd5b5061079361191f565b6040516107a09190614485565b60405180910390f35b3480156107b557600080fd5b506107be611925565b6040516107cb91906140e3565b60405180910390f35b6107ee60048036038101906107e991906139c9565b6119b7565b005b3480156107fc57600080fd5b50610817600480360381019061081291906137fa565b611af1565b005b34801561082557600080fd5b50610840600480360381019061083b919061377f565b611b07565b005b34801561084e57600080fd5b50610857611b69565b60405161086491906140e3565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906139c9565b611bf7565b6040516108a191906140e3565b60405180910390f35b3480156108b657600080fd5b506108bf611d50565b6040516108cc9190614485565b60405180910390f35b3480156108e157600080fd5b506108ea611d56565b6040516108f79190614485565b60405180910390f35b34801561090c57600080fd5b50610927600480360381019061092291906136f4565b611d5c565b60405161093491906140c8565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613988565b611df0565b005b34801561097257600080fd5b5061098d600480360381019061098891906136cb565b611e86565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a025750610a0182611fa6565b5b9050919050565b606060008054610a189061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a449061478e565b8015610a915780601f10610a6657610100808354040283529160200191610a91565b820191906000526020600020905b815481529060010190602001808311610a7457829003601f168201915b5050505050905090565b6000610aa682612088565b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90614345565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610b2d9061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b599061478e565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b505050505081565b6000610bb9826113a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906143c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c496120f4565b73ffffffffffffffffffffffffffffffffffffffff161480610c785750610c7781610c726120f4565b611d5c565b5b610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906142a5565b60405180910390fd5b610cc183836120fc565b505050565b600f5481565b6000600880549050905090565b610ce16120f4565b73ffffffffffffffffffffffffffffffffffffffff16610cff6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90614365565b60405180910390fd5b81601381905550806014819055505050565b610d78610d726120f4565b826121b5565b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90614405565b60405180910390fd5b610dc2838383612293565b505050565b6000610dd283611517565b8210610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90614125565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b60135481565b610e9a6120f4565b73ffffffffffffffffffffffffffffffffffffffff16610eb86118f5565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614365565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f686120f4565b73ffffffffffffffffffffffffffffffffffffffff16610f866118f5565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390614365565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b6110106120f4565b73ffffffffffffffffffffffffffffffffffffffff1661102e6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90614365565b60405180910390fd5b601260029054906101000a900460ff16156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90614305565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161111c9061402a565b60006040518083038185875af1925050503d8060008114611159576040519150601f19603f3d011682016040523d82523d6000602084013e61115e565b606091505b50509050806111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614265565b60405180910390fd5b50565b6111c083838360405180602001604052806000815250611b07565b505050565b606060006111d283611517565b905060008167ffffffffffffffff811115611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112445781602001602082028036833780820191505090505b50905060005b828110156112b45761125c8582610dc7565b828281518110611295577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112ac906147f1565b91505061124a565b508092505050919050565b60006112c9610ccc565b821061130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614425565b60405180910390fd5b60088281548110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561144b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611442906142e5565b60405180910390fd5b80915050919050565b61145c6120f4565b73ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e2906141c5565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906142c5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d76120f4565b73ffffffffffffffffffffffffffffffffffffffff166115f56118f5565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290614365565b60405180910390fd5b61165560006124fa565b565b61165f6120f4565b73ffffffffffffffffffffffffffffffffffffffff1661167d6118f5565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614365565b60405180910390fd5b81600f81905550806010819055505050565b6116ed6120f4565b73ffffffffffffffffffffffffffffffffffffffff1661170b6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890614365565b60405180910390fd5b60005b82829050811015611827576001601160008585858181106117ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906117c391906136cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061181f906147f1565b915050611764565b505050565b6118346120f4565b73ffffffffffffffffffffffffffffffffffffffff166118526118f5565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90614365565b60405180910390fd5b82601260016101000a81548160ff02191690831515021790555081600b90805190602001906118d89291906134a5565b5080600c90805190602001906118ef9291906134a5565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6060600180546119349061478e565b80601f01602080910402602001604051908101604052809291908181526020018280546119609061478e565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b5050505050905090565b601260009054906101000a900460ff1615611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90614285565b60405180910390fd5b60008111611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906143a5565b60405180910390fd5b6000611a54610ccc565b9050600e548282611a6591906145c3565b1115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906141e5565b60405180910390fd5b611aaf826125c0565b6000600190505b828111611aec57611ad9611ac86120f4565b8284611ad491906145c3565b6127b8565b8080611ae4906147f1565b915050611ab6565b505050565b611b03611afc6120f4565b83836127d6565b5050565b611b18611b126120f4565b836121b5565b611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90614405565b60405180910390fd5b611b6384848484612943565b50505050565b600c8054611b769061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba29061478e565b8015611bef5780601f10611bc457610100808354040283529160200191611bef565b820191906000526020600020905b815481529060010190602001808311611bd257829003601f168201915b505050505081565b6060611c0282612088565b611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890614385565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611cef57600d8054611c6a9061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c969061478e565b8015611ce35780601f10611cb857610100808354040283529160200191611ce3565b820191906000526020600020905b815481529060010190602001808311611cc657829003601f168201915b50505050509050611d4b565b6000611cf961299f565b90506000815111611d195760405180602001604052806000815250611d47565b80611d2384612a31565b600c604051602001611d3793929190613ff9565b6040516020818303038152906040525b9150505b919050565b600e5481565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611df86120f4565b73ffffffffffffffffffffffffffffffffffffffff16611e166118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6390614365565b60405180910390fd5b80600d9080519060200190611e829291906134a5565b5050565b611e8e6120f4565b73ffffffffffffffffffffffffffffffffffffffff16611eac6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990614165565b60405180910390fd5b611f7b816124fa565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061207157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612081575061208082612bde565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661216f836113a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121c082612088565b6121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690614245565b60405180910390fd5b600061220a836113a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227957508373ffffffffffffffffffffffffffffffffffffffff1661226184610a9b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228a57506122898185611d5c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b3826113a2565b73ffffffffffffffffffffffffffffffffffffffff1614612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090614185565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237090614205565b60405180910390fd5b612384838383612c48565b61238f6000826120fc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123df91906146a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243691906145c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f5838383612d5c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601354421015612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614445565b60405180910390fd5b601354421015801561261957506014544211155b15612764578060105461262c919061464a565b34101561266e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612665906143e5565b60405180910390fd5b6011600061267a6120f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f890614465565b60405180910390fd5b6001811480156127205750600161271e6127196120f4565b611517565b105b61275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690614105565b60405180910390fd5b6127b5565b80600f54612772919061464a565b3410156127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab906143e5565b60405180910390fd5b5b50565b6127d2828260405180602001604052806000815250612d61565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614225565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161293691906140c8565b60405180910390a3505050565b61294e848484612293565b61295a84848484612dbc565b612999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299090614145565b60405180910390fd5b50505050565b6060600b80546129ae9061478e565b80601f01602080910402602001604051908101604052809291908181526020018280546129da9061478e565b8015612a275780601f106129fc57610100808354040283529160200191612a27565b820191906000526020600020905b815481529060010190602001808311612a0a57829003601f168201915b5050505050905090565b60606000821415612a79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd9565b600082905060005b60008214612aab578080612a94906147f1565b915050600a82612aa49190614619565b9150612a81565b60008167ffffffffffffffff811115612aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b1f5781602001600182028036833780820191505090505b5090505b60008514612bd257600182612b3891906146a4565b9150600a85612b47919061483a565b6030612b5391906145c3565b60f81b818381518110612b8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bcb9190614619565b9450612b23565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c53838383611fa1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c9657612c9181612f53565b612cd5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cd457612cd38382612f9c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1857612d1381613109565b612d57565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d5657612d55828261324c565b5b5b505050565b505050565b612d6b83836132cb565b612d786000848484612dbc565b612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90614145565b60405180910390fd5b505050565b6000612ddd8473ffffffffffffffffffffffffffffffffffffffff16611f7e565b15612f46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e066120f4565b8786866040518563ffffffff1660e01b8152600401612e28949392919061405a565b602060405180830381600087803b158015612e4257600080fd5b505af1925050508015612e7357506040513d601f19601f82011682018060405250810190612e70919061395f565b60015b612ef6573d8060008114612ea3576040519150601f19603f3d011682016040523d82523d6000602084013e612ea8565b606091505b50600081511415612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614145565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f4b565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fa984611517565b612fb391906146a4565b9050600060076000848152602001908152602001600020549050818114613098576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061311d91906146a4565b9050600060096000848152602001908152602001600020549050600060088381548110613173577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106131bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061325783611517565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333290614325565b60405180910390fd5b61334481612088565b15613384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337b906141a5565b60405180910390fd5b61339060008383612c48565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e091906145c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134a160008383612d5c565b5050565b8280546134b19061478e565b90600052602060002090601f0160209004810192826134d3576000855561351a565b82601f106134ec57805160ff191683800117855561351a565b8280016001018555821561351a579182015b828111156135195782518255916020019190600101906134fe565b5b509050613527919061352b565b5090565b5b8082111561354457600081600090555060010161352c565b5090565b600061355b613556846144c5565b6144a0565b90508281526020810184848401111561357357600080fd5b61357e84828561474c565b509392505050565b6000613599613594846144f6565b6144a0565b9050828152602081018484840111156135b157600080fd5b6135bc84828561474c565b509392505050565b6000813590506135d38161503d565b92915050565b60008083601f8401126135eb57600080fd5b8235905067ffffffffffffffff81111561360457600080fd5b60208301915083602082028301111561361c57600080fd5b9250929050565b60008135905061363281615054565b92915050565b6000813590506136478161506b565b92915050565b60008151905061365c8161506b565b92915050565b600082601f83011261367357600080fd5b8135613683848260208601613548565b91505092915050565b600082601f83011261369d57600080fd5b81356136ad848260208601613586565b91505092915050565b6000813590506136c581615082565b92915050565b6000602082840312156136dd57600080fd5b60006136eb848285016135c4565b91505092915050565b6000806040838503121561370757600080fd5b6000613715858286016135c4565b9250506020613726858286016135c4565b9150509250929050565b60008060006060848603121561374557600080fd5b6000613753868287016135c4565b9350506020613764868287016135c4565b9250506040613775868287016136b6565b9150509250925092565b6000806000806080858703121561379557600080fd5b60006137a3878288016135c4565b94505060206137b4878288016135c4565b93505060406137c5878288016136b6565b925050606085013567ffffffffffffffff8111156137e257600080fd5b6137ee87828801613662565b91505092959194509250565b6000806040838503121561380d57600080fd5b600061381b858286016135c4565b925050602061382c85828601613623565b9150509250929050565b6000806040838503121561384957600080fd5b6000613857858286016135c4565b9250506020613868858286016136b6565b9150509250929050565b6000806020838503121561388557600080fd5b600083013567ffffffffffffffff81111561389f57600080fd5b6138ab858286016135d9565b92509250509250929050565b6000806000606084860312156138cc57600080fd5b60006138da86828701613623565b935050602084013567ffffffffffffffff8111156138f757600080fd5b6139038682870161368c565b925050604084013567ffffffffffffffff81111561392057600080fd5b61392c8682870161368c565b9150509250925092565b60006020828403121561394857600080fd5b600061395684828501613638565b91505092915050565b60006020828403121561397157600080fd5b600061397f8482850161364d565b91505092915050565b60006020828403121561399a57600080fd5b600082013567ffffffffffffffff8111156139b457600080fd5b6139c08482850161368c565b91505092915050565b6000602082840312156139db57600080fd5b60006139e9848285016136b6565b91505092915050565b60008060408385031215613a0557600080fd5b6000613a13858286016136b6565b9250506020613a24858286016136b6565b9150509250929050565b6000613a3a8383613fdb565b60208301905092915050565b613a4f816146d8565b82525050565b6000613a608261454c565b613a6a818561457a565b9350613a7583614527565b8060005b83811015613aa6578151613a8d8882613a2e565b9750613a988361456d565b925050600181019050613a79565b5085935050505092915050565b613abc816146ea565b82525050565b6000613acd82614557565b613ad7818561458b565b9350613ae781856020860161475b565b613af081614927565b840191505092915050565b6000613b0682614562565b613b1081856145a7565b9350613b2081856020860161475b565b613b2981614927565b840191505092915050565b6000613b3f82614562565b613b4981856145b8565b9350613b5981856020860161475b565b80840191505092915050565b60008154613b728161478e565b613b7c81866145b8565b94506001821660008114613b975760018114613ba857613bdb565b60ff19831686528186019350613bdb565b613bb185614537565b60005b83811015613bd357815481890152600182019150602081019050613bb4565b838801955050505b50505092915050565b6000613bf1602f836145a7565b9150613bfc82614938565b604082019050919050565b6000613c14602b836145a7565b9150613c1f82614987565b604082019050919050565b6000613c376032836145a7565b9150613c42826149d6565b604082019050919050565b6000613c5a6026836145a7565b9150613c6582614a25565b604082019050919050565b6000613c7d6025836145a7565b9150613c8882614a74565b604082019050919050565b6000613ca0601c836145a7565b9150613cab82614ac3565b602082019050919050565b6000613cc3601f836145a7565b9150613cce82614aec565b602082019050919050565b6000613ce66018836145a7565b9150613cf182614b15565b602082019050919050565b6000613d096024836145a7565b9150613d1482614b3e565b604082019050919050565b6000613d2c6019836145a7565b9150613d3782614b8d565b602082019050919050565b6000613d4f602c836145a7565b9150613d5a82614bb6565b604082019050919050565b6000613d726022836145a7565b9150613d7d82614c05565b604082019050919050565b6000613d956020836145a7565b9150613da082614c54565b602082019050919050565b6000613db86038836145a7565b9150613dc382614c7d565b604082019050919050565b6000613ddb602a836145a7565b9150613de682614ccc565b604082019050919050565b6000613dfe6029836145a7565b9150613e0982614d1b565b604082019050919050565b6000613e21600a836145a7565b9150613e2c82614d6a565b602082019050919050565b6000613e446020836145a7565b9150613e4f82614d93565b602082019050919050565b6000613e67602c836145a7565b9150613e7282614dbc565b604082019050919050565b6000613e8a6020836145a7565b9150613e9582614e0b565b602082019050919050565b6000613ead602f836145a7565b9150613eb882614e34565b604082019050919050565b6000613ed06016836145a7565b9150613edb82614e83565b602082019050919050565b6000613ef36021836145a7565b9150613efe82614eac565b604082019050919050565b6000613f16601a836145a7565b9150613f2182614efb565b602082019050919050565b6000613f3960008361459c565b9150613f4482614f24565b600082019050919050565b6000613f5c6031836145a7565b9150613f6782614f27565b604082019050919050565b6000613f7f602c836145a7565b9150613f8a82614f76565b604082019050919050565b6000613fa26018836145a7565b9150613fad82614fc5565b602082019050919050565b6000613fc56022836145a7565b9150613fd082614fee565b604082019050919050565b613fe481614742565b82525050565b613ff381614742565b82525050565b60006140058286613b34565b91506140118285613b34565b915061401d8284613b65565b9150819050949350505050565b600061403582613f2c565b9150819050919050565b60006020820190506140546000830184613a46565b92915050565b600060808201905061406f6000830187613a46565b61407c6020830186613a46565b6140896040830185613fea565b818103606083015261409b8184613ac2565b905095945050505050565b600060208201905081810360008301526140c08184613a55565b905092915050565b60006020820190506140dd6000830184613ab3565b92915050565b600060208201905081810360008301526140fd8184613afb565b905092915050565b6000602082019050818103600083015261411e81613be4565b9050919050565b6000602082019050818103600083015261413e81613c07565b9050919050565b6000602082019050818103600083015261415e81613c2a565b9050919050565b6000602082019050818103600083015261417e81613c4d565b9050919050565b6000602082019050818103600083015261419e81613c70565b9050919050565b600060208201905081810360008301526141be81613c93565b9050919050565b600060208201905081810360008301526141de81613cb6565b9050919050565b600060208201905081810360008301526141fe81613cd9565b9050919050565b6000602082019050818103600083015261421e81613cfc565b9050919050565b6000602082019050818103600083015261423e81613d1f565b9050919050565b6000602082019050818103600083015261425e81613d42565b9050919050565b6000602082019050818103600083015261427e81613d65565b9050919050565b6000602082019050818103600083015261429e81613d88565b9050919050565b600060208201905081810360008301526142be81613dab565b9050919050565b600060208201905081810360008301526142de81613dce565b9050919050565b600060208201905081810360008301526142fe81613df1565b9050919050565b6000602082019050818103600083015261431e81613e14565b9050919050565b6000602082019050818103600083015261433e81613e37565b9050919050565b6000602082019050818103600083015261435e81613e5a565b9050919050565b6000602082019050818103600083015261437e81613e7d565b9050919050565b6000602082019050818103600083015261439e81613ea0565b9050919050565b600060208201905081810360008301526143be81613ec3565b9050919050565b600060208201905081810360008301526143de81613ee6565b9050919050565b600060208201905081810360008301526143fe81613f09565b9050919050565b6000602082019050818103600083015261441e81613f4f565b9050919050565b6000602082019050818103600083015261443e81613f72565b9050919050565b6000602082019050818103600083015261445e81613f95565b9050919050565b6000602082019050818103600083015261447e81613fb8565b9050919050565b600060208201905061449a6000830184613fea565b92915050565b60006144aa6144bb565b90506144b682826147c0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144e0576144df6148f8565b5b6144e982614927565b9050602081019050919050565b600067ffffffffffffffff821115614511576145106148f8565b5b61451a82614927565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145ce82614742565b91506145d983614742565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561460e5761460d61486b565b5b828201905092915050565b600061462482614742565b915061462f83614742565b92508261463f5761463e61489a565b5b828204905092915050565b600061465582614742565b915061466083614742565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146995761469861486b565b5b828202905092915050565b60006146af82614742565b91506146ba83614742565b9250828210156146cd576146cc61486b565b5b828203905092915050565b60006146e382614722565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561477957808201518184015260208101905061475e565b83811115614788576000848401525b50505050565b600060028204905060018216806147a657607f821691505b602082108114156147ba576147b96148c9565b5b50919050565b6147c982614927565b810181811067ffffffffffffffff821117156147e8576147e76148f8565b5b80604052505050565b60006147fc82614742565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482f5761482e61486b565b5b600182019050919050565b600061484582614742565b915061485083614742565b9250826148605761485f61489a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f464952453a2043616e206f6e6c79206d696e742031204e465420647572696e6760008201527f2077686974654c6973742074696d650000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f464952453a2063616c6c6572206973206e6f7420746865206465765465616d00600082015250565b7f464952453a2041636869657665206d617820737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f464952453a204661696c20746f20776974686472617720746f206f706572617460008201527f6f72000000000000000000000000000000000000000000000000000000000000602082015250565b7f464952453a204d696e74696e672069732074656d706f7261727920636c6f7365600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f464952453a204c6f636b00000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f464952453a207174792073686f756c6420677465203000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f464952453a20496e73756666696369656e742062616c616e6365000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f464952453a204e6f742073746172742073656c6c207965740000000000000000600082015250565b7f464952453a20596f7520617265206e6f7420696e207468652077686974654c6960008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b615046816146d8565b811461505157600080fd5b50565b61505d816146ea565b811461506857600080fd5b50565b615074816146f6565b811461507f57600080fd5b50565b61508b81614742565b811461509657600080fd5b5056fea264697066735822122097252c3441c06d58888cbf6f22f90576f62aa2d50b1f3f125f0eb846ee64212964736f6c634300080100330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000da5ac91b0dd64788610c951f4e477656c682359f000000000000000000000000a699ba2cfd4a5d3309c707105371ca9eef2a79e0000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e67686f72752e636c75622f626c696e64626f7800
Deployed Bytecode
0x6080604052600436106102515760003560e01c80635c975abb1161013957806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd1461086d578063d5abeb01146108aa578063df90c98d146108d5578063e985e9c514610900578063f2c4ce1e1461093d578063f2fde38b1461096657610251565b806395d89b41146107a9578063a0712d68146107d4578063a22cb465146107f0578063b88d4fde14610819578063c66828621461084257610251565b80637696e088116100fd5780637696e088146106d8578063775b9c1314610701578063847efea11461072a5780638da5cb5b146107535780639257e0441461077e57610251565b80635c975abb146106055780636352211e146106305780636718161e1461066d57806370a0823114610684578063715018a6146106c157610251565b8063372c12b1116101d25780633ccfd60b116101965780633ccfd60b146104f557806342842e0e1461050c578063438b6300146105355780634f6ccce71461057257806351830227146105af578063570ca735146105da57610251565b8063372c12b1146104345780633811056314610471578063385df6491461049c578063397cfcbe146104b35780633b84d9c6146104de57610251565b806313faede61161021957806313faede61461034f57806318160ddd1461037a578063213506b3146103a557806323b872dd146103ce5780632f745c59146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063081c8c44146102fb578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613936565b61098f565b60405161028a91906140c8565b60405180910390f35b34801561029f57600080fd5b506102a8610a09565b6040516102b591906140e3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906139c9565b610a9b565b6040516102f2919061403f565b60405180910390f35b34801561030757600080fd5b50610310610b20565b60405161031d91906140e3565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613836565b610bae565b005b34801561035b57600080fd5b50610364610cc6565b6040516103719190614485565b60405180910390f35b34801561038657600080fd5b5061038f610ccc565b60405161039c9190614485565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906139f2565b610cd9565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613730565b610d67565b005b34801561040357600080fd5b5061041e60048036038101906104199190613836565b610dc7565b60405161042b9190614485565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906136cb565b610e6c565b60405161046891906140c8565b60405180910390f35b34801561047d57600080fd5b50610486610e8c565b6040516104939190614485565b60405180910390f35b3480156104a857600080fd5b506104b1610e92565b005b3480156104bf57600080fd5b506104c8610f3a565b6040516104d5919061403f565b60405180910390f35b3480156104ea57600080fd5b506104f3610f60565b005b34801561050157600080fd5b5061050a611008565b005b34801561051857600080fd5b50610533600480360381019061052e9190613730565b6111a5565b005b34801561054157600080fd5b5061055c600480360381019061055791906136cb565b6111c5565b60405161056991906140a6565b60405180910390f35b34801561057e57600080fd5b50610599600480360381019061059491906139c9565b6112bf565b6040516105a69190614485565b60405180910390f35b3480156105bb57600080fd5b506105c4611356565b6040516105d191906140c8565b60405180910390f35b3480156105e657600080fd5b506105ef611369565b6040516105fc919061403f565b60405180910390f35b34801561061157600080fd5b5061061a61138f565b60405161062791906140c8565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906139c9565b6113a2565b604051610664919061403f565b60405180910390f35b34801561067957600080fd5b50610682611454565b005b34801561069057600080fd5b506106ab60048036038101906106a691906136cb565b611517565b6040516106b89190614485565b60405180910390f35b3480156106cd57600080fd5b506106d66115cf565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906139f2565b611657565b005b34801561070d57600080fd5b5061072860048036038101906107239190613872565b6116e5565b005b34801561073657600080fd5b50610751600480360381019061074c91906138b7565b61182c565b005b34801561075f57600080fd5b506107686118f5565b604051610775919061403f565b60405180910390f35b34801561078a57600080fd5b5061079361191f565b6040516107a09190614485565b60405180910390f35b3480156107b557600080fd5b506107be611925565b6040516107cb91906140e3565b60405180910390f35b6107ee60048036038101906107e991906139c9565b6119b7565b005b3480156107fc57600080fd5b50610817600480360381019061081291906137fa565b611af1565b005b34801561082557600080fd5b50610840600480360381019061083b919061377f565b611b07565b005b34801561084e57600080fd5b50610857611b69565b60405161086491906140e3565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906139c9565b611bf7565b6040516108a191906140e3565b60405180910390f35b3480156108b657600080fd5b506108bf611d50565b6040516108cc9190614485565b60405180910390f35b3480156108e157600080fd5b506108ea611d56565b6040516108f79190614485565b60405180910390f35b34801561090c57600080fd5b50610927600480360381019061092291906136f4565b611d5c565b60405161093491906140c8565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613988565b611df0565b005b34801561097257600080fd5b5061098d600480360381019061098891906136cb565b611e86565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a025750610a0182611fa6565b5b9050919050565b606060008054610a189061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a449061478e565b8015610a915780601f10610a6657610100808354040283529160200191610a91565b820191906000526020600020905b815481529060010190602001808311610a7457829003601f168201915b5050505050905090565b6000610aa682612088565b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90614345565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610b2d9061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b599061478e565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b505050505081565b6000610bb9826113a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906143c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c496120f4565b73ffffffffffffffffffffffffffffffffffffffff161480610c785750610c7781610c726120f4565b611d5c565b5b610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906142a5565b60405180910390fd5b610cc183836120fc565b505050565b600f5481565b6000600880549050905090565b610ce16120f4565b73ffffffffffffffffffffffffffffffffffffffff16610cff6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90614365565b60405180910390fd5b81601381905550806014819055505050565b610d78610d726120f4565b826121b5565b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90614405565b60405180910390fd5b610dc2838383612293565b505050565b6000610dd283611517565b8210610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90614125565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b60135481565b610e9a6120f4565b73ffffffffffffffffffffffffffffffffffffffff16610eb86118f5565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614365565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f686120f4565b73ffffffffffffffffffffffffffffffffffffffff16610f866118f5565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390614365565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b6110106120f4565b73ffffffffffffffffffffffffffffffffffffffff1661102e6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90614365565b60405180910390fd5b601260029054906101000a900460ff16156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90614305565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161111c9061402a565b60006040518083038185875af1925050503d8060008114611159576040519150601f19603f3d011682016040523d82523d6000602084013e61115e565b606091505b50509050806111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614265565b60405180910390fd5b50565b6111c083838360405180602001604052806000815250611b07565b505050565b606060006111d283611517565b905060008167ffffffffffffffff811115611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112445781602001602082028036833780820191505090505b50905060005b828110156112b45761125c8582610dc7565b828281518110611295577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112ac906147f1565b91505061124a565b508092505050919050565b60006112c9610ccc565b821061130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614425565b60405180910390fd5b60088281548110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561144b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611442906142e5565b60405180910390fd5b80915050919050565b61145c6120f4565b73ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e2906141c5565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906142c5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d76120f4565b73ffffffffffffffffffffffffffffffffffffffff166115f56118f5565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290614365565b60405180910390fd5b61165560006124fa565b565b61165f6120f4565b73ffffffffffffffffffffffffffffffffffffffff1661167d6118f5565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614365565b60405180910390fd5b81600f81905550806010819055505050565b6116ed6120f4565b73ffffffffffffffffffffffffffffffffffffffff1661170b6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890614365565b60405180910390fd5b60005b82829050811015611827576001601160008585858181106117ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906117c391906136cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061181f906147f1565b915050611764565b505050565b6118346120f4565b73ffffffffffffffffffffffffffffffffffffffff166118526118f5565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90614365565b60405180910390fd5b82601260016101000a81548160ff02191690831515021790555081600b90805190602001906118d89291906134a5565b5080600c90805190602001906118ef9291906134a5565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6060600180546119349061478e565b80601f01602080910402602001604051908101604052809291908181526020018280546119609061478e565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b5050505050905090565b601260009054906101000a900460ff1615611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90614285565b60405180910390fd5b60008111611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906143a5565b60405180910390fd5b6000611a54610ccc565b9050600e548282611a6591906145c3565b1115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906141e5565b60405180910390fd5b611aaf826125c0565b6000600190505b828111611aec57611ad9611ac86120f4565b8284611ad491906145c3565b6127b8565b8080611ae4906147f1565b915050611ab6565b505050565b611b03611afc6120f4565b83836127d6565b5050565b611b18611b126120f4565b836121b5565b611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90614405565b60405180910390fd5b611b6384848484612943565b50505050565b600c8054611b769061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba29061478e565b8015611bef5780601f10611bc457610100808354040283529160200191611bef565b820191906000526020600020905b815481529060010190602001808311611bd257829003601f168201915b505050505081565b6060611c0282612088565b611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890614385565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611cef57600d8054611c6a9061478e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c969061478e565b8015611ce35780601f10611cb857610100808354040283529160200191611ce3565b820191906000526020600020905b815481529060010190602001808311611cc657829003601f168201915b50505050509050611d4b565b6000611cf961299f565b90506000815111611d195760405180602001604052806000815250611d47565b80611d2384612a31565b600c604051602001611d3793929190613ff9565b6040516020818303038152906040525b9150505b919050565b600e5481565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611df86120f4565b73ffffffffffffffffffffffffffffffffffffffff16611e166118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6390614365565b60405180910390fd5b80600d9080519060200190611e829291906134a5565b5050565b611e8e6120f4565b73ffffffffffffffffffffffffffffffffffffffff16611eac6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990614165565b60405180910390fd5b611f7b816124fa565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061207157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612081575061208082612bde565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661216f836113a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121c082612088565b6121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690614245565b60405180910390fd5b600061220a836113a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227957508373ffffffffffffffffffffffffffffffffffffffff1661226184610a9b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228a57506122898185611d5c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b3826113a2565b73ffffffffffffffffffffffffffffffffffffffff1614612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090614185565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237090614205565b60405180910390fd5b612384838383612c48565b61238f6000826120fc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123df91906146a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243691906145c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f5838383612d5c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601354421015612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614445565b60405180910390fd5b601354421015801561261957506014544211155b15612764578060105461262c919061464a565b34101561266e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612665906143e5565b60405180910390fd5b6011600061267a6120f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f890614465565b60405180910390fd5b6001811480156127205750600161271e6127196120f4565b611517565b105b61275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690614105565b60405180910390fd5b6127b5565b80600f54612772919061464a565b3410156127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab906143e5565b60405180910390fd5b5b50565b6127d2828260405180602001604052806000815250612d61565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614225565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161293691906140c8565b60405180910390a3505050565b61294e848484612293565b61295a84848484612dbc565b612999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299090614145565b60405180910390fd5b50505050565b6060600b80546129ae9061478e565b80601f01602080910402602001604051908101604052809291908181526020018280546129da9061478e565b8015612a275780601f106129fc57610100808354040283529160200191612a27565b820191906000526020600020905b815481529060010190602001808311612a0a57829003601f168201915b5050505050905090565b60606000821415612a79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd9565b600082905060005b60008214612aab578080612a94906147f1565b915050600a82612aa49190614619565b9150612a81565b60008167ffffffffffffffff811115612aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b1f5781602001600182028036833780820191505090505b5090505b60008514612bd257600182612b3891906146a4565b9150600a85612b47919061483a565b6030612b5391906145c3565b60f81b818381518110612b8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bcb9190614619565b9450612b23565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c53838383611fa1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c9657612c9181612f53565b612cd5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cd457612cd38382612f9c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1857612d1381613109565b612d57565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d5657612d55828261324c565b5b5b505050565b505050565b612d6b83836132cb565b612d786000848484612dbc565b612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90614145565b60405180910390fd5b505050565b6000612ddd8473ffffffffffffffffffffffffffffffffffffffff16611f7e565b15612f46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e066120f4565b8786866040518563ffffffff1660e01b8152600401612e28949392919061405a565b602060405180830381600087803b158015612e4257600080fd5b505af1925050508015612e7357506040513d601f19601f82011682018060405250810190612e70919061395f565b60015b612ef6573d8060008114612ea3576040519150601f19603f3d011682016040523d82523d6000602084013e612ea8565b606091505b50600081511415612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614145565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f4b565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fa984611517565b612fb391906146a4565b9050600060076000848152602001908152602001600020549050818114613098576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061311d91906146a4565b9050600060096000848152602001908152602001600020549050600060088381548110613173577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106131bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061325783611517565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333290614325565b60405180910390fd5b61334481612088565b15613384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337b906141a5565b60405180910390fd5b61339060008383612c48565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e091906145c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134a160008383612d5c565b5050565b8280546134b19061478e565b90600052602060002090601f0160209004810192826134d3576000855561351a565b82601f106134ec57805160ff191683800117855561351a565b8280016001018555821561351a579182015b828111156135195782518255916020019190600101906134fe565b5b509050613527919061352b565b5090565b5b8082111561354457600081600090555060010161352c565b5090565b600061355b613556846144c5565b6144a0565b90508281526020810184848401111561357357600080fd5b61357e84828561474c565b509392505050565b6000613599613594846144f6565b6144a0565b9050828152602081018484840111156135b157600080fd5b6135bc84828561474c565b509392505050565b6000813590506135d38161503d565b92915050565b60008083601f8401126135eb57600080fd5b8235905067ffffffffffffffff81111561360457600080fd5b60208301915083602082028301111561361c57600080fd5b9250929050565b60008135905061363281615054565b92915050565b6000813590506136478161506b565b92915050565b60008151905061365c8161506b565b92915050565b600082601f83011261367357600080fd5b8135613683848260208601613548565b91505092915050565b600082601f83011261369d57600080fd5b81356136ad848260208601613586565b91505092915050565b6000813590506136c581615082565b92915050565b6000602082840312156136dd57600080fd5b60006136eb848285016135c4565b91505092915050565b6000806040838503121561370757600080fd5b6000613715858286016135c4565b9250506020613726858286016135c4565b9150509250929050565b60008060006060848603121561374557600080fd5b6000613753868287016135c4565b9350506020613764868287016135c4565b9250506040613775868287016136b6565b9150509250925092565b6000806000806080858703121561379557600080fd5b60006137a3878288016135c4565b94505060206137b4878288016135c4565b93505060406137c5878288016136b6565b925050606085013567ffffffffffffffff8111156137e257600080fd5b6137ee87828801613662565b91505092959194509250565b6000806040838503121561380d57600080fd5b600061381b858286016135c4565b925050602061382c85828601613623565b9150509250929050565b6000806040838503121561384957600080fd5b6000613857858286016135c4565b9250506020613868858286016136b6565b9150509250929050565b6000806020838503121561388557600080fd5b600083013567ffffffffffffffff81111561389f57600080fd5b6138ab858286016135d9565b92509250509250929050565b6000806000606084860312156138cc57600080fd5b60006138da86828701613623565b935050602084013567ffffffffffffffff8111156138f757600080fd5b6139038682870161368c565b925050604084013567ffffffffffffffff81111561392057600080fd5b61392c8682870161368c565b9150509250925092565b60006020828403121561394857600080fd5b600061395684828501613638565b91505092915050565b60006020828403121561397157600080fd5b600061397f8482850161364d565b91505092915050565b60006020828403121561399a57600080fd5b600082013567ffffffffffffffff8111156139b457600080fd5b6139c08482850161368c565b91505092915050565b6000602082840312156139db57600080fd5b60006139e9848285016136b6565b91505092915050565b60008060408385031215613a0557600080fd5b6000613a13858286016136b6565b9250506020613a24858286016136b6565b9150509250929050565b6000613a3a8383613fdb565b60208301905092915050565b613a4f816146d8565b82525050565b6000613a608261454c565b613a6a818561457a565b9350613a7583614527565b8060005b83811015613aa6578151613a8d8882613a2e565b9750613a988361456d565b925050600181019050613a79565b5085935050505092915050565b613abc816146ea565b82525050565b6000613acd82614557565b613ad7818561458b565b9350613ae781856020860161475b565b613af081614927565b840191505092915050565b6000613b0682614562565b613b1081856145a7565b9350613b2081856020860161475b565b613b2981614927565b840191505092915050565b6000613b3f82614562565b613b4981856145b8565b9350613b5981856020860161475b565b80840191505092915050565b60008154613b728161478e565b613b7c81866145b8565b94506001821660008114613b975760018114613ba857613bdb565b60ff19831686528186019350613bdb565b613bb185614537565b60005b83811015613bd357815481890152600182019150602081019050613bb4565b838801955050505b50505092915050565b6000613bf1602f836145a7565b9150613bfc82614938565b604082019050919050565b6000613c14602b836145a7565b9150613c1f82614987565b604082019050919050565b6000613c376032836145a7565b9150613c42826149d6565b604082019050919050565b6000613c5a6026836145a7565b9150613c6582614a25565b604082019050919050565b6000613c7d6025836145a7565b9150613c8882614a74565b604082019050919050565b6000613ca0601c836145a7565b9150613cab82614ac3565b602082019050919050565b6000613cc3601f836145a7565b9150613cce82614aec565b602082019050919050565b6000613ce66018836145a7565b9150613cf182614b15565b602082019050919050565b6000613d096024836145a7565b9150613d1482614b3e565b604082019050919050565b6000613d2c6019836145a7565b9150613d3782614b8d565b602082019050919050565b6000613d4f602c836145a7565b9150613d5a82614bb6565b604082019050919050565b6000613d726022836145a7565b9150613d7d82614c05565b604082019050919050565b6000613d956020836145a7565b9150613da082614c54565b602082019050919050565b6000613db86038836145a7565b9150613dc382614c7d565b604082019050919050565b6000613ddb602a836145a7565b9150613de682614ccc565b604082019050919050565b6000613dfe6029836145a7565b9150613e0982614d1b565b604082019050919050565b6000613e21600a836145a7565b9150613e2c82614d6a565b602082019050919050565b6000613e446020836145a7565b9150613e4f82614d93565b602082019050919050565b6000613e67602c836145a7565b9150613e7282614dbc565b604082019050919050565b6000613e8a6020836145a7565b9150613e9582614e0b565b602082019050919050565b6000613ead602f836145a7565b9150613eb882614e34565b604082019050919050565b6000613ed06016836145a7565b9150613edb82614e83565b602082019050919050565b6000613ef36021836145a7565b9150613efe82614eac565b604082019050919050565b6000613f16601a836145a7565b9150613f2182614efb565b602082019050919050565b6000613f3960008361459c565b9150613f4482614f24565b600082019050919050565b6000613f5c6031836145a7565b9150613f6782614f27565b604082019050919050565b6000613f7f602c836145a7565b9150613f8a82614f76565b604082019050919050565b6000613fa26018836145a7565b9150613fad82614fc5565b602082019050919050565b6000613fc56022836145a7565b9150613fd082614fee565b604082019050919050565b613fe481614742565b82525050565b613ff381614742565b82525050565b60006140058286613b34565b91506140118285613b34565b915061401d8284613b65565b9150819050949350505050565b600061403582613f2c565b9150819050919050565b60006020820190506140546000830184613a46565b92915050565b600060808201905061406f6000830187613a46565b61407c6020830186613a46565b6140896040830185613fea565b818103606083015261409b8184613ac2565b905095945050505050565b600060208201905081810360008301526140c08184613a55565b905092915050565b60006020820190506140dd6000830184613ab3565b92915050565b600060208201905081810360008301526140fd8184613afb565b905092915050565b6000602082019050818103600083015261411e81613be4565b9050919050565b6000602082019050818103600083015261413e81613c07565b9050919050565b6000602082019050818103600083015261415e81613c2a565b9050919050565b6000602082019050818103600083015261417e81613c4d565b9050919050565b6000602082019050818103600083015261419e81613c70565b9050919050565b600060208201905081810360008301526141be81613c93565b9050919050565b600060208201905081810360008301526141de81613cb6565b9050919050565b600060208201905081810360008301526141fe81613cd9565b9050919050565b6000602082019050818103600083015261421e81613cfc565b9050919050565b6000602082019050818103600083015261423e81613d1f565b9050919050565b6000602082019050818103600083015261425e81613d42565b9050919050565b6000602082019050818103600083015261427e81613d65565b9050919050565b6000602082019050818103600083015261429e81613d88565b9050919050565b600060208201905081810360008301526142be81613dab565b9050919050565b600060208201905081810360008301526142de81613dce565b9050919050565b600060208201905081810360008301526142fe81613df1565b9050919050565b6000602082019050818103600083015261431e81613e14565b9050919050565b6000602082019050818103600083015261433e81613e37565b9050919050565b6000602082019050818103600083015261435e81613e5a565b9050919050565b6000602082019050818103600083015261437e81613e7d565b9050919050565b6000602082019050818103600083015261439e81613ea0565b9050919050565b600060208201905081810360008301526143be81613ec3565b9050919050565b600060208201905081810360008301526143de81613ee6565b9050919050565b600060208201905081810360008301526143fe81613f09565b9050919050565b6000602082019050818103600083015261441e81613f4f565b9050919050565b6000602082019050818103600083015261443e81613f72565b9050919050565b6000602082019050818103600083015261445e81613f95565b9050919050565b6000602082019050818103600083015261447e81613fb8565b9050919050565b600060208201905061449a6000830184613fea565b92915050565b60006144aa6144bb565b90506144b682826147c0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144e0576144df6148f8565b5b6144e982614927565b9050602081019050919050565b600067ffffffffffffffff821115614511576145106148f8565b5b61451a82614927565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145ce82614742565b91506145d983614742565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561460e5761460d61486b565b5b828201905092915050565b600061462482614742565b915061462f83614742565b92508261463f5761463e61489a565b5b828204905092915050565b600061465582614742565b915061466083614742565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146995761469861486b565b5b828202905092915050565b60006146af82614742565b91506146ba83614742565b9250828210156146cd576146cc61486b565b5b828203905092915050565b60006146e382614722565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561477957808201518184015260208101905061475e565b83811115614788576000848401525b50505050565b600060028204905060018216806147a657607f821691505b602082108114156147ba576147b96148c9565b5b50919050565b6147c982614927565b810181811067ffffffffffffffff821117156147e8576147e76148f8565b5b80604052505050565b60006147fc82614742565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482f5761482e61486b565b5b600182019050919050565b600061484582614742565b915061485083614742565b9250826148605761485f61489a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f464952453a2043616e206f6e6c79206d696e742031204e465420647572696e6760008201527f2077686974654c6973742074696d650000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f464952453a2063616c6c6572206973206e6f7420746865206465765465616d00600082015250565b7f464952453a2041636869657665206d617820737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f464952453a204661696c20746f20776974686472617720746f206f706572617460008201527f6f72000000000000000000000000000000000000000000000000000000000000602082015250565b7f464952453a204d696e74696e672069732074656d706f7261727920636c6f7365600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f464952453a204c6f636b00000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f464952453a207174792073686f756c6420677465203000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f464952453a20496e73756666696369656e742062616c616e6365000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f464952453a204e6f742073746172742073656c6c207965740000000000000000600082015250565b7f464952453a20596f7520617265206e6f7420696e207468652077686974654c6960008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b615046816146d8565b811461505157600080fd5b50565b61505d816146ea565b811461506857600080fd5b50565b615074816146f6565b811461507f57600080fd5b50565b61508b81614742565b811461509657600080fd5b5056fea264697066735822122097252c3441c06d58888cbf6f22f90576f62aa2d50b1f3f125f0eb846ee64212964736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000da5ac91b0dd64788610c951f4e477656c682359f000000000000000000000000a699ba2cfd4a5d3309c707105371ca9eef2a79e0000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e67686f72752e636c75622f626c696e64626f7800
-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): https://api.ghoru.club/blindbox
Arg [1] : _operator (address): 0xda5Ac91b0dd64788610C951F4E477656C682359F
Arg [2] : _devteam (address): 0xA699BA2cFd4A5D3309c707105371ca9eEf2A79e0
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000da5ac91b0dd64788610c951f4e477656c682359f
Arg [2] : 000000000000000000000000a699ba2cfd4a5d3309c707105371ca9eef2a79e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [4] : 68747470733a2f2f6170692e67686f72752e636c75622f626c696e64626f7800
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.