ERC-721
Overview
Max Total Supply
264 KEYS
Holders
162
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KEYSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EQKEYS
Compiler Version
v0.8.4+commit.c7e474f2
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; // npm packages imports import "hardhat/console.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /* _____ _______ _____ _____ _____ _____ _____ /\ \ /::\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /::\ \ /::::\ \ /::\____\ /::\____\ /::\ \ /::\ \ /::\ \ /::::\ \ /::::::\ \ /::::| | /:::/ / /::::\ \ \:::\ \ /::::\ \ /::::::\ \ /::::::::\ \ /:::::| | /:::/ / /::::::\ \ \:::\ \ /::::::\ \ /:::/\:::\ \ /:::/--\:::\ \ /::::::| | /:::/ / /:::/\:::\ \ \:::\ \ /:::/\:::\ \ /:::/__\:::\ \ /:::/ \:::\ \ /:::/|::| | /:::/ / /:::/__\:::\ \ \:::\ \ /:::/ \:::\ \ /::::\ \:::\ \ /:::/ / \:::\ \ /:::/ |::| | /:::/ / \:::\ \:::\ \ /::::\ \ /:::/ \:::\ \ /::::::\ \:::\ \ /:::/____/ \:::\____\ /:::/ |::|___|______ /:::/ / _____ ___\:::\ \:::\ \ ____ /::::::\ \ /:::/ / \:::\ \ /:::/\:::\ \:::\ \ |:::| | |:::| | /:::/ |::::::::\ \ /:::/____/ /\ \ /\ \:::\ \:::\ \ /\ \ /:::/\:::\ \ /:::/ / \:::\ \ /:::/__\:::\ \:::\____\|:::|____| |:::|____| /:::/ |:::::::::\____\|:::| / /::\____\/::\ \:::\ \:::\____\/::\ \/:::/ \:::\____\/:::/____/ \:::\____\ \:::\ \:::\ \::/ / \:::\ _\___/:::/ / \::/ / -----/:::/ /|:::|____\ /:::/ /\:::\ \:::\ \::/ /\:::\ /:::/ \::/ /\:::\ \ \::/ / \:::\ \:::\ \/____/ \:::\ |::| /:::/ / \/____/ /:::/ / \:::\ \ /:::/ / \:::\ \:::\ \/____/ \:::\/:::/ / \/____/ \:::\ \ \/____/ \:::\ \:::\ \ \:::\|::|/:::/ / /:::/ / \:::\ \ /:::/ / \:::\ \:::\ \ \::::::/ / \:::\ \ \:::\ \:::\____\ \::::::::::/ / /:::/ / \:::\ /:::/ / \:::\ \:::\____\ \::::/____/ \:::\ \ \:::\ \::/ / \::::::::/ / /:::/ / \:::\__/:::/ / \:::\ /:::/ / \:::\ \ \:::\ \ \:::\ \/____/ \::::::/ / /:::/ / \::::::::/ / \:::\/:::/ / \:::\ \ \:::\ \ \:::\ \ \::::/____/ /:::/ / \::::::/ / \::::::/ / \:::\ \ \:::\ \ \:::\____\ |::| | /:::/ / \::::/ / \::::/ / \:::\____\ \:::\____\ \::/ / |::|____| \::/ / \::/____/ \::/ / \::/ / \::/ / \/____/ -- \/____/ -- \/____/ \/____/ \/____/ */ contract EQKEYS is ERC721Enumerable, ReentrancyGuard, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string public baseURI; string public baseExtension = ".json"; string public notRevealedURI; bool public paused = true; bool public revealed = false; bool public onlyPresale = true; uint64 public constant presaleCost = .22 ether; uint64 public constant publicSaleCost = .33 ether; uint16 public constant maxSupply = 264; uint8 public constant presaleMintAmount = 2; uint8 public constant publicSaleMintAmount = 4; uint8 public constant presaleKeysPerAddressLimit = 2; uint8 public constant keysPerAddressLimit = 4; address[] public presaleAddresses; mapping(address => uint) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealURI); _tokenIds.increment(); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint8 _mintAmount) public payable nonReentrant { require (!paused, "this contract is paused"); uint supply = totalSupply(); require(_mintAmount > 0, "at least 1 KEY needs to be minted"); require(supply + _mintAmount <= maxSupply, "this would exceed the number of available KEYs"); if(msg.sender != owner()) { if(onlyPresale) { require(onPresaleList(msg.sender), "this address is not on the presale list"); require(_mintAmount <= presaleMintAmount, "maximum number of KEYs per presale session exceeded"); uint ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= presaleKeysPerAddressLimit, "individual addresses are only allowed a maximum of 2 NFTs during presale"); require(msg.value >= presaleCost * _mintAmount, "insufficient funds"); require(supply + _mintAmount <= 176, "this amount will exceed the presale limit or the presale has sold out"); } else { require(_mintAmount <= publicSaleMintAmount, "maximum number of KEYs per session exceeded"); uint ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= keysPerAddressLimit, "individual addresses are only allowed a maximum of 4 NFTs"); require(msg.value >= publicSaleCost * _mintAmount, "insufficient funds"); } } for (uint i = 0; i < _mintAmount; i++) { uint tokenId = _tokenIds.current(); if (_tokenIds.current() <= maxSupply) { _tokenIds.increment(); addressMintedBalance[msg.sender]++; _safeMint(msg.sender, tokenId); } } } function onPresaleList(address _user) public view returns (bool) { for (uint i = 0; i < presaleAddresses.length; i++) { if (presaleAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return bytes(notRevealedURI).length > 0 ? string(abi.encodePacked(notRevealedURI, tokenId.toString(), baseExtension)) : ""; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function penthouseMint(uint8 _mintAmount) public onlyOwner { uint supply = totalSupply(); require(_mintAmount > 0, "at least 1 KEY needs to be minted"); require(supply + _mintAmount <= 88, "this would exceed the number of penthouse KEYs"); for (uint i = 0; i < _mintAmount; i++) { uint tokenId = _tokenIds.current(); if (_tokenIds.current() <= 88) { _tokenIds.increment(); addressMintedBalance[msg.sender]++; _safeMint(msg.sender, tokenId); } } } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function reveal() public onlyOwner { revealed = !revealed; } function setOnlyPresale(bool _state) public onlyOwner { onlyPresale = _state; } function presaleUsers(address[] calldata _users) public onlyOwner { delete presaleAddresses; presaleAddresses = _users; } function withdraw() external payable onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// SPDX-License-Identifier: MIT pragma solidity >= 0.4.22 <0.9.0; library console { address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67); function _sendLogPayload(bytes memory payload) private view { uint256 payloadLength = payload.length; address consoleAddress = CONSOLE_ADDRESS; assembly { let payloadStart := add(payload, 32) let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0) } } function log() internal view { _sendLogPayload(abi.encodeWithSignature("log()")); } function logInt(int p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(int)", p0)); } function logUint(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function logString(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function logBool(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function logAddress(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function logBytes(bytes memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); } function logBytes1(bytes1 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); } function logBytes2(bytes2 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); } function logBytes3(bytes3 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); } function logBytes4(bytes4 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); } function logBytes5(bytes5 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); } function logBytes6(bytes6 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); } function logBytes7(bytes7 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); } function logBytes8(bytes8 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); } function logBytes9(bytes9 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); } function logBytes10(bytes10 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); } function logBytes11(bytes11 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); } function logBytes12(bytes12 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); } function logBytes13(bytes13 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); } function logBytes14(bytes14 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); } function logBytes15(bytes15 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); } function logBytes16(bytes16 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); } function logBytes17(bytes17 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); } function logBytes18(bytes18 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); } function logBytes19(bytes19 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); } function logBytes20(bytes20 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); } function logBytes21(bytes21 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); } function logBytes22(bytes22 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); } function logBytes23(bytes23 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); } function logBytes24(bytes24 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); } function logBytes25(bytes25 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); } function logBytes26(bytes26 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); } function logBytes27(bytes27 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); } function logBytes28(bytes28 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); } function logBytes29(bytes29 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); } function logBytes30(bytes30 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); } function logBytes31(bytes31 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); } function logBytes32(bytes32 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); } function log(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function log(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function log(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function log(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function log(uint p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1)); } function log(uint p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1)); } function log(uint p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1)); } function log(uint p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1)); } function log(string memory p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1)); } function log(string memory p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); } function log(string memory p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); } function log(string memory p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); } function log(bool p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1)); } function log(bool p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); } function log(bool p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); } function log(bool p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); } function log(address p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1)); } function log(address p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); } function log(address p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); } function log(address p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); } function log(uint p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2)); } function log(uint p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2)); } function log(uint p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2)); } function log(uint p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2)); } function log(uint p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2)); } function log(uint p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2)); } function log(uint p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2)); } function log(uint p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2)); } function log(uint p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2)); } function log(uint p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2)); } function log(uint p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2)); } function log(uint p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2)); } function log(uint p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2)); } function log(uint p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2)); } function log(uint p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2)); } function log(uint p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2)); } function log(string memory p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2)); } function log(string memory p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2)); } function log(string memory p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2)); } function log(string memory p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2)); } function log(string memory p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2)); } function log(string memory p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); } function log(string memory p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); } function log(string memory p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); } function log(string memory p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2)); } function log(string memory p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); } function log(string memory p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); } function log(string memory p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); } function log(string memory p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2)); } function log(string memory p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); } function log(string memory p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); } function log(string memory p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); } function log(bool p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2)); } function log(bool p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2)); } function log(bool p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2)); } function log(bool p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2)); } function log(bool p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2)); } function log(bool p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); } function log(bool p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); } function log(bool p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); } function log(bool p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2)); } function log(bool p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); } function log(bool p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); } function log(bool p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); } function log(bool p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2)); } function log(bool p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); } function log(bool p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); } function log(bool p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); } function log(address p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2)); } function log(address p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2)); } function log(address p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2)); } function log(address p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2)); } function log(address p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2)); } function log(address p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); } function log(address p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); } function log(address p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); } function log(address p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2)); } function log(address p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); } function log(address p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); } function log(address p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); } function log(address p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2)); } function log(address p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); } function log(address p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); } function log(address p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); } function log(uint p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); }
{ "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":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"keysPerAddressLimit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"onPresaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"penthouseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"presaleAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleKeysPerAddressLimit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"presaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000051929190620003db565b506001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff021916908315150217905550348015620000b057600080fd5b5060405162005faf38038062005faf8339818101604052810190620000d69190620004fd565b83838160009080519060200190620000f0929190620003db565b50806001908051906020019062000109929190620003db565b5050506001600a8190555062000134620001286200017760201b60201c565b6200017f60201b60201c565b62000145826200024560201b60201c565b6200015681620002f060201b60201c565b6200016d600c6200039b60201b620025821760201c565b50505050620007c0565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002556200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027b620003b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb90620005f4565b60405180910390fd5b80600d9080519060200190620002ec929190620003db565b5050565b620003006200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000326620003b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037690620005f4565b60405180910390fd5b80600f908051906020019062000397929190620003db565b5050565b6001816000016000828254019250508190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e990620006bc565b90600052602060002090601f0160209004810192826200040d576000855562000459565b82601f106200042857805160ff191683800117855562000459565b8280016001018555821562000459579182015b82811115620004585782518255916020019190600101906200043b565b5b5090506200046891906200046c565b5090565b5b80821115620004875760008160009055506001016200046d565b5090565b6000620004a26200049c846200063f565b62000616565b905082815260208101848484011115620004bb57600080fd5b620004c884828562000686565b509392505050565b600082601f830112620004e257600080fd5b8151620004f48482602086016200048b565b91505092915050565b600080600080608085870312156200051457600080fd5b600085015167ffffffffffffffff8111156200052f57600080fd5b6200053d87828801620004d0565b945050602085015167ffffffffffffffff8111156200055b57600080fd5b6200056987828801620004d0565b935050604085015167ffffffffffffffff8111156200058757600080fd5b6200059587828801620004d0565b925050606085015167ffffffffffffffff811115620005b357600080fd5b620005c187828801620004d0565b91505092959194509250565b6000620005dc60208362000675565b9150620005e98262000797565b602082019050919050565b600060208201905081810360008301526200060f81620005cd565b9050919050565b60006200062262000635565b9050620006308282620006f2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200065d576200065c62000757565b5b620006688262000786565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006a657808201518184015260208101905062000689565b83811115620006b6576000848401525b50505050565b60006002820490506001821680620006d557607f821691505b60208210811415620006ec57620006eb62000728565b5b50919050565b620006fd8262000786565b810181811067ffffffffffffffff821117156200071f576200071e62000757565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6157df80620007d06000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610994578063da3ef23f146109bf578063e985e9c5146109e8578063eb68707614610a25578063f2c4ce1e14610a50578063f2fde38b14610a795761027d565b8063a475b5dd14610886578063b88d4fde1461089d578063c6682862146108c6578063c87b56dd146108f1578063ca777e211461092e578063d33e196f146109575761027d565b8063715018a611610113578063715018a61461079a57806372250380146107b15780638d8be4b3146107dc5780638da5cb5b1461080757806395d89b4114610832578063a22cb4651461085d5761027d565b80636352211e146106b05780636c0360eb146106ed5780636ecd2306146107185780637010a9c61461073457806370a082311461075d5761027d565b80632a23d07d116101f35780634f6ccce7116101ac5780634f6ccce71461058c57806351830227146105c957806355f804b3146105f45780635c975abb1461061d57806360954ac11461064857806361cb9161146106855761027d565b80632a23d07d146104895780632f745c59146104b45780633ccfd60b146104f157806342842e0e146104fb578063438b630014610524578063453afb0f146105615761027d565b80630b34aaae116102455780630b34aaae14610379578063177248e9146103a257806318160ddd146103cd57806318cae269146103f85780631ec21fee1461043557806323b872dd146104605761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613dba565b610aa2565b6040516102b691906145a5565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613d91565b610b1c565b005b3480156102f457600080fd5b506102fd610bb5565b60405161030a91906145c0565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613e4d565b610c47565b604051610347919061451c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613d10565b610ccc565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613d4c565b610de4565b005b3480156103ae57600080fd5b506103b7610e84565b6040516103c491906149f3565b60405180910390f35b3480156103d957600080fd5b506103e2610e89565b6040516103ef91906149bd565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613ba5565b610e96565b60405161042c91906149bd565b60405180910390f35b34801561044157600080fd5b5061044a610eae565b60405161045791906149f3565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613c0a565b610eb3565b005b34801561049557600080fd5b5061049e610f13565b6040516104ab91906149d8565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190613d10565b610f1f565b6040516104e891906149bd565b60405180910390f35b6104f9610fc4565b005b34801561050757600080fd5b50610522600480360381019061051d9190613c0a565b61108f565b005b34801561053057600080fd5b5061054b60048036038101906105469190613ba5565b6110af565b6040516105589190614583565b60405180910390f35b34801561056d57600080fd5b506105766111a9565b60405161058391906149d8565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613e4d565b6111b5565b6040516105c091906149bd565b60405180910390f35b3480156105d557600080fd5b506105de61124c565b6040516105eb91906145a5565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613e0c565b61125f565b005b34801561062957600080fd5b506106326112f5565b60405161063f91906145a5565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613ba5565b611308565b60405161067c91906145a5565b60405180910390f35b34801561069157600080fd5b5061069a6113dd565b6040516106a791906145a5565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613e4d565b6113f0565b6040516106e4919061451c565b60405180910390f35b3480156106f957600080fd5b506107026114a2565b60405161070f91906145c0565b60405180910390f35b610732600480360381019061072d9190613e76565b611530565b005b34801561074057600080fd5b5061075b60048036038101906107569190613e76565b611ab2565b005b34801561076957600080fd5b50610784600480360381019061077f9190613ba5565b611c82565b60405161079191906149bd565b60405180910390f35b3480156107a657600080fd5b506107af611d3a565b005b3480156107bd57600080fd5b506107c6611dc2565b6040516107d391906145c0565b60405180910390f35b3480156107e857600080fd5b506107f1611e50565b6040516107fe91906149f3565b60405180910390f35b34801561081357600080fd5b5061081c611e55565b604051610829919061451c565b60405180910390f35b34801561083e57600080fd5b50610847611e7f565b60405161085491906145c0565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f9190613cd4565b611f11565b005b34801561089257600080fd5b5061089b611f27565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613c59565b611fcf565b005b3480156108d257600080fd5b506108db612031565b6040516108e891906145c0565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613e4d565b6120bf565b60405161092591906145c0565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190613d91565b6121e7565b005b34801561096357600080fd5b5061097e60048036038101906109799190613e4d565b612280565b60405161098b919061451c565b60405180910390f35b3480156109a057600080fd5b506109a96122bf565b6040516109b691906149a2565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613e0c565b6122c5565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613bce565b61235b565b604051610a1c91906145a5565b60405180910390f35b348015610a3157600080fd5b50610a3a6123ef565b604051610a4791906149f3565b60405180910390f35b348015610a5c57600080fd5b50610a776004803603810190610a729190613e0c565b6123f4565b005b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613ba5565b61248a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b155750610b1482612598565b5b9050919050565b610b2461267a565b73ffffffffffffffffffffffffffffffffffffffff16610b42611e55565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90614802565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610bc490614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf090614d08565b8015610c3d5780601f10610c1257610100808354040283529160200191610c3d565b820191906000526020600020905b815481529060010190602001808311610c2057829003601f168201915b5050505050905090565b6000610c5282612682565b610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906147e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd7826113f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906148a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6761267a565b73ffffffffffffffffffffffffffffffffffffffff161480610d965750610d9581610d9061267a565b61235b565b5b610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90614762565b60405180910390fd5b610ddf83836126ee565b505050565b610dec61267a565b73ffffffffffffffffffffffffffffffffffffffff16610e0a611e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790614802565b60405180910390fd5b60116000610e6e91906138a9565b818160119190610e7f9291906138ca565b505050565b600481565b6000600880549050905090565b60126020528060005260406000206000915090505481565b600281565b610ec4610ebe61267a565b826127a7565b610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906148e2565b60405180910390fd5b610f0e838383612885565b505050565b67030d98d59a96000081565b6000610f2a83611c82565b8210610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290614602565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fcc61267a565b73ffffffffffffffffffffffffffffffffffffffff16610fea611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790614802565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561108b573d6000803e3d6000fd5b5050565b6110aa83838360405180602001604052806000815250611fcf565b505050565b606060006110bc83611c82565b905060008167ffffffffffffffff811115611100577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561112e5781602001602082028036833780820191505090505b50905060005b8281101561119e576111468582610f1f565b82828151811061117f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061119690614d6b565b915050611134565b508092505050919050565b670494654067e1000081565b60006111bf610e89565b8210611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790614902565b60405180910390fd5b6008828154811061123a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b61126761267a565b73ffffffffffffffffffffffffffffffffffffffff16611285611e55565b73ffffffffffffffffffffffffffffffffffffffff16146112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290614802565b60405180910390fd5b80600d90805190602001906112f192919061396a565b5050565b601060009054906101000a900460ff1681565b600080600090505b6011805490508110156113d2578273ffffffffffffffffffffffffffffffffffffffff166011828154811061136e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113bf5760019150506113d8565b80806113ca90614d6b565b915050611310565b50600090505b919050565b601060029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906147a2565b60405180910390fd5b80915050919050565b600d80546114af90614d08565b80601f01602080910402602001604051908101604052809291908181526020018280546114db90614d08565b80156115285780601f106114fd57610100808354040283529160200191611528565b820191906000526020600020905b81548152906001019060200180831161150b57829003601f168201915b505050505081565b6002600a541415611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90614942565b60405180910390fd5b6002600a81905550601060009054906101000a900460ff16156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590614862565b60405180910390fd5b60006115d8610e89565b905060008260ff1611611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790614682565b60405180910390fd5b61010861ffff168260ff16826116369190614b26565b1115611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90614982565b60405180910390fd5b61167f611e55565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119f557601060029054906101000a900460ff16156118ac576116cf33611308565b61170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614922565b60405180910390fd5b600260ff168260ff161115611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f906145e2565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600260ff168360ff16826117b09190614b26565b11156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614702565b60405180910390fd5b8260ff1667030d98d59a9600006118089190614bad565b67ffffffffffffffff16341015611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b906148c2565b60405180910390fd5b60b08360ff16836118659190614b26565b11156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90614742565b60405180910390fd5b506119f4565b600460ff168260ff1611156118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614642565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600460ff168360ff168261194e9190614b26565b111561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690614962565b60405180910390fd5b8260ff16670494654067e100006119a69190614bad565b67ffffffffffffffff163410156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906148c2565b60405180910390fd5b505b5b60005b8260ff16811015611aa5576000611a0f600c612ae1565b905061010861ffff16611a22600c612ae1565b11611a9157611a31600c612582565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a8190614d6b565b9190505550611a903382612aef565b5b508080611a9d90614d6b565b9150506119f8565b50506001600a8190555050565b611aba61267a565b73ffffffffffffffffffffffffffffffffffffffff16611ad8611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614802565b60405180910390fd5b6000611b38610e89565b905060008260ff1611611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614682565b60405180910390fd5b60588260ff1682611b919190614b26565b1115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614882565b60405180910390fd5b60005b8260ff16811015611c7d576000611bec600c612ae1565b90506058611bfa600c612ae1565b11611c6957611c09600c612582565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c5990614d6b565b9190505550611c683382612aef565b5b508080611c7590614d6b565b915050611bd5565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614782565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d4261267a565b73ffffffffffffffffffffffffffffffffffffffff16611d60611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614802565b60405180910390fd5b611dc06000612b0d565b565b600f8054611dcf90614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfb90614d08565b8015611e485780601f10611e1d57610100808354040283529160200191611e48565b820191906000526020600020905b815481529060010190602001808311611e2b57829003601f168201915b505050505081565b600281565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e8e90614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054611eba90614d08565b8015611f075780601f10611edc57610100808354040283529160200191611f07565b820191906000526020600020905b815481529060010190602001808311611eea57829003601f168201915b5050505050905090565b611f23611f1c61267a565b8383612bd3565b5050565b611f2f61267a565b73ffffffffffffffffffffffffffffffffffffffff16611f4d611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614802565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611fe0611fda61267a565b836127a7565b61201f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612016906148e2565b60405180910390fd5b61202b84848484612d40565b50505050565b600e805461203e90614d08565b80601f016020809104026020016040519081016040528092919081815260200182805461206a90614d08565b80156120b75780601f1061208c576101008083540402835291602001916120b7565b820191906000526020600020905b81548152906001019060200180831161209a57829003601f168201915b505050505081565b60606120ca82612682565b612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090614842565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415612186576000600f805461213490614d08565b905011612150576040518060200160405280600081525061217f565b600f61215b83612d9c565b600e60405160200161216f939291906144eb565b6040516020818303038152906040525b90506121e2565b6000612190612f49565b905060008151116121b057604051806020016040528060008152506121de565b806121ba84612d9c565b600e6040516020016121ce939291906144ba565b6040516020818303038152906040525b9150505b919050565b6121ef61267a565b73ffffffffffffffffffffffffffffffffffffffff1661220d611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614802565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6011818154811061229057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61010881565b6122cd61267a565b73ffffffffffffffffffffffffffffffffffffffff166122eb611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614802565b60405180910390fd5b80600e908051906020019061235792919061396a565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600481565b6123fc61267a565b73ffffffffffffffffffffffffffffffffffffffff1661241a611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790614802565b60405180910390fd5b80600f908051906020019061248692919061396a565b5050565b61249261267a565b73ffffffffffffffffffffffffffffffffffffffff166124b0611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90614802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90614662565b60405180910390fd5b61257f81612b0d565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612673575061267282612fdb565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612761836113f0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127b282612682565b6127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890614722565b60405180910390fd5b60006127fc836113f0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061286b57508373ffffffffffffffffffffffffffffffffffffffff1661285384610c47565b73ffffffffffffffffffffffffffffffffffffffff16145b8061287c575061287b818561235b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128a5826113f0565b73ffffffffffffffffffffffffffffffffffffffff16146128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290614822565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561296b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612962906146c2565b60405180910390fd5b612976838383613045565b6129816000826126ee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d19190614bef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a289190614b26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b612b09828260405180602001604052806000815250613159565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c39906146e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d3391906145a5565b60405180910390a3505050565b612d4b848484612885565b612d57848484846131b4565b612d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8d90614622565b60405180910390fd5b50505050565b60606000821415612de4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f44565b600082905060005b60008214612e16578080612dff90614d6b565b915050600a82612e0f9190614b7c565b9150612dec565b60008167ffffffffffffffff811115612e58577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e8a5781602001600182028036833780820191505090505b5090505b60008514612f3d57600182612ea39190614bef565b9150600a85612eb29190614db4565b6030612ebe9190614b26565b60f81b818381518110612efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f369190614b7c565b9450612e8e565b8093505050505b919050565b6060600d8054612f5890614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8490614d08565b8015612fd15780601f10612fa657610100808354040283529160200191612fd1565b820191906000526020600020905b815481529060010190602001808311612fb457829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61305083838361334b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130935761308e81613350565b6130d2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130d1576130d08382613399565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131155761311081613506565b613154565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613153576131528282613649565b5b5b505050565b61316383836136c8565b61317060008484846131b4565b6131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a690614622565b60405180910390fd5b505050565b60006131d58473ffffffffffffffffffffffffffffffffffffffff16613896565b1561333e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131fe61267a565b8786866040518563ffffffff1660e01b81526004016132209493929190614537565b602060405180830381600087803b15801561323a57600080fd5b505af192505050801561326b57506040513d601f19601f820116820180604052508101906132689190613de3565b60015b6132ee573d806000811461329b576040519150601f19603f3d011682016040523d82523d6000602084013e6132a0565b606091505b506000815114156132e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132dd90614622565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613343565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133a684611c82565b6133b09190614bef565b9050600060076000848152602001908152602001600020549050818114613495576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061351a9190614bef565b9050600060096000848152602001908152602001600020549050600060088381548110613570577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106135b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061362d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061365483611c82565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372f906147c2565b60405180910390fd5b61374181612682565b15613781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613778906146a2565b60405180910390fd5b61378d60008383613045565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137dd9190614b26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b50805460008255906000526020600020908101906138c791906139f0565b50565b828054828255906000526020600020908101928215613959579160200282015b8281111561395857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906138ea565b5b50905061396691906139f0565b5090565b82805461397690614d08565b90600052602060002090601f01602090048101928261399857600085556139df565b82601f106139b157805160ff19168380011785556139df565b828001600101855582156139df579182015b828111156139de5782518255916020019190600101906139c3565b5b5090506139ec91906139f0565b5090565b5b80821115613a095760008160009055506001016139f1565b5090565b6000613a20613a1b84614a33565b614a0e565b905082815260208101848484011115613a3857600080fd5b613a43848285614cc6565b509392505050565b6000613a5e613a5984614a64565b614a0e565b905082815260208101848484011115613a7657600080fd5b613a81848285614cc6565b509392505050565b600081359050613a9881615736565b92915050565b60008083601f840112613ab057600080fd5b8235905067ffffffffffffffff811115613ac957600080fd5b602083019150836020820283011115613ae157600080fd5b9250929050565b600081359050613af78161574d565b92915050565b600081359050613b0c81615764565b92915050565b600081519050613b2181615764565b92915050565b600082601f830112613b3857600080fd5b8135613b48848260208601613a0d565b91505092915050565b600082601f830112613b6257600080fd5b8135613b72848260208601613a4b565b91505092915050565b600081359050613b8a8161577b565b92915050565b600081359050613b9f81615792565b92915050565b600060208284031215613bb757600080fd5b6000613bc584828501613a89565b91505092915050565b60008060408385031215613be157600080fd5b6000613bef85828601613a89565b9250506020613c0085828601613a89565b9150509250929050565b600080600060608486031215613c1f57600080fd5b6000613c2d86828701613a89565b9350506020613c3e86828701613a89565b9250506040613c4f86828701613b7b565b9150509250925092565b60008060008060808587031215613c6f57600080fd5b6000613c7d87828801613a89565b9450506020613c8e87828801613a89565b9350506040613c9f87828801613b7b565b925050606085013567ffffffffffffffff811115613cbc57600080fd5b613cc887828801613b27565b91505092959194509250565b60008060408385031215613ce757600080fd5b6000613cf585828601613a89565b9250506020613d0685828601613ae8565b9150509250929050565b60008060408385031215613d2357600080fd5b6000613d3185828601613a89565b9250506020613d4285828601613b7b565b9150509250929050565b60008060208385031215613d5f57600080fd5b600083013567ffffffffffffffff811115613d7957600080fd5b613d8585828601613a9e565b92509250509250929050565b600060208284031215613da357600080fd5b6000613db184828501613ae8565b91505092915050565b600060208284031215613dcc57600080fd5b6000613dda84828501613afd565b91505092915050565b600060208284031215613df557600080fd5b6000613e0384828501613b12565b91505092915050565b600060208284031215613e1e57600080fd5b600082013567ffffffffffffffff811115613e3857600080fd5b613e4484828501613b51565b91505092915050565b600060208284031215613e5f57600080fd5b6000613e6d84828501613b7b565b91505092915050565b600060208284031215613e8857600080fd5b6000613e9684828501613b90565b91505092915050565b6000613eab838361447e565b60208301905092915050565b613ec081614c23565b82525050565b6000613ed182614aba565b613edb8185614ae8565b9350613ee683614a95565b8060005b83811015613f17578151613efe8882613e9f565b9750613f0983614adb565b925050600181019050613eea565b5085935050505092915050565b613f2d81614c35565b82525050565b6000613f3e82614ac5565b613f488185614af9565b9350613f58818560208601614cd5565b613f6181614ea1565b840191505092915050565b6000613f7782614ad0565b613f818185614b0a565b9350613f91818560208601614cd5565b613f9a81614ea1565b840191505092915050565b6000613fb082614ad0565b613fba8185614b1b565b9350613fca818560208601614cd5565b80840191505092915050565b60008154613fe381614d08565b613fed8186614b1b565b9450600182166000811461400857600181146140195761404c565b60ff1983168652818601935061404c565b61402285614aa5565b60005b8381101561404457815481890152600182019150602081019050614025565b838801955050505b50505092915050565b6000614062603383614b0a565b915061406d82614eb2565b604082019050919050565b6000614085602b83614b0a565b915061409082614f01565b604082019050919050565b60006140a8603283614b0a565b91506140b382614f50565b604082019050919050565b60006140cb602b83614b0a565b91506140d682614f9f565b604082019050919050565b60006140ee602683614b0a565b91506140f982614fee565b604082019050919050565b6000614111602183614b0a565b915061411c8261503d565b604082019050919050565b6000614134601c83614b0a565b915061413f8261508c565b602082019050919050565b6000614157602483614b0a565b9150614162826150b5565b604082019050919050565b600061417a601983614b0a565b915061418582615104565b602082019050919050565b600061419d604883614b0a565b91506141a88261512d565b606082019050919050565b60006141c0602c83614b0a565b91506141cb826151a2565b604082019050919050565b60006141e3604583614b0a565b91506141ee826151f1565b606082019050919050565b6000614206603883614b0a565b915061421182615266565b604082019050919050565b6000614229602a83614b0a565b9150614234826152b5565b604082019050919050565b600061424c602983614b0a565b915061425782615304565b604082019050919050565b600061426f602083614b0a565b915061427a82615353565b602082019050919050565b6000614292602c83614b0a565b915061429d8261537c565b604082019050919050565b60006142b5602083614b0a565b91506142c0826153cb565b602082019050919050565b60006142d8602983614b0a565b91506142e3826153f4565b604082019050919050565b60006142fb602f83614b0a565b915061430682615443565b604082019050919050565b600061431e601783614b0a565b915061432982615492565b602082019050919050565b6000614341602e83614b0a565b915061434c826154bb565b604082019050919050565b6000614364602183614b0a565b915061436f8261550a565b604082019050919050565b6000614387601283614b0a565b915061439282615559565b602082019050919050565b60006143aa603183614b0a565b91506143b582615582565b604082019050919050565b60006143cd602c83614b0a565b91506143d8826155d1565b604082019050919050565b60006143f0602783614b0a565b91506143fb82615620565b604082019050919050565b6000614413601f83614b0a565b915061441e8261566f565b602082019050919050565b6000614436603983614b0a565b915061444182615698565b604082019050919050565b6000614459602e83614b0a565b9150614464826156e7565b604082019050919050565b61447881614c6d565b82525050565b61448781614c9b565b82525050565b61449681614c9b565b82525050565b6144a581614ca5565b82525050565b6144b481614cb9565b82525050565b60006144c68286613fa5565b91506144d28285613fa5565b91506144de8284613fd6565b9150819050949350505050565b60006144f78286613fd6565b91506145038285613fa5565b915061450f8284613fd6565b9150819050949350505050565b60006020820190506145316000830184613eb7565b92915050565b600060808201905061454c6000830187613eb7565b6145596020830186613eb7565b614566604083018561448d565b81810360608301526145788184613f33565b905095945050505050565b6000602082019050818103600083015261459d8184613ec6565b905092915050565b60006020820190506145ba6000830184613f24565b92915050565b600060208201905081810360008301526145da8184613f6c565b905092915050565b600060208201905081810360008301526145fb81614055565b9050919050565b6000602082019050818103600083015261461b81614078565b9050919050565b6000602082019050818103600083015261463b8161409b565b9050919050565b6000602082019050818103600083015261465b816140be565b9050919050565b6000602082019050818103600083015261467b816140e1565b9050919050565b6000602082019050818103600083015261469b81614104565b9050919050565b600060208201905081810360008301526146bb81614127565b9050919050565b600060208201905081810360008301526146db8161414a565b9050919050565b600060208201905081810360008301526146fb8161416d565b9050919050565b6000602082019050818103600083015261471b81614190565b9050919050565b6000602082019050818103600083015261473b816141b3565b9050919050565b6000602082019050818103600083015261475b816141d6565b9050919050565b6000602082019050818103600083015261477b816141f9565b9050919050565b6000602082019050818103600083015261479b8161421c565b9050919050565b600060208201905081810360008301526147bb8161423f565b9050919050565b600060208201905081810360008301526147db81614262565b9050919050565b600060208201905081810360008301526147fb81614285565b9050919050565b6000602082019050818103600083015261481b816142a8565b9050919050565b6000602082019050818103600083015261483b816142cb565b9050919050565b6000602082019050818103600083015261485b816142ee565b9050919050565b6000602082019050818103600083015261487b81614311565b9050919050565b6000602082019050818103600083015261489b81614334565b9050919050565b600060208201905081810360008301526148bb81614357565b9050919050565b600060208201905081810360008301526148db8161437a565b9050919050565b600060208201905081810360008301526148fb8161439d565b9050919050565b6000602082019050818103600083015261491b816143c0565b9050919050565b6000602082019050818103600083015261493b816143e3565b9050919050565b6000602082019050818103600083015261495b81614406565b9050919050565b6000602082019050818103600083015261497b81614429565b9050919050565b6000602082019050818103600083015261499b8161444c565b9050919050565b60006020820190506149b7600083018461446f565b92915050565b60006020820190506149d2600083018461448d565b92915050565b60006020820190506149ed600083018461449c565b92915050565b6000602082019050614a0860008301846144ab565b92915050565b6000614a18614a29565b9050614a248282614d3a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a4e57614a4d614e72565b5b614a5782614ea1565b9050602081019050919050565b600067ffffffffffffffff821115614a7f57614a7e614e72565b5b614a8882614ea1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b3182614c9b565b9150614b3c83614c9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b7157614b70614de5565b5b828201905092915050565b6000614b8782614c9b565b9150614b9283614c9b565b925082614ba257614ba1614e14565b5b828204905092915050565b6000614bb882614ca5565b9150614bc383614ca5565b92508167ffffffffffffffff0483118215151615614be457614be3614de5565b5b828202905092915050565b6000614bfa82614c9b565b9150614c0583614c9b565b925082821015614c1857614c17614de5565b5b828203905092915050565b6000614c2e82614c7b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614cf3578082015181840152602081019050614cd8565b83811115614d02576000848401525b50505050565b60006002820490506001821680614d2057607f821691505b60208210811415614d3457614d33614e43565b5b50919050565b614d4382614ea1565b810181811067ffffffffffffffff82111715614d6257614d61614e72565b5b80604052505050565b6000614d7682614c9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da957614da8614de5565b5b600182019050919050565b6000614dbf82614c9b565b9150614dca83614c9b565b925082614dda57614dd9614e14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6d6178696d756d206e756d626572206f66204b4559732070657220707265736160008201527f6c652073657373696f6e20657863656564656400000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d6178696d756d206e756d626572206f66204b4559732070657220736573736960008201527f6f6e206578636565646564000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6174206c656173742031204b4559206e6565647320746f206265206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e646976696475616c2061646472657373657320617265206f6e6c7920616c60008201527f6c6f7765642061206d6178696d756d206f662032204e46547320647572696e6760208201527f2070726573616c65000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7468697320616d6f756e742077696c6c2065786365656420746865207072657360008201527f616c65206c696d6974206f72207468652070726573616c652068617320736f6c60208201527f64206f7574000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f7468697320636f6e747261637420697320706175736564000000000000000000600082015250565b7f7468697320776f756c642065786365656420746865206e756d626572206f662060008201527f70656e74686f757365204b455973000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746869732061646472657373206973206e6f74206f6e2074686520707265736160008201527f6c65206c69737400000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646976696475616c2061646472657373657320617265206f6e6c7920616c60008201527f6c6f7765642061206d6178696d756d206f662034204e46547300000000000000602082015250565b7f7468697320776f756c642065786365656420746865206e756d626572206f662060008201527f617661696c61626c65204b455973000000000000000000000000000000000000602082015250565b61573f81614c23565b811461574a57600080fd5b50565b61575681614c35565b811461576157600080fd5b50565b61576d81614c41565b811461577857600080fd5b50565b61578481614c9b565b811461578f57600080fd5b50565b61579b81614cb9565b81146157a657600080fd5b5056fea264697066735822122044d1b96b983109a5806973591a796ff1174abac916643490a15c051d4f115da464736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000076571206b6579730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b455953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5453476371456765767335654876664e345831614a4d63585962663671725a567a44593563485a637a317a322f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61716662634158796a54504266535052526435506a6a585773477a4647397a505655776b64676b64464d62642f00000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610994578063da3ef23f146109bf578063e985e9c5146109e8578063eb68707614610a25578063f2c4ce1e14610a50578063f2fde38b14610a795761027d565b8063a475b5dd14610886578063b88d4fde1461089d578063c6682862146108c6578063c87b56dd146108f1578063ca777e211461092e578063d33e196f146109575761027d565b8063715018a611610113578063715018a61461079a57806372250380146107b15780638d8be4b3146107dc5780638da5cb5b1461080757806395d89b4114610832578063a22cb4651461085d5761027d565b80636352211e146106b05780636c0360eb146106ed5780636ecd2306146107185780637010a9c61461073457806370a082311461075d5761027d565b80632a23d07d116101f35780634f6ccce7116101ac5780634f6ccce71461058c57806351830227146105c957806355f804b3146105f45780635c975abb1461061d57806360954ac11461064857806361cb9161146106855761027d565b80632a23d07d146104895780632f745c59146104b45780633ccfd60b146104f157806342842e0e146104fb578063438b630014610524578063453afb0f146105615761027d565b80630b34aaae116102455780630b34aaae14610379578063177248e9146103a257806318160ddd146103cd57806318cae269146103f85780631ec21fee1461043557806323b872dd146104605761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613dba565b610aa2565b6040516102b691906145a5565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613d91565b610b1c565b005b3480156102f457600080fd5b506102fd610bb5565b60405161030a91906145c0565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613e4d565b610c47565b604051610347919061451c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613d10565b610ccc565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613d4c565b610de4565b005b3480156103ae57600080fd5b506103b7610e84565b6040516103c491906149f3565b60405180910390f35b3480156103d957600080fd5b506103e2610e89565b6040516103ef91906149bd565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613ba5565b610e96565b60405161042c91906149bd565b60405180910390f35b34801561044157600080fd5b5061044a610eae565b60405161045791906149f3565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613c0a565b610eb3565b005b34801561049557600080fd5b5061049e610f13565b6040516104ab91906149d8565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190613d10565b610f1f565b6040516104e891906149bd565b60405180910390f35b6104f9610fc4565b005b34801561050757600080fd5b50610522600480360381019061051d9190613c0a565b61108f565b005b34801561053057600080fd5b5061054b60048036038101906105469190613ba5565b6110af565b6040516105589190614583565b60405180910390f35b34801561056d57600080fd5b506105766111a9565b60405161058391906149d8565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613e4d565b6111b5565b6040516105c091906149bd565b60405180910390f35b3480156105d557600080fd5b506105de61124c565b6040516105eb91906145a5565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613e0c565b61125f565b005b34801561062957600080fd5b506106326112f5565b60405161063f91906145a5565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613ba5565b611308565b60405161067c91906145a5565b60405180910390f35b34801561069157600080fd5b5061069a6113dd565b6040516106a791906145a5565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613e4d565b6113f0565b6040516106e4919061451c565b60405180910390f35b3480156106f957600080fd5b506107026114a2565b60405161070f91906145c0565b60405180910390f35b610732600480360381019061072d9190613e76565b611530565b005b34801561074057600080fd5b5061075b60048036038101906107569190613e76565b611ab2565b005b34801561076957600080fd5b50610784600480360381019061077f9190613ba5565b611c82565b60405161079191906149bd565b60405180910390f35b3480156107a657600080fd5b506107af611d3a565b005b3480156107bd57600080fd5b506107c6611dc2565b6040516107d391906145c0565b60405180910390f35b3480156107e857600080fd5b506107f1611e50565b6040516107fe91906149f3565b60405180910390f35b34801561081357600080fd5b5061081c611e55565b604051610829919061451c565b60405180910390f35b34801561083e57600080fd5b50610847611e7f565b60405161085491906145c0565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f9190613cd4565b611f11565b005b34801561089257600080fd5b5061089b611f27565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613c59565b611fcf565b005b3480156108d257600080fd5b506108db612031565b6040516108e891906145c0565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613e4d565b6120bf565b60405161092591906145c0565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190613d91565b6121e7565b005b34801561096357600080fd5b5061097e60048036038101906109799190613e4d565b612280565b60405161098b919061451c565b60405180910390f35b3480156109a057600080fd5b506109a96122bf565b6040516109b691906149a2565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613e0c565b6122c5565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613bce565b61235b565b604051610a1c91906145a5565b60405180910390f35b348015610a3157600080fd5b50610a3a6123ef565b604051610a4791906149f3565b60405180910390f35b348015610a5c57600080fd5b50610a776004803603810190610a729190613e0c565b6123f4565b005b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613ba5565b61248a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b155750610b1482612598565b5b9050919050565b610b2461267a565b73ffffffffffffffffffffffffffffffffffffffff16610b42611e55565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90614802565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610bc490614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf090614d08565b8015610c3d5780601f10610c1257610100808354040283529160200191610c3d565b820191906000526020600020905b815481529060010190602001808311610c2057829003601f168201915b5050505050905090565b6000610c5282612682565b610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906147e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd7826113f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906148a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6761267a565b73ffffffffffffffffffffffffffffffffffffffff161480610d965750610d9581610d9061267a565b61235b565b5b610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90614762565b60405180910390fd5b610ddf83836126ee565b505050565b610dec61267a565b73ffffffffffffffffffffffffffffffffffffffff16610e0a611e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790614802565b60405180910390fd5b60116000610e6e91906138a9565b818160119190610e7f9291906138ca565b505050565b600481565b6000600880549050905090565b60126020528060005260406000206000915090505481565b600281565b610ec4610ebe61267a565b826127a7565b610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906148e2565b60405180910390fd5b610f0e838383612885565b505050565b67030d98d59a96000081565b6000610f2a83611c82565b8210610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290614602565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fcc61267a565b73ffffffffffffffffffffffffffffffffffffffff16610fea611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790614802565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561108b573d6000803e3d6000fd5b5050565b6110aa83838360405180602001604052806000815250611fcf565b505050565b606060006110bc83611c82565b905060008167ffffffffffffffff811115611100577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561112e5781602001602082028036833780820191505090505b50905060005b8281101561119e576111468582610f1f565b82828151811061117f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061119690614d6b565b915050611134565b508092505050919050565b670494654067e1000081565b60006111bf610e89565b8210611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790614902565b60405180910390fd5b6008828154811061123a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b61126761267a565b73ffffffffffffffffffffffffffffffffffffffff16611285611e55565b73ffffffffffffffffffffffffffffffffffffffff16146112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290614802565b60405180910390fd5b80600d90805190602001906112f192919061396a565b5050565b601060009054906101000a900460ff1681565b600080600090505b6011805490508110156113d2578273ffffffffffffffffffffffffffffffffffffffff166011828154811061136e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113bf5760019150506113d8565b80806113ca90614d6b565b915050611310565b50600090505b919050565b601060029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906147a2565b60405180910390fd5b80915050919050565b600d80546114af90614d08565b80601f01602080910402602001604051908101604052809291908181526020018280546114db90614d08565b80156115285780601f106114fd57610100808354040283529160200191611528565b820191906000526020600020905b81548152906001019060200180831161150b57829003601f168201915b505050505081565b6002600a541415611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90614942565b60405180910390fd5b6002600a81905550601060009054906101000a900460ff16156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590614862565b60405180910390fd5b60006115d8610e89565b905060008260ff1611611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790614682565b60405180910390fd5b61010861ffff168260ff16826116369190614b26565b1115611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90614982565b60405180910390fd5b61167f611e55565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119f557601060029054906101000a900460ff16156118ac576116cf33611308565b61170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614922565b60405180910390fd5b600260ff168260ff161115611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f906145e2565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600260ff168360ff16826117b09190614b26565b11156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614702565b60405180910390fd5b8260ff1667030d98d59a9600006118089190614bad565b67ffffffffffffffff16341015611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b906148c2565b60405180910390fd5b60b08360ff16836118659190614b26565b11156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90614742565b60405180910390fd5b506119f4565b600460ff168260ff1611156118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614642565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600460ff168360ff168261194e9190614b26565b111561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690614962565b60405180910390fd5b8260ff16670494654067e100006119a69190614bad565b67ffffffffffffffff163410156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906148c2565b60405180910390fd5b505b5b60005b8260ff16811015611aa5576000611a0f600c612ae1565b905061010861ffff16611a22600c612ae1565b11611a9157611a31600c612582565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a8190614d6b565b9190505550611a903382612aef565b5b508080611a9d90614d6b565b9150506119f8565b50506001600a8190555050565b611aba61267a565b73ffffffffffffffffffffffffffffffffffffffff16611ad8611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614802565b60405180910390fd5b6000611b38610e89565b905060008260ff1611611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614682565b60405180910390fd5b60588260ff1682611b919190614b26565b1115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614882565b60405180910390fd5b60005b8260ff16811015611c7d576000611bec600c612ae1565b90506058611bfa600c612ae1565b11611c6957611c09600c612582565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c5990614d6b565b9190505550611c683382612aef565b5b508080611c7590614d6b565b915050611bd5565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614782565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d4261267a565b73ffffffffffffffffffffffffffffffffffffffff16611d60611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614802565b60405180910390fd5b611dc06000612b0d565b565b600f8054611dcf90614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfb90614d08565b8015611e485780601f10611e1d57610100808354040283529160200191611e48565b820191906000526020600020905b815481529060010190602001808311611e2b57829003601f168201915b505050505081565b600281565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e8e90614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054611eba90614d08565b8015611f075780601f10611edc57610100808354040283529160200191611f07565b820191906000526020600020905b815481529060010190602001808311611eea57829003601f168201915b5050505050905090565b611f23611f1c61267a565b8383612bd3565b5050565b611f2f61267a565b73ffffffffffffffffffffffffffffffffffffffff16611f4d611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614802565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611fe0611fda61267a565b836127a7565b61201f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612016906148e2565b60405180910390fd5b61202b84848484612d40565b50505050565b600e805461203e90614d08565b80601f016020809104026020016040519081016040528092919081815260200182805461206a90614d08565b80156120b75780601f1061208c576101008083540402835291602001916120b7565b820191906000526020600020905b81548152906001019060200180831161209a57829003601f168201915b505050505081565b60606120ca82612682565b612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090614842565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415612186576000600f805461213490614d08565b905011612150576040518060200160405280600081525061217f565b600f61215b83612d9c565b600e60405160200161216f939291906144eb565b6040516020818303038152906040525b90506121e2565b6000612190612f49565b905060008151116121b057604051806020016040528060008152506121de565b806121ba84612d9c565b600e6040516020016121ce939291906144ba565b6040516020818303038152906040525b9150505b919050565b6121ef61267a565b73ffffffffffffffffffffffffffffffffffffffff1661220d611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614802565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6011818154811061229057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61010881565b6122cd61267a565b73ffffffffffffffffffffffffffffffffffffffff166122eb611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614802565b60405180910390fd5b80600e908051906020019061235792919061396a565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600481565b6123fc61267a565b73ffffffffffffffffffffffffffffffffffffffff1661241a611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790614802565b60405180910390fd5b80600f908051906020019061248692919061396a565b5050565b61249261267a565b73ffffffffffffffffffffffffffffffffffffffff166124b0611e55565b73ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90614802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90614662565b60405180910390fd5b61257f81612b0d565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612673575061267282612fdb565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612761836113f0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127b282612682565b6127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890614722565b60405180910390fd5b60006127fc836113f0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061286b57508373ffffffffffffffffffffffffffffffffffffffff1661285384610c47565b73ffffffffffffffffffffffffffffffffffffffff16145b8061287c575061287b818561235b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128a5826113f0565b73ffffffffffffffffffffffffffffffffffffffff16146128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290614822565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561296b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612962906146c2565b60405180910390fd5b612976838383613045565b6129816000826126ee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d19190614bef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a289190614b26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b612b09828260405180602001604052806000815250613159565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c39906146e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d3391906145a5565b60405180910390a3505050565b612d4b848484612885565b612d57848484846131b4565b612d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8d90614622565b60405180910390fd5b50505050565b60606000821415612de4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f44565b600082905060005b60008214612e16578080612dff90614d6b565b915050600a82612e0f9190614b7c565b9150612dec565b60008167ffffffffffffffff811115612e58577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e8a5781602001600182028036833780820191505090505b5090505b60008514612f3d57600182612ea39190614bef565b9150600a85612eb29190614db4565b6030612ebe9190614b26565b60f81b818381518110612efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f369190614b7c565b9450612e8e565b8093505050505b919050565b6060600d8054612f5890614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8490614d08565b8015612fd15780601f10612fa657610100808354040283529160200191612fd1565b820191906000526020600020905b815481529060010190602001808311612fb457829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61305083838361334b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130935761308e81613350565b6130d2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130d1576130d08382613399565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131155761311081613506565b613154565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613153576131528282613649565b5b5b505050565b61316383836136c8565b61317060008484846131b4565b6131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a690614622565b60405180910390fd5b505050565b60006131d58473ffffffffffffffffffffffffffffffffffffffff16613896565b1561333e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131fe61267a565b8786866040518563ffffffff1660e01b81526004016132209493929190614537565b602060405180830381600087803b15801561323a57600080fd5b505af192505050801561326b57506040513d601f19601f820116820180604052508101906132689190613de3565b60015b6132ee573d806000811461329b576040519150601f19603f3d011682016040523d82523d6000602084013e6132a0565b606091505b506000815114156132e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132dd90614622565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613343565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133a684611c82565b6133b09190614bef565b9050600060076000848152602001908152602001600020549050818114613495576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061351a9190614bef565b9050600060096000848152602001908152602001600020549050600060088381548110613570577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106135b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061362d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061365483611c82565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372f906147c2565b60405180910390fd5b61374181612682565b15613781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613778906146a2565b60405180910390fd5b61378d60008383613045565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137dd9190614b26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b50805460008255906000526020600020908101906138c791906139f0565b50565b828054828255906000526020600020908101928215613959579160200282015b8281111561395857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906138ea565b5b50905061396691906139f0565b5090565b82805461397690614d08565b90600052602060002090601f01602090048101928261399857600085556139df565b82601f106139b157805160ff19168380011785556139df565b828001600101855582156139df579182015b828111156139de5782518255916020019190600101906139c3565b5b5090506139ec91906139f0565b5090565b5b80821115613a095760008160009055506001016139f1565b5090565b6000613a20613a1b84614a33565b614a0e565b905082815260208101848484011115613a3857600080fd5b613a43848285614cc6565b509392505050565b6000613a5e613a5984614a64565b614a0e565b905082815260208101848484011115613a7657600080fd5b613a81848285614cc6565b509392505050565b600081359050613a9881615736565b92915050565b60008083601f840112613ab057600080fd5b8235905067ffffffffffffffff811115613ac957600080fd5b602083019150836020820283011115613ae157600080fd5b9250929050565b600081359050613af78161574d565b92915050565b600081359050613b0c81615764565b92915050565b600081519050613b2181615764565b92915050565b600082601f830112613b3857600080fd5b8135613b48848260208601613a0d565b91505092915050565b600082601f830112613b6257600080fd5b8135613b72848260208601613a4b565b91505092915050565b600081359050613b8a8161577b565b92915050565b600081359050613b9f81615792565b92915050565b600060208284031215613bb757600080fd5b6000613bc584828501613a89565b91505092915050565b60008060408385031215613be157600080fd5b6000613bef85828601613a89565b9250506020613c0085828601613a89565b9150509250929050565b600080600060608486031215613c1f57600080fd5b6000613c2d86828701613a89565b9350506020613c3e86828701613a89565b9250506040613c4f86828701613b7b565b9150509250925092565b60008060008060808587031215613c6f57600080fd5b6000613c7d87828801613a89565b9450506020613c8e87828801613a89565b9350506040613c9f87828801613b7b565b925050606085013567ffffffffffffffff811115613cbc57600080fd5b613cc887828801613b27565b91505092959194509250565b60008060408385031215613ce757600080fd5b6000613cf585828601613a89565b9250506020613d0685828601613ae8565b9150509250929050565b60008060408385031215613d2357600080fd5b6000613d3185828601613a89565b9250506020613d4285828601613b7b565b9150509250929050565b60008060208385031215613d5f57600080fd5b600083013567ffffffffffffffff811115613d7957600080fd5b613d8585828601613a9e565b92509250509250929050565b600060208284031215613da357600080fd5b6000613db184828501613ae8565b91505092915050565b600060208284031215613dcc57600080fd5b6000613dda84828501613afd565b91505092915050565b600060208284031215613df557600080fd5b6000613e0384828501613b12565b91505092915050565b600060208284031215613e1e57600080fd5b600082013567ffffffffffffffff811115613e3857600080fd5b613e4484828501613b51565b91505092915050565b600060208284031215613e5f57600080fd5b6000613e6d84828501613b7b565b91505092915050565b600060208284031215613e8857600080fd5b6000613e9684828501613b90565b91505092915050565b6000613eab838361447e565b60208301905092915050565b613ec081614c23565b82525050565b6000613ed182614aba565b613edb8185614ae8565b9350613ee683614a95565b8060005b83811015613f17578151613efe8882613e9f565b9750613f0983614adb565b925050600181019050613eea565b5085935050505092915050565b613f2d81614c35565b82525050565b6000613f3e82614ac5565b613f488185614af9565b9350613f58818560208601614cd5565b613f6181614ea1565b840191505092915050565b6000613f7782614ad0565b613f818185614b0a565b9350613f91818560208601614cd5565b613f9a81614ea1565b840191505092915050565b6000613fb082614ad0565b613fba8185614b1b565b9350613fca818560208601614cd5565b80840191505092915050565b60008154613fe381614d08565b613fed8186614b1b565b9450600182166000811461400857600181146140195761404c565b60ff1983168652818601935061404c565b61402285614aa5565b60005b8381101561404457815481890152600182019150602081019050614025565b838801955050505b50505092915050565b6000614062603383614b0a565b915061406d82614eb2565b604082019050919050565b6000614085602b83614b0a565b915061409082614f01565b604082019050919050565b60006140a8603283614b0a565b91506140b382614f50565b604082019050919050565b60006140cb602b83614b0a565b91506140d682614f9f565b604082019050919050565b60006140ee602683614b0a565b91506140f982614fee565b604082019050919050565b6000614111602183614b0a565b915061411c8261503d565b604082019050919050565b6000614134601c83614b0a565b915061413f8261508c565b602082019050919050565b6000614157602483614b0a565b9150614162826150b5565b604082019050919050565b600061417a601983614b0a565b915061418582615104565b602082019050919050565b600061419d604883614b0a565b91506141a88261512d565b606082019050919050565b60006141c0602c83614b0a565b91506141cb826151a2565b604082019050919050565b60006141e3604583614b0a565b91506141ee826151f1565b606082019050919050565b6000614206603883614b0a565b915061421182615266565b604082019050919050565b6000614229602a83614b0a565b9150614234826152b5565b604082019050919050565b600061424c602983614b0a565b915061425782615304565b604082019050919050565b600061426f602083614b0a565b915061427a82615353565b602082019050919050565b6000614292602c83614b0a565b915061429d8261537c565b604082019050919050565b60006142b5602083614b0a565b91506142c0826153cb565b602082019050919050565b60006142d8602983614b0a565b91506142e3826153f4565b604082019050919050565b60006142fb602f83614b0a565b915061430682615443565b604082019050919050565b600061431e601783614b0a565b915061432982615492565b602082019050919050565b6000614341602e83614b0a565b915061434c826154bb565b604082019050919050565b6000614364602183614b0a565b915061436f8261550a565b604082019050919050565b6000614387601283614b0a565b915061439282615559565b602082019050919050565b60006143aa603183614b0a565b91506143b582615582565b604082019050919050565b60006143cd602c83614b0a565b91506143d8826155d1565b604082019050919050565b60006143f0602783614b0a565b91506143fb82615620565b604082019050919050565b6000614413601f83614b0a565b915061441e8261566f565b602082019050919050565b6000614436603983614b0a565b915061444182615698565b604082019050919050565b6000614459602e83614b0a565b9150614464826156e7565b604082019050919050565b61447881614c6d565b82525050565b61448781614c9b565b82525050565b61449681614c9b565b82525050565b6144a581614ca5565b82525050565b6144b481614cb9565b82525050565b60006144c68286613fa5565b91506144d28285613fa5565b91506144de8284613fd6565b9150819050949350505050565b60006144f78286613fd6565b91506145038285613fa5565b915061450f8284613fd6565b9150819050949350505050565b60006020820190506145316000830184613eb7565b92915050565b600060808201905061454c6000830187613eb7565b6145596020830186613eb7565b614566604083018561448d565b81810360608301526145788184613f33565b905095945050505050565b6000602082019050818103600083015261459d8184613ec6565b905092915050565b60006020820190506145ba6000830184613f24565b92915050565b600060208201905081810360008301526145da8184613f6c565b905092915050565b600060208201905081810360008301526145fb81614055565b9050919050565b6000602082019050818103600083015261461b81614078565b9050919050565b6000602082019050818103600083015261463b8161409b565b9050919050565b6000602082019050818103600083015261465b816140be565b9050919050565b6000602082019050818103600083015261467b816140e1565b9050919050565b6000602082019050818103600083015261469b81614104565b9050919050565b600060208201905081810360008301526146bb81614127565b9050919050565b600060208201905081810360008301526146db8161414a565b9050919050565b600060208201905081810360008301526146fb8161416d565b9050919050565b6000602082019050818103600083015261471b81614190565b9050919050565b6000602082019050818103600083015261473b816141b3565b9050919050565b6000602082019050818103600083015261475b816141d6565b9050919050565b6000602082019050818103600083015261477b816141f9565b9050919050565b6000602082019050818103600083015261479b8161421c565b9050919050565b600060208201905081810360008301526147bb8161423f565b9050919050565b600060208201905081810360008301526147db81614262565b9050919050565b600060208201905081810360008301526147fb81614285565b9050919050565b6000602082019050818103600083015261481b816142a8565b9050919050565b6000602082019050818103600083015261483b816142cb565b9050919050565b6000602082019050818103600083015261485b816142ee565b9050919050565b6000602082019050818103600083015261487b81614311565b9050919050565b6000602082019050818103600083015261489b81614334565b9050919050565b600060208201905081810360008301526148bb81614357565b9050919050565b600060208201905081810360008301526148db8161437a565b9050919050565b600060208201905081810360008301526148fb8161439d565b9050919050565b6000602082019050818103600083015261491b816143c0565b9050919050565b6000602082019050818103600083015261493b816143e3565b9050919050565b6000602082019050818103600083015261495b81614406565b9050919050565b6000602082019050818103600083015261497b81614429565b9050919050565b6000602082019050818103600083015261499b8161444c565b9050919050565b60006020820190506149b7600083018461446f565b92915050565b60006020820190506149d2600083018461448d565b92915050565b60006020820190506149ed600083018461449c565b92915050565b6000602082019050614a0860008301846144ab565b92915050565b6000614a18614a29565b9050614a248282614d3a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a4e57614a4d614e72565b5b614a5782614ea1565b9050602081019050919050565b600067ffffffffffffffff821115614a7f57614a7e614e72565b5b614a8882614ea1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b3182614c9b565b9150614b3c83614c9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b7157614b70614de5565b5b828201905092915050565b6000614b8782614c9b565b9150614b9283614c9b565b925082614ba257614ba1614e14565b5b828204905092915050565b6000614bb882614ca5565b9150614bc383614ca5565b92508167ffffffffffffffff0483118215151615614be457614be3614de5565b5b828202905092915050565b6000614bfa82614c9b565b9150614c0583614c9b565b925082821015614c1857614c17614de5565b5b828203905092915050565b6000614c2e82614c7b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614cf3578082015181840152602081019050614cd8565b83811115614d02576000848401525b50505050565b60006002820490506001821680614d2057607f821691505b60208210811415614d3457614d33614e43565b5b50919050565b614d4382614ea1565b810181811067ffffffffffffffff82111715614d6257614d61614e72565b5b80604052505050565b6000614d7682614c9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da957614da8614de5565b5b600182019050919050565b6000614dbf82614c9b565b9150614dca83614c9b565b925082614dda57614dd9614e14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6d6178696d756d206e756d626572206f66204b4559732070657220707265736160008201527f6c652073657373696f6e20657863656564656400000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d6178696d756d206e756d626572206f66204b4559732070657220736573736960008201527f6f6e206578636565646564000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6174206c656173742031204b4559206e6565647320746f206265206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e646976696475616c2061646472657373657320617265206f6e6c7920616c60008201527f6c6f7765642061206d6178696d756d206f662032204e46547320647572696e6760208201527f2070726573616c65000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7468697320616d6f756e742077696c6c2065786365656420746865207072657360008201527f616c65206c696d6974206f72207468652070726573616c652068617320736f6c60208201527f64206f7574000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f7468697320636f6e747261637420697320706175736564000000000000000000600082015250565b7f7468697320776f756c642065786365656420746865206e756d626572206f662060008201527f70656e74686f757365204b455973000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746869732061646472657373206973206e6f74206f6e2074686520707265736160008201527f6c65206c69737400000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646976696475616c2061646472657373657320617265206f6e6c7920616c60008201527f6c6f7765642061206d6178696d756d206f662034204e46547300000000000000602082015250565b7f7468697320776f756c642065786365656420746865206e756d626572206f662060008201527f617661696c61626c65204b455973000000000000000000000000000000000000602082015250565b61573f81614c23565b811461574a57600080fd5b50565b61575681614c35565b811461576157600080fd5b50565b61576d81614c41565b811461577857600080fd5b50565b61578481614c9b565b811461578f57600080fd5b50565b61579b81614cb9565b81146157a657600080fd5b5056fea264697066735822122044d1b96b983109a5806973591a796ff1174abac916643490a15c051d4f115da464736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000076571206b6579730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b455953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5453476371456765767335654876664e345831614a4d63585962663671725a567a44593563485a637a317a322f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61716662634158796a54504266535052526435506a6a585773477a4647397a505655776b64676b64464d62642f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): eq keys
Arg [1] : _symbol (string): KEYS
Arg [2] : _initBaseURI (string): ipfs://QmTSGcqEgevs5eHvfN4X1aJMcXYbf6qrZVzDY5cHZcz1z2/
Arg [3] : _initNotRevealURI (string): ipfs://QmaqfbcAXyjTPBfSPRRd5PjjXWsGzFG9zPVUwkdgkdFMbd/
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 6571206b65797300000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4b45595300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5453476371456765767335654876664e345831614a4d63
Arg [10] : 585962663671725a567a44593563485a637a317a322f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d61716662634158796a54504266535052526435506a6a58
Arg [13] : 5773477a4647397a505655776b64676b64464d62642f00000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.