ERC-721
Overview
Max Total Supply
3,000 WSM
Holders
259
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WSMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WallStMoms
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 4269 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; // 888 888 888 888 .d8888b. 888 888b d888 // 888 o 888 888 888 d88P Y88b 888 8888b d8888 // 888 d8b 888 888 888 Y88b. 888 88888b.d88888 // 888 d888b 888 8888b. 888 888 "Y888b. 888888 888Y88888P888 .d88b. 88888b.d88b. .d8888b // 888d88888b888 "88b 888 888 "Y88b. 888 888 Y888P 888 d88""88b 888 "888 "88b 88K // 88888P Y88888 .d888888 888 888 "888 888 888 Y8P 888 888 888 888 888 888 "Y8888b. // 8888P Y8888 888 888 888 888 Y88b d88P Y88b. 888 " 888 Y88..88P 888 888 888 X88 // 888P Y888 "Y888888 888 888 "Y8888P" "Y888 888 888 "Y88P" 888 888 888 88888P' import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract WallStMoms is ERC721A, Ownable { using Strings for uint256; enum SaleType { WHITELIST_SUPER_FRENS, WHITELIST, WHITELIST_FREE_MINT, PUBLIC_SALE } event WhiteYeti(address indexed whiteYeti, bool value); address public LegenDaddy_ADDRESS = 0x93ed994082734BbEc169e19386f6DC28200A17A3; string public baseURI_1; string public baseURI_2; string public baseURI_3; string public notRevealedURI; string public PROVENANCE_1; string public PROVENANCE_2; string public PROVENANCE_3; string public baseExtension = ".json"; bytes32 public merkleRootSF; bytes32 public merkleRoot; bytes32 public merkleRootFreeMint; mapping(address => bool) whiteYetiAddresses; mapping(address => bool) mintedSF; mapping(address => bool) mintedWhiteYeti; mapping(address => uint8) amountMintedWhitelistPhase1; mapping(address => uint8) amountMintedWhitelistPhase2; mapping(address => uint8) amountMintedWhitelistPhase3; mapping(address => bool) freeMintedWithDads; uint256 public costWhitelistedSF = 0.00 ether; uint256 public costWhitelisted = 0.09 ether; uint256 public costPublicSale = 0.12 ether; uint256 public costWhiteYeti = 0.09 ether; uint16 public phaseMaxSupply1; uint16 public phaseMaxSupply2; uint16 public phaseMaxSupply3; uint16 public currPhaseMaxSupply; uint16 public maxMintAmountWhitelistSF = 1; uint16 public maxMintAmountWhitelist = 2; uint16 public maxMintAmountPublicSale = 2; uint16 public maxMintAmountWhiteYeti = 100; uint8 public lastRevealedPhase = 0; // possible values: 0, 1, 2, 3. 0 means no phase has been revealed yet. uint8 public phase = 1; bool public paused = false; bool public frozenMetadata = false; bool public frozenMaxSupply = false; SaleType public currSaleType = SaleType.WHITELIST_SUPER_FRENS; constructor( string memory _name, string memory _symbol, string memory _initNotRevealedURI, uint16 _phaseMaxSupply1, uint16 _phaseMaxSupply2, uint16 _phaseMaxSupply3 ) ERC721A(_name, _symbol) { setNotRevealedURI(_initNotRevealedURI); phaseMaxSupply1 = _phaseMaxSupply1; phaseMaxSupply2 = _phaseMaxSupply2; phaseMaxSupply3 = _phaseMaxSupply3; currPhaseMaxSupply = phaseMaxSupply1; } //-------MINTING FUNCTIONS-------// function mintWhitelistedSF(uint16 _mintAmount, bytes32[] calldata _merkleProof) external payable { require(currSaleType == SaleType.WHITELIST_SUPER_FRENS, "Super Frens sale is not active"); require(isWhitelistedSF(msg.sender, _merkleProof), "You are not whitelisted"); require(mintedSF[msg.sender] == false, "You already minted"); require(_mintAmount <= maxMintAmountWhitelistSF, "Max mint amount exceeded"); require(msg.value >= costWhitelistedSF * _mintAmount, "Insufficient ETH amount"); mintedSF[msg.sender] = true; _mint(_mintAmount); } function mintWhitelisted_phase1(uint16 _mintAmount, bytes32[] calldata _merkleProof) external payable canWhitelistMint(_mintAmount, _merkleProof) { require(phase == 1, "Phase 1 is not active"); require(amountMintedWhitelistPhase1[msg.sender] + _mintAmount <= maxMintAmountWhitelist, "Max mint amount exceeded"); amountMintedWhitelistPhase1[msg.sender] += uint8(_mintAmount); _mint(_mintAmount); } function mintWhitelisted_phase2(uint16 _mintAmount, bytes32[] calldata _merkleProof) external payable canWhitelistMint(_mintAmount, _merkleProof) { require(phase == 2, "Phase 2 is not active"); require(amountMintedWhitelistPhase2[msg.sender] + _mintAmount <= maxMintAmountWhitelist, "Max mint amount exceeded"); amountMintedWhitelistPhase2[msg.sender] += uint8(_mintAmount); _mint(_mintAmount); } function mintWhitelisted_phase3(uint16 _mintAmount, bytes32[] calldata _merkleProof) external payable canWhitelistMint(_mintAmount, _merkleProof) { require(phase == 3, "Phase 3 is not active"); require(amountMintedWhitelistPhase3[msg.sender] + _mintAmount <= maxMintAmountWhitelist, "Max mint amount exceeded"); amountMintedWhitelistPhase3[msg.sender] += uint8(_mintAmount); _mint(_mintAmount); } modifier canWhitelistMint(uint16 _mintAmount, bytes32[] calldata _merkleProof) { require(currSaleType == SaleType.WHITELIST, "Whitelist sale is not active"); require(isWhitelisted(msg.sender, _merkleProof), "You are not whitelisted"); require(msg.value >= costWhitelisted * _mintAmount, "Insufficient ETH amount"); _; } function mintFreeWithDads(uint16 _mintAmount, bytes32[] calldata _merkleProof) external { require(currSaleType == SaleType.WHITELIST_FREE_MINT, "Whitelist Free Mint sale is not active"); require(isWhitelistedForFreeMint(msg.sender, _mintAmount, _merkleProof), "You are not whitelisted or the amount doesn't match"); require(freeMintedWithDads[msg.sender] == false, "You already minted your free moms"); freeMintedWithDads[msg.sender] = true; _mint(_mintAmount); } function mintWithWhiteYeti(uint16 _mintAmount) external payable { require(_mintAmount <= maxMintAmountWhiteYeti, "Max mint amount exceeded"); require(msg.value >= costWhiteYeti * _mintAmount, "Insufficient ETH amount"); require(whiteYetiAddresses[msg.sender], "You don't have white yeti badge"); require(mintedWhiteYeti[msg.sender] == false, "You already minted"); mintedWhiteYeti[msg.sender] = true; _mint(_mintAmount); } function mintPublicSale(uint16 _mintAmount) external payable { require(currSaleType == SaleType.PUBLIC_SALE, "Public sale is not active"); require(_mintAmount <= maxMintAmountPublicSale, "Max mint amount exceeded"); require(msg.value >= costPublicSale * _mintAmount, "Insufficient ETH amount"); _mint(_mintAmount); } function mintOnlyOwner(uint16 _mintAmount) external onlyOwner { _mint(_mintAmount); } //-------VIEW ONLY FUNCTIONS-------// function isWhitelistedSF(address _user, bytes32[] calldata _merkleProof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(_user)); return MerkleProof.verify(_merkleProof, merkleRootSF, leaf); } function isWhitelisted(address _user, bytes32[] calldata _merkleProof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(_user)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function isWhitelistedForFreeMint( address _user, uint16 _mintAmount, bytes32[] calldata _merkleProof ) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(_user, _mintAmount)); return MerkleProof.verify(_merkleProof, merkleRootFreeMint, leaf); } function isWhiteYeti(address _user) public view returns (bool) { return whiteYetiAddresses[_user]; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "tokenId does not exist"); if (!isPhaseRevealed(getPhaseForTokenId(tokenId))) { return notRevealedURI; } string memory baseURI = _baseURI(getPhaseForTokenId(tokenId)); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : ""; } function getPhaseForTokenId(uint256 tokenId) public view returns (uint8) { if (tokenId <= phaseMaxSupply1) return 1; if (tokenId <= phaseMaxSupply1 + phaseMaxSupply2) return 2; return 3; } function maxSupply() public view returns (uint16) { return phaseMaxSupply1 + phaseMaxSupply2 + phaseMaxSupply3; } //-------VIEWERS FOR SALE PHASE-------// function isWhitelistSFSale() public view returns (bool) { return currSaleType == SaleType.WHITELIST_SUPER_FRENS; } function isWhitelistSale() public view returns (bool) { return currSaleType == SaleType.WHITELIST; } function isWhitelistFreeMint() public view returns (bool) { return currSaleType == SaleType.WHITELIST_FREE_MINT; } function isPublicSale() public view returns (bool) { return currSaleType == SaleType.PUBLIC_SALE; } //-------INTERNAL-------// function _mint(uint16 _mintAmount) internal { require(!paused, "Please wait until unpaused"); require(_mintAmount > 0, "Need to mint more than 0"); require(_totalMinted() + _mintAmount <= currPhaseMaxSupply, "Max supply exceeded"); super._mint(msg.sender, _mintAmount, "", true); } function isPhaseRevealed(uint8 _phase) internal view returns (bool) { return _phase <= lastRevealedPhase; } function _baseURI(uint8 _phase) internal view returns (string memory) { if (_phase == 1) { return baseURI_1; } if (_phase == 2) { return baseURI_2; } return baseURI_3; } function _startTokenId() internal pure override returns (uint256) { return 1; } //-------ONLY OWNER-------// //SETTERS FOR STRINGS function setBaseURI(string memory _newBaseURI, uint8 _phase) public onlyOwner validPhase(_phase) { require(!frozenMetadata, "Metadata is frozen"); if (_phase == 1) { baseURI_1 = _newBaseURI; } else if (_phase == 2) { baseURI_2 = _newBaseURI; } else if (_phase == 3) { baseURI_3 = _newBaseURI; } } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } //SETTERS FOR PROVENANCE function setProvenanceHash_1(string memory _provenanceHash) public onlyOwner { PROVENANCE_1 = _provenanceHash; } function setProvenanceHash_2(string memory _provenanceHash) public onlyOwner { PROVENANCE_2 = _provenanceHash; } function setProvenanceHash_3(string memory _provenanceHash) public onlyOwner { PROVENANCE_3 = _provenanceHash; } //SETTERS FOR PAUSED, REVEALED, FREEZE METADATA AND PHASE function setPaused(bool _state) public onlyOwner { paused = _state; } function unreveal() public onlyOwner { lastRevealedPhase = 0; } function revealPhase1(string memory _baseURI_1) public onlyOwner { require(lastRevealedPhase == 0, "Cannot reveal this phase"); lastRevealedPhase = 1; if (!frozenMetadata) { baseURI_1 = _baseURI_1; } } function revealPhase2(string memory _baseURI_2) public onlyOwner { require(lastRevealedPhase == 1, "Cannot reveal this phase"); lastRevealedPhase = 2; if (!frozenMetadata) { baseURI_2 = _baseURI_2; } } function revealPhase3(string memory _baseURI_3) public onlyOwner { require(lastRevealedPhase == 2, "Cannot reveal this phase"); lastRevealedPhase = 3; if (!frozenMetadata) { baseURI_3 = _baseURI_3; } } function freezeMetadata() public onlyOwner { require(bytes(baseURI_1).length > 0, "BaseURI 1 is not set"); require(bytes(baseURI_2).length > 0, "BaseURI 2 is not set"); require(bytes(baseURI_3).length > 0, "BaseURI 3 is not set"); require(phase == 3, "Phase is not 3"); frozenMetadata = true; } function freezeMaxSupply() public onlyOwner { require(phase == 3, "Phase is not 3"); frozenMaxSupply = true; } function setPhase(uint8 _phase) public onlyOwner validPhase(_phase) { require(_phase >= 1 && _phase <= 3, "Phase must be between 1 and 3"); phase = _phase; currPhaseMaxSupply = calculatePhaseMaxSupply(phase); } function calculatePhaseMaxSupply(uint8 _phase) public view onlyOwner returns (uint16) { if (_phase == 1) { return phaseMaxSupply1; } if (_phase == 2) { return phaseMaxSupply1 + phaseMaxSupply2; } if (_phase == 3) { return phaseMaxSupply1 + phaseMaxSupply2 + phaseMaxSupply3; } return 0; } modifier validPhase(uint8 _phase) { require(_phase <= 3, "Phase must be 1, 2 or 3"); _; } //SETTERS FOR SALE PHASE function setWhitelistSFSale() public onlyOwner { currSaleType = SaleType.WHITELIST_SUPER_FRENS; } function setWhitelistSale() public onlyOwner { currSaleType = SaleType.WHITELIST; } function setWhitelistFreeMintSale() public onlyOwner { currSaleType = SaleType.WHITELIST_FREE_MINT; } function setPublicSale() public onlyOwner { currSaleType = SaleType.PUBLIC_SALE; } //SETTERS FOR COSTS function setCostWhitelistedSF(uint256 _newCostWhitelisted) public onlyOwner { costWhitelistedSF = _newCostWhitelisted; } function setCostWhitelisted(uint256 _newCostWhitelisted) public onlyOwner { costWhitelisted = _newCostWhitelisted; } function setCostPublicSale(uint256 _newCostPublicSale) public onlyOwner { costPublicSale = _newCostPublicSale; } function setCostWhiteYeti(uint256 _newCostWhiteYeti) public onlyOwner { costWhiteYeti = _newCostWhiteYeti; } //SETTERS FOR MAXMINTAMOUNT function setMaxMintAmountWhitelistSF(uint16 _maxMintAmount) public onlyOwner { maxMintAmountWhitelistSF = _maxMintAmount; } function setMaxMintAmountWhitelist(uint16 _maxMintAmount) public onlyOwner { maxMintAmountWhitelist = _maxMintAmount; } function setMaxMintAmountPublicSale(uint16 _maxMintAmount) public onlyOwner { maxMintAmountPublicSale = _maxMintAmount; } function setMaxMintAmountWhiteYeti(uint16 _maxMintAmount) public onlyOwner { maxMintAmountWhiteYeti = _maxMintAmount; } //SETTER FOR PHASE MAXSUPPLY function setPhaseMaxSupply(uint8 _phase, uint16 _newPhaseMaxSupply) public onlyOwner { require(!frozenMaxSupply, "Max supply is frozen"); require(_phase == 1 || _phase == 2 || phase == 3, "Phase must be 1, 2 or 3"); if (_phase == 1) { phaseMaxSupply1 = _newPhaseMaxSupply; } else if (_phase == 2) { phaseMaxSupply2 = _newPhaseMaxSupply; } else if (_phase == 3) { phaseMaxSupply3 = _newPhaseMaxSupply; } if (phase == _phase) { currPhaseMaxSupply = calculatePhaseMaxSupply(phase); } } //SETTERS FOR WHITELISTS function setWhitelist(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setWhitelistSF(bytes32 _merkleRoot) external onlyOwner { merkleRootSF = _merkleRoot; } function setWhitelistForFreeMint(bytes32 _merkleRoot) external onlyOwner { merkleRootFreeMint = _merkleRoot; } function setWhiteYetiAddress(address _yetiAddress, bool value) external onlyOwner { whiteYetiAddresses[_yetiAddress] = value; emit WhiteYeti(_yetiAddress, value); } //WITHDRAWALS function withdraw() public payable onlyOwner { // ================This will pay 2%========================= (bool coldsuccess, ) = payable(LegenDaddy_ADDRESS).call{value: (address(this).balance * 2) / 100}(""); require(coldsuccess); // ==================================================================== // This will payout the OWNER the remainder of the contract balance if any left. (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ===================================================================== } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// 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 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/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 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 4269 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"},{"internalType":"uint16","name":"_phaseMaxSupply1","type":"uint16"},{"internalType":"uint16","name":"_phaseMaxSupply2","type":"uint16"},{"internalType":"uint16","name":"_phaseMaxSupply3","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whiteYeti","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"WhiteYeti","type":"event"},{"inputs":[],"name":"LegenDaddy_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_2","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_3","outputs":[{"internalType":"string","name":"","type":"string"}],"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_1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_2","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_3","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"calculatePhaseMaxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWhiteYeti","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWhitelistedSF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currPhaseMaxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currSaleType","outputs":[{"internalType":"enum WallStMoms.SaleType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozenMaxSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frozenMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getPhaseForTokenId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteYeti","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSFSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelistedForFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelistedSF","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRevealedPhase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublicSale","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWhiteYeti","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWhitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWhitelistSF","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootFreeMint","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootSF","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintFreeWithDads","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mintOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelistedSF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelisted_phase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelisted_phase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelisted_phase3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mintWithWhiteYeti","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseMaxSupply1","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseMaxSupply2","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseMaxSupply3","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI_1","type":"string"}],"name":"revealPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI_2","type":"string"}],"name":"revealPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI_3","type":"string"}],"name":"revealPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostPublicSale","type":"uint256"}],"name":"setCostPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostWhiteYeti","type":"uint256"}],"name":"setCostWhiteYeti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostWhitelisted","type":"uint256"}],"name":"setCostWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostWhitelisted","type":"uint256"}],"name":"setCostWhitelistedSF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxMintAmount","type":"uint16"}],"name":"setMaxMintAmountPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxMintAmount","type":"uint16"}],"name":"setMaxMintAmountWhiteYeti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxMintAmount","type":"uint16"}],"name":"setMaxMintAmountWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxMintAmount","type":"uint16"}],"name":"setMaxMintAmountWhitelistSF","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":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"},{"internalType":"uint16","name":"_newPhaseMaxSupply","type":"uint16"}],"name":"setPhaseMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash_1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash_2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash_3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_yetiAddress","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhiteYetiAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistForFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistFreeMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistSF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistSFSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistSale","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":"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":[],"name":"unreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
600980546001600160a01b0319167393ed994082734bbec169e19386f6dc28200a17a317905560c06040526005608081905264173539b7b760d91b60a09081526200004e916011919062000247565b506000601c5567013fbe85edc90000601d8190556701aa535d3d0c0000601e55601f5560208054600160401b600160b01b03191671010000640002000200010000000000000000179055348015620000a557600080fd5b5060405162005d8138038062005d81833981016040819052620000c891620003d2565b855186908690620000e190600290602085019062000247565b508051620000f790600390602084019062000247565b50506001600055506200010a336200017d565b6200011584620001cf565b6020805463ffffffff60201b1961ffff95861663ffffffff199092169190911762010000948616949094029390931792831661ffff60301b196401000000009386169390930292831617928416919093161766010000000000000217905550620004d7915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200022e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200024390600d90602084019062000247565b5050565b82805462000255906200049a565b90600052602060002090601f016020900481019282620002795760008555620002c4565b82601f106200029457805160ff1916838001178555620002c4565b82800160010185558215620002c4579182015b82811115620002c4578251825591602001919060010190620002a7565b50620002d2929150620002d6565b5090565b5b80821115620002d25760008155600101620002d7565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031557600080fd5b81516001600160401b0380821115620003325762000332620002ed565b604051601f8301601f19908116603f011681019082821181831017156200035d576200035d620002ed565b816040528381526020925086838588010111156200037a57600080fd5b600091505b838210156200039e57858201830151818301840152908201906200037f565b83821115620003b05760008385830101525b9695505050505050565b805161ffff81168114620003cd57600080fd5b919050565b60008060008060008060c08789031215620003ec57600080fd5b86516001600160401b03808211156200040457600080fd5b620004128a838b0162000303565b975060208901519150808211156200042957600080fd5b620004378a838b0162000303565b965060408901519150808211156200044e57600080fd5b506200045d89828a0162000303565b9450506200046e60608801620003ba565b92506200047e60808801620003ba565b91506200048e60a08801620003ba565b90509295509295509295565b600181811c90821680620004af57607f821691505b60208210811415620004d157634e487b7160e01b600052602260045260246000fd5b50919050565b61589a80620004e76000396000f3fe6080604052600436106106395760003560e01c8063715018a61161032d578063c87b56dd116101b0578063dc796680116100f7578063eda01bb3116100a0578063f2c4ce1e1161007a578063f2c4ce1e14611166578063f2fde38b14611186578063f3e6b353146111a6578063f8196f65146111bb57600080fd5b8063eda01bb314611103578063ee1dcff214611123578063f110903d1461115157600080fd5b8063eaa0a178116100d1578063eaa0a178146110a0578063ec195d0f146110b5578063ec7671e5146110e357600080fd5b8063dc7966801461102c578063e36e7fd114611041578063e985e9c51461105757600080fd5b8063d351362f11610159578063d92c46fc11610133578063d92c46fc14610fd1578063da3b618414610ff6578063da3ef23f1461100c57600080fd5b8063d351362f14610f87578063d3fd976f14610fa7578063d5abeb0114610fbc57600080fd5b8063cef216e21161018a578063cef216e214610f3d578063cf514f6714610f52578063d111515d14610f7257600080fd5b8063c87b56dd14610ee7578063cc83696914610f07578063cd72908214610f1d57600080fd5b8063a22cb46511610274578063b56ee3331161021d578063c03afb59116101f7578063c03afb5914610e9c578063c3b056f514610ebc578063c668286214610ed257600080fd5b8063b56ee33314610e54578063b88d4fde14610e69578063bfdb67bd14610e8957600080fd5b8063ae79515d1161024e578063ae79515d14610dec578063af4c22d414610e0c578063b1c9fe6e14610e3357600080fd5b8063a22cb46514610d97578063a3f59def14610db7578063a5a865dc14610dd757600080fd5b80638529ccad116102d657806395d89b41116102b057806395d89b4114610d585780639641661d14610d6d57806396a072bd14610d8257600080fd5b80638529ccad14610ce95780638da5cb5b14610d1a5780639196f76114610d3857600080fd5b8063788120d511610307578063788120d514610c895780637a10109514610ca95780637ca6107014610cc957600080fd5b8063715018a614610c365780637225038014610c4b57806374d9e7ac14610c6057600080fd5b806330f86a76116104c05780634cd50b60116104075780635a23dd99116103b05780636352211e1161038a5780636352211e14610bc15780636e3596a714610be15780637037bb1a14610bf657806370a0823114610c1657600080fd5b80635a23dd9914610b5e5780635c975abb14610b7e57806361668f6014610bae57600080fd5b806356f8f78c116103e157806356f8f78c14610b16578063581e4a2514610b2b57806358281a1f14610b3e57600080fd5b80634cd50b6014610aaa5780635004da9414610aca57806354c9840314610b0357600080fd5b8063427382ac1161046957806346cb5dfd1161044357806346cb5dfd14610a4a57806348539e3714610a6a57806349fea75314610a8a57600080fd5b8063427382ac146109f757806342842e0e14610a0a578063440bc7f314610a2a57600080fd5b80633966fa0f1161049a5780633966fa0f146109b95780633ccfd60b146109cf5780633d45895f146109d757600080fd5b806330f86a761461095d578063318c126a1461097e57806338a1fd4f1461099957600080fd5b806318160ddd1161058457806321eac03f1161052d5780632eb4a7ab116105075780632eb4a7ab146109075780633042761e1461091d57806330cbc8861461093d57600080fd5b806321eac03f146108a457806323b872dd146108c457806327d93977146108e457600080fd5b80631c352b621161055e5780631c352b621461084a5780631f32fddc1461085d578063208a789e1461087257600080fd5b806318160ddd146107ed578063195f2f14146108145780631c0af1781461082a57600080fd5b8063095ea7b3116105e65780631602f04a116105c05780631602f04a1461079857806316744607146107b857806316c38b3c146107cd57600080fd5b8063095ea7b31461074e5780631455b1e21461076e578063158756b91461078357600080fd5b8063060ca33811610617578063060ca338146106d257806306fdde03146106f4578063081812fc1461071657600080fd5b80630113ad071461063e57806301ffc9a7146106775780630311bbd3146106a7575b600080fd5b34801561064a57600080fd5b5060205461065f9062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b34801561068357600080fd5b506106976106923660046150ac565b6111e8565b604051901515815260200161066e565b3480156106b357600080fd5b5060205461065f906c01000000000000000000000000900461ffff1681565b3480156106de57600080fd5b506106f26106ed366004615127565b6112cd565b005b34801561070057600080fd5b50610709611491565b60405161066e91906151d2565b34801561072257600080fd5b506107366107313660046151e5565b611523565b6040516001600160a01b03909116815260200161066e565b34801561075a57600080fd5b506106f2610769366004615215565b611580565b34801561077a57600080fd5b5061069761163b565b34801561078f57600080fd5b506106f2611664565b3480156107a457600080fd5b506106f26107b33660046151e5565b6116e8565b3480156107c457600080fd5b506106f2611747565b3480156107d957600080fd5b506106f26107e836600461524f565b61182d565b3480156107f957600080fd5b5060015460005403600019015b60405190815260200161066e565b34801561082057600080fd5b5061080660145481565b34801561083657600080fd5b506106f261084536600461526a565b6118cf565b6106f2610858366004615127565b61196e565b34801561086957600080fd5b50610709611bc6565b34801561087e57600080fd5b5061089261088d3660046151e5565b611c54565b60405160ff909116815260200161066e565b3480156108b057600080fd5b506106f26108bf366004615331565b611c9f565b3480156108d057600080fd5b506106f26108df366004615366565b611dd6565b3480156108f057600080fd5b5060205461065f90640100000000900461ffff1681565b34801561091357600080fd5b5061080660135481565b34801561092957600080fd5b506106f261093836600461526a565b611de1565b34801561094957600080fd5b506106f2610958366004615331565b611e7c565b34801561096957600080fd5b5060205461069790600160a01b900460ff1681565b34801561098a57600080fd5b5060205461065f9061ffff1681565b3480156109a557600080fd5b506106976109b43660046153a2565b611fae565b3480156109c557600080fd5b50610806601e5481565b6106f2612076565b3480156109e357600080fd5b5061065f6109f2366004615414565b6121b6565b6106f2610a05366004615127565b612293565b348015610a1657600080fd5b506106f2610a25366004615366565b6124c2565b348015610a3657600080fd5b506106f2610a453660046151e5565b6124dd565b348015610a5657600080fd5b506106f2610a653660046151e5565b61253c565b348015610a7657600080fd5b506106f2610a8536600461542f565b61259b565b348015610a9657600080fd5b506106f2610aa53660046151e5565b612717565b348015610ab657600080fd5b506106f2610ac536600461526a565b612776565b348015610ad657600080fd5b50610697610ae536600461547d565b6001600160a01b031660009081526015602052604090205460ff1690565b6106f2610b1136600461526a565b6127d9565b348015610b2257600080fd5b506106f2612911565b6106f2610b39366004615127565b6129a3565b348015610b4a57600080fd5b506106f2610b59366004615331565b612bd2565b348015610b6a57600080fd5b50610697610b79366004615498565b612c3f565b348015610b8a57600080fd5b50602054610697907201000000000000000000000000000000000000900460ff1681565b6106f2610bbc366004615127565b612cd8565b348015610bcd57600080fd5b50610736610bdc3660046151e5565b612ee6565b348015610bed57600080fd5b506106f2612ef8565b348015610c0257600080fd5b506106f2610c113660046154b6565b612f87565b348015610c2257600080fd5b50610806610c3136600461547d565b613040565b348015610c4257600080fd5b506106f26130a8565b348015610c5757600080fd5b5061070961310e565b348015610c6c57600080fd5b5060205461065f906a0100000000000000000000900461ffff1681565b348015610c9557600080fd5b506106f2610ca436600461526a565b61311b565b348015610cb557600080fd5b506106f2610cc43660046154e0565b6131b8565b348015610cd557600080fd5b506106f2610ce43660046151e5565b6133f6565b348015610cf557600080fd5b5060205461069790730100000000000000000000000000000000000000900460ff1681565b348015610d2657600080fd5b506008546001600160a01b0316610736565b348015610d4457600080fd5b506106f2610d533660046151e5565b613455565b348015610d6457600080fd5b506107096134b4565b348015610d7957600080fd5b506107096134c3565b348015610d8e57600080fd5b506106976134d0565b348015610da357600080fd5b506106f2610db23660046154b6565b6134d9565b348015610dc357600080fd5b506106f2610dd2366004615331565b613588565b348015610de357600080fd5b506106976136b7565b348015610df857600080fd5b506106f2610e073660046151e5565b6136c0565b348015610e1857600080fd5b5060205461065f9068010000000000000000900461ffff1681565b348015610e3f57600080fd5b5060205461089290600160881b900460ff1681565b348015610e6057600080fd5b5061070961371f565b348015610e7557600080fd5b506106f2610e8436600461550a565b61372c565b6106f2610e9736600461526a565b613790565b348015610ea857600080fd5b506106f2610eb7366004615414565b61393f565b348015610ec857600080fd5b50610806601f5481565b348015610ede57600080fd5b50610709613a97565b348015610ef357600080fd5b50610709610f023660046151e5565b613aa4565b348015610f1357600080fd5b5061080660125481565b348015610f2957600080fd5b506106f2610f38366004615331565b613c28565b348015610f4957600080fd5b506106f2613c95565b348015610f5e57600080fd5b50610697610f6d366004615498565b613d24565b348015610f7e57600080fd5b506106f2613db4565b348015610f9357600080fd5b506106f2610fa236600461526a565b613fc4565b348015610fb357600080fd5b50610709614065565b348015610fc857600080fd5b5061065f614072565b348015610fdd57600080fd5b5060205461065f906601000000000000900461ffff1681565b34801561100257600080fd5b50610806601d5481565b34801561101857600080fd5b506106f2611027366004615331565b6140a8565b34801561103857600080fd5b50610709614115565b34801561104d57600080fd5b50610806601c5481565b34801561106357600080fd5b50610697611072366004615586565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156110ac57600080fd5b506106f2614122565b3480156110c157600080fd5b5060205461089290700100000000000000000000000000000000900460ff1681565b3480156110ef57600080fd5b506106f26110fe366004615331565b6141b1565b34801561110f57600080fd5b50600954610736906001600160a01b031681565b34801561112f57600080fd5b5060205461114490600160a81b900460ff1681565b60405161066e91906155c6565b34801561115d57600080fd5b5061069761421e565b34801561117257600080fd5b506106f2611181366004615331565b614226565b34801561119257600080fd5b506106f26111a136600461547d565b614293565b3480156111b257600080fd5b50610709614372565b3480156111c757600080fd5b5060205461065f906e010000000000000000000000000000900461ffff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061127b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806112c757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6002602054600160a81b900460ff1660038111156112ed576112ed6155b0565b146113655760405162461bcd60e51b815260206004820152602660248201527f57686974656c6973742046726565204d696e742073616c65206973206e6f742060448201527f616374697665000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61137133848484611fae565b6113e35760405162461bcd60e51b815260206004820152603360248201527f596f7520617265206e6f742077686974656c6973746564206f7220746865206160448201527f6d6f756e7420646f65736e2774206d6174636800000000000000000000000000606482015260840161135c565b336000908152601b602052604090205460ff16156114695760405162461bcd60e51b815260206004820152602160248201527f596f7520616c7265616479206d696e74656420796f75722066726565206d6f6d60448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161135c565b336000908152601b60205260409020805460ff1916600117905561148c8361437f565b505050565b6060600280546114a0906155ee565b80601f01602080910402602001604051908101604052809291908181526020018280546114cc906155ee565b80156115195780601f106114ee57610100808354040283529160200191611519565b820191906000526020600020905b8154815290600101906020018083116114fc57829003601f168201915b5050505050905090565b600061152e826144d7565b611564576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061158b82612ee6565b9050806001600160a01b0316836001600160a01b031614156115d9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906115f957506115f78133611072565b155b15611630576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61148c838383614529565b600060015b602054600160a81b900460ff16600381111561165e5761165e6155b0565b14905090565b6008546001600160a01b031633146116be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff169055565b6008546001600160a01b031633146117425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601d55565b6008546001600160a01b031633146117a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054600160881b900460ff166003146117fd5760405162461bcd60e51b815260206004820152600e60248201527f5068617365206973206e6f742033000000000000000000000000000000000000604482015260640161135c565b602080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b6008546001600160a01b031633146118875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602080549115157201000000000000000000000000000000000000027fffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffff909216919091179055565b6008546001600160a01b031633146119295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff9092166c01000000000000000000000000027fffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffff909216919091179055565b8282826001602054600160a81b900460ff166003811115611991576119916155b0565b146119de5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161135c565b6119e9338383612c3f565b611a355760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b8261ffff16601d54611a47919061563f565b341015611a965760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b602054600160881b900460ff16600114611af25760405162461bcd60e51b815260206004820152601560248201527f50686173652031206973206e6f74206163746976650000000000000000000000604482015260640161135c565b6020805433600090815260189092526040909120546a010000000000000000000090910461ffff1690611b2990889060ff1661565e565b61ffff161115611b7b5760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b3360009081526018602052604081208054889290611b9d90849060ff16615684565b92506101000a81548160ff021916908360ff160217905550611bbe8661437f565b505050505050565b600a8054611bd3906155ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff906155ee565b8015611c4c5780601f10611c2157610100808354040283529160200191611c4c565b820191906000526020600020905b815481529060010190602001808311611c2f57829003601f168201915b505050505081565b60205460009061ffff168211611c6c57506001919050565b602054611c859061ffff6201000082048116911661565e565b61ffff168211611c9757506002919050565b506003919050565b6008546001600160a01b03163314611cf95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054700100000000000000000000000000000000900460ff16600214611d625760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072657665616c20746869732070686173650000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff16700300000000000000000000000000000000179081905560ff73010000000000000000000000000000000000000090910416611dd3578051611dd190600c906020840190614fe5565b505b50565b61148c83838361459d565b6008546001600160a01b03163314611e3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff90921668010000000000000000027fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff909216919091179055565b6008546001600160a01b03163314611ed65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054700100000000000000000000000000000000900460ff16600114611f3f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072657665616c20746869732070686173650000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff16700200000000000000000000000000000000179081905560ff73010000000000000000000000000000000000000090910416611dd3578051611dd190600b906020840190614fe5565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606086901b1660208201527fffff00000000000000000000000000000000000000000000000000000000000060f085901b166034820152600090819060360160405160208183030381529060405280519060200120905061206a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050614820565b9150505b949350505050565b6008546001600160a01b031633146120d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6009546000906001600160a01b031660646120ec47600261563f565b6120f691906156bf565b604051600081818185875af1925050503d8060008114612132576040519150601f19603f3d011682016040523d82523d6000602084013e612137565b606091505b505090508061214557600080fd5b60006121596008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146121a3576040519150601f19603f3d011682016040523d82523d6000602084013e6121a8565b606091505b5050905080611dd157600080fd5b6008546000906001600160a01b031633146122135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8160ff166001141561222b57505060205461ffff1690565b8160ff1660021415612250576020546112c79061ffff6201000082048116911661565e565b8160ff166003141561228a5760205461ffff6401000000008204811691612280916201000082048116911661565e565b6112c7919061565e565b5060005b919050565b8282826001602054600160a81b900460ff1660038111156122b6576122b66155b0565b146123035760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161135c565b61230e338383612c3f565b61235a5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b8261ffff16601d5461236c919061563f565b3410156123bb5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b602054600160881b900460ff166002146124175760405162461bcd60e51b815260206004820152601560248201527f50686173652032206973206e6f74206163746976650000000000000000000000604482015260640161135c565b6020805433600090815260199092526040909120546a010000000000000000000090910461ffff169061244e90889060ff1661565e565b61ffff1611156124a05760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b3360009081526019602052604081208054889290611b9d90849060ff16615684565b61148c8383836040518060200160405280600081525061372c565b6008546001600160a01b031633146125375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601355565b6008546001600160a01b031633146125965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601f55565b6008546001600160a01b031633146125f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8060038160ff16111561264a5760405162461bcd60e51b815260206004820152601760248201527f5068617365206d75737420626520312c2032206f722033000000000000000000604482015260640161135c565b602054730100000000000000000000000000000000000000900460ff16156126b45760405162461bcd60e51b815260206004820152601260248201527f4d657461646174612069732066726f7a656e0000000000000000000000000000604482015260640161135c565b8160ff16600114156126d95782516126d390600a906020860190614fe5565b50505050565b8160ff16600214156126f85782516126d390600b906020860190614fe5565b8160ff166003141561148c5782516126d390600c906020860190614fe5565b6008546001600160a01b031633146127715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601255565b6008546001600160a01b031633146127d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b611dd38161437f565b6003602054600160a81b900460ff1660038111156127f9576127f96155b0565b146128465760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f742061637469766500000000000000604482015260640161135c565b60205461ffff6c01000000000000000000000000909104811690821611156128b05760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b8061ffff16601e546128c2919061563f565b3410156127d05760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b6008546001600160a01b0316331461296b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600391907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b835b0217905550565b8282826001602054600160a81b900460ff1660038111156129c6576129c66155b0565b14612a135760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161135c565b612a1e338383612c3f565b612a6a5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b8261ffff16601d54612a7c919061563f565b341015612acb5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b602054600160881b900460ff16600314612b275760405162461bcd60e51b815260206004820152601560248201527f50686173652033206973206e6f74206163746976650000000000000000000000604482015260640161135c565b60208054336000908152601a9092526040909120546a010000000000000000000090910461ffff1690612b5e90889060ff1661565e565b61ffff161115612bb05760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b336000908152601a602052604081208054889290611b9d90849060ff16615684565b6008546001600160a01b03163314612c2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd190600f906020840190614fe5565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050612ccf848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050614820565b95945050505050565b6000602054600160a81b900460ff166003811115612cf857612cf86155b0565b14612d455760405162461bcd60e51b815260206004820152601e60248201527f5375706572204672656e732073616c65206973206e6f74206163746976650000604482015260640161135c565b612d50338383613d24565b612d9c5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b3360009081526016602052604090205460ff1615612dfc5760405162461bcd60e51b815260206004820152601260248201527f596f7520616c7265616479206d696e7465640000000000000000000000000000604482015260640161135c565b60205461ffff6801000000000000000090910481169084161115612e625760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b8261ffff16601c54612e74919061563f565b341015612ec35760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b336000908152601660205260409020805460ff1916600117905561148c8361437f565b6000612ef182614836565b5192915050565b6008546001600160a01b03163314612f525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600091907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8361299c565b6008546001600160a01b03163314612fe15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527fb9b349f0848f46e0fb803160774a00b895be361de2b53955dd4ef8c2752d0d37910160405180910390a25050565b60006001600160a01b038216613082576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146131025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b61310c60006149aa565b565b600d8054611bd3906155ee565b6008546001600160a01b031633146131755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff9092166a0100000000000000000000027fffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff909216919091179055565b6008546001600160a01b031633146132125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054600160a01b900460ff161561326c5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792069732066726f7a656e000000000000000000000000604482015260640161135c565b8160ff166001148061328157508160ff166002145b806132985750602054600160881b900460ff166003145b6132e45760405162461bcd60e51b815260206004820152601760248201527f5068617365206d75737420626520312c2032206f722033000000000000000000604482015260640161135c565b8160ff166001141561332357602080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff83161790556133a9565b8160ff166002141561336757602080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffff166201000061ffff8416021790556133a9565b8160ff16600314156133a957602080547fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff1664010000000061ffff8416021790555b60205460ff838116600160881b909204161415611dd1576020546133d690600160881b900460ff166121b6565b602060066101000a81548161ffff021916908361ffff1602179055505050565b6008546001600160a01b031633146134505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601c55565b6008546001600160a01b031633146134af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601e55565b6060600380546114a0906155ee565b600b8054611bd3906155ee565b60006002611640565b6001600160a01b03821633141561351c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146135e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054700100000000000000000000000000000000900460ff16156136495760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072657665616c20746869732070686173650000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff167001000000000000000000000000000000001790819055730100000000000000000000000000000000000000900460ff16611dd3578051611dd190600a906020840190614fe5565b60006003611640565b6008546001600160a01b0316331461371a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601455565b600e8054611bd3906155ee565b61373784848461459d565b6001600160a01b0383163b15158015613759575061375784848484614a14565b155b156126d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60205461ffff6e010000000000000000000000000000909104811690821611156137fc5760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b8061ffff16601f5461380e919061563f565b34101561385d5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b3360009081526015602052604090205460ff166138bc5760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f6e27742068617665207768697465207965746920626164676500604482015260640161135c565b3360009081526017602052604090205460ff161561391c5760405162461bcd60e51b815260206004820152601260248201527f596f7520616c7265616479206d696e7465640000000000000000000000000000604482015260640161135c565b336000908152601760205260409020805460ff19166001179055611dd38161437f565b6008546001600160a01b031633146139995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8060038160ff1611156139ee5760405162461bcd60e51b815260206004820152601760248201527f5068617365206d75737420626520312c2032206f722033000000000000000000604482015260640161135c565b60018260ff1610158015613a06575060038260ff1611155b613a525760405162461bcd60e51b815260206004820152601d60248201527f5068617365206d757374206265206265747765656e203120616e642033000000604482015260640161135c565b602080547fffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffff16600160881b60ff858116820292909217928390556133d69204166121b6565b60118054611bd3906155ee565b6060613aaf826144d7565b613afb5760405162461bcd60e51b815260206004820152601660248201527f746f6b656e496420646f6573206e6f7420657869737400000000000000000000604482015260640161135c565b613b2a613b0783611c54565b60205460ff70010000000000000000000000000000000090910481169116111590565b613bc057600d8054613b3b906155ee565b80601f0160208091040260200160405190810160405280929190818152602001828054613b67906155ee565b8015613bb45780601f10613b8957610100808354040283529160200191613bb4565b820191906000526020600020905b815481529060010190602001808311613b9757829003601f168201915b50505050509050919050565b6000613bd3613bce84611c54565b614b6b565b90506000815111613bf35760405180602001604052806000815250613c21565b80613bfd84614bac565b6011604051602001613c11939291906156d3565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314613c825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd1906010906020840190614fe5565b6008546001600160a01b03163314613cef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600191907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8361299c565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050612ccf848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050614820565b6008546001600160a01b03163314613e0e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6000600a8054613e1d906155ee565b905011613e6c5760405162461bcd60e51b815260206004820152601460248201527f426173655552492031206973206e6f7420736574000000000000000000000000604482015260640161135c565b6000600b8054613e7b906155ee565b905011613eca5760405162461bcd60e51b815260206004820152601460248201527f426173655552492032206973206e6f7420736574000000000000000000000000604482015260640161135c565b6000600c8054613ed9906155ee565b905011613f285760405162461bcd60e51b815260206004820152601460248201527f426173655552492033206973206e6f7420736574000000000000000000000000604482015260640161135c565b602054600160881b900460ff16600314613f845760405162461bcd60e51b815260206004820152600e60248201527f5068617365206973206e6f742033000000000000000000000000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffff16730100000000000000000000000000000000000000179055565b6008546001600160a01b0316331461401e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff9092166e010000000000000000000000000000027fffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffff909216919091179055565b600f8054611bd3906155ee565b60205460009061ffff6401000000008204811691614099916201000082048116911661565e565b6140a3919061565e565b905090565b6008546001600160a01b031633146141025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd1906011906020840190614fe5565b60108054611bd3906155ee565b6008546001600160a01b0316331461417c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600291907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8361299c565b6008546001600160a01b0316331461420b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd190600e906020840190614fe5565b600080611640565b6008546001600160a01b031633146142805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd190600d906020840190614fe5565b6008546001600160a01b031633146142ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6001600160a01b0381166143695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161135c565b611dd3816149aa565b600c8054611bd3906155ee565b6020547201000000000000000000000000000000000000900460ff16156143e85760405162461bcd60e51b815260206004820152601a60248201527f506c65617365207761697420756e74696c20756e706175736564000000000000604482015260640161135c565b60008161ffff161161443c5760405162461bcd60e51b815260206004820152601860248201527f4e65656420746f206d696e74206d6f7265207468616e20300000000000000000604482015260640161135c565b60205461ffff6601000000000000909104811690821661445f6000546000190190565b6144699190615797565b11156144b75760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c7920657863656564656400000000000000000000000000604482015260640161135c565b611dd3338261ffff16604051806020016040528060008152506001614cde565b6000816001111580156144eb575060005482105b80156112c75750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006145a882614836565b9050836001600160a01b031681600001516001600160a01b0316146145f9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061461757506146178533611072565b8061463257503361462784611523565b6001600160a01b0316145b90508061466b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166146ab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6146b760008487614529565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff0000000000000000000000000000000000000000000000000000000016909417600160a01b429092169190910217835587018084529220805491939091166147d45760005482146147d4578054602086015167ffffffffffffffff16600160a01b027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008261482d8584614f39565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015614866575060005481105b1561497857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff161515918101829052906149765780516001600160a01b0316156148f3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215614971579392505050565b6148f3565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290614a629033908990889088906004016157af565b602060405180830381600087803b158015614a7c57600080fd5b505af1925050508015614aac575060408051601f3d908101601f19168201909252614aa9918101906157eb565b60015b614b20573d808015614ada576040519150601f19603f3d011682016040523d82523d6000602084013e614adf565b606091505b508051614b18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061206e565b60608160ff1660011415614b8657600a8054613b3b906155ee565b8160ff1660021415614b9f57600b8054613b3b906155ee565b600c8054613b3b906155ee565b606081614bec57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115614c165780614c0081615808565b9150614c0f9050600a836156bf565b9150614bf0565b60008167ffffffffffffffff811115614c3157614c31615285565b6040519080825280601f01601f191660200182016040528015614c5b576020820181803683370190505b5090505b841561206e57614c70600183615823565b9150614c7d600a8661583a565b614c88906030615797565b60f81b818381518110614c9d57614c9d61584e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350614cd7600a866156bf565b9450614c5f565b6000546001600160a01b038516614d21576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83614d58576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217600160a01b429092169190910217905580808501838015614e4857506001600160a01b0387163b15155b15614eea575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4614e996000888480600101955088614a14565b614ecf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415614e4e578260005414614ee557600080fd5b614f30565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415614eeb575b50600055614819565b600081815b8451811015614fdd576000858281518110614f5b57614f5b61584e565b60200260200101519050808311614f9d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250614fca565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080614fd581615808565b915050614f3e565b509392505050565b828054614ff1906155ee565b90600052602060002090601f0160209004810192826150135760008555615059565b82601f1061502c57805160ff1916838001178555615059565b82800160010185558215615059579182015b8281111561505957825182559160200191906001019061503e565b50615065929150615069565b5090565b5b80821115615065576000815560010161506a565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611dd357600080fd5b6000602082840312156150be57600080fd5b8135613c218161507e565b803561ffff8116811461228e57600080fd5b60008083601f8401126150ed57600080fd5b50813567ffffffffffffffff81111561510557600080fd5b6020830191508360208260051b850101111561512057600080fd5b9250929050565b60008060006040848603121561513c57600080fd5b615145846150c9565b9250602084013567ffffffffffffffff81111561516157600080fd5b61516d868287016150db565b9497909650939450505050565b60005b8381101561519557818101518382015260200161517d565b838111156126d35750506000910152565b600081518084526151be81602086016020860161517a565b601f01601f19169290920160200192915050565b602081526000613c2160208301846151a6565b6000602082840312156151f757600080fd5b5035919050565b80356001600160a01b038116811461228e57600080fd5b6000806040838503121561522857600080fd5b615231836151fe565b946020939093013593505050565b8035801515811461228e57600080fd5b60006020828403121561526157600080fd5b613c218261523f565b60006020828403121561527c57600080fd5b613c21826150c9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156152b6576152b6615285565b604051601f8501601f19908116603f011681019082821181831017156152de576152de615285565b816040528093508581528686860111156152f757600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261532257600080fd5b613c218383356020850161529b565b60006020828403121561534357600080fd5b813567ffffffffffffffff81111561535a57600080fd5b61206e84828501615311565b60008060006060848603121561537b57600080fd5b615384846151fe565b9250615392602085016151fe565b9150604084013590509250925092565b600080600080606085870312156153b857600080fd5b6153c1856151fe565b93506153cf602086016150c9565b9250604085013567ffffffffffffffff8111156153eb57600080fd5b6153f7878288016150db565b95989497509550505050565b803560ff8116811461228e57600080fd5b60006020828403121561542657600080fd5b613c2182615403565b6000806040838503121561544257600080fd5b823567ffffffffffffffff81111561545957600080fd5b61546585828601615311565b92505061547460208401615403565b90509250929050565b60006020828403121561548f57600080fd5b613c21826151fe565b6000806000604084860312156154ad57600080fd5b615145846151fe565b600080604083850312156154c957600080fd5b6154d2836151fe565b91506154746020840161523f565b600080604083850312156154f357600080fd5b6154fc83615403565b9150615474602084016150c9565b6000806000806080858703121561552057600080fd5b615529856151fe565b9350615537602086016151fe565b925060408501359150606085013567ffffffffffffffff81111561555a57600080fd5b8501601f8101871361556b57600080fd5b61557a8782356020840161529b565b91505092959194509250565b6000806040838503121561559957600080fd5b6155a2836151fe565b9150615474602084016151fe565b634e487b7160e01b600052602160045260246000fd5b60208101600483106155e857634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c9082168061560257607f821691505b6020821081141561562357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561565957615659615629565b500290565b600061ffff80831681851680830382111561567b5761567b615629565b01949350505050565b600060ff821660ff84168060ff038211156156a1576156a1615629565b019392505050565b634e487b7160e01b600052601260045260246000fd5b6000826156ce576156ce6156a9565b500490565b6000845160206156e68285838a0161517a565b8551918401916156f98184848a0161517a565b8554920191600090600181811c908083168061571657607f831692505b85831081141561573457634e487b7160e01b85526022600452602485fd5b808015615748576001811461575957615786565b60ff19851688528388019550615786565b60008b81526020902060005b8581101561577e5781548a820152908401908801615765565b505083880195505b50939b9a5050505050505050505050565b600082198211156157aa576157aa615629565b500190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526157e160808301846151a6565b9695505050505050565b6000602082840312156157fd57600080fd5b8151613c218161507e565b600060001982141561581c5761581c615629565b5060010190565b60008282101561583557615835615629565b500390565b600082615849576158496156a9565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207f42aef673f28751b0c4d0b0b9e45d06bb25086d9ac000ac8a6e5b8593bbdf0c64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000c57616c6c205374204d6f6d730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357534d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63755354396a69336e3479385a743773393359634a44446a5559624e7a41444b43666d74463738316e3463482f00000000000000000000
Deployed Bytecode
0x6080604052600436106106395760003560e01c8063715018a61161032d578063c87b56dd116101b0578063dc796680116100f7578063eda01bb3116100a0578063f2c4ce1e1161007a578063f2c4ce1e14611166578063f2fde38b14611186578063f3e6b353146111a6578063f8196f65146111bb57600080fd5b8063eda01bb314611103578063ee1dcff214611123578063f110903d1461115157600080fd5b8063eaa0a178116100d1578063eaa0a178146110a0578063ec195d0f146110b5578063ec7671e5146110e357600080fd5b8063dc7966801461102c578063e36e7fd114611041578063e985e9c51461105757600080fd5b8063d351362f11610159578063d92c46fc11610133578063d92c46fc14610fd1578063da3b618414610ff6578063da3ef23f1461100c57600080fd5b8063d351362f14610f87578063d3fd976f14610fa7578063d5abeb0114610fbc57600080fd5b8063cef216e21161018a578063cef216e214610f3d578063cf514f6714610f52578063d111515d14610f7257600080fd5b8063c87b56dd14610ee7578063cc83696914610f07578063cd72908214610f1d57600080fd5b8063a22cb46511610274578063b56ee3331161021d578063c03afb59116101f7578063c03afb5914610e9c578063c3b056f514610ebc578063c668286214610ed257600080fd5b8063b56ee33314610e54578063b88d4fde14610e69578063bfdb67bd14610e8957600080fd5b8063ae79515d1161024e578063ae79515d14610dec578063af4c22d414610e0c578063b1c9fe6e14610e3357600080fd5b8063a22cb46514610d97578063a3f59def14610db7578063a5a865dc14610dd757600080fd5b80638529ccad116102d657806395d89b41116102b057806395d89b4114610d585780639641661d14610d6d57806396a072bd14610d8257600080fd5b80638529ccad14610ce95780638da5cb5b14610d1a5780639196f76114610d3857600080fd5b8063788120d511610307578063788120d514610c895780637a10109514610ca95780637ca6107014610cc957600080fd5b8063715018a614610c365780637225038014610c4b57806374d9e7ac14610c6057600080fd5b806330f86a76116104c05780634cd50b60116104075780635a23dd99116103b05780636352211e1161038a5780636352211e14610bc15780636e3596a714610be15780637037bb1a14610bf657806370a0823114610c1657600080fd5b80635a23dd9914610b5e5780635c975abb14610b7e57806361668f6014610bae57600080fd5b806356f8f78c116103e157806356f8f78c14610b16578063581e4a2514610b2b57806358281a1f14610b3e57600080fd5b80634cd50b6014610aaa5780635004da9414610aca57806354c9840314610b0357600080fd5b8063427382ac1161046957806346cb5dfd1161044357806346cb5dfd14610a4a57806348539e3714610a6a57806349fea75314610a8a57600080fd5b8063427382ac146109f757806342842e0e14610a0a578063440bc7f314610a2a57600080fd5b80633966fa0f1161049a5780633966fa0f146109b95780633ccfd60b146109cf5780633d45895f146109d757600080fd5b806330f86a761461095d578063318c126a1461097e57806338a1fd4f1461099957600080fd5b806318160ddd1161058457806321eac03f1161052d5780632eb4a7ab116105075780632eb4a7ab146109075780633042761e1461091d57806330cbc8861461093d57600080fd5b806321eac03f146108a457806323b872dd146108c457806327d93977146108e457600080fd5b80631c352b621161055e5780631c352b621461084a5780631f32fddc1461085d578063208a789e1461087257600080fd5b806318160ddd146107ed578063195f2f14146108145780631c0af1781461082a57600080fd5b8063095ea7b3116105e65780631602f04a116105c05780631602f04a1461079857806316744607146107b857806316c38b3c146107cd57600080fd5b8063095ea7b31461074e5780631455b1e21461076e578063158756b91461078357600080fd5b8063060ca33811610617578063060ca338146106d257806306fdde03146106f4578063081812fc1461071657600080fd5b80630113ad071461063e57806301ffc9a7146106775780630311bbd3146106a7575b600080fd5b34801561064a57600080fd5b5060205461065f9062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b34801561068357600080fd5b506106976106923660046150ac565b6111e8565b604051901515815260200161066e565b3480156106b357600080fd5b5060205461065f906c01000000000000000000000000900461ffff1681565b3480156106de57600080fd5b506106f26106ed366004615127565b6112cd565b005b34801561070057600080fd5b50610709611491565b60405161066e91906151d2565b34801561072257600080fd5b506107366107313660046151e5565b611523565b6040516001600160a01b03909116815260200161066e565b34801561075a57600080fd5b506106f2610769366004615215565b611580565b34801561077a57600080fd5b5061069761163b565b34801561078f57600080fd5b506106f2611664565b3480156107a457600080fd5b506106f26107b33660046151e5565b6116e8565b3480156107c457600080fd5b506106f2611747565b3480156107d957600080fd5b506106f26107e836600461524f565b61182d565b3480156107f957600080fd5b5060015460005403600019015b60405190815260200161066e565b34801561082057600080fd5b5061080660145481565b34801561083657600080fd5b506106f261084536600461526a565b6118cf565b6106f2610858366004615127565b61196e565b34801561086957600080fd5b50610709611bc6565b34801561087e57600080fd5b5061089261088d3660046151e5565b611c54565b60405160ff909116815260200161066e565b3480156108b057600080fd5b506106f26108bf366004615331565b611c9f565b3480156108d057600080fd5b506106f26108df366004615366565b611dd6565b3480156108f057600080fd5b5060205461065f90640100000000900461ffff1681565b34801561091357600080fd5b5061080660135481565b34801561092957600080fd5b506106f261093836600461526a565b611de1565b34801561094957600080fd5b506106f2610958366004615331565b611e7c565b34801561096957600080fd5b5060205461069790600160a01b900460ff1681565b34801561098a57600080fd5b5060205461065f9061ffff1681565b3480156109a557600080fd5b506106976109b43660046153a2565b611fae565b3480156109c557600080fd5b50610806601e5481565b6106f2612076565b3480156109e357600080fd5b5061065f6109f2366004615414565b6121b6565b6106f2610a05366004615127565b612293565b348015610a1657600080fd5b506106f2610a25366004615366565b6124c2565b348015610a3657600080fd5b506106f2610a453660046151e5565b6124dd565b348015610a5657600080fd5b506106f2610a653660046151e5565b61253c565b348015610a7657600080fd5b506106f2610a8536600461542f565b61259b565b348015610a9657600080fd5b506106f2610aa53660046151e5565b612717565b348015610ab657600080fd5b506106f2610ac536600461526a565b612776565b348015610ad657600080fd5b50610697610ae536600461547d565b6001600160a01b031660009081526015602052604090205460ff1690565b6106f2610b1136600461526a565b6127d9565b348015610b2257600080fd5b506106f2612911565b6106f2610b39366004615127565b6129a3565b348015610b4a57600080fd5b506106f2610b59366004615331565b612bd2565b348015610b6a57600080fd5b50610697610b79366004615498565b612c3f565b348015610b8a57600080fd5b50602054610697907201000000000000000000000000000000000000900460ff1681565b6106f2610bbc366004615127565b612cd8565b348015610bcd57600080fd5b50610736610bdc3660046151e5565b612ee6565b348015610bed57600080fd5b506106f2612ef8565b348015610c0257600080fd5b506106f2610c113660046154b6565b612f87565b348015610c2257600080fd5b50610806610c3136600461547d565b613040565b348015610c4257600080fd5b506106f26130a8565b348015610c5757600080fd5b5061070961310e565b348015610c6c57600080fd5b5060205461065f906a0100000000000000000000900461ffff1681565b348015610c9557600080fd5b506106f2610ca436600461526a565b61311b565b348015610cb557600080fd5b506106f2610cc43660046154e0565b6131b8565b348015610cd557600080fd5b506106f2610ce43660046151e5565b6133f6565b348015610cf557600080fd5b5060205461069790730100000000000000000000000000000000000000900460ff1681565b348015610d2657600080fd5b506008546001600160a01b0316610736565b348015610d4457600080fd5b506106f2610d533660046151e5565b613455565b348015610d6457600080fd5b506107096134b4565b348015610d7957600080fd5b506107096134c3565b348015610d8e57600080fd5b506106976134d0565b348015610da357600080fd5b506106f2610db23660046154b6565b6134d9565b348015610dc357600080fd5b506106f2610dd2366004615331565b613588565b348015610de357600080fd5b506106976136b7565b348015610df857600080fd5b506106f2610e073660046151e5565b6136c0565b348015610e1857600080fd5b5060205461065f9068010000000000000000900461ffff1681565b348015610e3f57600080fd5b5060205461089290600160881b900460ff1681565b348015610e6057600080fd5b5061070961371f565b348015610e7557600080fd5b506106f2610e8436600461550a565b61372c565b6106f2610e9736600461526a565b613790565b348015610ea857600080fd5b506106f2610eb7366004615414565b61393f565b348015610ec857600080fd5b50610806601f5481565b348015610ede57600080fd5b50610709613a97565b348015610ef357600080fd5b50610709610f023660046151e5565b613aa4565b348015610f1357600080fd5b5061080660125481565b348015610f2957600080fd5b506106f2610f38366004615331565b613c28565b348015610f4957600080fd5b506106f2613c95565b348015610f5e57600080fd5b50610697610f6d366004615498565b613d24565b348015610f7e57600080fd5b506106f2613db4565b348015610f9357600080fd5b506106f2610fa236600461526a565b613fc4565b348015610fb357600080fd5b50610709614065565b348015610fc857600080fd5b5061065f614072565b348015610fdd57600080fd5b5060205461065f906601000000000000900461ffff1681565b34801561100257600080fd5b50610806601d5481565b34801561101857600080fd5b506106f2611027366004615331565b6140a8565b34801561103857600080fd5b50610709614115565b34801561104d57600080fd5b50610806601c5481565b34801561106357600080fd5b50610697611072366004615586565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156110ac57600080fd5b506106f2614122565b3480156110c157600080fd5b5060205461089290700100000000000000000000000000000000900460ff1681565b3480156110ef57600080fd5b506106f26110fe366004615331565b6141b1565b34801561110f57600080fd5b50600954610736906001600160a01b031681565b34801561112f57600080fd5b5060205461114490600160a81b900460ff1681565b60405161066e91906155c6565b34801561115d57600080fd5b5061069761421e565b34801561117257600080fd5b506106f2611181366004615331565b614226565b34801561119257600080fd5b506106f26111a136600461547d565b614293565b3480156111b257600080fd5b50610709614372565b3480156111c757600080fd5b5060205461065f906e010000000000000000000000000000900461ffff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061127b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806112c757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6002602054600160a81b900460ff1660038111156112ed576112ed6155b0565b146113655760405162461bcd60e51b815260206004820152602660248201527f57686974656c6973742046726565204d696e742073616c65206973206e6f742060448201527f616374697665000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61137133848484611fae565b6113e35760405162461bcd60e51b815260206004820152603360248201527f596f7520617265206e6f742077686974656c6973746564206f7220746865206160448201527f6d6f756e7420646f65736e2774206d6174636800000000000000000000000000606482015260840161135c565b336000908152601b602052604090205460ff16156114695760405162461bcd60e51b815260206004820152602160248201527f596f7520616c7265616479206d696e74656420796f75722066726565206d6f6d60448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161135c565b336000908152601b60205260409020805460ff1916600117905561148c8361437f565b505050565b6060600280546114a0906155ee565b80601f01602080910402602001604051908101604052809291908181526020018280546114cc906155ee565b80156115195780601f106114ee57610100808354040283529160200191611519565b820191906000526020600020905b8154815290600101906020018083116114fc57829003601f168201915b5050505050905090565b600061152e826144d7565b611564576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061158b82612ee6565b9050806001600160a01b0316836001600160a01b031614156115d9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906115f957506115f78133611072565b155b15611630576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61148c838383614529565b600060015b602054600160a81b900460ff16600381111561165e5761165e6155b0565b14905090565b6008546001600160a01b031633146116be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff169055565b6008546001600160a01b031633146117425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601d55565b6008546001600160a01b031633146117a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054600160881b900460ff166003146117fd5760405162461bcd60e51b815260206004820152600e60248201527f5068617365206973206e6f742033000000000000000000000000000000000000604482015260640161135c565b602080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b6008546001600160a01b031633146118875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602080549115157201000000000000000000000000000000000000027fffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffff909216919091179055565b6008546001600160a01b031633146119295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff9092166c01000000000000000000000000027fffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffff909216919091179055565b8282826001602054600160a81b900460ff166003811115611991576119916155b0565b146119de5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161135c565b6119e9338383612c3f565b611a355760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b8261ffff16601d54611a47919061563f565b341015611a965760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b602054600160881b900460ff16600114611af25760405162461bcd60e51b815260206004820152601560248201527f50686173652031206973206e6f74206163746976650000000000000000000000604482015260640161135c565b6020805433600090815260189092526040909120546a010000000000000000000090910461ffff1690611b2990889060ff1661565e565b61ffff161115611b7b5760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b3360009081526018602052604081208054889290611b9d90849060ff16615684565b92506101000a81548160ff021916908360ff160217905550611bbe8661437f565b505050505050565b600a8054611bd3906155ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff906155ee565b8015611c4c5780601f10611c2157610100808354040283529160200191611c4c565b820191906000526020600020905b815481529060010190602001808311611c2f57829003601f168201915b505050505081565b60205460009061ffff168211611c6c57506001919050565b602054611c859061ffff6201000082048116911661565e565b61ffff168211611c9757506002919050565b506003919050565b6008546001600160a01b03163314611cf95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054700100000000000000000000000000000000900460ff16600214611d625760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072657665616c20746869732070686173650000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff16700300000000000000000000000000000000179081905560ff73010000000000000000000000000000000000000090910416611dd3578051611dd190600c906020840190614fe5565b505b50565b61148c83838361459d565b6008546001600160a01b03163314611e3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff90921668010000000000000000027fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff909216919091179055565b6008546001600160a01b03163314611ed65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054700100000000000000000000000000000000900460ff16600114611f3f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072657665616c20746869732070686173650000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff16700200000000000000000000000000000000179081905560ff73010000000000000000000000000000000000000090910416611dd3578051611dd190600b906020840190614fe5565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606086901b1660208201527fffff00000000000000000000000000000000000000000000000000000000000060f085901b166034820152600090819060360160405160208183030381529060405280519060200120905061206a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050614820565b9150505b949350505050565b6008546001600160a01b031633146120d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6009546000906001600160a01b031660646120ec47600261563f565b6120f691906156bf565b604051600081818185875af1925050503d8060008114612132576040519150601f19603f3d011682016040523d82523d6000602084013e612137565b606091505b505090508061214557600080fd5b60006121596008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146121a3576040519150601f19603f3d011682016040523d82523d6000602084013e6121a8565b606091505b5050905080611dd157600080fd5b6008546000906001600160a01b031633146122135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8160ff166001141561222b57505060205461ffff1690565b8160ff1660021415612250576020546112c79061ffff6201000082048116911661565e565b8160ff166003141561228a5760205461ffff6401000000008204811691612280916201000082048116911661565e565b6112c7919061565e565b5060005b919050565b8282826001602054600160a81b900460ff1660038111156122b6576122b66155b0565b146123035760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161135c565b61230e338383612c3f565b61235a5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b8261ffff16601d5461236c919061563f565b3410156123bb5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b602054600160881b900460ff166002146124175760405162461bcd60e51b815260206004820152601560248201527f50686173652032206973206e6f74206163746976650000000000000000000000604482015260640161135c565b6020805433600090815260199092526040909120546a010000000000000000000090910461ffff169061244e90889060ff1661565e565b61ffff1611156124a05760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b3360009081526019602052604081208054889290611b9d90849060ff16615684565b61148c8383836040518060200160405280600081525061372c565b6008546001600160a01b031633146125375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601355565b6008546001600160a01b031633146125965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601f55565b6008546001600160a01b031633146125f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8060038160ff16111561264a5760405162461bcd60e51b815260206004820152601760248201527f5068617365206d75737420626520312c2032206f722033000000000000000000604482015260640161135c565b602054730100000000000000000000000000000000000000900460ff16156126b45760405162461bcd60e51b815260206004820152601260248201527f4d657461646174612069732066726f7a656e0000000000000000000000000000604482015260640161135c565b8160ff16600114156126d95782516126d390600a906020860190614fe5565b50505050565b8160ff16600214156126f85782516126d390600b906020860190614fe5565b8160ff166003141561148c5782516126d390600c906020860190614fe5565b6008546001600160a01b031633146127715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601255565b6008546001600160a01b031633146127d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b611dd38161437f565b6003602054600160a81b900460ff1660038111156127f9576127f96155b0565b146128465760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f742061637469766500000000000000604482015260640161135c565b60205461ffff6c01000000000000000000000000909104811690821611156128b05760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b8061ffff16601e546128c2919061563f565b3410156127d05760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b6008546001600160a01b0316331461296b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600391907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b835b0217905550565b8282826001602054600160a81b900460ff1660038111156129c6576129c66155b0565b14612a135760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161135c565b612a1e338383612c3f565b612a6a5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b8261ffff16601d54612a7c919061563f565b341015612acb5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b602054600160881b900460ff16600314612b275760405162461bcd60e51b815260206004820152601560248201527f50686173652033206973206e6f74206163746976650000000000000000000000604482015260640161135c565b60208054336000908152601a9092526040909120546a010000000000000000000090910461ffff1690612b5e90889060ff1661565e565b61ffff161115612bb05760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b336000908152601a602052604081208054889290611b9d90849060ff16615684565b6008546001600160a01b03163314612c2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd190600f906020840190614fe5565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050612ccf848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050614820565b95945050505050565b6000602054600160a81b900460ff166003811115612cf857612cf86155b0565b14612d455760405162461bcd60e51b815260206004820152601e60248201527f5375706572204672656e732073616c65206973206e6f74206163746976650000604482015260640161135c565b612d50338383613d24565b612d9c5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161135c565b3360009081526016602052604090205460ff1615612dfc5760405162461bcd60e51b815260206004820152601260248201527f596f7520616c7265616479206d696e7465640000000000000000000000000000604482015260640161135c565b60205461ffff6801000000000000000090910481169084161115612e625760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b8261ffff16601c54612e74919061563f565b341015612ec35760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b336000908152601660205260409020805460ff1916600117905561148c8361437f565b6000612ef182614836565b5192915050565b6008546001600160a01b03163314612f525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600091907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8361299c565b6008546001600160a01b03163314612fe15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527fb9b349f0848f46e0fb803160774a00b895be361de2b53955dd4ef8c2752d0d37910160405180910390a25050565b60006001600160a01b038216613082576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146131025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b61310c60006149aa565b565b600d8054611bd3906155ee565b6008546001600160a01b031633146131755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff9092166a0100000000000000000000027fffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff909216919091179055565b6008546001600160a01b031633146132125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054600160a01b900460ff161561326c5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792069732066726f7a656e000000000000000000000000604482015260640161135c565b8160ff166001148061328157508160ff166002145b806132985750602054600160881b900460ff166003145b6132e45760405162461bcd60e51b815260206004820152601760248201527f5068617365206d75737420626520312c2032206f722033000000000000000000604482015260640161135c565b8160ff166001141561332357602080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff83161790556133a9565b8160ff166002141561336757602080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffff166201000061ffff8416021790556133a9565b8160ff16600314156133a957602080547fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff1664010000000061ffff8416021790555b60205460ff838116600160881b909204161415611dd1576020546133d690600160881b900460ff166121b6565b602060066101000a81548161ffff021916908361ffff1602179055505050565b6008546001600160a01b031633146134505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601c55565b6008546001600160a01b031633146134af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601e55565b6060600380546114a0906155ee565b600b8054611bd3906155ee565b60006002611640565b6001600160a01b03821633141561351c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146135e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b602054700100000000000000000000000000000000900460ff16156136495760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072657665616c20746869732070686173650000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff167001000000000000000000000000000000001790819055730100000000000000000000000000000000000000900460ff16611dd3578051611dd190600a906020840190614fe5565b60006003611640565b6008546001600160a01b0316331461371a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b601455565b600e8054611bd3906155ee565b61373784848461459d565b6001600160a01b0383163b15158015613759575061375784848484614a14565b155b156126d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60205461ffff6e010000000000000000000000000000909104811690821611156137fc5760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e742065786365656465640000000000000000604482015260640161135c565b8061ffff16601f5461380e919061563f565b34101561385d5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e742045544820616d6f756e74000000000000000000604482015260640161135c565b3360009081526015602052604090205460ff166138bc5760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f6e27742068617665207768697465207965746920626164676500604482015260640161135c565b3360009081526017602052604090205460ff161561391c5760405162461bcd60e51b815260206004820152601260248201527f596f7520616c7265616479206d696e7465640000000000000000000000000000604482015260640161135c565b336000908152601760205260409020805460ff19166001179055611dd38161437f565b6008546001600160a01b031633146139995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8060038160ff1611156139ee5760405162461bcd60e51b815260206004820152601760248201527f5068617365206d75737420626520312c2032206f722033000000000000000000604482015260640161135c565b60018260ff1610158015613a06575060038260ff1611155b613a525760405162461bcd60e51b815260206004820152601d60248201527f5068617365206d757374206265206265747765656e203120616e642033000000604482015260640161135c565b602080547fffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffff16600160881b60ff858116820292909217928390556133d69204166121b6565b60118054611bd3906155ee565b6060613aaf826144d7565b613afb5760405162461bcd60e51b815260206004820152601660248201527f746f6b656e496420646f6573206e6f7420657869737400000000000000000000604482015260640161135c565b613b2a613b0783611c54565b60205460ff70010000000000000000000000000000000090910481169116111590565b613bc057600d8054613b3b906155ee565b80601f0160208091040260200160405190810160405280929190818152602001828054613b67906155ee565b8015613bb45780601f10613b8957610100808354040283529160200191613bb4565b820191906000526020600020905b815481529060010190602001808311613b9757829003601f168201915b50505050509050919050565b6000613bd3613bce84611c54565b614b6b565b90506000815111613bf35760405180602001604052806000815250613c21565b80613bfd84614bac565b6011604051602001613c11939291906156d3565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314613c825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd1906010906020840190614fe5565b6008546001600160a01b03163314613cef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600191907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8361299c565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050612ccf848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050614820565b6008546001600160a01b03163314613e0e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6000600a8054613e1d906155ee565b905011613e6c5760405162461bcd60e51b815260206004820152601460248201527f426173655552492031206973206e6f7420736574000000000000000000000000604482015260640161135c565b6000600b8054613e7b906155ee565b905011613eca5760405162461bcd60e51b815260206004820152601460248201527f426173655552492032206973206e6f7420736574000000000000000000000000604482015260640161135c565b6000600c8054613ed9906155ee565b905011613f285760405162461bcd60e51b815260206004820152601460248201527f426173655552492033206973206e6f7420736574000000000000000000000000604482015260640161135c565b602054600160881b900460ff16600314613f845760405162461bcd60e51b815260206004820152600e60248201527f5068617365206973206e6f742033000000000000000000000000000000000000604482015260640161135c565b602080547fffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffff16730100000000000000000000000000000000000000179055565b6008546001600160a01b0316331461401e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6020805461ffff9092166e010000000000000000000000000000027fffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffff909216919091179055565b600f8054611bd3906155ee565b60205460009061ffff6401000000008204811691614099916201000082048116911661565e565b6140a3919061565e565b905090565b6008546001600160a01b031633146141025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd1906011906020840190614fe5565b60108054611bd3906155ee565b6008546001600160a01b0316331461417c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b60208054600291907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8361299c565b6008546001600160a01b0316331461420b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd190600e906020840190614fe5565b600080611640565b6008546001600160a01b031633146142805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b8051611dd190600d906020840190614fe5565b6008546001600160a01b031633146142ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161135c565b6001600160a01b0381166143695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161135c565b611dd3816149aa565b600c8054611bd3906155ee565b6020547201000000000000000000000000000000000000900460ff16156143e85760405162461bcd60e51b815260206004820152601a60248201527f506c65617365207761697420756e74696c20756e706175736564000000000000604482015260640161135c565b60008161ffff161161443c5760405162461bcd60e51b815260206004820152601860248201527f4e65656420746f206d696e74206d6f7265207468616e20300000000000000000604482015260640161135c565b60205461ffff6601000000000000909104811690821661445f6000546000190190565b6144699190615797565b11156144b75760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c7920657863656564656400000000000000000000000000604482015260640161135c565b611dd3338261ffff16604051806020016040528060008152506001614cde565b6000816001111580156144eb575060005482105b80156112c75750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006145a882614836565b9050836001600160a01b031681600001516001600160a01b0316146145f9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061461757506146178533611072565b8061463257503361462784611523565b6001600160a01b0316145b90508061466b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166146ab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6146b760008487614529565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff0000000000000000000000000000000000000000000000000000000016909417600160a01b429092169190910217835587018084529220805491939091166147d45760005482146147d4578054602086015167ffffffffffffffff16600160a01b027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008261482d8584614f39565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015614866575060005481105b1561497857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff161515918101829052906149765780516001600160a01b0316156148f3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215614971579392505050565b6148f3565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290614a629033908990889088906004016157af565b602060405180830381600087803b158015614a7c57600080fd5b505af1925050508015614aac575060408051601f3d908101601f19168201909252614aa9918101906157eb565b60015b614b20573d808015614ada576040519150601f19603f3d011682016040523d82523d6000602084013e614adf565b606091505b508051614b18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061206e565b60608160ff1660011415614b8657600a8054613b3b906155ee565b8160ff1660021415614b9f57600b8054613b3b906155ee565b600c8054613b3b906155ee565b606081614bec57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115614c165780614c0081615808565b9150614c0f9050600a836156bf565b9150614bf0565b60008167ffffffffffffffff811115614c3157614c31615285565b6040519080825280601f01601f191660200182016040528015614c5b576020820181803683370190505b5090505b841561206e57614c70600183615823565b9150614c7d600a8661583a565b614c88906030615797565b60f81b818381518110614c9d57614c9d61584e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350614cd7600a866156bf565b9450614c5f565b6000546001600160a01b038516614d21576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83614d58576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217600160a01b429092169190910217905580808501838015614e4857506001600160a01b0387163b15155b15614eea575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4614e996000888480600101955088614a14565b614ecf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415614e4e578260005414614ee557600080fd5b614f30565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415614eeb575b50600055614819565b600081815b8451811015614fdd576000858281518110614f5b57614f5b61584e565b60200260200101519050808311614f9d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250614fca565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080614fd581615808565b915050614f3e565b509392505050565b828054614ff1906155ee565b90600052602060002090601f0160209004810192826150135760008555615059565b82601f1061502c57805160ff1916838001178555615059565b82800160010185558215615059579182015b8281111561505957825182559160200191906001019061503e565b50615065929150615069565b5090565b5b80821115615065576000815560010161506a565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611dd357600080fd5b6000602082840312156150be57600080fd5b8135613c218161507e565b803561ffff8116811461228e57600080fd5b60008083601f8401126150ed57600080fd5b50813567ffffffffffffffff81111561510557600080fd5b6020830191508360208260051b850101111561512057600080fd5b9250929050565b60008060006040848603121561513c57600080fd5b615145846150c9565b9250602084013567ffffffffffffffff81111561516157600080fd5b61516d868287016150db565b9497909650939450505050565b60005b8381101561519557818101518382015260200161517d565b838111156126d35750506000910152565b600081518084526151be81602086016020860161517a565b601f01601f19169290920160200192915050565b602081526000613c2160208301846151a6565b6000602082840312156151f757600080fd5b5035919050565b80356001600160a01b038116811461228e57600080fd5b6000806040838503121561522857600080fd5b615231836151fe565b946020939093013593505050565b8035801515811461228e57600080fd5b60006020828403121561526157600080fd5b613c218261523f565b60006020828403121561527c57600080fd5b613c21826150c9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156152b6576152b6615285565b604051601f8501601f19908116603f011681019082821181831017156152de576152de615285565b816040528093508581528686860111156152f757600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261532257600080fd5b613c218383356020850161529b565b60006020828403121561534357600080fd5b813567ffffffffffffffff81111561535a57600080fd5b61206e84828501615311565b60008060006060848603121561537b57600080fd5b615384846151fe565b9250615392602085016151fe565b9150604084013590509250925092565b600080600080606085870312156153b857600080fd5b6153c1856151fe565b93506153cf602086016150c9565b9250604085013567ffffffffffffffff8111156153eb57600080fd5b6153f7878288016150db565b95989497509550505050565b803560ff8116811461228e57600080fd5b60006020828403121561542657600080fd5b613c2182615403565b6000806040838503121561544257600080fd5b823567ffffffffffffffff81111561545957600080fd5b61546585828601615311565b92505061547460208401615403565b90509250929050565b60006020828403121561548f57600080fd5b613c21826151fe565b6000806000604084860312156154ad57600080fd5b615145846151fe565b600080604083850312156154c957600080fd5b6154d2836151fe565b91506154746020840161523f565b600080604083850312156154f357600080fd5b6154fc83615403565b9150615474602084016150c9565b6000806000806080858703121561552057600080fd5b615529856151fe565b9350615537602086016151fe565b925060408501359150606085013567ffffffffffffffff81111561555a57600080fd5b8501601f8101871361556b57600080fd5b61557a8782356020840161529b565b91505092959194509250565b6000806040838503121561559957600080fd5b6155a2836151fe565b9150615474602084016151fe565b634e487b7160e01b600052602160045260246000fd5b60208101600483106155e857634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c9082168061560257607f821691505b6020821081141561562357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561565957615659615629565b500290565b600061ffff80831681851680830382111561567b5761567b615629565b01949350505050565b600060ff821660ff84168060ff038211156156a1576156a1615629565b019392505050565b634e487b7160e01b600052601260045260246000fd5b6000826156ce576156ce6156a9565b500490565b6000845160206156e68285838a0161517a565b8551918401916156f98184848a0161517a565b8554920191600090600181811c908083168061571657607f831692505b85831081141561573457634e487b7160e01b85526022600452602485fd5b808015615748576001811461575957615786565b60ff19851688528388019550615786565b60008b81526020902060005b8581101561577e5781548a820152908401908801615765565b505083880195505b50939b9a5050505050505050505050565b600082198211156157aa576157aa615629565b500190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526157e160808301846151a6565b9695505050505050565b6000602082840312156157fd57600080fd5b8151613c218161507e565b600060001982141561581c5761581c615629565b5060010190565b60008282101561583557615835615629565b500390565b600082615849576158496156a9565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207f42aef673f28751b0c4d0b0b9e45d06bb25086d9ac000ac8a6e5b8593bbdf0c64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000000c57616c6c205374204d6f6d730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357534d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63755354396a69336e3479385a743773393359634a44446a5559624e7a41444b43666d74463738316e3463482f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Wall St Moms
Arg [1] : _symbol (string): WSM
Arg [2] : _initNotRevealedURI (string): ipfs://QmcuST9ji3n4y8Zt7s93YcJDDjUYbNzADKCfmtF781n4cH/
Arg [3] : _phaseMaxSupply1 (uint16): 3000
Arg [4] : _phaseMaxSupply2 (uint16): 3000
Arg [5] : _phaseMaxSupply3 (uint16): 4000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000fa0
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 57616c6c205374204d6f6d730000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 57534d0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d63755354396a69336e3479385a743773393359634a4444
Arg [12] : 6a5559624e7a41444b43666d74463738316e3463482f00000000000000000000
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.