ERC-721
Overview
Max Total Supply
16 CTL
Holders
14
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CTLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cooltail
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 Cooltail is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string baseURI; string public baseExtension = ""; string public notRevealedUri; uint256 public maxSupply = 157; uint256 public cost = 1.2 ether; uint256 public whiteListCost = 0.9 ether; mapping(address => bool) public whiteList; bool public paused = false; bool public revealed = false; bool public isDutchAuction = false; uint256 public auctionStartTime; uint256 public auctionTimeStep; uint256 public auctionStepNumber; uint256 public auctionPriceStep; uint256 public auctionStartPrice; uint256 public auctionEndPrice; uint256 public whiteListStartTime = 1648990800; // 2022-04-03 21:00:00 uint256 public whiteListEndTime = 1648994400; // 2022-04-03 22:00:00 address public devteam; address public operator; constructor ( string memory _initNotRevealedUri, address _operator, address _devteam ) ERC721("Cooltail NFT", "CTL") { devteam = _devteam; operator = _operator; setNotRevealedURI(_initNotRevealedUri); for (uint256 i = 1; i <= 2; i++) { _safeMint(_operator, i); } } 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, "CTL: Minting is temporary close"); require(_mintAmount > 0, "CTL: qty should gte 0"); uint256 _supply = totalSupply(); require(_supply + _mintAmount <= maxSupply, "CTL: Achieve max supply"); if (isDutchAuction) { _dutchAuction(_mintAmount); } else { _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 setDutchAuction( uint256 _auctionStartTime, uint256 _auctionTimeStep, uint256 _auctionStepNumber, uint256 _auctionPriceStep, uint256 _auctionStartPrice, uint256 _auctionEndPrice ) public onlyDevTeam { isDutchAuction = true; auctionStartTime = _auctionStartTime; auctionTimeStep = _auctionTimeStep; auctionStepNumber = _auctionStepNumber; auctionPriceStep = _auctionPriceStep; auctionStartPrice = _auctionStartPrice; auctionEndPrice = _auctionEndPrice; } function setRevealedWithURI(bool _isOpen, string memory _URI, string memory _baseExtension) public onlyOwner { revealed = _isOpen; baseURI = _URI; baseExtension = _baseExtension; } function flipAuction() public onlyDevTeam { isDutchAuction = !isDutchAuction; } function flipReveal() public onlyOwner { revealed = !revealed; } function flipPause() public onlyDevTeam { paused = !paused; } function withdraw() public onlyOwner { uint total = address(this).balance; uint toDevteam = total.mul(15).div(100); // 15% to devteam (bool sendToDevteam, ) = payable(devteam).call{ value: toDevteam }(""); require(sendToDevteam, "BBC: Fail to withdraw to devteam"); // 85% to operator (bool sendToOperator, ) = payable(operator).call{ value: total.sub(toDevteam) }(""); require(sendToOperator, "BBC: 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 getAuctionPrice() public view returns (uint256) { if (!isDutchAuction) { return 0; } if (block.timestamp < auctionStartTime) { return auctionStartPrice; } uint256 step = (block.timestamp - auctionStartTime) / auctionTimeStep; if (step > auctionStepNumber) { step = auctionStepNumber; } return auctionStartPrice > step * auctionPriceStep ? auctionStartPrice - step * auctionPriceStep : auctionEndPrice; } function _dutchAuction(uint256 _mintAmount) internal { require(block.timestamp >= auctionStartTime, 'CTL: Auction not start'); require((_mintAmount * getAuctionPrice()) <= msg.value, 'CTL: Not enough ether sent'); } function _publicOffering(uint256 _mintAmount) internal { require(block.timestamp >= whiteListStartTime, "CTL: Not start sell yet"); if (block.timestamp >= whiteListStartTime && block.timestamp <= whiteListEndTime) { // Presale require(msg.value >= whiteListCost * _mintAmount, "CTL: Insufficient balance"); require(whiteList[_msgSender()], "CTL: You are not in the whiteList"); } else { // public sale require(msg.value >= cost * _mintAmount, "CTL: Insufficient balance"); } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } modifier onlyDevTeam() { require(devteam == _msgSender(), "CTL: 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":[],"name":"auctionEndPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionPriceStep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStepNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionTimeStep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"flipAuction","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":[],"name":"getAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isDutchAuction","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":"uint256","name":"_auctionStartTime","type":"uint256"},{"internalType":"uint256","name":"_auctionTimeStep","type":"uint256"},{"internalType":"uint256","name":"_auctionStepNumber","type":"uint256"},{"internalType":"uint256","name":"_auctionPriceStep","type":"uint256"},{"internalType":"uint256","name":"_auctionStartPrice","type":"uint256"},{"internalType":"uint256","name":"_auctionEndPrice","type":"uint256"}],"name":"setDutchAuction","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
608060405260405180602001604052806000815250600c90805190602001906200002b92919062000e92565b50609d600e556710a741a462780000600f55670c7d713b49da00006010556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506362499a50601955636249a860601a55348015620000b757600080fd5b5060405162006e0d38038062006e0d8339818101604052810190620000dd91906200100e565b6040518060400160405280600c81526020017f436f6f6c7461696c204e465400000000000000000000000000000000000000008152506040518060400160405280600381526020017f43544c000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016192919062000e92565b5080600190805190602001906200017a92919062000e92565b5050506200019d620001916200027260201b60201c565b6200027a60201b60201c565b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000230836200034060201b60201c565b6000600190505b600281116200026857620002528382620003eb60201b60201c565b80806200025f90620014d1565b91505062000237565b505050506200170a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003506200027260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003766200041160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c6906200127f565b60405180910390fd5b80600d9080519060200190620003e792919062000e92565b5050565b6200040d8282604051806020016040528060008152506200043b60201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200044d8383620004a960201b60201c565b620004626000848484620006a360201b60201c565b620004a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049b90620011f7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200051c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000513906200125d565b60405180910390fd5b6200052d816200085d60201b60201c565b1562000570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005679062001219565b60405180910390fd5b6200058460008383620008c960201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005d691906200132d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200069f6000838362000a1060201b60201c565b5050565b6000620006d18473ffffffffffffffffffffffffffffffffffffffff1662000a1560201b620024521760201c565b1562000850578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007036200027260201b60201c565b8786866040518563ffffffff1660e01b8152600401620007279493929190620011a3565b602060405180830381600087803b1580156200074257600080fd5b505af19250505080156200077657506040513d601f19601f8201168201806040525081019062000773919062000fe2565b60015b620007ff573d8060008114620007a9576040519150601f19603f3d011682016040523d82523d6000602084013e620007ae565b606091505b50600081511415620007f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ee90620011f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000855565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008e183838362000a3860201b620024751760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200092e57620009288162000a3d60201b60201c565b62000976565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009755762000974838262000a8660201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c357620009bd8162000c0360201b60201c565b62000a0b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a0a5762000a09828262000d4b60201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000aa08462000dd760201b620017ef1760201c565b62000aac91906200138a565b905060006007600084815260200190815260200160002054905081811462000b92576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c1991906200138a565b905060006009600084815260200190815260200160002054905060006008838154811062000c70577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000d638362000dd760201b620017ef1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e42906200123b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ea09062001465565b90600052602060002090601f01602090048101928262000ec4576000855562000f10565b82601f1062000edf57805160ff191683800117855562000f10565b8280016001018555821562000f10579182015b8281111562000f0f57825182559160200191906001019062000ef2565b5b50905062000f1f919062000f23565b5090565b5b8082111562000f3e57600081600090555060010162000f24565b5090565b600062000f5962000f5384620012ca565b620012a1565b90508281526020810184848401111562000f7257600080fd5b62000f7f8482856200142f565b509392505050565b60008151905062000f9881620016d6565b92915050565b60008151905062000faf81620016f0565b92915050565b600082601f83011262000fc757600080fd5b815162000fd984826020860162000f42565b91505092915050565b60006020828403121562000ff557600080fd5b6000620010058482850162000f9e565b91505092915050565b6000806000606084860312156200102457600080fd5b600084015167ffffffffffffffff8111156200103f57600080fd5b6200104d8682870162000fb5565b9350506020620010608682870162000f87565b9250506040620010738682870162000f87565b9150509250925092565b6200108881620013c5565b82525050565b60006200109b8262001300565b620010a781856200130b565b9350620010b98185602086016200142f565b620010c481620015ac565b840191505092915050565b6000620010de6032836200131c565b9150620010eb82620015bd565b604082019050919050565b600062001105601c836200131c565b915062001112826200160c565b602082019050919050565b60006200112c602a836200131c565b9150620011398262001635565b604082019050919050565b6000620011536020836200131c565b9150620011608262001684565b602082019050919050565b60006200117a6020836200131c565b91506200118782620016ad565b602082019050919050565b6200119d8162001425565b82525050565b6000608082019050620011ba60008301876200107d565b620011c960208301866200107d565b620011d8604083018562001192565b8181036060830152620011ec81846200108e565b905095945050505050565b600060208201905081810360008301526200121281620010cf565b9050919050565b600060208201905081810360008301526200123481620010f6565b9050919050565b6000602082019050818103600083015262001256816200111d565b9050919050565b60006020820190508181036000830152620012788162001144565b9050919050565b600060208201905081810360008301526200129a816200116b565b9050919050565b6000620012ad620012c0565b9050620012bb82826200149b565b919050565b6000604051905090565b600067ffffffffffffffff821115620012e857620012e76200157d565b5b620012f382620015ac565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200133a8262001425565b9150620013478362001425565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200137f576200137e6200151f565b5b828201905092915050565b6000620013978262001425565b9150620013a48362001425565b925082821015620013ba57620013b96200151f565b5b828203905092915050565b6000620013d28262001405565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200144f57808201518184015260208101905062001432565b838111156200145f576000848401525b50505050565b600060028204905060018216806200147e57607f821691505b602082108114156200149557620014946200154e565b5b50919050565b620014a682620015ac565b810181811067ffffffffffffffff82111715620014c857620014c76200157d565b5b80604052505050565b6000620014de8262001425565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200151457620015136200151f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620016e181620013c5565b8114620016ed57600080fd5b50565b620016fb81620013d9565b81146200170757600080fd5b50565b6156f3806200171a6000396000f3fe6080604052600436106102e45760003560e01c806370a0823111610190578063b499e6c6116100dc578063d756985b11610095578063e985e9c51161006f578063e985e9c514610ae9578063eb54f9ec14610b26578063f2c4ce1e14610b51578063f2fde38b14610b7a576102e4565b8063d756985b14610a6a578063df90c98d14610a95578063e7e4346514610ac0576102e4565b8063b499e6c61461096c578063b88d4fde14610997578063bd7f2bce146109c0578063c6682862146109d7578063c87b56dd14610a02578063d5abeb0114610a3f576102e4565b80639196eba511610149578063964dd24011610123578063964dd240146108d1578063a04a6ac8146108fc578063a0712d6814610927578063a22cb46514610943576102e4565b80639196eba5146108505780639257e0441461087b57806395d89b41146108a6576102e4565b806370a0823114610756578063715018a6146107935780637696e088146107aa578063775b9c13146107d3578063847efea1146107fc5780638da5cb5b14610825576102e4565b8063385df6491161024f5780634698a3d81161020857806351830227116101e25780635183022714610698578063570ca735146106c35780635c975abb146106ee5780636352211e14610719576102e4565b80634698a3d8146106055780634bd25c6f146106305780634f6ccce71461065b576102e4565b8063385df6491461052f578063397cfcbe146105465780633b84d9c6146105715780633ccfd60b1461058857806342842e0e1461059f578063438b6300146105c8576102e4565b806318160ddd116102a157806318160ddd1461040d578063213506b31461043857806323b872dd146104615780632f745c591461048a578063372c12b1146104c75780633811056314610504576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063081c8c441461038e578063095ea7b3146103b957806313faede6146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613e8b565b610ba3565b60405161031d91906146c9565b60405180910390f35b34801561033257600080fd5b5061033b610c1d565b60405161034891906146e4565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613f1e565b610caf565b6040516103859190614640565b60405180910390f35b34801561039a57600080fd5b506103a3610d34565b6040516103b091906146e4565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613d8b565b610dc2565b005b3480156103ee57600080fd5b506103f7610eda565b6040516104049190614aa6565b60405180910390f35b34801561041957600080fd5b50610422610ee0565b60405161042f9190614aa6565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613f47565b610eed565b005b34801561046d57600080fd5b5061048860048036038101906104839190613c85565b610f7b565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613d8b565b610fdb565b6040516104be9190614aa6565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613c20565b611080565b6040516104fb91906146c9565b60405180910390f35b34801561051057600080fd5b506105196110a0565b6040516105269190614aa6565b60405180910390f35b34801561053b57600080fd5b506105446110a6565b005b34801561055257600080fd5b5061055b611169565b6040516105689190614640565b60405180910390f35b34801561057d57600080fd5b5061058661118f565b005b34801561059457600080fd5b5061059d611237565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613c85565b611497565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613c20565b6114b7565b6040516105fc91906146a7565b60405180910390f35b34801561061157600080fd5b5061061a6115b1565b6040516106279190614aa6565b60405180910390f35b34801561063c57600080fd5b506106456115b7565b6040516106529190614aa6565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613f1e565b61165a565b60405161068f9190614aa6565b60405180910390f35b3480156106a457600080fd5b506106ad6116f1565b6040516106ba91906146c9565b60405180910390f35b3480156106cf57600080fd5b506106d8611704565b6040516106e59190614640565b60405180910390f35b3480156106fa57600080fd5b5061070361172a565b60405161071091906146c9565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613f1e565b61173d565b60405161074d9190614640565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613c20565b6117ef565b60405161078a9190614aa6565b60405180910390f35b34801561079f57600080fd5b506107a86118a7565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190613f47565b61192f565b005b3480156107df57600080fd5b506107fa60048036038101906107f59190613dc7565b6119bd565b005b34801561080857600080fd5b50610823600480360381019061081e9190613e0c565b611b04565b005b34801561083157600080fd5b5061083a611bcd565b6040516108479190614640565b60405180910390f35b34801561085c57600080fd5b50610865611bf7565b6040516108729190614aa6565b60405180910390f35b34801561088757600080fd5b50610890611bfd565b60405161089d9190614aa6565b60405180910390f35b3480156108b257600080fd5b506108bb611c03565b6040516108c891906146e4565b60405180910390f35b3480156108dd57600080fd5b506108e6611c95565b6040516108f39190614aa6565b60405180910390f35b34801561090857600080fd5b50610911611c9b565b60405161091e9190614aa6565b60405180910390f35b610941600480360381019061093c9190613f1e565b611ca1565b005b34801561094f57600080fd5b5061096a60048036038101906109659190613d4f565b611dff565b005b34801561097857600080fd5b50610981611e15565b60405161098e91906146c9565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190613cd4565b611e28565b005b3480156109cc57600080fd5b506109d5611e8a565b005b3480156109e357600080fd5b506109ec611f4d565b6040516109f991906146e4565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190613f1e565b611fdb565b604051610a3691906146e4565b60405180910390f35b348015610a4b57600080fd5b50610a54612134565b604051610a619190614aa6565b60405180910390f35b348015610a7657600080fd5b50610a7f61213a565b604051610a8c9190614aa6565b60405180910390f35b348015610aa157600080fd5b50610aaa612140565b604051610ab79190614aa6565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190613f83565b612146565b005b348015610af557600080fd5b50610b106004803603810190610b0b9190613c49565b61222a565b604051610b1d91906146c9565b60405180910390f35b348015610b3257600080fd5b50610b3b6122be565b604051610b489190614aa6565b60405180910390f35b348015610b5d57600080fd5b50610b786004803603810190610b739190613edd565b6122c4565b005b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613c20565b61235a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c165750610c158261247a565b5b9050919050565b606060008054610c2c90614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5890614daf565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b5050505050905090565b6000610cba8261255c565b610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090614946565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610d4190614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6d90614daf565b8015610dba5780601f10610d8f57610100808354040283529160200191610dba565b820191906000526020600020905b815481529060010190602001808311610d9d57829003601f168201915b505050505081565b6000610dcd8261173d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590614a06565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5d6125c8565b73ffffffffffffffffffffffffffffffffffffffff161480610e8c5750610e8b81610e866125c8565b61222a565b5b610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906148c6565b60405180910390fd5b610ed583836125d0565b505050565b600f5481565b6000600880549050905090565b610ef56125c8565b73ffffffffffffffffffffffffffffffffffffffff16610f13611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090614986565b60405180910390fd5b8160198190555080601a819055505050565b610f8c610f866125c8565b82612689565b610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290614a46565b60405180910390fd5b610fd6838383612767565b505050565b6000610fe6836117ef565b8210611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90614746565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b60195481565b6110ae6125c8565b73ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490614a26565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111976125c8565b73ffffffffffffffffffffffffffffffffffffffff166111b5611bcd565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614986565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b61123f6125c8565b73ffffffffffffffffffffffffffffffffffffffff1661125d611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614986565b60405180910390fd5b600047905060006112e160646112d3600f856129ce90919063ffffffff16565b6129e490919063ffffffff16565b90506000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161132b9061462b565b60006040518083038185875af1925050503d8060008114611368576040519150601f19603f3d011682016040523d82523d6000602084013e61136d565b606091505b50509050806113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890614a86565b60405180910390fd5b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113ff84866129fa90919063ffffffff16565b60405161140b9061462b565b60006040518083038185875af1925050503d8060008114611448576040519150601f19603f3d011682016040523d82523d6000602084013e61144d565b606091505b5050905080611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906148a6565b60405180910390fd5b50505050565b6114b283838360405180602001604052806000815250611e28565b505050565b606060006114c4836117ef565b905060008167ffffffffffffffff811115611508577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115365781602001602082028036833780820191505090505b50905060005b828110156115a65761154e8582610fdb565b828281518110611587577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061159e90614e12565b91505061153c565b508092505050919050565b60165481565b6000601260029054906101000a900460ff166115d65760009050611657565b6013544210156115ea576017549050611657565b6000601454601354426115fd9190614cc5565b6116079190614c3a565b90506015548111156116195760155490505b601654816116279190614c6b565b6017541161163757601854611653565b601654816116459190614c6b565b6017546116529190614cc5565b5b9150505b90565b6000611664610ee0565b82106116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90614a66565b60405180910390fd5b600882815481106116df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90614906565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611857906148e6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118af6125c8565b73ffffffffffffffffffffffffffffffffffffffff166118cd611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90614986565b60405180910390fd5b61192d6000612a10565b565b6119376125c8565b73ffffffffffffffffffffffffffffffffffffffff16611955611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290614986565b60405180910390fd5b81600f81905550806010819055505050565b6119c56125c8565b73ffffffffffffffffffffffffffffffffffffffff166119e3611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614986565b60405180910390fd5b60005b82829050811015611aff57600160116000858585818110611a86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a9b9190613c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611af790614e12565b915050611a3c565b505050565b611b0c6125c8565b73ffffffffffffffffffffffffffffffffffffffff16611b2a611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614986565b60405180910390fd5b82601260016101000a81548160ff02191690831515021790555081600b9080519060200190611bb09291906139fa565b5080600c9080519060200190611bc79291906139fa565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b60105481565b606060018054611c1290614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3e90614daf565b8015611c8b5780601f10611c6057610100808354040283529160200191611c8b565b820191906000526020600020905b815481529060010190602001808311611c6e57829003601f168201915b5050505050905090565b60155481565b60185481565b601260009054906101000a900460ff1615611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906149c6565b60405180910390fd5b60008111611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614846565b60405180910390fd5b6000611d3e610ee0565b9050600e548282611d4f9190614be4565b1115611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614966565b60405180910390fd5b601260029054906101000a900460ff1615611db357611dae82612ad6565b611dbd565b611dbc82612b73565b5b6000600190505b828111611dfa57611de7611dd66125c8565b8284611de29190614be4565b612d0d565b8080611df290614e12565b915050611dc4565b505050565b611e11611e0a6125c8565b8383612d2b565b5050565b601260029054906101000a900460ff1681565b611e39611e336125c8565b83612689565b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614a46565b60405180910390fd5b611e8484848484612e98565b50505050565b611e926125c8565b73ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614a26565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b600c8054611f5a90614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8690614daf565b8015611fd35780601f10611fa857610100808354040283529160200191611fd3565b820191906000526020600020905b815481529060010190602001808311611fb657829003601f168201915b505050505081565b6060611fe68261255c565b612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906149a6565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156120d357600d805461204e90614daf565b80601f016020809104026020016040519081016040528092919081815260200182805461207a90614daf565b80156120c75780601f1061209c576101008083540402835291602001916120c7565b820191906000526020600020905b8154815290600101906020018083116120aa57829003601f168201915b5050505050905061212f565b60006120dd612ef4565b905060008151116120fd576040518060200160405280600081525061212b565b8061210784612f86565b600c60405160200161211b939291906145fa565b6040516020818303038152906040525b9150505b919050565b600e5481565b60175481565b601a5481565b61214e6125c8565b73ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614a26565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550856013819055508460148190555083601581905550826016819055508160178190555080601881905550505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60135481565b6122cc6125c8565b73ffffffffffffffffffffffffffffffffffffffff166122ea611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614986565b60405180910390fd5b80600d90805190602001906123569291906139fa565b5050565b6123626125c8565b73ffffffffffffffffffffffffffffffffffffffff16612380611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90614786565b60405180910390fd5b61244f81612a10565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061254557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612555575061255482613133565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126438361173d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126948261255c565b6126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614886565b60405180910390fd5b60006126de8361173d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274d57508373ffffffffffffffffffffffffffffffffffffffff1661273584610caf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061275e575061275d818561222a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127878261173d565b73ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d4906147a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490614806565b60405180910390fd5b61285883838361319d565b6128636000826125d0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b39190614cc5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290a9190614be4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c98383836132b1565b505050565b600081836129dc9190614c6b565b905092915050565b600081836129f29190614c3a565b905092915050565b60008183612a089190614cc5565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601354421015612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906149e6565b60405180910390fd5b34612b246115b7565b82612b2f9190614c6b565b1115612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790614726565b60405180910390fd5b50565b601954421015612bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baf90614706565b60405180910390fd5b6019544210158015612bcc5750601a544211155b15612cb95780601054612bdf9190614c6b565b341015612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614866565b60405180910390fd5b60116000612c2d6125c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab906147e6565b60405180910390fd5b612d0a565b80600f54612cc79190614c6b565b341015612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090614866565b60405180910390fd5b5b50565b612d278282604051806020016040528060008152506132b6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9190614826565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e8b91906146c9565b60405180910390a3505050565b612ea3848484612767565b612eaf84848484613311565b612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614766565b60405180910390fd5b50505050565b6060600b8054612f0390614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2f90614daf565b8015612f7c5780601f10612f5157610100808354040283529160200191612f7c565b820191906000526020600020905b815481529060010190602001808311612f5f57829003601f168201915b5050505050905090565b60606000821415612fce576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061312e565b600082905060005b60008214613000578080612fe990614e12565b915050600a82612ff99190614c3a565b9150612fd6565b60008167ffffffffffffffff811115613042577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130745781602001600182028036833780820191505090505b5090505b600085146131275760018261308d9190614cc5565b9150600a8561309c9190614e5b565b60306130a89190614be4565b60f81b8183815181106130e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131209190614c3a565b9450613078565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131a8838383612475565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131eb576131e6816134a8565b61322a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132295761322883826134f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326d576132688161365e565b6132ac565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132ab576132aa82826137a1565b5b5b505050565b505050565b6132c08383613820565b6132cd6000848484613311565b61330c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330390614766565b60405180910390fd5b505050565b60006133328473ffffffffffffffffffffffffffffffffffffffff16612452565b1561349b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261335b6125c8565b8786866040518563ffffffff1660e01b815260040161337d949392919061465b565b602060405180830381600087803b15801561339757600080fd5b505af19250505080156133c857506040513d601f19601f820116820180604052508101906133c59190613eb4565b60015b61344b573d80600081146133f8576040519150601f19603f3d011682016040523d82523d6000602084013e6133fd565b606091505b50600081511415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a90614766565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134a0565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134fe846117ef565b6135089190614cc5565b90506000600760008481526020019081526020016000205490508181146135ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136729190614cc5565b90506000600960008481526020019081526020016000205490506000600883815481106136c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613710577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613785577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137ac836117ef565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388790614926565b60405180910390fd5b6138998161255c565b156138d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d0906147c6565b60405180910390fd5b6138e56000838361319d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139359190614be4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139f6600083836132b1565b5050565b828054613a0690614daf565b90600052602060002090601f016020900481019282613a285760008555613a6f565b82601f10613a4157805160ff1916838001178555613a6f565b82800160010185558215613a6f579182015b82811115613a6e578251825591602001919060010190613a53565b5b509050613a7c9190613a80565b5090565b5b80821115613a99576000816000905550600101613a81565b5090565b6000613ab0613aab84614ae6565b614ac1565b905082815260208101848484011115613ac857600080fd5b613ad3848285614d6d565b509392505050565b6000613aee613ae984614b17565b614ac1565b905082815260208101848484011115613b0657600080fd5b613b11848285614d6d565b509392505050565b600081359050613b2881615661565b92915050565b60008083601f840112613b4057600080fd5b8235905067ffffffffffffffff811115613b5957600080fd5b602083019150836020820283011115613b7157600080fd5b9250929050565b600081359050613b8781615678565b92915050565b600081359050613b9c8161568f565b92915050565b600081519050613bb18161568f565b92915050565b600082601f830112613bc857600080fd5b8135613bd8848260208601613a9d565b91505092915050565b600082601f830112613bf257600080fd5b8135613c02848260208601613adb565b91505092915050565b600081359050613c1a816156a6565b92915050565b600060208284031215613c3257600080fd5b6000613c4084828501613b19565b91505092915050565b60008060408385031215613c5c57600080fd5b6000613c6a85828601613b19565b9250506020613c7b85828601613b19565b9150509250929050565b600080600060608486031215613c9a57600080fd5b6000613ca886828701613b19565b9350506020613cb986828701613b19565b9250506040613cca86828701613c0b565b9150509250925092565b60008060008060808587031215613cea57600080fd5b6000613cf887828801613b19565b9450506020613d0987828801613b19565b9350506040613d1a87828801613c0b565b925050606085013567ffffffffffffffff811115613d3757600080fd5b613d4387828801613bb7565b91505092959194509250565b60008060408385031215613d6257600080fd5b6000613d7085828601613b19565b9250506020613d8185828601613b78565b9150509250929050565b60008060408385031215613d9e57600080fd5b6000613dac85828601613b19565b9250506020613dbd85828601613c0b565b9150509250929050565b60008060208385031215613dda57600080fd5b600083013567ffffffffffffffff811115613df457600080fd5b613e0085828601613b2e565b92509250509250929050565b600080600060608486031215613e2157600080fd5b6000613e2f86828701613b78565b935050602084013567ffffffffffffffff811115613e4c57600080fd5b613e5886828701613be1565b925050604084013567ffffffffffffffff811115613e7557600080fd5b613e8186828701613be1565b9150509250925092565b600060208284031215613e9d57600080fd5b6000613eab84828501613b8d565b91505092915050565b600060208284031215613ec657600080fd5b6000613ed484828501613ba2565b91505092915050565b600060208284031215613eef57600080fd5b600082013567ffffffffffffffff811115613f0957600080fd5b613f1584828501613be1565b91505092915050565b600060208284031215613f3057600080fd5b6000613f3e84828501613c0b565b91505092915050565b60008060408385031215613f5a57600080fd5b6000613f6885828601613c0b565b9250506020613f7985828601613c0b565b9150509250929050565b60008060008060008060c08789031215613f9c57600080fd5b6000613faa89828a01613c0b565b9650506020613fbb89828a01613c0b565b9550506040613fcc89828a01613c0b565b9450506060613fdd89828a01613c0b565b9350506080613fee89828a01613c0b565b92505060a0613fff89828a01613c0b565b9150509295509295509295565b600061401883836145dc565b60208301905092915050565b61402d81614cf9565b82525050565b600061403e82614b6d565b6140488185614b9b565b935061405383614b48565b8060005b8381101561408457815161406b888261400c565b975061407683614b8e565b925050600181019050614057565b5085935050505092915050565b61409a81614d0b565b82525050565b60006140ab82614b78565b6140b58185614bac565b93506140c5818560208601614d7c565b6140ce81614f48565b840191505092915050565b60006140e482614b83565b6140ee8185614bc8565b93506140fe818560208601614d7c565b61410781614f48565b840191505092915050565b600061411d82614b83565b6141278185614bd9565b9350614137818560208601614d7c565b80840191505092915050565b6000815461415081614daf565b61415a8186614bd9565b945060018216600081146141755760018114614186576141b9565b60ff198316865281860193506141b9565b61418f85614b58565b60005b838110156141b157815481890152600182019150602081019050614192565b838801955050505b50505092915050565b60006141cf601783614bc8565b91506141da82614f59565b602082019050919050565b60006141f2601a83614bc8565b91506141fd82614f82565b602082019050919050565b6000614215602b83614bc8565b915061422082614fab565b604082019050919050565b6000614238603283614bc8565b915061424382614ffa565b604082019050919050565b600061425b602683614bc8565b915061426682615049565b604082019050919050565b600061427e602583614bc8565b915061428982615098565b604082019050919050565b60006142a1601c83614bc8565b91506142ac826150e7565b602082019050919050565b60006142c4602183614bc8565b91506142cf82615110565b604082019050919050565b60006142e7602483614bc8565b91506142f28261515f565b604082019050919050565b600061430a601983614bc8565b9150614315826151ae565b602082019050919050565b600061432d601583614bc8565b9150614338826151d7565b602082019050919050565b6000614350601983614bc8565b915061435b82615200565b602082019050919050565b6000614373602c83614bc8565b915061437e82615229565b604082019050919050565b6000614396602183614bc8565b91506143a182615278565b604082019050919050565b60006143b9603883614bc8565b91506143c4826152c7565b604082019050919050565b60006143dc602a83614bc8565b91506143e782615316565b604082019050919050565b60006143ff602983614bc8565b915061440a82615365565b604082019050919050565b6000614422602083614bc8565b915061442d826153b4565b602082019050919050565b6000614445602c83614bc8565b9150614450826153dd565b604082019050919050565b6000614468601783614bc8565b91506144738261542c565b602082019050919050565b600061448b602083614bc8565b915061449682615455565b602082019050919050565b60006144ae602f83614bc8565b91506144b98261547e565b604082019050919050565b60006144d1601f83614bc8565b91506144dc826154cd565b602082019050919050565b60006144f4601683614bc8565b91506144ff826154f6565b602082019050919050565b6000614517602183614bc8565b91506145228261551f565b604082019050919050565b600061453a601e83614bc8565b91506145458261556e565b602082019050919050565b600061455d600083614bbd565b915061456882615597565b600082019050919050565b6000614580603183614bc8565b915061458b8261559a565b604082019050919050565b60006145a3602c83614bc8565b91506145ae826155e9565b604082019050919050565b60006145c6602083614bc8565b91506145d182615638565b602082019050919050565b6145e581614d63565b82525050565b6145f481614d63565b82525050565b60006146068286614112565b91506146128285614112565b915061461e8284614143565b9150819050949350505050565b600061463682614550565b9150819050919050565b60006020820190506146556000830184614024565b92915050565b60006080820190506146706000830187614024565b61467d6020830186614024565b61468a60408301856145eb565b818103606083015261469c81846140a0565b905095945050505050565b600060208201905081810360008301526146c18184614033565b905092915050565b60006020820190506146de6000830184614091565b92915050565b600060208201905081810360008301526146fe81846140d9565b905092915050565b6000602082019050818103600083015261471f816141c2565b9050919050565b6000602082019050818103600083015261473f816141e5565b9050919050565b6000602082019050818103600083015261475f81614208565b9050919050565b6000602082019050818103600083015261477f8161422b565b9050919050565b6000602082019050818103600083015261479f8161424e565b9050919050565b600060208201905081810360008301526147bf81614271565b9050919050565b600060208201905081810360008301526147df81614294565b9050919050565b600060208201905081810360008301526147ff816142b7565b9050919050565b6000602082019050818103600083015261481f816142da565b9050919050565b6000602082019050818103600083015261483f816142fd565b9050919050565b6000602082019050818103600083015261485f81614320565b9050919050565b6000602082019050818103600083015261487f81614343565b9050919050565b6000602082019050818103600083015261489f81614366565b9050919050565b600060208201905081810360008301526148bf81614389565b9050919050565b600060208201905081810360008301526148df816143ac565b9050919050565b600060208201905081810360008301526148ff816143cf565b9050919050565b6000602082019050818103600083015261491f816143f2565b9050919050565b6000602082019050818103600083015261493f81614415565b9050919050565b6000602082019050818103600083015261495f81614438565b9050919050565b6000602082019050818103600083015261497f8161445b565b9050919050565b6000602082019050818103600083015261499f8161447e565b9050919050565b600060208201905081810360008301526149bf816144a1565b9050919050565b600060208201905081810360008301526149df816144c4565b9050919050565b600060208201905081810360008301526149ff816144e7565b9050919050565b60006020820190508181036000830152614a1f8161450a565b9050919050565b60006020820190508181036000830152614a3f8161452d565b9050919050565b60006020820190508181036000830152614a5f81614573565b9050919050565b60006020820190508181036000830152614a7f81614596565b9050919050565b60006020820190508181036000830152614a9f816145b9565b9050919050565b6000602082019050614abb60008301846145eb565b92915050565b6000614acb614adc565b9050614ad78282614de1565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0157614b00614f19565b5b614b0a82614f48565b9050602081019050919050565b600067ffffffffffffffff821115614b3257614b31614f19565b5b614b3b82614f48565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bef82614d63565b9150614bfa83614d63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2f57614c2e614e8c565b5b828201905092915050565b6000614c4582614d63565b9150614c5083614d63565b925082614c6057614c5f614ebb565b5b828204905092915050565b6000614c7682614d63565b9150614c8183614d63565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cba57614cb9614e8c565b5b828202905092915050565b6000614cd082614d63565b9150614cdb83614d63565b925082821015614cee57614ced614e8c565b5b828203905092915050565b6000614d0482614d43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d9a578082015181840152602081019050614d7f565b83811115614da9576000848401525b50505050565b60006002820490506001821680614dc757607f821691505b60208210811415614ddb57614dda614eea565b5b50919050565b614dea82614f48565b810181811067ffffffffffffffff82111715614e0957614e08614f19565b5b80604052505050565b6000614e1d82614d63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e5057614e4f614e8c565b5b600182019050919050565b6000614e6682614d63565b9150614e7183614d63565b925082614e8157614e80614ebb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43544c3a204e6f742073746172742073656c6c20796574000000000000000000600082015250565b7f43544c3a204e6f7420656e6f7567682065746865722073656e74000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43544c3a20596f7520617265206e6f7420696e207468652077686974654c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43544c3a207174792073686f756c642067746520300000000000000000000000600082015250565b7f43544c3a20496e73756666696369656e742062616c616e636500000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4242433a204661696c20746f20776974686472617720746f206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43544c3a2041636869657665206d617820737570706c79000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43544c3a204d696e74696e672069732074656d706f7261727920636c6f736500600082015250565b7f43544c3a2041756374696f6e206e6f7420737461727400000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43544c3a2063616c6c6572206973206e6f7420746865206465765465616d0000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4242433a204661696c20746f20776974686472617720746f206465767465616d600082015250565b61566a81614cf9565b811461567557600080fd5b50565b61568181614d0b565b811461568c57600080fd5b50565b61569881614d17565b81146156a357600080fd5b50565b6156af81614d63565b81146156ba57600080fd5b5056fea2646970667358221220c04f324095a0db04c3cde1601c9774a7413d6a32a05484426f06b76ca108ec0c64736f6c634300080100330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000897d7bc787cd4ae5bfa31fc2fd9fc7d003dc7b9f000000000000000000000000a699ba2cfd4a5d3309c707105371ca9eef2a79e0000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6170692e636f6f6c7461696c2e6e65742f626c696e64626f7800000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c806370a0823111610190578063b499e6c6116100dc578063d756985b11610095578063e985e9c51161006f578063e985e9c514610ae9578063eb54f9ec14610b26578063f2c4ce1e14610b51578063f2fde38b14610b7a576102e4565b8063d756985b14610a6a578063df90c98d14610a95578063e7e4346514610ac0576102e4565b8063b499e6c61461096c578063b88d4fde14610997578063bd7f2bce146109c0578063c6682862146109d7578063c87b56dd14610a02578063d5abeb0114610a3f576102e4565b80639196eba511610149578063964dd24011610123578063964dd240146108d1578063a04a6ac8146108fc578063a0712d6814610927578063a22cb46514610943576102e4565b80639196eba5146108505780639257e0441461087b57806395d89b41146108a6576102e4565b806370a0823114610756578063715018a6146107935780637696e088146107aa578063775b9c13146107d3578063847efea1146107fc5780638da5cb5b14610825576102e4565b8063385df6491161024f5780634698a3d81161020857806351830227116101e25780635183022714610698578063570ca735146106c35780635c975abb146106ee5780636352211e14610719576102e4565b80634698a3d8146106055780634bd25c6f146106305780634f6ccce71461065b576102e4565b8063385df6491461052f578063397cfcbe146105465780633b84d9c6146105715780633ccfd60b1461058857806342842e0e1461059f578063438b6300146105c8576102e4565b806318160ddd116102a157806318160ddd1461040d578063213506b31461043857806323b872dd146104615780632f745c591461048a578063372c12b1146104c75780633811056314610504576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063081c8c441461038e578063095ea7b3146103b957806313faede6146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613e8b565b610ba3565b60405161031d91906146c9565b60405180910390f35b34801561033257600080fd5b5061033b610c1d565b60405161034891906146e4565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613f1e565b610caf565b6040516103859190614640565b60405180910390f35b34801561039a57600080fd5b506103a3610d34565b6040516103b091906146e4565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613d8b565b610dc2565b005b3480156103ee57600080fd5b506103f7610eda565b6040516104049190614aa6565b60405180910390f35b34801561041957600080fd5b50610422610ee0565b60405161042f9190614aa6565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613f47565b610eed565b005b34801561046d57600080fd5b5061048860048036038101906104839190613c85565b610f7b565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613d8b565b610fdb565b6040516104be9190614aa6565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613c20565b611080565b6040516104fb91906146c9565b60405180910390f35b34801561051057600080fd5b506105196110a0565b6040516105269190614aa6565b60405180910390f35b34801561053b57600080fd5b506105446110a6565b005b34801561055257600080fd5b5061055b611169565b6040516105689190614640565b60405180910390f35b34801561057d57600080fd5b5061058661118f565b005b34801561059457600080fd5b5061059d611237565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613c85565b611497565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613c20565b6114b7565b6040516105fc91906146a7565b60405180910390f35b34801561061157600080fd5b5061061a6115b1565b6040516106279190614aa6565b60405180910390f35b34801561063c57600080fd5b506106456115b7565b6040516106529190614aa6565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613f1e565b61165a565b60405161068f9190614aa6565b60405180910390f35b3480156106a457600080fd5b506106ad6116f1565b6040516106ba91906146c9565b60405180910390f35b3480156106cf57600080fd5b506106d8611704565b6040516106e59190614640565b60405180910390f35b3480156106fa57600080fd5b5061070361172a565b60405161071091906146c9565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613f1e565b61173d565b60405161074d9190614640565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613c20565b6117ef565b60405161078a9190614aa6565b60405180910390f35b34801561079f57600080fd5b506107a86118a7565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190613f47565b61192f565b005b3480156107df57600080fd5b506107fa60048036038101906107f59190613dc7565b6119bd565b005b34801561080857600080fd5b50610823600480360381019061081e9190613e0c565b611b04565b005b34801561083157600080fd5b5061083a611bcd565b6040516108479190614640565b60405180910390f35b34801561085c57600080fd5b50610865611bf7565b6040516108729190614aa6565b60405180910390f35b34801561088757600080fd5b50610890611bfd565b60405161089d9190614aa6565b60405180910390f35b3480156108b257600080fd5b506108bb611c03565b6040516108c891906146e4565b60405180910390f35b3480156108dd57600080fd5b506108e6611c95565b6040516108f39190614aa6565b60405180910390f35b34801561090857600080fd5b50610911611c9b565b60405161091e9190614aa6565b60405180910390f35b610941600480360381019061093c9190613f1e565b611ca1565b005b34801561094f57600080fd5b5061096a60048036038101906109659190613d4f565b611dff565b005b34801561097857600080fd5b50610981611e15565b60405161098e91906146c9565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190613cd4565b611e28565b005b3480156109cc57600080fd5b506109d5611e8a565b005b3480156109e357600080fd5b506109ec611f4d565b6040516109f991906146e4565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190613f1e565b611fdb565b604051610a3691906146e4565b60405180910390f35b348015610a4b57600080fd5b50610a54612134565b604051610a619190614aa6565b60405180910390f35b348015610a7657600080fd5b50610a7f61213a565b604051610a8c9190614aa6565b60405180910390f35b348015610aa157600080fd5b50610aaa612140565b604051610ab79190614aa6565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190613f83565b612146565b005b348015610af557600080fd5b50610b106004803603810190610b0b9190613c49565b61222a565b604051610b1d91906146c9565b60405180910390f35b348015610b3257600080fd5b50610b3b6122be565b604051610b489190614aa6565b60405180910390f35b348015610b5d57600080fd5b50610b786004803603810190610b739190613edd565b6122c4565b005b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613c20565b61235a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c165750610c158261247a565b5b9050919050565b606060008054610c2c90614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5890614daf565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b5050505050905090565b6000610cba8261255c565b610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090614946565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610d4190614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6d90614daf565b8015610dba5780601f10610d8f57610100808354040283529160200191610dba565b820191906000526020600020905b815481529060010190602001808311610d9d57829003601f168201915b505050505081565b6000610dcd8261173d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590614a06565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5d6125c8565b73ffffffffffffffffffffffffffffffffffffffff161480610e8c5750610e8b81610e866125c8565b61222a565b5b610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906148c6565b60405180910390fd5b610ed583836125d0565b505050565b600f5481565b6000600880549050905090565b610ef56125c8565b73ffffffffffffffffffffffffffffffffffffffff16610f13611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090614986565b60405180910390fd5b8160198190555080601a819055505050565b610f8c610f866125c8565b82612689565b610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290614a46565b60405180910390fd5b610fd6838383612767565b505050565b6000610fe6836117ef565b8210611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90614746565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b60195481565b6110ae6125c8565b73ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490614a26565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111976125c8565b73ffffffffffffffffffffffffffffffffffffffff166111b5611bcd565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614986565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b61123f6125c8565b73ffffffffffffffffffffffffffffffffffffffff1661125d611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614986565b60405180910390fd5b600047905060006112e160646112d3600f856129ce90919063ffffffff16565b6129e490919063ffffffff16565b90506000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161132b9061462b565b60006040518083038185875af1925050503d8060008114611368576040519150601f19603f3d011682016040523d82523d6000602084013e61136d565b606091505b50509050806113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890614a86565b60405180910390fd5b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113ff84866129fa90919063ffffffff16565b60405161140b9061462b565b60006040518083038185875af1925050503d8060008114611448576040519150601f19603f3d011682016040523d82523d6000602084013e61144d565b606091505b5050905080611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906148a6565b60405180910390fd5b50505050565b6114b283838360405180602001604052806000815250611e28565b505050565b606060006114c4836117ef565b905060008167ffffffffffffffff811115611508577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115365781602001602082028036833780820191505090505b50905060005b828110156115a65761154e8582610fdb565b828281518110611587577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061159e90614e12565b91505061153c565b508092505050919050565b60165481565b6000601260029054906101000a900460ff166115d65760009050611657565b6013544210156115ea576017549050611657565b6000601454601354426115fd9190614cc5565b6116079190614c3a565b90506015548111156116195760155490505b601654816116279190614c6b565b6017541161163757601854611653565b601654816116459190614c6b565b6017546116529190614cc5565b5b9150505b90565b6000611664610ee0565b82106116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90614a66565b60405180910390fd5b600882815481106116df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90614906565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611857906148e6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118af6125c8565b73ffffffffffffffffffffffffffffffffffffffff166118cd611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90614986565b60405180910390fd5b61192d6000612a10565b565b6119376125c8565b73ffffffffffffffffffffffffffffffffffffffff16611955611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290614986565b60405180910390fd5b81600f81905550806010819055505050565b6119c56125c8565b73ffffffffffffffffffffffffffffffffffffffff166119e3611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614986565b60405180910390fd5b60005b82829050811015611aff57600160116000858585818110611a86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a9b9190613c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611af790614e12565b915050611a3c565b505050565b611b0c6125c8565b73ffffffffffffffffffffffffffffffffffffffff16611b2a611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614986565b60405180910390fd5b82601260016101000a81548160ff02191690831515021790555081600b9080519060200190611bb09291906139fa565b5080600c9080519060200190611bc79291906139fa565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b60105481565b606060018054611c1290614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3e90614daf565b8015611c8b5780601f10611c6057610100808354040283529160200191611c8b565b820191906000526020600020905b815481529060010190602001808311611c6e57829003601f168201915b5050505050905090565b60155481565b60185481565b601260009054906101000a900460ff1615611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906149c6565b60405180910390fd5b60008111611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614846565b60405180910390fd5b6000611d3e610ee0565b9050600e548282611d4f9190614be4565b1115611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614966565b60405180910390fd5b601260029054906101000a900460ff1615611db357611dae82612ad6565b611dbd565b611dbc82612b73565b5b6000600190505b828111611dfa57611de7611dd66125c8565b8284611de29190614be4565b612d0d565b8080611df290614e12565b915050611dc4565b505050565b611e11611e0a6125c8565b8383612d2b565b5050565b601260029054906101000a900460ff1681565b611e39611e336125c8565b83612689565b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614a46565b60405180910390fd5b611e8484848484612e98565b50505050565b611e926125c8565b73ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614a26565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b600c8054611f5a90614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8690614daf565b8015611fd35780601f10611fa857610100808354040283529160200191611fd3565b820191906000526020600020905b815481529060010190602001808311611fb657829003601f168201915b505050505081565b6060611fe68261255c565b612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906149a6565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156120d357600d805461204e90614daf565b80601f016020809104026020016040519081016040528092919081815260200182805461207a90614daf565b80156120c75780601f1061209c576101008083540402835291602001916120c7565b820191906000526020600020905b8154815290600101906020018083116120aa57829003601f168201915b5050505050905061212f565b60006120dd612ef4565b905060008151116120fd576040518060200160405280600081525061212b565b8061210784612f86565b600c60405160200161211b939291906145fa565b6040516020818303038152906040525b9150505b919050565b600e5481565b60175481565b601a5481565b61214e6125c8565b73ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614a26565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550856013819055508460148190555083601581905550826016819055508160178190555080601881905550505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60135481565b6122cc6125c8565b73ffffffffffffffffffffffffffffffffffffffff166122ea611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614986565b60405180910390fd5b80600d90805190602001906123569291906139fa565b5050565b6123626125c8565b73ffffffffffffffffffffffffffffffffffffffff16612380611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90614786565b60405180910390fd5b61244f81612a10565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061254557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612555575061255482613133565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126438361173d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126948261255c565b6126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614886565b60405180910390fd5b60006126de8361173d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274d57508373ffffffffffffffffffffffffffffffffffffffff1661273584610caf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061275e575061275d818561222a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127878261173d565b73ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d4906147a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490614806565b60405180910390fd5b61285883838361319d565b6128636000826125d0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b39190614cc5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290a9190614be4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c98383836132b1565b505050565b600081836129dc9190614c6b565b905092915050565b600081836129f29190614c3a565b905092915050565b60008183612a089190614cc5565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601354421015612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906149e6565b60405180910390fd5b34612b246115b7565b82612b2f9190614c6b565b1115612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790614726565b60405180910390fd5b50565b601954421015612bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baf90614706565b60405180910390fd5b6019544210158015612bcc5750601a544211155b15612cb95780601054612bdf9190614c6b565b341015612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614866565b60405180910390fd5b60116000612c2d6125c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab906147e6565b60405180910390fd5b612d0a565b80600f54612cc79190614c6b565b341015612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090614866565b60405180910390fd5b5b50565b612d278282604051806020016040528060008152506132b6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9190614826565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e8b91906146c9565b60405180910390a3505050565b612ea3848484612767565b612eaf84848484613311565b612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614766565b60405180910390fd5b50505050565b6060600b8054612f0390614daf565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2f90614daf565b8015612f7c5780601f10612f5157610100808354040283529160200191612f7c565b820191906000526020600020905b815481529060010190602001808311612f5f57829003601f168201915b5050505050905090565b60606000821415612fce576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061312e565b600082905060005b60008214613000578080612fe990614e12565b915050600a82612ff99190614c3a565b9150612fd6565b60008167ffffffffffffffff811115613042577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130745781602001600182028036833780820191505090505b5090505b600085146131275760018261308d9190614cc5565b9150600a8561309c9190614e5b565b60306130a89190614be4565b60f81b8183815181106130e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131209190614c3a565b9450613078565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131a8838383612475565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131eb576131e6816134a8565b61322a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132295761322883826134f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326d576132688161365e565b6132ac565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132ab576132aa82826137a1565b5b5b505050565b505050565b6132c08383613820565b6132cd6000848484613311565b61330c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330390614766565b60405180910390fd5b505050565b60006133328473ffffffffffffffffffffffffffffffffffffffff16612452565b1561349b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261335b6125c8565b8786866040518563ffffffff1660e01b815260040161337d949392919061465b565b602060405180830381600087803b15801561339757600080fd5b505af19250505080156133c857506040513d601f19601f820116820180604052508101906133c59190613eb4565b60015b61344b573d80600081146133f8576040519150601f19603f3d011682016040523d82523d6000602084013e6133fd565b606091505b50600081511415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a90614766565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134a0565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134fe846117ef565b6135089190614cc5565b90506000600760008481526020019081526020016000205490508181146135ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136729190614cc5565b90506000600960008481526020019081526020016000205490506000600883815481106136c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613710577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613785577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137ac836117ef565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388790614926565b60405180910390fd5b6138998161255c565b156138d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d0906147c6565b60405180910390fd5b6138e56000838361319d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139359190614be4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139f6600083836132b1565b5050565b828054613a0690614daf565b90600052602060002090601f016020900481019282613a285760008555613a6f565b82601f10613a4157805160ff1916838001178555613a6f565b82800160010185558215613a6f579182015b82811115613a6e578251825591602001919060010190613a53565b5b509050613a7c9190613a80565b5090565b5b80821115613a99576000816000905550600101613a81565b5090565b6000613ab0613aab84614ae6565b614ac1565b905082815260208101848484011115613ac857600080fd5b613ad3848285614d6d565b509392505050565b6000613aee613ae984614b17565b614ac1565b905082815260208101848484011115613b0657600080fd5b613b11848285614d6d565b509392505050565b600081359050613b2881615661565b92915050565b60008083601f840112613b4057600080fd5b8235905067ffffffffffffffff811115613b5957600080fd5b602083019150836020820283011115613b7157600080fd5b9250929050565b600081359050613b8781615678565b92915050565b600081359050613b9c8161568f565b92915050565b600081519050613bb18161568f565b92915050565b600082601f830112613bc857600080fd5b8135613bd8848260208601613a9d565b91505092915050565b600082601f830112613bf257600080fd5b8135613c02848260208601613adb565b91505092915050565b600081359050613c1a816156a6565b92915050565b600060208284031215613c3257600080fd5b6000613c4084828501613b19565b91505092915050565b60008060408385031215613c5c57600080fd5b6000613c6a85828601613b19565b9250506020613c7b85828601613b19565b9150509250929050565b600080600060608486031215613c9a57600080fd5b6000613ca886828701613b19565b9350506020613cb986828701613b19565b9250506040613cca86828701613c0b565b9150509250925092565b60008060008060808587031215613cea57600080fd5b6000613cf887828801613b19565b9450506020613d0987828801613b19565b9350506040613d1a87828801613c0b565b925050606085013567ffffffffffffffff811115613d3757600080fd5b613d4387828801613bb7565b91505092959194509250565b60008060408385031215613d6257600080fd5b6000613d7085828601613b19565b9250506020613d8185828601613b78565b9150509250929050565b60008060408385031215613d9e57600080fd5b6000613dac85828601613b19565b9250506020613dbd85828601613c0b565b9150509250929050565b60008060208385031215613dda57600080fd5b600083013567ffffffffffffffff811115613df457600080fd5b613e0085828601613b2e565b92509250509250929050565b600080600060608486031215613e2157600080fd5b6000613e2f86828701613b78565b935050602084013567ffffffffffffffff811115613e4c57600080fd5b613e5886828701613be1565b925050604084013567ffffffffffffffff811115613e7557600080fd5b613e8186828701613be1565b9150509250925092565b600060208284031215613e9d57600080fd5b6000613eab84828501613b8d565b91505092915050565b600060208284031215613ec657600080fd5b6000613ed484828501613ba2565b91505092915050565b600060208284031215613eef57600080fd5b600082013567ffffffffffffffff811115613f0957600080fd5b613f1584828501613be1565b91505092915050565b600060208284031215613f3057600080fd5b6000613f3e84828501613c0b565b91505092915050565b60008060408385031215613f5a57600080fd5b6000613f6885828601613c0b565b9250506020613f7985828601613c0b565b9150509250929050565b60008060008060008060c08789031215613f9c57600080fd5b6000613faa89828a01613c0b565b9650506020613fbb89828a01613c0b565b9550506040613fcc89828a01613c0b565b9450506060613fdd89828a01613c0b565b9350506080613fee89828a01613c0b565b92505060a0613fff89828a01613c0b565b9150509295509295509295565b600061401883836145dc565b60208301905092915050565b61402d81614cf9565b82525050565b600061403e82614b6d565b6140488185614b9b565b935061405383614b48565b8060005b8381101561408457815161406b888261400c565b975061407683614b8e565b925050600181019050614057565b5085935050505092915050565b61409a81614d0b565b82525050565b60006140ab82614b78565b6140b58185614bac565b93506140c5818560208601614d7c565b6140ce81614f48565b840191505092915050565b60006140e482614b83565b6140ee8185614bc8565b93506140fe818560208601614d7c565b61410781614f48565b840191505092915050565b600061411d82614b83565b6141278185614bd9565b9350614137818560208601614d7c565b80840191505092915050565b6000815461415081614daf565b61415a8186614bd9565b945060018216600081146141755760018114614186576141b9565b60ff198316865281860193506141b9565b61418f85614b58565b60005b838110156141b157815481890152600182019150602081019050614192565b838801955050505b50505092915050565b60006141cf601783614bc8565b91506141da82614f59565b602082019050919050565b60006141f2601a83614bc8565b91506141fd82614f82565b602082019050919050565b6000614215602b83614bc8565b915061422082614fab565b604082019050919050565b6000614238603283614bc8565b915061424382614ffa565b604082019050919050565b600061425b602683614bc8565b915061426682615049565b604082019050919050565b600061427e602583614bc8565b915061428982615098565b604082019050919050565b60006142a1601c83614bc8565b91506142ac826150e7565b602082019050919050565b60006142c4602183614bc8565b91506142cf82615110565b604082019050919050565b60006142e7602483614bc8565b91506142f28261515f565b604082019050919050565b600061430a601983614bc8565b9150614315826151ae565b602082019050919050565b600061432d601583614bc8565b9150614338826151d7565b602082019050919050565b6000614350601983614bc8565b915061435b82615200565b602082019050919050565b6000614373602c83614bc8565b915061437e82615229565b604082019050919050565b6000614396602183614bc8565b91506143a182615278565b604082019050919050565b60006143b9603883614bc8565b91506143c4826152c7565b604082019050919050565b60006143dc602a83614bc8565b91506143e782615316565b604082019050919050565b60006143ff602983614bc8565b915061440a82615365565b604082019050919050565b6000614422602083614bc8565b915061442d826153b4565b602082019050919050565b6000614445602c83614bc8565b9150614450826153dd565b604082019050919050565b6000614468601783614bc8565b91506144738261542c565b602082019050919050565b600061448b602083614bc8565b915061449682615455565b602082019050919050565b60006144ae602f83614bc8565b91506144b98261547e565b604082019050919050565b60006144d1601f83614bc8565b91506144dc826154cd565b602082019050919050565b60006144f4601683614bc8565b91506144ff826154f6565b602082019050919050565b6000614517602183614bc8565b91506145228261551f565b604082019050919050565b600061453a601e83614bc8565b91506145458261556e565b602082019050919050565b600061455d600083614bbd565b915061456882615597565b600082019050919050565b6000614580603183614bc8565b915061458b8261559a565b604082019050919050565b60006145a3602c83614bc8565b91506145ae826155e9565b604082019050919050565b60006145c6602083614bc8565b91506145d182615638565b602082019050919050565b6145e581614d63565b82525050565b6145f481614d63565b82525050565b60006146068286614112565b91506146128285614112565b915061461e8284614143565b9150819050949350505050565b600061463682614550565b9150819050919050565b60006020820190506146556000830184614024565b92915050565b60006080820190506146706000830187614024565b61467d6020830186614024565b61468a60408301856145eb565b818103606083015261469c81846140a0565b905095945050505050565b600060208201905081810360008301526146c18184614033565b905092915050565b60006020820190506146de6000830184614091565b92915050565b600060208201905081810360008301526146fe81846140d9565b905092915050565b6000602082019050818103600083015261471f816141c2565b9050919050565b6000602082019050818103600083015261473f816141e5565b9050919050565b6000602082019050818103600083015261475f81614208565b9050919050565b6000602082019050818103600083015261477f8161422b565b9050919050565b6000602082019050818103600083015261479f8161424e565b9050919050565b600060208201905081810360008301526147bf81614271565b9050919050565b600060208201905081810360008301526147df81614294565b9050919050565b600060208201905081810360008301526147ff816142b7565b9050919050565b6000602082019050818103600083015261481f816142da565b9050919050565b6000602082019050818103600083015261483f816142fd565b9050919050565b6000602082019050818103600083015261485f81614320565b9050919050565b6000602082019050818103600083015261487f81614343565b9050919050565b6000602082019050818103600083015261489f81614366565b9050919050565b600060208201905081810360008301526148bf81614389565b9050919050565b600060208201905081810360008301526148df816143ac565b9050919050565b600060208201905081810360008301526148ff816143cf565b9050919050565b6000602082019050818103600083015261491f816143f2565b9050919050565b6000602082019050818103600083015261493f81614415565b9050919050565b6000602082019050818103600083015261495f81614438565b9050919050565b6000602082019050818103600083015261497f8161445b565b9050919050565b6000602082019050818103600083015261499f8161447e565b9050919050565b600060208201905081810360008301526149bf816144a1565b9050919050565b600060208201905081810360008301526149df816144c4565b9050919050565b600060208201905081810360008301526149ff816144e7565b9050919050565b60006020820190508181036000830152614a1f8161450a565b9050919050565b60006020820190508181036000830152614a3f8161452d565b9050919050565b60006020820190508181036000830152614a5f81614573565b9050919050565b60006020820190508181036000830152614a7f81614596565b9050919050565b60006020820190508181036000830152614a9f816145b9565b9050919050565b6000602082019050614abb60008301846145eb565b92915050565b6000614acb614adc565b9050614ad78282614de1565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0157614b00614f19565b5b614b0a82614f48565b9050602081019050919050565b600067ffffffffffffffff821115614b3257614b31614f19565b5b614b3b82614f48565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bef82614d63565b9150614bfa83614d63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2f57614c2e614e8c565b5b828201905092915050565b6000614c4582614d63565b9150614c5083614d63565b925082614c6057614c5f614ebb565b5b828204905092915050565b6000614c7682614d63565b9150614c8183614d63565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cba57614cb9614e8c565b5b828202905092915050565b6000614cd082614d63565b9150614cdb83614d63565b925082821015614cee57614ced614e8c565b5b828203905092915050565b6000614d0482614d43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d9a578082015181840152602081019050614d7f565b83811115614da9576000848401525b50505050565b60006002820490506001821680614dc757607f821691505b60208210811415614ddb57614dda614eea565b5b50919050565b614dea82614f48565b810181811067ffffffffffffffff82111715614e0957614e08614f19565b5b80604052505050565b6000614e1d82614d63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e5057614e4f614e8c565b5b600182019050919050565b6000614e6682614d63565b9150614e7183614d63565b925082614e8157614e80614ebb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43544c3a204e6f742073746172742073656c6c20796574000000000000000000600082015250565b7f43544c3a204e6f7420656e6f7567682065746865722073656e74000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43544c3a20596f7520617265206e6f7420696e207468652077686974654c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43544c3a207174792073686f756c642067746520300000000000000000000000600082015250565b7f43544c3a20496e73756666696369656e742062616c616e636500000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4242433a204661696c20746f20776974686472617720746f206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43544c3a2041636869657665206d617820737570706c79000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43544c3a204d696e74696e672069732074656d706f7261727920636c6f736500600082015250565b7f43544c3a2041756374696f6e206e6f7420737461727400000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43544c3a2063616c6c6572206973206e6f7420746865206465765465616d0000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4242433a204661696c20746f20776974686472617720746f206465767465616d600082015250565b61566a81614cf9565b811461567557600080fd5b50565b61568181614d0b565b811461568c57600080fd5b50565b61569881614d17565b81146156a357600080fd5b50565b6156af81614d63565b81146156ba57600080fd5b5056fea2646970667358221220c04f324095a0db04c3cde1601c9774a7413d6a32a05484426f06b76ca108ec0c64736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000897d7bc787cd4ae5bfa31fc2fd9fc7d003dc7b9f000000000000000000000000a699ba2cfd4a5d3309c707105371ca9eef2a79e0000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6170692e636f6f6c7461696c2e6e65742f626c696e64626f7800000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): https://api.cooltail.net/blindbox
Arg [1] : _operator (address): 0x897D7BC787cd4ae5bFa31fC2fD9fC7d003dC7B9f
Arg [2] : _devteam (address): 0xA699BA2cFd4A5D3309c707105371ca9eEf2A79e0
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000897d7bc787cd4ae5bfa31fc2fd9fc7d003dc7b9f
Arg [2] : 000000000000000000000000a699ba2cfd4a5d3309c707105371ca9eef2a79e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [4] : 68747470733a2f2f6170692e636f6f6c7461696c2e6e65742f626c696e64626f
Arg [5] : 7800000000000000000000000000000000000000000000000000000000000000
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.