Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 129 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19759224 | 278 days ago | IN | 0 ETH | 0.00045456 | ||||
Safe Transfer Fr... | 19759152 | 278 days ago | IN | 0 ETH | 0.00073487 | ||||
Safe Transfer Fr... | 16417825 | 747 days ago | IN | 0 ETH | 0.00135328 | ||||
Set Approval For... | 15854182 | 826 days ago | IN | 0 ETH | 0.00123107 | ||||
Set Approval For... | 15275361 | 912 days ago | IN | 0 ETH | 0.00045231 | ||||
Set Approval For... | 15028228 | 951 days ago | IN | 0 ETH | 0.00108744 | ||||
Set Approval For... | 14713862 | 1003 days ago | IN | 0 ETH | 0.0024569 | ||||
Safe Transfer Fr... | 14713749 | 1003 days ago | IN | 0 ETH | 0.00324412 | ||||
Safe Transfer Fr... | 14711678 | 1004 days ago | IN | 0 ETH | 0.00581939 | ||||
Safe Transfer Fr... | 14708801 | 1004 days ago | IN | 0 ETH | 0.0036783 | ||||
Transfer From | 14708634 | 1004 days ago | IN | 0 ETH | 0.00438421 | ||||
Set Approval For... | 14708626 | 1004 days ago | IN | 0 ETH | 0.00258256 | ||||
Transfer From | 14703448 | 1005 days ago | IN | 0 ETH | 0.00593805 | ||||
Transfer From | 14699734 | 1006 days ago | IN | 0 ETH | 0.00730069 | ||||
Set Approval For... | 14698586 | 1006 days ago | IN | 0 ETH | 0.00291861 | ||||
Transfer From | 14596757 | 1022 days ago | IN | 0 ETH | 0.00277809 | ||||
Transfer From | 14596652 | 1022 days ago | IN | 0 ETH | 0.00209304 | ||||
Safe Transfer Fr... | 14405385 | 1052 days ago | IN | 0 ETH | 0.00784961 | ||||
Set Approval For... | 14368053 | 1058 days ago | IN | 0 ETH | 0.00397515 | ||||
Set Approval For... | 14364872 | 1058 days ago | IN | 0 ETH | 0.00056697 | ||||
Set Approval For... | 14364872 | 1058 days ago | IN | 0 ETH | 0.00098653 | ||||
Set Approval For... | 14346397 | 1061 days ago | IN | 0 ETH | 0.00113769 | ||||
Set Revealed Wit... | 14332848 | 1063 days ago | IN | 0 ETH | 0.00097837 | ||||
Transfer From | 14312736 | 1066 days ago | IN | 0 ETH | 0.00288228 | ||||
Set Approval For... | 14307869 | 1067 days ago | IN | 0 ETH | 0.00141923 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
IRobot
Compiler Version
v0.8.0+commit.c7dfd78e
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 "hardhat/console.sol"; contract IRobot is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ""; string public notRevealedUri; uint256 public cost = 0.8 ether; uint256 public whiteListCost = 0.66 ether; mapping(address => bool) public whiteList; mapping(address => bool) public OGList; uint256 public maxSupply = 666; uint256 public level1Supply = 333; uint256 public level2Supply = 310; uint256 public maxOGSupply = 100; uint256 public maxWhiteLisSupply = 150; 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 = 1645286400; uint256 public whiteListEndTime = 1645335059; address public devTeamAddress; constructor ( string memory _name, string memory _symbol, string memory _initNotRevealedUri, address _operator, address _devteam ) ERC721(_name, _symbol) { devTeamAddress = _devteam; setNotRevealedURI(_initNotRevealedUri); for (uint256 i = 1; i <= 23; i++) { _safeMint(_operator, i); } transferOwnership(_operator); } function setWhiteList(address[] calldata _whiteList) external onlyOwner { for (uint i = 0; i < _whiteList.length; i++) { whiteList[_whiteList[i]] = true; } } function setOGList(address[] calldata _OGList) external onlyOwner { for (uint i = 0; i < _OGList.length; i++) { OGList[_OGList[i]] = true; } } function isOG(address _user) public view returns (bool) { return OGList[_user]; } function isWhiteList(address _user) public view returns (bool) { return whiteList[_user]; } 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, uint256 _supply) internal { require(block.timestamp >= auctionStartTime, 'IRobot: Auction not start'); require((_mintAmount * getAuctionPrice()) <= msg.value, 'Not enough ether sent'); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_msgSender(), _supply + i); } } function _publicOffering(uint256 _mintAmount, uint256 _supply) internal { require(block.timestamp >= whiteListStartTime, "IRobot: Not start sell yet"); bool _isWhiteList = isWhiteList(_msgSender()); bool _isOG = isOG(_msgSender()); if (block.timestamp >= whiteListStartTime && block.timestamp <= whiteListEndTime) { // Presale require(msg.value >= whiteListCost * _mintAmount, "IRobot: Insufficient balance"); require(_isWhiteList || _isOG, "IRobot: You are not in the whiteList"); if (_isWhiteList) { require(_mintAmount == 1, "IRobot: Only can mint 1 nft"); require(_mintAmount <= maxWhiteLisSupply , "IRobot: Preserve sold out"); require(balanceOf(_msgSender()) < 1, "IRobot: Achieve max minting"); maxWhiteLisSupply -= _mintAmount; } else if (_isOG){ require(_mintAmount <= 2, "IRobot: Only can mint 2 nft"); require(_mintAmount <= maxOGSupply, "IRobot: Preserve sold out"); require(balanceOf(_msgSender()) < 2, "IRobot: Achieve max minting"); maxOGSupply -= _mintAmount; } } else { // public sale require(msg.value >= cost * _mintAmount, "IRobot: Insufficient balance"); require(_mintAmount <= 2, "IRobot: Only can mint 2 nft"); require(_supply + _mintAmount <= level1Supply, "IRobot: Level 1 sold out"); if (_isOG) { require(balanceOf(_msgSender()) < 4, "IRobot: Achieve max minting"); } else if (_isWhiteList) { require(balanceOf(_msgSender()) < 3, "IRobot: Achieve max minting"); } else { require(balanceOf(_msgSender()) < 2, "IRobot: Achieve max minting"); } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_msgSender(), _supply + i); } } function mint(uint256 _mintAmount) public payable { uint256 _supply = totalSupply(); require(!paused, "IRobot: Minting is temporary close"); require(_mintAmount > 0, "IRobot: qty should gte 0"); require(_supply + _mintAmount <= maxSupply, "IRobot: Achieve max supply"); if (isDutchAuction) { _dutchAuction(_mintAmount, _supply); } else { _publicOffering(_mintAmount, _supply); } } 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 _baseURI() internal view virtual override returns (string memory) { return baseURI; } 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 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 setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setDutchAuction( uint256 _auctionStartTime, uint256 _auctionTimeStep, uint256 _auctionStepNumber, uint256 _auctionPriceStep, uint256 _auctionStartPrice, uint256 _auctionEndPrice ) public onlyOwner { auctionStartTime = _auctionStartTime; auctionTimeStep = _auctionTimeStep; auctionStepNumber = _auctionStepNumber; auctionPriceStep = _auctionPriceStep; auctionStartPrice = _auctionStartPrice; auctionEndPrice = _auctionEndPrice; } function setRevealedWithURI(bool _isOpen, string memory _URI) public onlyOwner { revealed = _isOpen; setBaseURI(_URI); } function flipAuction() public onlyDevTeam { isDutchAuction = !isDutchAuction; } function flipReveal() public onlyOwner { revealed = !revealed; } function flipPause() public onlyOwner { paused = !paused; } function withdraw() public payable onlyOwner { (bool send, ) = payable(owner()).call{value: address(this).balance}(""); require(send, "IRobot: Fail to withdraw"); } modifier onlyDevTeam() { require(devTeamAddress == _msgSender(), "IRobot: caller is not the devTeam"); _; } }
// SPDX-License-Identifier: MIT 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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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 {} }
// SPDX-License-Identifier: MIT 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 tokenId); /** * @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 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 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 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 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 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":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"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":"","type":"address"}],"name":"OGList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"devTeamAddress","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level1Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level2Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOGSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhiteLisSupply","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":"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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"address[]","name":"_OGList","type":"address[]"}],"name":"setOGList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpen","type":"bool"},{"internalType":"string","name":"_URI","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":"payable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600c90805190602001906200002b92919062000efe565b50670b1a2bc2ec500000600e55670928ca80cfc20000600f5561029a60125561014d601355610136601455606460155560966016556000601760006101000a81548160ff0219169083151502179055506000601760016101000a81548160ff0219169083151502179055506000601760026101000a81548160ff0219169083151502179055506362111400601e55636211d213601f55348015620000ce57600080fd5b506040516200760b3803806200760b8339818101604052810190620000f491906200107a565b848481600090805190602001906200010e92919062000efe565b5080600190805190602001906200012792919062000efe565b5050506200014a6200013e620001f160201b60201c565b620001f960201b60201c565b80602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019c83620002bf60201b60201c565b6000600190505b60178111620001d457620001be83826200036a60201b60201c565b8080620001cb90620016ca565b915050620001a3565b50620001e6826200039060201b60201c565b5050505050620017ea565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cf620001f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f5620004a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034590620014a6565b60405180910390fd5b80600d90805190602001906200036692919062000efe565b5050565b6200038c828260405180602001604052806000815250620004d060201b60201c565b5050565b620003a0620001f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003c6620004a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200041f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041690620014a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000489906200141e565b60405180910390fd5b620004a381620001f960201b60201c565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004e283836200053e60201b60201c565b620004f760008484846200072460201b60201c565b62000539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053090620013fc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a89062001484565b60405180910390fd5b620005c281620008de60201b60201c565b1562000605576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005fc9062001440565b60405180910390fd5b62000619600083836200094a60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200066b91906200155c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007528473ffffffffffffffffffffffffffffffffffffffff1662000a9160201b620029661760201c565b15620008d1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000784620001f160201b60201c565b8786866040518563ffffffff1660e01b8152600401620007a89493929190620013a8565b602060405180830381600087803b158015620007c357600080fd5b505af1925050508015620007f757506040513d601f19601f82011682018060405250810190620007f491906200104e565b60015b62000880573d80600081146200082a576040519150601f19603f3d011682016040523d82523d6000602084013e6200082f565b606091505b5060008151141562000878576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086f90620013fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008d6565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200096283838362000aa460201b620029791760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009af57620009a98162000aa960201b60201c565b620009f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009f657620009f5838262000af260201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a445762000a3e8162000c6f60201b60201c565b62000a8c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a8b5762000a8a828262000db760201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b0c8462000e4360201b620019ec1760201c565b62000b189190620015b9565b905060006007600084815260200190815260200160002054905081811462000bfe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c859190620015b9565b905060006009600084815260200190815260200160002054905060006008838154811062000cdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000d25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000dcf8362000e4360201b620019ec1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eae9062001462565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f0c9062001694565b90600052602060002090601f01602090048101928262000f30576000855562000f7c565b82601f1062000f4b57805160ff191683800117855562000f7c565b8280016001018555821562000f7c579182015b8281111562000f7b57825182559160200191906001019062000f5e565b5b50905062000f8b919062000f8f565b5090565b5b8082111562000faa57600081600090555060010162000f90565b5090565b600062000fc562000fbf84620014fc565b620014c8565b90508281526020810184848401111562000fde57600080fd5b62000feb8482856200165e565b509392505050565b6000815190506200100481620017b6565b92915050565b6000815190506200101b81620017d0565b92915050565b600082601f8301126200103357600080fd5b81516200104584826020860162000fae565b91505092915050565b6000602082840312156200106157600080fd5b600062001071848285016200100a565b91505092915050565b600080600080600060a086880312156200109357600080fd5b600086015167ffffffffffffffff811115620010ae57600080fd5b620010bc8882890162001021565b955050602086015167ffffffffffffffff811115620010da57600080fd5b620010e88882890162001021565b945050604086015167ffffffffffffffff8111156200110657600080fd5b620011148882890162001021565b9350506060620011278882890162000ff3565b92505060806200113a8882890162000ff3565b9150509295509295909350565b6200115281620015f4565b82525050565b600062001165826200152f565b6200117181856200153a565b9350620011838185602086016200165e565b6200118e81620017a5565b840191505092915050565b6000620011a86032836200154b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000620012106026836200154b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062001278601c836200154b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000620012ba602a836200154b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000620013226020836200154b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000620013646020836200154b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b620013a28162001654565b82525050565b6000608082019050620013bf600083018762001147565b620013ce602083018662001147565b620013dd604083018562001397565b8181036060830152620013f1818462001158565b905095945050505050565b60006020820190508181036000830152620014178162001199565b9050919050565b60006020820190508181036000830152620014398162001201565b9050919050565b600060208201905081810360008301526200145b8162001269565b9050919050565b600060208201905081810360008301526200147d81620012ab565b9050919050565b600060208201905081810360008301526200149f8162001313565b9050919050565b60006020820190508181036000830152620014c18162001355565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620014f257620014f162001776565b5b8060405250919050565b600067ffffffffffffffff8211156200151a576200151962001776565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620015698262001654565b9150620015768362001654565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015ae57620015ad62001718565b5b828201905092915050565b6000620015c68262001654565b9150620015d38362001654565b925082821015620015e957620015e862001718565b5b828203905092915050565b6000620016018262001634565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200167e57808201518184015260208101905062001661565b838111156200168e576000848401525b50505050565b60006002820490506001821680620016ad57607f821691505b60208210811415620016c457620016c362001747565b5b50919050565b6000620016d78262001654565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200170d576200170c62001718565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620017c181620015f4565b8114620017cd57600080fd5b50565b620017db8162001608565b8114620017e757600080fd5b50565b615e1180620017fa6000396000f3fe6080604052600436106103975760003560e01c80638da5cb5b116101dc578063c0ec1d9811610102578063da3ef23f116100a0578063eb54f9ec1161006f578063eb54f9ec14610d42578063f2c4ce1e14610d6d578063f2fde38b14610d96578063f99031a714610dbf57610397565b8063da3ef23f14610c88578063df90c98d14610cb1578063e7e4346514610cdc578063e985e9c514610d0557610397565b8063c87b56dd116100dc578063c87b56dd14610bca578063c98e163014610c07578063d5abeb0114610c32578063d756985b14610c5d57610397565b8063c0ec1d9814610b37578063c668286214610b62578063c83271f514610b8d57610397565b80639a8825701161017a578063b499e6c611610149578063b499e6c614610aa1578063b6542a1614610acc578063b88d4fde14610af7578063bd7f2bce14610b2057610397565b80639a88257014610a08578063a04a6ac814610a31578063a0712d6814610a5c578063a22cb46514610a7857610397565b806395d89b41116101b657806395d89b411461094a578063964dd2401461097557806396baea63146109a0578063976db741146109dd57610397565b80638da5cb5b146108c95780639196eba5146108f45780639257e0441461091f57610397565b80633ccfd60b116102c157806355f804b31161025f578063715018a61161022e578063715018a614610835578063760413761461084c5780637696e08814610877578063775b9c13146108a057610397565b806355f804b3146107675780635c975abb146107905780636352211e146107bb57806370a08231146107f857610397565b80634698a3d81161029b5780634698a3d8146106a95780634bd25c6f146106d45780634f6ccce7146106ff578063518302271461073c57610397565b80633ccfd60b1461063957806342842e0e14610643578063438b63001461066c57610397565b806318160ddd11610339578063372c12b111610308578063372c12b1146105a357806338110563146105e0578063385df6491461060b5780633b84d9c61461062257610397565b806318160ddd146104e9578063213506b31461051457806323b872dd1461053d5780632f745c591461056657610397565b8063081c8c4411610375578063081c8c4414610441578063095ea7b31461046c5780630bde30da1461049557806313faede6146104be57610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190614592565b610dfc565b6040516103d09190615496565b60405180910390f35b3480156103e557600080fd5b506103ee610e76565b6040516103fb91906154b1565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614625565b610f08565b604051610438919061540d565b60405180910390f35b34801561044d57600080fd5b50610456610f8d565b60405161046391906154b1565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906144bd565b61101b565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061453e565b611133565b005b3480156104ca57600080fd5b506104d36111d6565b6040516104e091906158f3565b60405180910390f35b3480156104f557600080fd5b506104fe6111dc565b60405161050b91906158f3565b60405180910390f35b34801561052057600080fd5b5061053b6004803603810190610536919061464e565b6111e9565b005b34801561054957600080fd5b50610564600480360381019061055f91906143b7565b611277565b005b34801561057257600080fd5b5061058d600480360381019061058891906144bd565b6112d7565b60405161059a91906158f3565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190614352565b61137c565b6040516105d79190615496565b60405180910390f35b3480156105ec57600080fd5b506105f561139c565b60405161060291906158f3565b60405180910390f35b34801561061757600080fd5b506106206113a2565b005b34801561062e57600080fd5b5061063761144a565b005b6106416114f2565b005b34801561064f57600080fd5b5061066a600480360381019061066591906143b7565b611624565b005b34801561067857600080fd5b50610693600480360381019061068e9190614352565b611644565b6040516106a09190615474565b60405180910390f35b3480156106b557600080fd5b506106be61173e565b6040516106cb91906158f3565b60405180910390f35b3480156106e057600080fd5b506106e9611744565b6040516106f691906158f3565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190614625565b6117e7565b60405161073391906158f3565b60405180910390f35b34801561074857600080fd5b5061075161187e565b60405161075e9190615496565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906145e4565b611891565b005b34801561079c57600080fd5b506107a5611927565b6040516107b29190615496565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190614625565b61193a565b6040516107ef919061540d565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190614352565b6119ec565b60405161082c91906158f3565b60405180910390f35b34801561084157600080fd5b5061084a611aa4565b005b34801561085857600080fd5b50610861611b2c565b60405161086e919061540d565b60405180910390f35b34801561088357600080fd5b5061089e6004803603810190610899919061464e565b611b52565b005b3480156108ac57600080fd5b506108c760048036038101906108c291906144f9565b611be0565b005b3480156108d557600080fd5b506108de611d27565b6040516108eb919061540d565b60405180910390f35b34801561090057600080fd5b50610909611d51565b60405161091691906158f3565b60405180910390f35b34801561092b57600080fd5b50610934611d57565b60405161094191906158f3565b60405180910390f35b34801561095657600080fd5b5061095f611d5d565b60405161096c91906154b1565b60405180910390f35b34801561098157600080fd5b5061098a611def565b60405161099791906158f3565b60405180910390f35b3480156109ac57600080fd5b506109c760048036038101906109c29190614352565b611df5565b6040516109d49190615496565b60405180910390f35b3480156109e957600080fd5b506109f2611e15565b6040516109ff91906158f3565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a91906144f9565b611e1b565b005b348015610a3d57600080fd5b50610a46611f62565b604051610a5391906158f3565b60405180910390f35b610a766004803603810190610a719190614625565b611f68565b005b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190614481565b61208a565b005b348015610aad57600080fd5b50610ab661220b565b604051610ac39190615496565b60405180910390f35b348015610ad857600080fd5b50610ae161221e565b604051610aee91906158f3565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b199190614406565b612224565b005b348015610b2c57600080fd5b50610b35612286565b005b348015610b4357600080fd5b50610b4c612349565b604051610b5991906158f3565b60405180910390f35b348015610b6e57600080fd5b50610b7761234f565b604051610b8491906154b1565b60405180910390f35b348015610b9957600080fd5b50610bb46004803603810190610baf9190614352565b6123dd565b604051610bc19190615496565b60405180910390f35b348015610bd657600080fd5b50610bf16004803603810190610bec9190614625565b612433565b604051610bfe91906154b1565b60405180910390f35b348015610c1357600080fd5b50610c1c61258c565b604051610c2991906158f3565b60405180910390f35b348015610c3e57600080fd5b50610c47612592565b604051610c5491906158f3565b60405180910390f35b348015610c6957600080fd5b50610c72612598565b604051610c7f91906158f3565b60405180910390f35b348015610c9457600080fd5b50610caf6004803603810190610caa91906145e4565b61259e565b005b348015610cbd57600080fd5b50610cc6612634565b604051610cd391906158f3565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe919061468a565b61263a565b005b348015610d1157600080fd5b50610d2c6004803603810190610d27919061437b565b6126e8565b604051610d399190615496565b60405180910390f35b348015610d4e57600080fd5b50610d5761277c565b604051610d6491906158f3565b60405180910390f35b348015610d7957600080fd5b50610d946004803603810190610d8f91906145e4565b612782565b005b348015610da257600080fd5b50610dbd6004803603810190610db89190614352565b612818565b005b348015610dcb57600080fd5b50610de66004803603810190610de19190614352565b612910565b604051610df39190615496565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e6f5750610e6e8261297e565b5b9050919050565b606060008054610e8590615c06565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190615c06565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b6000610f1382612a60565b610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990615733565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610f9a90615c06565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc690615c06565b80156110135780601f10610fe857610100808354040283529160200191611013565b820191906000526020600020905b815481529060010190602001808311610ff657829003601f168201915b505050505081565b60006110268261193a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e906157f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110b6612acc565b73ffffffffffffffffffffffffffffffffffffffff1614806110e557506110e4816110df612acc565b6126e8565b5b611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90615633565b60405180910390fd5b61112e8383612ad4565b505050565b61113b612acc565b73ffffffffffffffffffffffffffffffffffffffff16611159611d27565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690615753565b60405180910390fd5b81601760016101000a81548160ff0219169083151502179055506111d281611891565b5050565b600e5481565b6000600880549050905090565b6111f1612acc565b73ffffffffffffffffffffffffffffffffffffffff1661120f611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90615753565b60405180910390fd5b81601e8190555080601f819055505050565b611288611282612acc565b82612b8d565b6112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90615833565b60405180910390fd5b6112d2838383612c6b565b505050565b60006112e2836119ec565b8210611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90615513565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b601e5481565b6113aa612acc565b73ffffffffffffffffffffffffffffffffffffffff166113c8611d27565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590615753565b60405180910390fd5b601760009054906101000a900460ff1615601760006101000a81548160ff021916908315150217905550565b611452612acc565b73ffffffffffffffffffffffffffffffffffffffff16611470611d27565b73ffffffffffffffffffffffffffffffffffffffff16146114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90615753565b60405180910390fd5b601760019054906101000a900460ff1615601760016101000a81548160ff021916908315150217905550565b6114fa612acc565b73ffffffffffffffffffffffffffffffffffffffff16611518611d27565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590615753565b60405180910390fd5b6000611578611d27565b73ffffffffffffffffffffffffffffffffffffffff164760405161159b906153f8565b60006040518083038185875af1925050503d80600081146115d8576040519150601f19603f3d011682016040523d82523d6000602084013e6115dd565b606091505b5050905080611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906156d3565b60405180910390fd5b50565b61163f83838360405180602001604052806000815250612224565b505050565b60606000611651836119ec565b905060008167ffffffffffffffff811115611695577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116c35781602001602082028036833780820191505090505b50905060005b82811015611733576116db85826112d7565b828281518110611714577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061172b90615c38565b9150506116c9565b508092505050919050565b601b5481565b6000601760029054906101000a900460ff1661176357600090506117e4565b60185442101561177757601c5490506117e4565b60006019546018544261178a9190615b1c565b6117949190615a91565b9050601a548111156117a657601a5490505b601b54816117b49190615ac2565b601c54116117c457601d546117e0565b601b54816117d29190615ac2565b601c546117df9190615b1c565b5b9150505b90565b60006117f16111dc565b8210611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990615873565b60405180910390fd5b6008828154811061186c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601760019054906101000a900460ff1681565b611899612acc565b73ffffffffffffffffffffffffffffffffffffffff166118b7611d27565b73ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490615753565b60405180910390fd5b80600b908051906020019061192392919061412c565b5050565b601760009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90615693565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490615673565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aac612acc565b73ffffffffffffffffffffffffffffffffffffffff16611aca611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790615753565b60405180910390fd5b611b2a6000612ec7565b565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b5a612acc565b73ffffffffffffffffffffffffffffffffffffffff16611b78611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590615753565b60405180910390fd5b81600e8190555080600f819055505050565b611be8612acc565b73ffffffffffffffffffffffffffffffffffffffff16611c06611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390615753565b60405180910390fd5b60005b82829050811015611d2257600160106000858585818110611ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611cbe9190614352565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d1a90615c38565b915050611c5f565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60195481565b600f5481565b606060018054611d6c90615c06565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9890615c06565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b601a5481565b60116020528060005260406000206000915054906101000a900460ff1681565b60145481565b611e23612acc565b73ffffffffffffffffffffffffffffffffffffffff16611e41611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90615753565b60405180910390fd5b60005b82829050811015611f5d57600160116000858585818110611ee4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ef99190614352565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f5590615c38565b915050611e9a565b505050565b601d5481565b6000611f726111dc565b9050601760009054906101000a900460ff1615611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906154f3565b60405180910390fd5b60008211612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe906158d3565b60405180910390fd5b60125482826120169190615a3b565b1115612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906157d3565b60405180910390fd5b601760029054906101000a900460ff161561207b576120768282612f8d565b612086565b6120858282613069565b5b5050565b612092612acc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f7906155d3565b60405180910390fd5b806005600061210d612acc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121ba612acc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ff9190615496565b60405180910390a35050565b601760029054906101000a900460ff1681565b60155481565b61223561222f612acc565b83612b8d565b612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90615833565b60405180910390fd5b612280848484846135bd565b50505050565b61228e612acc565b73ffffffffffffffffffffffffffffffffffffffff16602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490615713565b60405180910390fd5b601760029054906101000a900460ff1615601760026101000a81548160ff021916908315150217905550565b60165481565b600c805461235c90615c06565b80601f016020809104026020016040519081016040528092919081815260200182805461238890615c06565b80156123d55780601f106123aa576101008083540402835291602001916123d5565b820191906000526020600020905b8154815290600101906020018083116123b857829003601f168201915b505050505081565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606061243e82612a60565b61247d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247490615793565b60405180910390fd5b60001515601760019054906101000a900460ff161515141561252b57600d80546124a690615c06565b80601f01602080910402602001604051908101604052809291908181526020018280546124d290615c06565b801561251f5780601f106124f45761010080835404028352916020019161251f565b820191906000526020600020905b81548152906001019060200180831161250257829003601f168201915b50505050509050612587565b6000612535613619565b905060008151116125555760405180602001604052806000815250612583565b8061255f846136ab565b600c604051602001612573939291906153c7565b6040516020818303038152906040525b9150505b919050565b60135481565b60125481565b601c5481565b6125a6612acc565b73ffffffffffffffffffffffffffffffffffffffff166125c4611d27565b73ffffffffffffffffffffffffffffffffffffffff161461261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261190615753565b60405180910390fd5b80600c908051906020019061263092919061412c565b5050565b601f5481565b612642612acc565b73ffffffffffffffffffffffffffffffffffffffff16612660611d27565b73ffffffffffffffffffffffffffffffffffffffff16146126b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad90615753565b60405180910390fd5b856018819055508460198190555083601a8190555082601b8190555081601c8190555080601d81905550505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b61278a612acc565b73ffffffffffffffffffffffffffffffffffffffff166127a8611d27565b73ffffffffffffffffffffffffffffffffffffffff16146127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f590615753565b60405180910390fd5b80600d908051906020019061281492919061412c565b5050565b612820612acc565b73ffffffffffffffffffffffffffffffffffffffff1661283e611d27565b73ffffffffffffffffffffffffffffffffffffffff1614612894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288b90615753565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90615553565b60405180910390fd5b61290d81612ec7565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a595750612a5882613858565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b478361193a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b9882612a60565b612bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bce90615613565b60405180910390fd5b6000612be28361193a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c5157508373ffffffffffffffffffffffffffffffffffffffff16612c3984610f08565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c625750612c6181856126e8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c8b8261193a565b73ffffffffffffffffffffffffffffffffffffffff1614612ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd890615773565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d48906155b3565b60405180910390fd5b612d5c8383836138c2565b612d67600082612ad4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db79190615b1c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0e9190615a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601854421015612fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc9906154d3565b60405180910390fd5b34612fdb611744565b83612fe69190615ac2565b1115613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301e90615893565b60405180910390fd5b6000600190505b82811161306457613051613040612acc565b828461304c9190615a3b565b6139d6565b808061305c90615c38565b91505061302e565b505050565b601e544210156130ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a590615653565b60405180910390fd5b60006130c06130bb612acc565b612910565b905060006130d46130cf612acc565b6123dd565b9050601e5442101580156130ea5750601f544211155b156133865783600f546130fd9190615ac2565b34101561313f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613136906157b3565b60405180910390fd5b81806131485750805b613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e90615813565b60405180910390fd5b811561328557600184146131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c790615593565b60405180910390fd5b601654841115613215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320c90615853565b60405180910390fd5b6001613227613222612acc565b6119ec565b10613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e906158b3565b60405180910390fd5b83601660008282546132799190615b1c565b92505081905550613381565b80156133805760028411156132cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c6906156b3565b60405180910390fd5b601554841115613314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330b90615853565b60405180910390fd5b6002613326613321612acc565b6119ec565b10613366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335d906158b3565b60405180910390fd5b83601560008282546133789190615b1c565b925050819055505b5b613579565b83600e546133949190615ac2565b3410156133d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cd906157b3565b60405180910390fd5b600284111561341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906156b3565b60405180910390fd5b60135484846134299190615a3b565b111561346a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613461906155f3565b60405180910390fd5b80156134c757600461348261347d612acc565b6119ec565b106134c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b9906158b3565b60405180910390fd5b613578565b81156135245760036134df6134da612acc565b6119ec565b1061351f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613516906158b3565b60405180910390fd5b613577565b6002613536613531612acc565b6119ec565b10613576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356d906158b3565b60405180910390fd5b5b5b5b6000600190505b8481116135b6576135a3613592612acc565b828661359e9190615a3b565b6139d6565b80806135ae90615c38565b915050613580565b5050505050565b6135c8848484612c6b565b6135d4848484846139f4565b613613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360a90615533565b60405180910390fd5b50505050565b6060600b805461362890615c06565b80601f016020809104026020016040519081016040528092919081815260200182805461365490615c06565b80156136a15780601f10613676576101008083540402835291602001916136a1565b820191906000526020600020905b81548152906001019060200180831161368457829003601f168201915b5050505050905090565b606060008214156136f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613853565b600082905060005b6000821461372557808061370e90615c38565b915050600a8261371e9190615a91565b91506136fb565b60008167ffffffffffffffff811115613767577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137995781602001600182028036833780820191505090505b5090505b6000851461384c576001826137b29190615b1c565b9150600a856137c19190615c81565b60306137cd9190615a3b565b60f81b818381518110613809577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138459190615a91565b945061379d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138cd838383612979565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139105761390b81613b8b565b61394f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461394e5761394d8382613bd4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139925761398d81613d41565b6139d1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146139d0576139cf8282613e84565b5b5b505050565b6139f0828260405180602001604052806000815250613f03565b5050565b6000613a158473ffffffffffffffffffffffffffffffffffffffff16612966565b15613b7e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a3e612acc565b8786866040518563ffffffff1660e01b8152600401613a609493929190615428565b602060405180830381600087803b158015613a7a57600080fd5b505af1925050508015613aab57506040513d601f19601f82011682018060405250810190613aa891906145bb565b60015b613b2e573d8060008114613adb576040519150601f19603f3d011682016040523d82523d6000602084013e613ae0565b606091505b50600081511415613b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1d90615533565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b83565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613be1846119ec565b613beb9190615b1c565b9050600060076000848152602001908152602001600020549050818114613cd0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613d559190615b1c565b9050600060096000848152602001908152602001600020549050600060088381548110613dab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613e8f836119ec565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613f0d8383613f5e565b613f1a60008484846139f4565b613f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5090615533565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fc5906156f3565b60405180910390fd5b613fd781612a60565b15614017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400e90615573565b60405180910390fd5b614023600083836138c2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140739190615a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461413890615c06565b90600052602060002090601f01602090048101928261415a57600085556141a1565b82601f1061417357805160ff19168380011785556141a1565b828001600101855582156141a1579182015b828111156141a0578251825591602001919060010190614185565b5b5090506141ae91906141b2565b5090565b5b808211156141cb5760008160009055506001016141b3565b5090565b60006141e26141dd8461593f565b61590e565b9050828152602081018484840111156141fa57600080fd5b614205848285615bc4565b509392505050565b600061422061421b8461596f565b61590e565b90508281526020810184848401111561423857600080fd5b614243848285615bc4565b509392505050565b60008135905061425a81615d7f565b92915050565b60008083601f84011261427257600080fd5b8235905067ffffffffffffffff81111561428b57600080fd5b6020830191508360208202830111156142a357600080fd5b9250929050565b6000813590506142b981615d96565b92915050565b6000813590506142ce81615dad565b92915050565b6000815190506142e381615dad565b92915050565b600082601f8301126142fa57600080fd5b813561430a8482602086016141cf565b91505092915050565b600082601f83011261432457600080fd5b813561433484826020860161420d565b91505092915050565b60008135905061434c81615dc4565b92915050565b60006020828403121561436457600080fd5b60006143728482850161424b565b91505092915050565b6000806040838503121561438e57600080fd5b600061439c8582860161424b565b92505060206143ad8582860161424b565b9150509250929050565b6000806000606084860312156143cc57600080fd5b60006143da8682870161424b565b93505060206143eb8682870161424b565b92505060406143fc8682870161433d565b9150509250925092565b6000806000806080858703121561441c57600080fd5b600061442a8782880161424b565b945050602061443b8782880161424b565b935050604061444c8782880161433d565b925050606085013567ffffffffffffffff81111561446957600080fd5b614475878288016142e9565b91505092959194509250565b6000806040838503121561449457600080fd5b60006144a28582860161424b565b92505060206144b3858286016142aa565b9150509250929050565b600080604083850312156144d057600080fd5b60006144de8582860161424b565b92505060206144ef8582860161433d565b9150509250929050565b6000806020838503121561450c57600080fd5b600083013567ffffffffffffffff81111561452657600080fd5b61453285828601614260565b92509250509250929050565b6000806040838503121561455157600080fd5b600061455f858286016142aa565b925050602083013567ffffffffffffffff81111561457c57600080fd5b61458885828601614313565b9150509250929050565b6000602082840312156145a457600080fd5b60006145b2848285016142bf565b91505092915050565b6000602082840312156145cd57600080fd5b60006145db848285016142d4565b91505092915050565b6000602082840312156145f657600080fd5b600082013567ffffffffffffffff81111561461057600080fd5b61461c84828501614313565b91505092915050565b60006020828403121561463757600080fd5b60006146458482850161433d565b91505092915050565b6000806040838503121561466157600080fd5b600061466f8582860161433d565b92505060206146808582860161433d565b9150509250929050565b60008060008060008060c087890312156146a357600080fd5b60006146b189828a0161433d565b96505060206146c289828a0161433d565b95505060406146d389828a0161433d565b94505060606146e489828a0161433d565b93505060806146f589828a0161433d565b92505060a061470689828a0161433d565b9150509295509295509295565b600061471f83836153a9565b60208301905092915050565b61473481615b50565b82525050565b6000614745826159c4565b61474f81856159f2565b935061475a8361599f565b8060005b8381101561478b5781516147728882614713565b975061477d836159e5565b92505060018101905061475e565b5085935050505092915050565b6147a181615b62565b82525050565b60006147b2826159cf565b6147bc8185615a03565b93506147cc818560208601615bd3565b6147d581615d6e565b840191505092915050565b60006147eb826159da565b6147f58185615a1f565b9350614805818560208601615bd3565b61480e81615d6e565b840191505092915050565b6000614824826159da565b61482e8185615a30565b935061483e818560208601615bd3565b80840191505092915050565b6000815461485781615c06565b6148618186615a30565b9450600182166000811461487c576001811461488d576148c0565b60ff198316865281860193506148c0565b614896856159af565b60005b838110156148b857815481890152600182019150602081019050614899565b838801955050505b50505092915050565b60006148d6601983615a1f565b91507f49526f626f743a2041756374696f6e206e6f74207374617274000000000000006000830152602082019050919050565b6000614916602283615a1f565b91507f49526f626f743a204d696e74696e672069732074656d706f7261727920636c6f60008301527f73650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061497c602b83615a1f565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006149e2603283615a1f565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a48602683615a1f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aae601c83615a1f565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614aee601b83615a1f565b91507f49526f626f743a204f6e6c792063616e206d696e742031206e667400000000006000830152602082019050919050565b6000614b2e602483615a1f565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b94601983615a1f565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614bd4601883615a1f565b91507f49526f626f743a204c6576656c203120736f6c64206f757400000000000000006000830152602082019050919050565b6000614c14602c83615a1f565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614c7a603883615a1f565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614ce0601a83615a1f565b91507f49526f626f743a204e6f742073746172742073656c6c207965740000000000006000830152602082019050919050565b6000614d20602a83615a1f565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d86602983615a1f565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dec601b83615a1f565b91507f49526f626f743a204f6e6c792063616e206d696e742032206e667400000000006000830152602082019050919050565b6000614e2c601883615a1f565b91507f49526f626f743a204661696c20746f20776974686472617700000000000000006000830152602082019050919050565b6000614e6c602083615a1f565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614eac602183615a1f565b91507f49526f626f743a2063616c6c6572206973206e6f74207468652064657654656160008301527f6d000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f12602c83615a1f565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614f78602083615a1f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614fb8602983615a1f565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061501e602f83615a1f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000615084601c83615a1f565b91507f49526f626f743a20496e73756666696369656e742062616c616e6365000000006000830152602082019050919050565b60006150c4601a83615a1f565b91507f49526f626f743a2041636869657665206d617820737570706c790000000000006000830152602082019050919050565b6000615104602183615a1f565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061516a602483615a1f565b91507f49526f626f743a20596f7520617265206e6f7420696e2074686520776869746560008301527f4c697374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006151d0600083615a14565b9150600082019050919050565b60006151ea603183615a1f565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000615250601983615a1f565b91507f49526f626f743a20507265736572766520736f6c64206f7574000000000000006000830152602082019050919050565b6000615290602c83615a1f565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006152f6601583615a1f565b91507f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006000830152602082019050919050565b6000615336601b83615a1f565b91507f49526f626f743a2041636869657665206d6178206d696e74696e6700000000006000830152602082019050919050565b6000615376601883615a1f565b91507f49526f626f743a207174792073686f756c6420677465203000000000000000006000830152602082019050919050565b6153b281615bba565b82525050565b6153c181615bba565b82525050565b60006153d38286614819565b91506153df8285614819565b91506153eb828461484a565b9150819050949350505050565b6000615403826151c3565b9150819050919050565b6000602082019050615422600083018461472b565b92915050565b600060808201905061543d600083018761472b565b61544a602083018661472b565b61545760408301856153b8565b818103606083015261546981846147a7565b905095945050505050565b6000602082019050818103600083015261548e818461473a565b905092915050565b60006020820190506154ab6000830184614798565b92915050565b600060208201905081810360008301526154cb81846147e0565b905092915050565b600060208201905081810360008301526154ec816148c9565b9050919050565b6000602082019050818103600083015261550c81614909565b9050919050565b6000602082019050818103600083015261552c8161496f565b9050919050565b6000602082019050818103600083015261554c816149d5565b9050919050565b6000602082019050818103600083015261556c81614a3b565b9050919050565b6000602082019050818103600083015261558c81614aa1565b9050919050565b600060208201905081810360008301526155ac81614ae1565b9050919050565b600060208201905081810360008301526155cc81614b21565b9050919050565b600060208201905081810360008301526155ec81614b87565b9050919050565b6000602082019050818103600083015261560c81614bc7565b9050919050565b6000602082019050818103600083015261562c81614c07565b9050919050565b6000602082019050818103600083015261564c81614c6d565b9050919050565b6000602082019050818103600083015261566c81614cd3565b9050919050565b6000602082019050818103600083015261568c81614d13565b9050919050565b600060208201905081810360008301526156ac81614d79565b9050919050565b600060208201905081810360008301526156cc81614ddf565b9050919050565b600060208201905081810360008301526156ec81614e1f565b9050919050565b6000602082019050818103600083015261570c81614e5f565b9050919050565b6000602082019050818103600083015261572c81614e9f565b9050919050565b6000602082019050818103600083015261574c81614f05565b9050919050565b6000602082019050818103600083015261576c81614f6b565b9050919050565b6000602082019050818103600083015261578c81614fab565b9050919050565b600060208201905081810360008301526157ac81615011565b9050919050565b600060208201905081810360008301526157cc81615077565b9050919050565b600060208201905081810360008301526157ec816150b7565b9050919050565b6000602082019050818103600083015261580c816150f7565b9050919050565b6000602082019050818103600083015261582c8161515d565b9050919050565b6000602082019050818103600083015261584c816151dd565b9050919050565b6000602082019050818103600083015261586c81615243565b9050919050565b6000602082019050818103600083015261588c81615283565b9050919050565b600060208201905081810360008301526158ac816152e9565b9050919050565b600060208201905081810360008301526158cc81615329565b9050919050565b600060208201905081810360008301526158ec81615369565b9050919050565b600060208201905061590860008301846153b8565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561593557615934615d3f565b5b8060405250919050565b600067ffffffffffffffff82111561595a57615959615d3f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561598a57615989615d3f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615a4682615bba565b9150615a5183615bba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615a8657615a85615cb2565b5b828201905092915050565b6000615a9c82615bba565b9150615aa783615bba565b925082615ab757615ab6615ce1565b5b828204905092915050565b6000615acd82615bba565b9150615ad883615bba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615b1157615b10615cb2565b5b828202905092915050565b6000615b2782615bba565b9150615b3283615bba565b925082821015615b4557615b44615cb2565b5b828203905092915050565b6000615b5b82615b9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615bf1578082015181840152602081019050615bd6565b83811115615c00576000848401525b50505050565b60006002820490506001821680615c1e57607f821691505b60208210811415615c3257615c31615d10565b5b50919050565b6000615c4382615bba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c7657615c75615cb2565b5b600182019050919050565b6000615c8c82615bba565b9150615c9783615bba565b925082615ca757615ca6615ce1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615d8881615b50565b8114615d9357600080fd5b50565b615d9f81615b62565b8114615daa57600080fd5b50565b615db681615b6e565b8114615dc157600080fd5b50565b615dcd81615bba565b8114615dd857600080fd5b5056fea264697066735822122025f2580e31a222b04b649d13f55ae8fabd32f229af7caaa98673d8d9b141995464736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000ae309d8d8ee219a6485397b91916591d5169d650000000000000000000000000764797cf4fb6e01abc4ff959c43eafd0b3181f37000000000000000000000000000000000000000000000000000000000000000649526f626f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000649524f424f540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6170692e692d726f626f742e636c75622f626c696e64626f7800000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103975760003560e01c80638da5cb5b116101dc578063c0ec1d9811610102578063da3ef23f116100a0578063eb54f9ec1161006f578063eb54f9ec14610d42578063f2c4ce1e14610d6d578063f2fde38b14610d96578063f99031a714610dbf57610397565b8063da3ef23f14610c88578063df90c98d14610cb1578063e7e4346514610cdc578063e985e9c514610d0557610397565b8063c87b56dd116100dc578063c87b56dd14610bca578063c98e163014610c07578063d5abeb0114610c32578063d756985b14610c5d57610397565b8063c0ec1d9814610b37578063c668286214610b62578063c83271f514610b8d57610397565b80639a8825701161017a578063b499e6c611610149578063b499e6c614610aa1578063b6542a1614610acc578063b88d4fde14610af7578063bd7f2bce14610b2057610397565b80639a88257014610a08578063a04a6ac814610a31578063a0712d6814610a5c578063a22cb46514610a7857610397565b806395d89b41116101b657806395d89b411461094a578063964dd2401461097557806396baea63146109a0578063976db741146109dd57610397565b80638da5cb5b146108c95780639196eba5146108f45780639257e0441461091f57610397565b80633ccfd60b116102c157806355f804b31161025f578063715018a61161022e578063715018a614610835578063760413761461084c5780637696e08814610877578063775b9c13146108a057610397565b806355f804b3146107675780635c975abb146107905780636352211e146107bb57806370a08231146107f857610397565b80634698a3d81161029b5780634698a3d8146106a95780634bd25c6f146106d45780634f6ccce7146106ff578063518302271461073c57610397565b80633ccfd60b1461063957806342842e0e14610643578063438b63001461066c57610397565b806318160ddd11610339578063372c12b111610308578063372c12b1146105a357806338110563146105e0578063385df6491461060b5780633b84d9c61461062257610397565b806318160ddd146104e9578063213506b31461051457806323b872dd1461053d5780632f745c591461056657610397565b8063081c8c4411610375578063081c8c4414610441578063095ea7b31461046c5780630bde30da1461049557806313faede6146104be57610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190614592565b610dfc565b6040516103d09190615496565b60405180910390f35b3480156103e557600080fd5b506103ee610e76565b6040516103fb91906154b1565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614625565b610f08565b604051610438919061540d565b60405180910390f35b34801561044d57600080fd5b50610456610f8d565b60405161046391906154b1565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906144bd565b61101b565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061453e565b611133565b005b3480156104ca57600080fd5b506104d36111d6565b6040516104e091906158f3565b60405180910390f35b3480156104f557600080fd5b506104fe6111dc565b60405161050b91906158f3565b60405180910390f35b34801561052057600080fd5b5061053b6004803603810190610536919061464e565b6111e9565b005b34801561054957600080fd5b50610564600480360381019061055f91906143b7565b611277565b005b34801561057257600080fd5b5061058d600480360381019061058891906144bd565b6112d7565b60405161059a91906158f3565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190614352565b61137c565b6040516105d79190615496565b60405180910390f35b3480156105ec57600080fd5b506105f561139c565b60405161060291906158f3565b60405180910390f35b34801561061757600080fd5b506106206113a2565b005b34801561062e57600080fd5b5061063761144a565b005b6106416114f2565b005b34801561064f57600080fd5b5061066a600480360381019061066591906143b7565b611624565b005b34801561067857600080fd5b50610693600480360381019061068e9190614352565b611644565b6040516106a09190615474565b60405180910390f35b3480156106b557600080fd5b506106be61173e565b6040516106cb91906158f3565b60405180910390f35b3480156106e057600080fd5b506106e9611744565b6040516106f691906158f3565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190614625565b6117e7565b60405161073391906158f3565b60405180910390f35b34801561074857600080fd5b5061075161187e565b60405161075e9190615496565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906145e4565b611891565b005b34801561079c57600080fd5b506107a5611927565b6040516107b29190615496565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190614625565b61193a565b6040516107ef919061540d565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190614352565b6119ec565b60405161082c91906158f3565b60405180910390f35b34801561084157600080fd5b5061084a611aa4565b005b34801561085857600080fd5b50610861611b2c565b60405161086e919061540d565b60405180910390f35b34801561088357600080fd5b5061089e6004803603810190610899919061464e565b611b52565b005b3480156108ac57600080fd5b506108c760048036038101906108c291906144f9565b611be0565b005b3480156108d557600080fd5b506108de611d27565b6040516108eb919061540d565b60405180910390f35b34801561090057600080fd5b50610909611d51565b60405161091691906158f3565b60405180910390f35b34801561092b57600080fd5b50610934611d57565b60405161094191906158f3565b60405180910390f35b34801561095657600080fd5b5061095f611d5d565b60405161096c91906154b1565b60405180910390f35b34801561098157600080fd5b5061098a611def565b60405161099791906158f3565b60405180910390f35b3480156109ac57600080fd5b506109c760048036038101906109c29190614352565b611df5565b6040516109d49190615496565b60405180910390f35b3480156109e957600080fd5b506109f2611e15565b6040516109ff91906158f3565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a91906144f9565b611e1b565b005b348015610a3d57600080fd5b50610a46611f62565b604051610a5391906158f3565b60405180910390f35b610a766004803603810190610a719190614625565b611f68565b005b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190614481565b61208a565b005b348015610aad57600080fd5b50610ab661220b565b604051610ac39190615496565b60405180910390f35b348015610ad857600080fd5b50610ae161221e565b604051610aee91906158f3565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b199190614406565b612224565b005b348015610b2c57600080fd5b50610b35612286565b005b348015610b4357600080fd5b50610b4c612349565b604051610b5991906158f3565b60405180910390f35b348015610b6e57600080fd5b50610b7761234f565b604051610b8491906154b1565b60405180910390f35b348015610b9957600080fd5b50610bb46004803603810190610baf9190614352565b6123dd565b604051610bc19190615496565b60405180910390f35b348015610bd657600080fd5b50610bf16004803603810190610bec9190614625565b612433565b604051610bfe91906154b1565b60405180910390f35b348015610c1357600080fd5b50610c1c61258c565b604051610c2991906158f3565b60405180910390f35b348015610c3e57600080fd5b50610c47612592565b604051610c5491906158f3565b60405180910390f35b348015610c6957600080fd5b50610c72612598565b604051610c7f91906158f3565b60405180910390f35b348015610c9457600080fd5b50610caf6004803603810190610caa91906145e4565b61259e565b005b348015610cbd57600080fd5b50610cc6612634565b604051610cd391906158f3565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe919061468a565b61263a565b005b348015610d1157600080fd5b50610d2c6004803603810190610d27919061437b565b6126e8565b604051610d399190615496565b60405180910390f35b348015610d4e57600080fd5b50610d5761277c565b604051610d6491906158f3565b60405180910390f35b348015610d7957600080fd5b50610d946004803603810190610d8f91906145e4565b612782565b005b348015610da257600080fd5b50610dbd6004803603810190610db89190614352565b612818565b005b348015610dcb57600080fd5b50610de66004803603810190610de19190614352565b612910565b604051610df39190615496565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e6f5750610e6e8261297e565b5b9050919050565b606060008054610e8590615c06565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190615c06565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b6000610f1382612a60565b610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990615733565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610f9a90615c06565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc690615c06565b80156110135780601f10610fe857610100808354040283529160200191611013565b820191906000526020600020905b815481529060010190602001808311610ff657829003601f168201915b505050505081565b60006110268261193a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e906157f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110b6612acc565b73ffffffffffffffffffffffffffffffffffffffff1614806110e557506110e4816110df612acc565b6126e8565b5b611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90615633565b60405180910390fd5b61112e8383612ad4565b505050565b61113b612acc565b73ffffffffffffffffffffffffffffffffffffffff16611159611d27565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690615753565b60405180910390fd5b81601760016101000a81548160ff0219169083151502179055506111d281611891565b5050565b600e5481565b6000600880549050905090565b6111f1612acc565b73ffffffffffffffffffffffffffffffffffffffff1661120f611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90615753565b60405180910390fd5b81601e8190555080601f819055505050565b611288611282612acc565b82612b8d565b6112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90615833565b60405180910390fd5b6112d2838383612c6b565b505050565b60006112e2836119ec565b8210611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90615513565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b601e5481565b6113aa612acc565b73ffffffffffffffffffffffffffffffffffffffff166113c8611d27565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590615753565b60405180910390fd5b601760009054906101000a900460ff1615601760006101000a81548160ff021916908315150217905550565b611452612acc565b73ffffffffffffffffffffffffffffffffffffffff16611470611d27565b73ffffffffffffffffffffffffffffffffffffffff16146114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90615753565b60405180910390fd5b601760019054906101000a900460ff1615601760016101000a81548160ff021916908315150217905550565b6114fa612acc565b73ffffffffffffffffffffffffffffffffffffffff16611518611d27565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590615753565b60405180910390fd5b6000611578611d27565b73ffffffffffffffffffffffffffffffffffffffff164760405161159b906153f8565b60006040518083038185875af1925050503d80600081146115d8576040519150601f19603f3d011682016040523d82523d6000602084013e6115dd565b606091505b5050905080611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906156d3565b60405180910390fd5b50565b61163f83838360405180602001604052806000815250612224565b505050565b60606000611651836119ec565b905060008167ffffffffffffffff811115611695577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116c35781602001602082028036833780820191505090505b50905060005b82811015611733576116db85826112d7565b828281518110611714577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061172b90615c38565b9150506116c9565b508092505050919050565b601b5481565b6000601760029054906101000a900460ff1661176357600090506117e4565b60185442101561177757601c5490506117e4565b60006019546018544261178a9190615b1c565b6117949190615a91565b9050601a548111156117a657601a5490505b601b54816117b49190615ac2565b601c54116117c457601d546117e0565b601b54816117d29190615ac2565b601c546117df9190615b1c565b5b9150505b90565b60006117f16111dc565b8210611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990615873565b60405180910390fd5b6008828154811061186c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601760019054906101000a900460ff1681565b611899612acc565b73ffffffffffffffffffffffffffffffffffffffff166118b7611d27565b73ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490615753565b60405180910390fd5b80600b908051906020019061192392919061412c565b5050565b601760009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90615693565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490615673565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aac612acc565b73ffffffffffffffffffffffffffffffffffffffff16611aca611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790615753565b60405180910390fd5b611b2a6000612ec7565b565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b5a612acc565b73ffffffffffffffffffffffffffffffffffffffff16611b78611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590615753565b60405180910390fd5b81600e8190555080600f819055505050565b611be8612acc565b73ffffffffffffffffffffffffffffffffffffffff16611c06611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390615753565b60405180910390fd5b60005b82829050811015611d2257600160106000858585818110611ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611cbe9190614352565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d1a90615c38565b915050611c5f565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60195481565b600f5481565b606060018054611d6c90615c06565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9890615c06565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b601a5481565b60116020528060005260406000206000915054906101000a900460ff1681565b60145481565b611e23612acc565b73ffffffffffffffffffffffffffffffffffffffff16611e41611d27565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90615753565b60405180910390fd5b60005b82829050811015611f5d57600160116000858585818110611ee4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ef99190614352565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f5590615c38565b915050611e9a565b505050565b601d5481565b6000611f726111dc565b9050601760009054906101000a900460ff1615611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906154f3565b60405180910390fd5b60008211612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe906158d3565b60405180910390fd5b60125482826120169190615a3b565b1115612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906157d3565b60405180910390fd5b601760029054906101000a900460ff161561207b576120768282612f8d565b612086565b6120858282613069565b5b5050565b612092612acc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f7906155d3565b60405180910390fd5b806005600061210d612acc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121ba612acc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ff9190615496565b60405180910390a35050565b601760029054906101000a900460ff1681565b60155481565b61223561222f612acc565b83612b8d565b612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90615833565b60405180910390fd5b612280848484846135bd565b50505050565b61228e612acc565b73ffffffffffffffffffffffffffffffffffffffff16602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490615713565b60405180910390fd5b601760029054906101000a900460ff1615601760026101000a81548160ff021916908315150217905550565b60165481565b600c805461235c90615c06565b80601f016020809104026020016040519081016040528092919081815260200182805461238890615c06565b80156123d55780601f106123aa576101008083540402835291602001916123d5565b820191906000526020600020905b8154815290600101906020018083116123b857829003601f168201915b505050505081565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606061243e82612a60565b61247d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247490615793565b60405180910390fd5b60001515601760019054906101000a900460ff161515141561252b57600d80546124a690615c06565b80601f01602080910402602001604051908101604052809291908181526020018280546124d290615c06565b801561251f5780601f106124f45761010080835404028352916020019161251f565b820191906000526020600020905b81548152906001019060200180831161250257829003601f168201915b50505050509050612587565b6000612535613619565b905060008151116125555760405180602001604052806000815250612583565b8061255f846136ab565b600c604051602001612573939291906153c7565b6040516020818303038152906040525b9150505b919050565b60135481565b60125481565b601c5481565b6125a6612acc565b73ffffffffffffffffffffffffffffffffffffffff166125c4611d27565b73ffffffffffffffffffffffffffffffffffffffff161461261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261190615753565b60405180910390fd5b80600c908051906020019061263092919061412c565b5050565b601f5481565b612642612acc565b73ffffffffffffffffffffffffffffffffffffffff16612660611d27565b73ffffffffffffffffffffffffffffffffffffffff16146126b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad90615753565b60405180910390fd5b856018819055508460198190555083601a8190555082601b8190555081601c8190555080601d81905550505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b61278a612acc565b73ffffffffffffffffffffffffffffffffffffffff166127a8611d27565b73ffffffffffffffffffffffffffffffffffffffff16146127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f590615753565b60405180910390fd5b80600d908051906020019061281492919061412c565b5050565b612820612acc565b73ffffffffffffffffffffffffffffffffffffffff1661283e611d27565b73ffffffffffffffffffffffffffffffffffffffff1614612894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288b90615753565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90615553565b60405180910390fd5b61290d81612ec7565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a595750612a5882613858565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b478361193a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b9882612a60565b612bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bce90615613565b60405180910390fd5b6000612be28361193a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c5157508373ffffffffffffffffffffffffffffffffffffffff16612c3984610f08565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c625750612c6181856126e8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c8b8261193a565b73ffffffffffffffffffffffffffffffffffffffff1614612ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd890615773565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d48906155b3565b60405180910390fd5b612d5c8383836138c2565b612d67600082612ad4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db79190615b1c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0e9190615a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601854421015612fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc9906154d3565b60405180910390fd5b34612fdb611744565b83612fe69190615ac2565b1115613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301e90615893565b60405180910390fd5b6000600190505b82811161306457613051613040612acc565b828461304c9190615a3b565b6139d6565b808061305c90615c38565b91505061302e565b505050565b601e544210156130ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a590615653565b60405180910390fd5b60006130c06130bb612acc565b612910565b905060006130d46130cf612acc565b6123dd565b9050601e5442101580156130ea5750601f544211155b156133865783600f546130fd9190615ac2565b34101561313f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613136906157b3565b60405180910390fd5b81806131485750805b613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e90615813565b60405180910390fd5b811561328557600184146131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c790615593565b60405180910390fd5b601654841115613215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320c90615853565b60405180910390fd5b6001613227613222612acc565b6119ec565b10613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e906158b3565b60405180910390fd5b83601660008282546132799190615b1c565b92505081905550613381565b80156133805760028411156132cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c6906156b3565b60405180910390fd5b601554841115613314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330b90615853565b60405180910390fd5b6002613326613321612acc565b6119ec565b10613366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335d906158b3565b60405180910390fd5b83601560008282546133789190615b1c565b925050819055505b5b613579565b83600e546133949190615ac2565b3410156133d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cd906157b3565b60405180910390fd5b600284111561341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906156b3565b60405180910390fd5b60135484846134299190615a3b565b111561346a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613461906155f3565b60405180910390fd5b80156134c757600461348261347d612acc565b6119ec565b106134c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b9906158b3565b60405180910390fd5b613578565b81156135245760036134df6134da612acc565b6119ec565b1061351f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613516906158b3565b60405180910390fd5b613577565b6002613536613531612acc565b6119ec565b10613576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356d906158b3565b60405180910390fd5b5b5b5b6000600190505b8481116135b6576135a3613592612acc565b828661359e9190615a3b565b6139d6565b80806135ae90615c38565b915050613580565b5050505050565b6135c8848484612c6b565b6135d4848484846139f4565b613613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360a90615533565b60405180910390fd5b50505050565b6060600b805461362890615c06565b80601f016020809104026020016040519081016040528092919081815260200182805461365490615c06565b80156136a15780601f10613676576101008083540402835291602001916136a1565b820191906000526020600020905b81548152906001019060200180831161368457829003601f168201915b5050505050905090565b606060008214156136f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613853565b600082905060005b6000821461372557808061370e90615c38565b915050600a8261371e9190615a91565b91506136fb565b60008167ffffffffffffffff811115613767577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137995781602001600182028036833780820191505090505b5090505b6000851461384c576001826137b29190615b1c565b9150600a856137c19190615c81565b60306137cd9190615a3b565b60f81b818381518110613809577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138459190615a91565b945061379d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138cd838383612979565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139105761390b81613b8b565b61394f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461394e5761394d8382613bd4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139925761398d81613d41565b6139d1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146139d0576139cf8282613e84565b5b5b505050565b6139f0828260405180602001604052806000815250613f03565b5050565b6000613a158473ffffffffffffffffffffffffffffffffffffffff16612966565b15613b7e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a3e612acc565b8786866040518563ffffffff1660e01b8152600401613a609493929190615428565b602060405180830381600087803b158015613a7a57600080fd5b505af1925050508015613aab57506040513d601f19601f82011682018060405250810190613aa891906145bb565b60015b613b2e573d8060008114613adb576040519150601f19603f3d011682016040523d82523d6000602084013e613ae0565b606091505b50600081511415613b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1d90615533565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b83565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613be1846119ec565b613beb9190615b1c565b9050600060076000848152602001908152602001600020549050818114613cd0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613d559190615b1c565b9050600060096000848152602001908152602001600020549050600060088381548110613dab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613e8f836119ec565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613f0d8383613f5e565b613f1a60008484846139f4565b613f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5090615533565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fc5906156f3565b60405180910390fd5b613fd781612a60565b15614017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400e90615573565b60405180910390fd5b614023600083836138c2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140739190615a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461413890615c06565b90600052602060002090601f01602090048101928261415a57600085556141a1565b82601f1061417357805160ff19168380011785556141a1565b828001600101855582156141a1579182015b828111156141a0578251825591602001919060010190614185565b5b5090506141ae91906141b2565b5090565b5b808211156141cb5760008160009055506001016141b3565b5090565b60006141e26141dd8461593f565b61590e565b9050828152602081018484840111156141fa57600080fd5b614205848285615bc4565b509392505050565b600061422061421b8461596f565b61590e565b90508281526020810184848401111561423857600080fd5b614243848285615bc4565b509392505050565b60008135905061425a81615d7f565b92915050565b60008083601f84011261427257600080fd5b8235905067ffffffffffffffff81111561428b57600080fd5b6020830191508360208202830111156142a357600080fd5b9250929050565b6000813590506142b981615d96565b92915050565b6000813590506142ce81615dad565b92915050565b6000815190506142e381615dad565b92915050565b600082601f8301126142fa57600080fd5b813561430a8482602086016141cf565b91505092915050565b600082601f83011261432457600080fd5b813561433484826020860161420d565b91505092915050565b60008135905061434c81615dc4565b92915050565b60006020828403121561436457600080fd5b60006143728482850161424b565b91505092915050565b6000806040838503121561438e57600080fd5b600061439c8582860161424b565b92505060206143ad8582860161424b565b9150509250929050565b6000806000606084860312156143cc57600080fd5b60006143da8682870161424b565b93505060206143eb8682870161424b565b92505060406143fc8682870161433d565b9150509250925092565b6000806000806080858703121561441c57600080fd5b600061442a8782880161424b565b945050602061443b8782880161424b565b935050604061444c8782880161433d565b925050606085013567ffffffffffffffff81111561446957600080fd5b614475878288016142e9565b91505092959194509250565b6000806040838503121561449457600080fd5b60006144a28582860161424b565b92505060206144b3858286016142aa565b9150509250929050565b600080604083850312156144d057600080fd5b60006144de8582860161424b565b92505060206144ef8582860161433d565b9150509250929050565b6000806020838503121561450c57600080fd5b600083013567ffffffffffffffff81111561452657600080fd5b61453285828601614260565b92509250509250929050565b6000806040838503121561455157600080fd5b600061455f858286016142aa565b925050602083013567ffffffffffffffff81111561457c57600080fd5b61458885828601614313565b9150509250929050565b6000602082840312156145a457600080fd5b60006145b2848285016142bf565b91505092915050565b6000602082840312156145cd57600080fd5b60006145db848285016142d4565b91505092915050565b6000602082840312156145f657600080fd5b600082013567ffffffffffffffff81111561461057600080fd5b61461c84828501614313565b91505092915050565b60006020828403121561463757600080fd5b60006146458482850161433d565b91505092915050565b6000806040838503121561466157600080fd5b600061466f8582860161433d565b92505060206146808582860161433d565b9150509250929050565b60008060008060008060c087890312156146a357600080fd5b60006146b189828a0161433d565b96505060206146c289828a0161433d565b95505060406146d389828a0161433d565b94505060606146e489828a0161433d565b93505060806146f589828a0161433d565b92505060a061470689828a0161433d565b9150509295509295509295565b600061471f83836153a9565b60208301905092915050565b61473481615b50565b82525050565b6000614745826159c4565b61474f81856159f2565b935061475a8361599f565b8060005b8381101561478b5781516147728882614713565b975061477d836159e5565b92505060018101905061475e565b5085935050505092915050565b6147a181615b62565b82525050565b60006147b2826159cf565b6147bc8185615a03565b93506147cc818560208601615bd3565b6147d581615d6e565b840191505092915050565b60006147eb826159da565b6147f58185615a1f565b9350614805818560208601615bd3565b61480e81615d6e565b840191505092915050565b6000614824826159da565b61482e8185615a30565b935061483e818560208601615bd3565b80840191505092915050565b6000815461485781615c06565b6148618186615a30565b9450600182166000811461487c576001811461488d576148c0565b60ff198316865281860193506148c0565b614896856159af565b60005b838110156148b857815481890152600182019150602081019050614899565b838801955050505b50505092915050565b60006148d6601983615a1f565b91507f49526f626f743a2041756374696f6e206e6f74207374617274000000000000006000830152602082019050919050565b6000614916602283615a1f565b91507f49526f626f743a204d696e74696e672069732074656d706f7261727920636c6f60008301527f73650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061497c602b83615a1f565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006149e2603283615a1f565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a48602683615a1f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aae601c83615a1f565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614aee601b83615a1f565b91507f49526f626f743a204f6e6c792063616e206d696e742031206e667400000000006000830152602082019050919050565b6000614b2e602483615a1f565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b94601983615a1f565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614bd4601883615a1f565b91507f49526f626f743a204c6576656c203120736f6c64206f757400000000000000006000830152602082019050919050565b6000614c14602c83615a1f565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614c7a603883615a1f565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614ce0601a83615a1f565b91507f49526f626f743a204e6f742073746172742073656c6c207965740000000000006000830152602082019050919050565b6000614d20602a83615a1f565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d86602983615a1f565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dec601b83615a1f565b91507f49526f626f743a204f6e6c792063616e206d696e742032206e667400000000006000830152602082019050919050565b6000614e2c601883615a1f565b91507f49526f626f743a204661696c20746f20776974686472617700000000000000006000830152602082019050919050565b6000614e6c602083615a1f565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614eac602183615a1f565b91507f49526f626f743a2063616c6c6572206973206e6f74207468652064657654656160008301527f6d000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f12602c83615a1f565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614f78602083615a1f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614fb8602983615a1f565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061501e602f83615a1f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000615084601c83615a1f565b91507f49526f626f743a20496e73756666696369656e742062616c616e6365000000006000830152602082019050919050565b60006150c4601a83615a1f565b91507f49526f626f743a2041636869657665206d617820737570706c790000000000006000830152602082019050919050565b6000615104602183615a1f565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061516a602483615a1f565b91507f49526f626f743a20596f7520617265206e6f7420696e2074686520776869746560008301527f4c697374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006151d0600083615a14565b9150600082019050919050565b60006151ea603183615a1f565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000615250601983615a1f565b91507f49526f626f743a20507265736572766520736f6c64206f7574000000000000006000830152602082019050919050565b6000615290602c83615a1f565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006152f6601583615a1f565b91507f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006000830152602082019050919050565b6000615336601b83615a1f565b91507f49526f626f743a2041636869657665206d6178206d696e74696e6700000000006000830152602082019050919050565b6000615376601883615a1f565b91507f49526f626f743a207174792073686f756c6420677465203000000000000000006000830152602082019050919050565b6153b281615bba565b82525050565b6153c181615bba565b82525050565b60006153d38286614819565b91506153df8285614819565b91506153eb828461484a565b9150819050949350505050565b6000615403826151c3565b9150819050919050565b6000602082019050615422600083018461472b565b92915050565b600060808201905061543d600083018761472b565b61544a602083018661472b565b61545760408301856153b8565b818103606083015261546981846147a7565b905095945050505050565b6000602082019050818103600083015261548e818461473a565b905092915050565b60006020820190506154ab6000830184614798565b92915050565b600060208201905081810360008301526154cb81846147e0565b905092915050565b600060208201905081810360008301526154ec816148c9565b9050919050565b6000602082019050818103600083015261550c81614909565b9050919050565b6000602082019050818103600083015261552c8161496f565b9050919050565b6000602082019050818103600083015261554c816149d5565b9050919050565b6000602082019050818103600083015261556c81614a3b565b9050919050565b6000602082019050818103600083015261558c81614aa1565b9050919050565b600060208201905081810360008301526155ac81614ae1565b9050919050565b600060208201905081810360008301526155cc81614b21565b9050919050565b600060208201905081810360008301526155ec81614b87565b9050919050565b6000602082019050818103600083015261560c81614bc7565b9050919050565b6000602082019050818103600083015261562c81614c07565b9050919050565b6000602082019050818103600083015261564c81614c6d565b9050919050565b6000602082019050818103600083015261566c81614cd3565b9050919050565b6000602082019050818103600083015261568c81614d13565b9050919050565b600060208201905081810360008301526156ac81614d79565b9050919050565b600060208201905081810360008301526156cc81614ddf565b9050919050565b600060208201905081810360008301526156ec81614e1f565b9050919050565b6000602082019050818103600083015261570c81614e5f565b9050919050565b6000602082019050818103600083015261572c81614e9f565b9050919050565b6000602082019050818103600083015261574c81614f05565b9050919050565b6000602082019050818103600083015261576c81614f6b565b9050919050565b6000602082019050818103600083015261578c81614fab565b9050919050565b600060208201905081810360008301526157ac81615011565b9050919050565b600060208201905081810360008301526157cc81615077565b9050919050565b600060208201905081810360008301526157ec816150b7565b9050919050565b6000602082019050818103600083015261580c816150f7565b9050919050565b6000602082019050818103600083015261582c8161515d565b9050919050565b6000602082019050818103600083015261584c816151dd565b9050919050565b6000602082019050818103600083015261586c81615243565b9050919050565b6000602082019050818103600083015261588c81615283565b9050919050565b600060208201905081810360008301526158ac816152e9565b9050919050565b600060208201905081810360008301526158cc81615329565b9050919050565b600060208201905081810360008301526158ec81615369565b9050919050565b600060208201905061590860008301846153b8565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561593557615934615d3f565b5b8060405250919050565b600067ffffffffffffffff82111561595a57615959615d3f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561598a57615989615d3f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615a4682615bba565b9150615a5183615bba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615a8657615a85615cb2565b5b828201905092915050565b6000615a9c82615bba565b9150615aa783615bba565b925082615ab757615ab6615ce1565b5b828204905092915050565b6000615acd82615bba565b9150615ad883615bba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615b1157615b10615cb2565b5b828202905092915050565b6000615b2782615bba565b9150615b3283615bba565b925082821015615b4557615b44615cb2565b5b828203905092915050565b6000615b5b82615b9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615bf1578082015181840152602081019050615bd6565b83811115615c00576000848401525b50505050565b60006002820490506001821680615c1e57607f821691505b60208210811415615c3257615c31615d10565b5b50919050565b6000615c4382615bba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c7657615c75615cb2565b5b600182019050919050565b6000615c8c82615bba565b9150615c9783615bba565b925082615ca757615ca6615ce1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615d8881615b50565b8114615d9357600080fd5b50565b615d9f81615b62565b8114615daa57600080fd5b50565b615db681615b6e565b8114615dc157600080fd5b50565b615dcd81615bba565b8114615dd857600080fd5b5056fea264697066735822122025f2580e31a222b04b649d13f55ae8fabd32f229af7caaa98673d8d9b141995464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000ae309d8d8ee219a6485397b91916591d5169d650000000000000000000000000764797cf4fb6e01abc4ff959c43eafd0b3181f37000000000000000000000000000000000000000000000000000000000000000649526f626f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000649524f424f540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6170692e692d726f626f742e636c75622f626c696e64626f7800000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): IRobot
Arg [1] : _symbol (string): IROBOT
Arg [2] : _initNotRevealedUri (string): https://api.i-robot.club/blindbox
Arg [3] : _operator (address): 0xAe309D8D8Ee219A6485397b91916591d5169D650
Arg [4] : _devteam (address): 0x764797Cf4Fb6e01aBc4ff959c43EAFd0B3181f37
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000ae309d8d8ee219a6485397b91916591d5169d650
Arg [4] : 000000000000000000000000764797cf4fb6e01abc4ff959c43eafd0b3181f37
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 49526f626f740000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 49524f424f540000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [10] : 68747470733a2f2f6170692e692d726f626f742e636c75622f626c696e64626f
Arg [11] : 7800000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.