ERC-721
Overview
Max Total Supply
999 RUTH
Holders
141
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 RUTHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ruth
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721A.sol"; import "./Counters.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./RandomlyAssigned.sol"; import "./MerkleProof.sol"; contract Ruth is Ownable, ERC721A, ReentrancyGuard { string private _baseTokenURI; // mapping(address => uint256) public allowlist; bytes32 public merkleRoot; mapping(address => bool) public whitelistClaimed; uint256 private _standardPackMint; uint256 private _premiumPackMint; uint256 private _standardPackFee; uint256 public totalSold; uint256 public totalMint; uint256 public soldStandardPack; constructor() ERC721A("RUTH", "RUTH") { _standardPackFee = .049 ether; totalSold = 0; totalMint = 1080; } function setRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } //start Minting function mint(uint256 quantity) external payable onlyOwner { // _safeMint's second argument now takes in a quantity, not a tokenId. _safeMint(msg.sender, quantity); } function whitelistMint(bytes32[] calldata _merkleProof, uint256 quantity) public { require(!whitelistClaimed[msg.sender], "Address has already claimed."); require( MerkleProof.verify( _merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender, quantity)) ), "Invalid proof" ); whitelistClaimed[msg.sender] = true; totalSold += quantity; _safeMint(msg.sender, quantity); } function claimReservedToken(address to, uint256 tokenId) external onlyOwner { _claimReservedToken(to, tokenId); totalSold++; } function getStandardPackFee() external view returns (uint256) { return _standardPackFee; } function setStandardPackFee(uint256 packFee) external onlyOwner { _standardPackFee = packFee; } function setStandardPackMint(uint256 mintNumber) external onlyOwner { _standardPackMint = mintNumber; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function buyStandardPack(uint256 noOfPack) external payable nonReentrant { require(totalSold + noOfPack <= totalMint, "Max mint reached"); require(_standardPackFee * noOfPack == msg.value, "Invalid Fee"); _safeMint(msg.sender, noOfPack); totalSold += noOfPack; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Counters.sol"; /// @author 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { using Counters for Counters.Counter; /// @dev Emitted when the supply of this collection changes event SupplyChanged(uint256 indexed supply); // Keeps track of how many we have minted Counters.Counter private _tokenCount; /// @dev The maximum count of tokens this token tracker will hold. uint256 private _totalSupply; /// Instanciate the contract /// @param totalSupply_ how many tokens this collection should hold constructor (uint256 totalSupply_,uint256 reserved_) { _totalSupply = totalSupply_ -reserved_; } /// @dev Get the max Supply /// @return the maximum token count function totalSupplyForRandom() public view virtual returns (uint256) { return _totalSupply; } /// @dev Get the current token count /// @return the created token count function tokenCount() public view returns (uint256) { return _tokenCount.current(); } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return totalSupplyForRandom() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual returns (uint256) { uint256 token = _tokenCount.current(); _tokenCount.increment(); return token; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, "No more tokens available"); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require(availableTokenCount() >= amount, "Requested number of tokens not available"); _; } /// Update the supply for the collection /// @param _supply the new token supply. /// @dev create additional token supply for this collection. function _setSupply(uint256 _supply) internal virtual { require(_supply > tokenCount(), "Can't set the supply to less than the current token count"); _totalSupply = _supply; emit SupplyChanged(totalSupplyForRandom()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./WithLimitedSupply.sol"; /// @author 1001.digital /// @title Randomly assign tokenIDs from a given set of tokens. abstract contract RandomlyAssigned is WithLimitedSupply { // Used for random index assignment mapping(uint256 => uint256) private tokenMatrix; // The initial token ID uint256 private startFrom; constructor (uint256 _totalSupply, uint256 _numReserved) WithLimitedSupply(_totalSupply,_numReserved) { startFrom = _numReserved+1; } /// Get the next token ID /// @dev Randomly gets a new token ID and keeps track of the ones that are still available. /// @return the next token ID function nextToken() internal override ensureAvailability returns (uint256) { uint256 maxIndex = totalSupplyForRandom()- tokenCount(); uint256 random = uint256(keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) )) % maxIndex; uint256 value = 0; if (tokenMatrix[random] == 0) { // If this matrix position is empty, set the value to the generated random number. value = random; } else { // Otherwise, use the previously stored number from the matrix. value = tokenMatrix[random]; } // If the last available tokenID is still unused... if (tokenMatrix[maxIndex - 1] == 0) { // ...store that ID in the current matrix position. tokenMatrix[random] = maxIndex - 1; } else { // ...otherwise copy over the stored number to the current matrix position. tokenMatrix[random] = tokenMatrix[maxIndex - 1]; } // Increment counts super.nextToken(); return value + startFrom; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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) { 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)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; import "./RandomlyAssigned.sol"; abstract contract ERC721A is Context, RandomlyAssigned, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; uint256 private constant MAX_RUTH_SUPPLY = 1080; uint256 private constant NUMBER_OF_RESERVED_RUTH = 81; mapping(uint256 => bool) tokenMinted; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 0; // 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_) RandomlyAssigned(MAX_RUTH_SUPPLY, NUMBER_OF_RESERVED_RUTH) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return totalSupplyForRandom(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); for (uint256 curr = tokenId; ; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); string memory _tokenExtension = string( abi.encodePacked(tokenId.toString(), ".json") ); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenExtension)) : ""; } /** * @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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenMinted[tokenId]; // address owner= ownershipOf(tokenId).addr;//tokenId < currentIndex; // if(owner==address(0) ) // {return false;} // else{ // return true; // } } 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); } function _claimReservedToken(address to, uint256 tokenId) internal { assert(tokenId != 0); assert(tokenId <= NUMBER_OF_RESERVED_RUTH); // require(ownerOf(tokenId)==address(0)); _addressData[to].balance += 1; _addressData[to].numberMinted += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // uint256 updatedIndex = startTokenId; emit Transfer(address(0), to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, ""), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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 ensureAvailabilityFor(quantity) { require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(quantity > 0, "ERC721A: quantity must be greater than 0"); // _beforeTokenTransfers(address(0), to, startTokenId, quantity); // uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { uint256 startTokenId = nextToken(); require(!_exists(startTokenId), "ERC721A: token already minted"); tokenMinted[startTokenId] = true; _beforeTokenTransfers(address(0), to, startTokenId, 1); _addressData[to].balance += 1; _addressData[to].numberMinted += 1; _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); emit Transfer(address(0), to, startTokenId); if (safe) { require( _checkOnERC721Received(address(0), to, startTokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } _afterTokenTransfers(address(0), to, startTokenId, 1); } // 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; } _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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); } } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"SupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noOfPack","type":"uint256"}],"name":"buyStandardPack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimReservedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStandardPackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","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":"renounceOwnership","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"packFee","type":"uint256"}],"name":"setStandardPackFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintNumber","type":"uint256"}],"name":"setStandardPackMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldStandardPack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyForRandom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006006553480156200001657600080fd5b506040518060400160405280600481526020017f52555448000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f525554480000000000000000000000000000000000000000000000000000000081525061043860518181620000aa6200009e6200013860201b60201c565b6200014060201b60201c565b8082620000b8919062000311565b6002819055505050600181620000cf9190620002b4565b60048190555050508160079080519060200190620000ef92919062000204565b5080600890805190602001906200010892919062000204565b5050506001600d8190555066ae153d89fe80006013819055506000601481905550610438601581905550620003ea565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002129062000356565b90600052602060002090601f01602090048101928262000236576000855562000282565b82601f106200025157805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028157825182559160200191906001019062000264565b5b50905062000291919062000295565b5090565b5b80821115620002b057600081600090555060010162000296565b5090565b6000620002c1826200034c565b9150620002ce836200034c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200030657620003056200038c565b5b828201905092915050565b60006200031e826200034c565b91506200032b836200034c565b9250828210156200034157620003406200038c565b5b828203905092915050565b6000819050919050565b600060028204905060018216806200036f57607f821691505b60208210811415620003865762000385620003bb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6150be80620003fa6000396000f3fe60806040526004361061021a5760003560e01c80637148059311610123578063a5104d4d116100ab578063dab5f3401161006f578063dab5f340146107a3578063db4bec44146107cc578063e14ca35314610809578063e985e9c514610834578063f2fde38b146108715761021a565b8063a5104d4d146106cd578063b5b5df27146106f6578063b88d4fde14610712578063c87b56dd1461073b578063d05c10a1146107785761021a565b806393a1d312116100f257806393a1d3121461060957806395d89b41146106325780639f181b5e1461065d578063a0712d6814610688578063a22cb465146106a45761021a565b80637148059314610571578063715018a61461059c5780638da5cb5b146105b35780639106d7ba146105de5761021a565b80632f745c59116101a657806355f804b31161017557806355f804b31461047a57806359a7715a146104a35780636352211e146104ce5780636e5e68361461050b57806370a08231146105345761021a565b80632f745c59146103c05780633ccfd60b146103fd57806342842e0e146104145780634f6ccce71461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806323b872dd146103435780632904e6d91461036c5780632eb4a7ab146103955761021a565b806301ffc9a71461021f578063031af7e21461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061382a565b61089a565b6040516102539190613fa9565b60405180910390f35b34801561026857600080fd5b506102716109e4565b60405161027e9190614361565b60405180910390f35b34801561029357600080fd5b5061029c6109ea565b6040516102a99190613fdf565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906138d1565b610a7c565b6040516102e69190613f42565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061375d565b610b01565b005b34801561032457600080fd5b5061032d610c1a565b60405161033a9190614361565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613647565b610c29565b005b34801561037857600080fd5b50610393600480360381019061038e919061379d565b610c39565b005b3480156103a157600080fd5b506103aa610dfb565b6040516103b79190613fc4565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e2919061375d565b610e01565b6040516103f49190614361565b60405180910390f35b34801561040957600080fd5b50610412610fff565b005b34801561042057600080fd5b5061043b60048036038101906104369190613647565b611180565b005b34801561044957600080fd5b50610464600480360381019061045f91906138d1565b6111a0565b6040516104719190614361565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613884565b6111f3565b005b3480156104af57600080fd5b506104b8611285565b6040516104c59190614361565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906138d1565b61128b565b6040516105029190613f42565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061375d565b6112a1565b005b34801561054057600080fd5b5061055b600480360381019061055691906135da565b611343565b6040516105689190614361565b60405180910390f35b34801561057d57600080fd5b5061058661142c565b6040516105939190614361565b60405180910390f35b3480156105a857600080fd5b506105b1611436565b005b3480156105bf57600080fd5b506105c86114be565b6040516105d59190613f42565b60405180910390f35b3480156105ea57600080fd5b506105f36114e7565b6040516106009190614361565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906138d1565b6114ed565b005b34801561063e57600080fd5b50610647611573565b6040516106549190613fdf565b60405180910390f35b34801561066957600080fd5b50610672611605565b60405161067f9190614361565b60405180910390f35b6106a2600480360381019061069d91906138d1565b611616565b005b3480156106b057600080fd5b506106cb60048036038101906106c6919061371d565b61169f565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906138d1565b611820565b005b610710600480360381019061070b91906138d1565b6118a6565b005b34801561071e57600080fd5b506107396004803603810190610734919061369a565b6119c3565b005b34801561074757600080fd5b50610762600480360381019061075d91906138d1565b611a1f565b60405161076f9190613fdf565b60405180910390f35b34801561078457600080fd5b5061078d611aeb565b60405161079a9190614361565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906137fd565b611af5565b005b3480156107d857600080fd5b506107f360048036038101906107ee91906135da565b611b7b565b6040516108009190613fa9565b60405180910390f35b34801561081557600080fd5b5061081e611b9b565b60405161082b9190614361565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613607565b611bbc565b6040516108689190613fa9565b60405180910390f35b34801561087d57600080fd5b50610898600480360381019061089391906135da565b611c50565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cd57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109dd57506109dc82611d48565b5b9050919050565b60165481565b6060600780546109f990614693565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2590614693565b8015610a725780601f10610a4757610100808354040283529160200191610a72565b820191906000526020600020905b815481529060010190602001808311610a5557829003601f168201915b5050505050905090565b6000610a8782611db2565b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90614341565b60405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0c8261128b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490614221565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9c611ddc565b73ffffffffffffffffffffffffffffffffffffffff161480610bcb5750610bca81610bc5611ddc565b611bbc565b5b610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190614121565b60405180910390fd5b610c15838383611de4565b505050565b6000610c24611aeb565b905090565b610c34838383611e96565b505050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90614021565b60405180910390fd5b610d3c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f543384604051602001610d21929190613e8f565b604051602081830303815290604052805190602001206123df565b610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906142c1565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508060146000828254610de59190614466565b92505081905550610df63382612495565b505050565b600f5481565b6000610e0c83611343565b8210610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490614001565b60405180910390fd5b6000610e57610c1a565b905060008060005b83811015610fbd576000600960008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa95786841415610f9a578195505050505050610ff9565b8380610fa5906146f6565b9450505b508080610fb5906146f6565b915050610e5f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090614301565b60405180910390fd5b92915050565b611007611ddc565b73ffffffffffffffffffffffffffffffffffffffff166110256114be565b73ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290614181565b60405180910390fd5b6002600d5414156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614321565b60405180910390fd5b6002600d8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110ef90613f2d565b60006040518083038185875af1925050503d806000811461112c576040519150601f19603f3d011682016040523d82523d6000602084013e611131565b606091505b5050905080611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90614241565b60405180910390fd5b506001600d81905550565b61119b838383604051806020016040528060008152506119c3565b505050565b60006111aa610c1a565b82106111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906140a1565b60405180910390fd5b819050919050565b6111fb611ddc565b73ffffffffffffffffffffffffffffffffffffffff166112196114be565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614181565b60405180910390fd5b8181600e9190611280929190613363565b505050565b60155481565b6000611296826124b3565b600001519050919050565b6112a9611ddc565b73ffffffffffffffffffffffffffffffffffffffff166112c76114be565b73ffffffffffffffffffffffffffffffffffffffff161461131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490614181565b60405180910390fd5b611327828261260e565b6014600081548092919061133a906146f6565b91905055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614141565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6000601354905090565b61143e611ddc565b73ffffffffffffffffffffffffffffffffffffffff1661145c6114be565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990614181565b60405180910390fd5b6114bc60006128c7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6114f5611ddc565b73ffffffffffffffffffffffffffffffffffffffff166115136114be565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614181565b60405180910390fd5b8060118190555050565b60606008805461158290614693565b80601f01602080910402602001604051908101604052809291908181526020018280546115ae90614693565b80156115fb5780601f106115d0576101008083540402835291602001916115fb565b820191906000526020600020905b8154815290600101906020018083116115de57829003601f168201915b5050505050905090565b6000611611600161298b565b905090565b61161e611ddc565b73ffffffffffffffffffffffffffffffffffffffff1661163c6114be565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990614181565b60405180910390fd5b61169c3382612495565b50565b6116a7611ddc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906141c1565b60405180910390fd5b80600c6000611722611ddc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117cf611ddc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118149190613fa9565b60405180910390a35050565b611828611ddc565b73ffffffffffffffffffffffffffffffffffffffff166118466114be565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614181565b60405180910390fd5b8060138190555050565b6002600d5414156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390614321565b60405180910390fd5b6002600d81905550601554816014546119059190614466565b1115611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90614201565b60405180910390fd5b348160135461195591906144ed565b14611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614101565b60405180910390fd5b61199f3382612495565b80601460008282546119b19190614466565b925050819055506001600d8190555050565b6119ce848484611e96565b6119da84848484612999565b611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090614261565b60405180910390fd5b50505050565b6060611a2a82611db2565b611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a60906141a1565b60405180910390fd5b6000611a73612b30565b90506000611a8084612bc2565b604051602001611a909190613f0b565b60405160208183030381529060405290506000825111611abf5760405180602001604052806000815250611ae2565b8181604051602001611ad2929190613ee7565b6040516020818303038152906040525b92505050919050565b6000600254905090565b611afd611ddc565b73ffffffffffffffffffffffffffffffffffffffff16611b1b6114be565b73ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890614181565b60405180910390fd5b80600f8190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000611ba5611605565b611bad611aeb565b611bb79190614547565b905090565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c58611ddc565b73ffffffffffffffffffffffffffffffffffffffff16611c766114be565b73ffffffffffffffffffffffffffffffffffffffff1614611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614181565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390614041565b60405180910390fd5b611d45816128c7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006005600083815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b82600b600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ea1826124b3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ec8611ddc565b73ffffffffffffffffffffffffffffffffffffffff161480611f245750611eed611ddc565b73ffffffffffffffffffffffffffffffffffffffff16611f0c84610a7c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f405750611f3f8260000151611f3a611ddc565b611bbc565b5b905080611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f79906141e1565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb90614161565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b906140c1565b60405180910390fd5b6120718585856001612d23565b6120816000848460000151611de4565b6001600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836009600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426009600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001846122589190614466565b9050600073ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561236f576122ce81611db2565b1561236e5782600001516009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516009600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123d78686866001612d29565b505050505050565b60008082905060005b855181101561248757600086828151811061240657612405614876565b5b6020026020010151905080831161244757828160405160200161242a929190613ebb565b604051602081830303815290604052805190602001209250612473565b808360405160200161245a929190613ebb565b6040516020818303038152906040528051906020012092505b50808061247f906146f6565b9150506123e8565b508381149150509392505050565b6124af828260405180602001604052806000815250612d2f565b5050565b6124bb6133e9565b6124c482611db2565b612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614061565b60405180910390fd5b60008290505b6000600960008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125f5578092505050612609565b50808061260190614669565b915050612509565b919050565b60008114156126205761261f6147ba565b5b6051811115612632576126316147ba565b5b6001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126a09190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff166127449190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550816009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426009600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128846000838360405180602001604052806000815250612999565b6128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90614261565b60405180910390fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b60006129ba8473ffffffffffffffffffffffffffffffffffffffff16612d41565b15612b23578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129e3611ddc565b8786866040518563ffffffff1660e01b8152600401612a059493929190613f5d565b602060405180830381600087803b158015612a1f57600080fd5b505af1925050508015612a5057506040513d601f19601f82011682018060405250810190612a4d9190613857565b60015b612ad3573d8060008114612a80576040519150601f19603f3d011682016040523d82523d6000602084013e612a85565b606091505b50600081511415612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290614261565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b28565b600190505b949350505050565b6060600e8054612b3f90614693565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6b90614693565b8015612bb85780601f10612b8d57610100808354040283529160200191612bb8565b820191906000526020600020905b815481529060010190602001808311612b9b57829003601f168201915b5050505050905090565b60606000821415612c0a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d1e565b600082905060005b60008214612c3c578080612c25906146f6565b915050600a82612c3591906144bc565b9150612c12565b60008167ffffffffffffffff811115612c5857612c576148a5565b5b6040519080825280601f01601f191660200182016040528015612c8a5781602001600182028036833780820191505090505b5090505b60008514612d1757600182612ca39190614547565b9150600a85612cb29190614789565b6030612cbe9190614466565b60f81b818381518110612cd457612cd3614876565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1091906144bc565b9450612c8e565b8093505050505b919050565b50505050565b50505050565b612d3c8383836001612d54565b505050565b600080823b905060008111915050919050565b8280612d5e611b9b565b1015612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690614081565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e06906142a1565b60405180910390fd5b60008411612e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e49906142e1565b60405180910390fd5b60005b84811015613197576000612e6761319f565b9050612e7281611db2565b15612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990614281565b60405180910390fd5b60016005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550612eec600088836001612d23565b6001600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f5a9190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16612ffe9190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550866009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426009600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613175576131356000888388612999565b613174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316b90614261565b60405180910390fd5b5b613183600088836001612d29565b50808061318f906146f6565b915050612e55565b505050505050565b6000806131aa611b9b565b116131ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e1906140e1565b60405180910390fd5b60006131f4611605565b6131fc611aeb565b6132069190614547565b90506000813341444542604051602001613224959493929190613e30565b6040516020818303038152906040528051906020012060001c6132479190614789565b90506000806003600084815260200190815260200160002054141561326e57819050613285565b600360008381526020019081526020016000205490505b6000600360006001866132989190614547565b81526020019081526020016000205414156132d6576001836132ba9190614547565b600360008481526020019081526020016000208190555061330e565b600360006001856132e79190614547565b81526020019081526020016000205460036000848152602001908152602001600020819055505b61331661332d565b50600454816133259190614466565b935050505090565b60008061333a600161298b565b9050613346600161334d565b8091505090565b6001816000016000828254019250508190555050565b82805461336f90614693565b90600052602060002090601f01602090048101928261339157600085556133d8565b82601f106133aa57803560ff19168380011785556133d8565b828001600101855582156133d8579182015b828111156133d75782358255916020019190600101906133bc565b5b5090506133e59190613423565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561343c576000816000905550600101613424565b5090565b600061345361344e846143a1565b61437c565b90508281526020810184848401111561346f5761346e6148e3565b5b61347a848285614627565b509392505050565b60008135905061349181615015565b92915050565b60008083601f8401126134ad576134ac6148d9565b5b8235905067ffffffffffffffff8111156134ca576134c96148d4565b5b6020830191508360208202830111156134e6576134e56148de565b5b9250929050565b6000813590506134fc8161502c565b92915050565b60008135905061351181615043565b92915050565b6000813590506135268161505a565b92915050565b60008151905061353b8161505a565b92915050565b600082601f830112613556576135556148d9565b5b8135613566848260208601613440565b91505092915050565b60008083601f840112613585576135846148d9565b5b8235905067ffffffffffffffff8111156135a2576135a16148d4565b5b6020830191508360018202830111156135be576135bd6148de565b5b9250929050565b6000813590506135d481615071565b92915050565b6000602082840312156135f0576135ef6148ed565b5b60006135fe84828501613482565b91505092915050565b6000806040838503121561361e5761361d6148ed565b5b600061362c85828601613482565b925050602061363d85828601613482565b9150509250929050565b6000806000606084860312156136605761365f6148ed565b5b600061366e86828701613482565b935050602061367f86828701613482565b9250506040613690868287016135c5565b9150509250925092565b600080600080608085870312156136b4576136b36148ed565b5b60006136c287828801613482565b94505060206136d387828801613482565b93505060406136e4878288016135c5565b925050606085013567ffffffffffffffff811115613705576137046148e8565b5b61371187828801613541565b91505092959194509250565b60008060408385031215613734576137336148ed565b5b600061374285828601613482565b9250506020613753858286016134ed565b9150509250929050565b60008060408385031215613774576137736148ed565b5b600061378285828601613482565b9250506020613793858286016135c5565b9150509250929050565b6000806000604084860312156137b6576137b56148ed565b5b600084013567ffffffffffffffff8111156137d4576137d36148e8565b5b6137e086828701613497565b935093505060206137f3868287016135c5565b9150509250925092565b600060208284031215613813576138126148ed565b5b600061382184828501613502565b91505092915050565b6000602082840312156138405761383f6148ed565b5b600061384e84828501613517565b91505092915050565b60006020828403121561386d5761386c6148ed565b5b600061387b8482850161352c565b91505092915050565b6000806020838503121561389b5761389a6148ed565b5b600083013567ffffffffffffffff8111156138b9576138b86148e8565b5b6138c58582860161356f565b92509250509250929050565b6000602082840312156138e7576138e66148ed565b5b60006138f5848285016135c5565b91505092915050565b61390f61390a8261458d565b614751565b82525050565b61391e8161457b565b82525050565b6139356139308261457b565b61473f565b82525050565b6139448161459f565b82525050565b613953816145ab565b82525050565b61396a613965826145ab565b614763565b82525050565b600061397b826143d2565b61398581856143e8565b9350613995818560208601614636565b61399e816148f2565b840191505092915050565b60006139b4826143dd565b6139be8185614404565b93506139ce818560208601614636565b6139d7816148f2565b840191505092915050565b60006139ed826143dd565b6139f78185614415565b9350613a07818560208601614636565b80840191505092915050565b6000613a20602283614404565b9150613a2b82614910565b604082019050919050565b6000613a43601c83614404565b9150613a4e8261495f565b602082019050919050565b6000613a66602683614404565b9150613a7182614988565b604082019050919050565b6000613a89602a83614404565b9150613a94826149d7565b604082019050919050565b6000613aac602883614404565b9150613ab782614a26565b604082019050919050565b6000613acf602383614404565b9150613ada82614a75565b604082019050919050565b6000613af2602583614404565b9150613afd82614ac4565b604082019050919050565b6000613b15601883614404565b9150613b2082614b13565b602082019050919050565b6000613b38600b83614404565b9150613b4382614b3c565b602082019050919050565b6000613b5b603983614404565b9150613b6682614b65565b604082019050919050565b6000613b7e602b83614404565b9150613b8982614bb4565b604082019050919050565b6000613ba1602683614404565b9150613bac82614c03565b604082019050919050565b6000613bc4600583614415565b9150613bcf82614c52565b600582019050919050565b6000613be7602083614404565b9150613bf282614c7b565b602082019050919050565b6000613c0a602f83614404565b9150613c1582614ca4565b604082019050919050565b6000613c2d601a83614404565b9150613c3882614cf3565b602082019050919050565b6000613c50603283614404565b9150613c5b82614d1c565b604082019050919050565b6000613c73601083614404565b9150613c7e82614d6b565b602082019050919050565b6000613c96602283614404565b9150613ca182614d94565b604082019050919050565b6000613cb96000836143f9565b9150613cc482614de3565b600082019050919050565b6000613cdc601083614404565b9150613ce782614de6565b602082019050919050565b6000613cff603383614404565b9150613d0a82614e0f565b604082019050919050565b6000613d22601d83614404565b9150613d2d82614e5e565b602082019050919050565b6000613d45602183614404565b9150613d5082614e87565b604082019050919050565b6000613d68600d83614404565b9150613d7382614ed6565b602082019050919050565b6000613d8b602883614404565b9150613d9682614eff565b604082019050919050565b6000613dae602e83614404565b9150613db982614f4e565b604082019050919050565b6000613dd1601f83614404565b9150613ddc82614f9d565b602082019050919050565b6000613df4602d83614404565b9150613dff82614fc6565b604082019050919050565b613e138161461d565b82525050565b613e2a613e258261461d565b61477f565b82525050565b6000613e3c8288613924565b601482019150613e4c82876138fe565b601482019150613e5c8286613e19565b602082019150613e6c8285613e19565b602082019150613e7c8284613e19565b6020820191508190509695505050505050565b6000613e9b8285613924565b601482019150613eab8284613e19565b6020820191508190509392505050565b6000613ec78285613959565b602082019150613ed78284613959565b6020820191508190509392505050565b6000613ef382856139e2565b9150613eff82846139e2565b91508190509392505050565b6000613f1782846139e2565b9150613f2282613bb7565b915081905092915050565b6000613f3882613cac565b9150819050919050565b6000602082019050613f576000830184613915565b92915050565b6000608082019050613f726000830187613915565b613f7f6020830186613915565b613f8c6040830185613e0a565b8181036060830152613f9e8184613970565b905095945050505050565b6000602082019050613fbe600083018461393b565b92915050565b6000602082019050613fd9600083018461394a565b92915050565b60006020820190508181036000830152613ff981846139a9565b905092915050565b6000602082019050818103600083015261401a81613a13565b9050919050565b6000602082019050818103600083015261403a81613a36565b9050919050565b6000602082019050818103600083015261405a81613a59565b9050919050565b6000602082019050818103600083015261407a81613a7c565b9050919050565b6000602082019050818103600083015261409a81613a9f565b9050919050565b600060208201905081810360008301526140ba81613ac2565b9050919050565b600060208201905081810360008301526140da81613ae5565b9050919050565b600060208201905081810360008301526140fa81613b08565b9050919050565b6000602082019050818103600083015261411a81613b2b565b9050919050565b6000602082019050818103600083015261413a81613b4e565b9050919050565b6000602082019050818103600083015261415a81613b71565b9050919050565b6000602082019050818103600083015261417a81613b94565b9050919050565b6000602082019050818103600083015261419a81613bda565b9050919050565b600060208201905081810360008301526141ba81613bfd565b9050919050565b600060208201905081810360008301526141da81613c20565b9050919050565b600060208201905081810360008301526141fa81613c43565b9050919050565b6000602082019050818103600083015261421a81613c66565b9050919050565b6000602082019050818103600083015261423a81613c89565b9050919050565b6000602082019050818103600083015261425a81613ccf565b9050919050565b6000602082019050818103600083015261427a81613cf2565b9050919050565b6000602082019050818103600083015261429a81613d15565b9050919050565b600060208201905081810360008301526142ba81613d38565b9050919050565b600060208201905081810360008301526142da81613d5b565b9050919050565b600060208201905081810360008301526142fa81613d7e565b9050919050565b6000602082019050818103600083015261431a81613da1565b9050919050565b6000602082019050818103600083015261433a81613dc4565b9050919050565b6000602082019050818103600083015261435a81613de7565b9050919050565b60006020820190506143766000830184613e0a565b92915050565b6000614386614397565b905061439282826146c5565b919050565b6000604051905090565b600067ffffffffffffffff8211156143bc576143bb6148a5565b5b6143c5826148f2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442b826145e1565b9150614436836145e1565b9250826fffffffffffffffffffffffffffffffff0382111561445b5761445a6147e9565b5b828201905092915050565b60006144718261461d565b915061447c8361461d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144b1576144b06147e9565b5b828201905092915050565b60006144c78261461d565b91506144d28361461d565b9250826144e2576144e1614818565b5b828204905092915050565b60006144f88261461d565b91506145038361461d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453c5761453b6147e9565b5b828202905092915050565b60006145528261461d565b915061455d8361461d565b9250828210156145705761456f6147e9565b5b828203905092915050565b6000614586826145fd565b9050919050565b6000614598826145fd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614654578082015181840152602081019050614639565b83811115614663576000848401525b50505050565b60006146748261461d565b91506000821415614688576146876147e9565b5b600182039050919050565b600060028204905060018216806146ab57607f821691505b602082108114156146bf576146be614847565b5b50919050565b6146ce826148f2565b810181811067ffffffffffffffff821117156146ed576146ec6148a5565b5b80604052505050565b60006147018261461d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614734576147336147e9565b5b600182019050919050565b600061474a8261476d565b9050919050565b600061475c8261476d565b9050919050565b6000819050919050565b600061477882614903565b9050919050565b6000819050919050565b60006147948261461d565b915061479f8361461d565b9250826147af576147ae614818565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732068617320616c726561647920636c61696d65642e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160008201527f7661696c61626c65000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f496e76616c696420466565000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d6178206d696e74207265616368656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61501e8161457b565b811461502957600080fd5b50565b6150358161459f565b811461504057600080fd5b50565b61504c816145ab565b811461505757600080fd5b50565b615063816145b5565b811461506e57600080fd5b50565b61507a8161461d565b811461508557600080fd5b5056fea2646970667358221220cb4309e0b0316a7e1aef9bb9409f0273b05c1f51839a9a25574ad23ebb9b1e5664736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80637148059311610123578063a5104d4d116100ab578063dab5f3401161006f578063dab5f340146107a3578063db4bec44146107cc578063e14ca35314610809578063e985e9c514610834578063f2fde38b146108715761021a565b8063a5104d4d146106cd578063b5b5df27146106f6578063b88d4fde14610712578063c87b56dd1461073b578063d05c10a1146107785761021a565b806393a1d312116100f257806393a1d3121461060957806395d89b41146106325780639f181b5e1461065d578063a0712d6814610688578063a22cb465146106a45761021a565b80637148059314610571578063715018a61461059c5780638da5cb5b146105b35780639106d7ba146105de5761021a565b80632f745c59116101a657806355f804b31161017557806355f804b31461047a57806359a7715a146104a35780636352211e146104ce5780636e5e68361461050b57806370a08231146105345761021a565b80632f745c59146103c05780633ccfd60b146103fd57806342842e0e146104145780634f6ccce71461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806323b872dd146103435780632904e6d91461036c5780632eb4a7ab146103955761021a565b806301ffc9a71461021f578063031af7e21461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061382a565b61089a565b6040516102539190613fa9565b60405180910390f35b34801561026857600080fd5b506102716109e4565b60405161027e9190614361565b60405180910390f35b34801561029357600080fd5b5061029c6109ea565b6040516102a99190613fdf565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906138d1565b610a7c565b6040516102e69190613f42565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061375d565b610b01565b005b34801561032457600080fd5b5061032d610c1a565b60405161033a9190614361565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613647565b610c29565b005b34801561037857600080fd5b50610393600480360381019061038e919061379d565b610c39565b005b3480156103a157600080fd5b506103aa610dfb565b6040516103b79190613fc4565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e2919061375d565b610e01565b6040516103f49190614361565b60405180910390f35b34801561040957600080fd5b50610412610fff565b005b34801561042057600080fd5b5061043b60048036038101906104369190613647565b611180565b005b34801561044957600080fd5b50610464600480360381019061045f91906138d1565b6111a0565b6040516104719190614361565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613884565b6111f3565b005b3480156104af57600080fd5b506104b8611285565b6040516104c59190614361565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906138d1565b61128b565b6040516105029190613f42565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061375d565b6112a1565b005b34801561054057600080fd5b5061055b600480360381019061055691906135da565b611343565b6040516105689190614361565b60405180910390f35b34801561057d57600080fd5b5061058661142c565b6040516105939190614361565b60405180910390f35b3480156105a857600080fd5b506105b1611436565b005b3480156105bf57600080fd5b506105c86114be565b6040516105d59190613f42565b60405180910390f35b3480156105ea57600080fd5b506105f36114e7565b6040516106009190614361565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906138d1565b6114ed565b005b34801561063e57600080fd5b50610647611573565b6040516106549190613fdf565b60405180910390f35b34801561066957600080fd5b50610672611605565b60405161067f9190614361565b60405180910390f35b6106a2600480360381019061069d91906138d1565b611616565b005b3480156106b057600080fd5b506106cb60048036038101906106c6919061371d565b61169f565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906138d1565b611820565b005b610710600480360381019061070b91906138d1565b6118a6565b005b34801561071e57600080fd5b506107396004803603810190610734919061369a565b6119c3565b005b34801561074757600080fd5b50610762600480360381019061075d91906138d1565b611a1f565b60405161076f9190613fdf565b60405180910390f35b34801561078457600080fd5b5061078d611aeb565b60405161079a9190614361565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906137fd565b611af5565b005b3480156107d857600080fd5b506107f360048036038101906107ee91906135da565b611b7b565b6040516108009190613fa9565b60405180910390f35b34801561081557600080fd5b5061081e611b9b565b60405161082b9190614361565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613607565b611bbc565b6040516108689190613fa9565b60405180910390f35b34801561087d57600080fd5b50610898600480360381019061089391906135da565b611c50565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cd57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109dd57506109dc82611d48565b5b9050919050565b60165481565b6060600780546109f990614693565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2590614693565b8015610a725780601f10610a4757610100808354040283529160200191610a72565b820191906000526020600020905b815481529060010190602001808311610a5557829003601f168201915b5050505050905090565b6000610a8782611db2565b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90614341565b60405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0c8261128b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490614221565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9c611ddc565b73ffffffffffffffffffffffffffffffffffffffff161480610bcb5750610bca81610bc5611ddc565b611bbc565b5b610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190614121565b60405180910390fd5b610c15838383611de4565b505050565b6000610c24611aeb565b905090565b610c34838383611e96565b505050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90614021565b60405180910390fd5b610d3c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f543384604051602001610d21929190613e8f565b604051602081830303815290604052805190602001206123df565b610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906142c1565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508060146000828254610de59190614466565b92505081905550610df63382612495565b505050565b600f5481565b6000610e0c83611343565b8210610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490614001565b60405180910390fd5b6000610e57610c1a565b905060008060005b83811015610fbd576000600960008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa95786841415610f9a578195505050505050610ff9565b8380610fa5906146f6565b9450505b508080610fb5906146f6565b915050610e5f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090614301565b60405180910390fd5b92915050565b611007611ddc565b73ffffffffffffffffffffffffffffffffffffffff166110256114be565b73ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290614181565b60405180910390fd5b6002600d5414156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614321565b60405180910390fd5b6002600d8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110ef90613f2d565b60006040518083038185875af1925050503d806000811461112c576040519150601f19603f3d011682016040523d82523d6000602084013e611131565b606091505b5050905080611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90614241565b60405180910390fd5b506001600d81905550565b61119b838383604051806020016040528060008152506119c3565b505050565b60006111aa610c1a565b82106111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906140a1565b60405180910390fd5b819050919050565b6111fb611ddc565b73ffffffffffffffffffffffffffffffffffffffff166112196114be565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614181565b60405180910390fd5b8181600e9190611280929190613363565b505050565b60155481565b6000611296826124b3565b600001519050919050565b6112a9611ddc565b73ffffffffffffffffffffffffffffffffffffffff166112c76114be565b73ffffffffffffffffffffffffffffffffffffffff161461131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490614181565b60405180910390fd5b611327828261260e565b6014600081548092919061133a906146f6565b91905055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614141565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6000601354905090565b61143e611ddc565b73ffffffffffffffffffffffffffffffffffffffff1661145c6114be565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990614181565b60405180910390fd5b6114bc60006128c7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6114f5611ddc565b73ffffffffffffffffffffffffffffffffffffffff166115136114be565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614181565b60405180910390fd5b8060118190555050565b60606008805461158290614693565b80601f01602080910402602001604051908101604052809291908181526020018280546115ae90614693565b80156115fb5780601f106115d0576101008083540402835291602001916115fb565b820191906000526020600020905b8154815290600101906020018083116115de57829003601f168201915b5050505050905090565b6000611611600161298b565b905090565b61161e611ddc565b73ffffffffffffffffffffffffffffffffffffffff1661163c6114be565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990614181565b60405180910390fd5b61169c3382612495565b50565b6116a7611ddc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906141c1565b60405180910390fd5b80600c6000611722611ddc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117cf611ddc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118149190613fa9565b60405180910390a35050565b611828611ddc565b73ffffffffffffffffffffffffffffffffffffffff166118466114be565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614181565b60405180910390fd5b8060138190555050565b6002600d5414156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390614321565b60405180910390fd5b6002600d81905550601554816014546119059190614466565b1115611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90614201565b60405180910390fd5b348160135461195591906144ed565b14611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614101565b60405180910390fd5b61199f3382612495565b80601460008282546119b19190614466565b925050819055506001600d8190555050565b6119ce848484611e96565b6119da84848484612999565b611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090614261565b60405180910390fd5b50505050565b6060611a2a82611db2565b611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a60906141a1565b60405180910390fd5b6000611a73612b30565b90506000611a8084612bc2565b604051602001611a909190613f0b565b60405160208183030381529060405290506000825111611abf5760405180602001604052806000815250611ae2565b8181604051602001611ad2929190613ee7565b6040516020818303038152906040525b92505050919050565b6000600254905090565b611afd611ddc565b73ffffffffffffffffffffffffffffffffffffffff16611b1b6114be565b73ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890614181565b60405180910390fd5b80600f8190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000611ba5611605565b611bad611aeb565b611bb79190614547565b905090565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c58611ddc565b73ffffffffffffffffffffffffffffffffffffffff16611c766114be565b73ffffffffffffffffffffffffffffffffffffffff1614611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614181565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390614041565b60405180910390fd5b611d45816128c7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006005600083815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b82600b600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ea1826124b3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ec8611ddc565b73ffffffffffffffffffffffffffffffffffffffff161480611f245750611eed611ddc565b73ffffffffffffffffffffffffffffffffffffffff16611f0c84610a7c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f405750611f3f8260000151611f3a611ddc565b611bbc565b5b905080611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f79906141e1565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb90614161565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b906140c1565b60405180910390fd5b6120718585856001612d23565b6120816000848460000151611de4565b6001600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836009600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426009600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001846122589190614466565b9050600073ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561236f576122ce81611db2565b1561236e5782600001516009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516009600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123d78686866001612d29565b505050505050565b60008082905060005b855181101561248757600086828151811061240657612405614876565b5b6020026020010151905080831161244757828160405160200161242a929190613ebb565b604051602081830303815290604052805190602001209250612473565b808360405160200161245a929190613ebb565b6040516020818303038152906040528051906020012092505b50808061247f906146f6565b9150506123e8565b508381149150509392505050565b6124af828260405180602001604052806000815250612d2f565b5050565b6124bb6133e9565b6124c482611db2565b612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614061565b60405180910390fd5b60008290505b6000600960008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125f5578092505050612609565b50808061260190614669565b915050612509565b919050565b60008114156126205761261f6147ba565b5b6051811115612632576126316147ba565b5b6001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126a09190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff166127449190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550816009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426009600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128846000838360405180602001604052806000815250612999565b6128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90614261565b60405180910390fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b60006129ba8473ffffffffffffffffffffffffffffffffffffffff16612d41565b15612b23578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129e3611ddc565b8786866040518563ffffffff1660e01b8152600401612a059493929190613f5d565b602060405180830381600087803b158015612a1f57600080fd5b505af1925050508015612a5057506040513d601f19601f82011682018060405250810190612a4d9190613857565b60015b612ad3573d8060008114612a80576040519150601f19603f3d011682016040523d82523d6000602084013e612a85565b606091505b50600081511415612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290614261565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b28565b600190505b949350505050565b6060600e8054612b3f90614693565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6b90614693565b8015612bb85780601f10612b8d57610100808354040283529160200191612bb8565b820191906000526020600020905b815481529060010190602001808311612b9b57829003601f168201915b5050505050905090565b60606000821415612c0a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d1e565b600082905060005b60008214612c3c578080612c25906146f6565b915050600a82612c3591906144bc565b9150612c12565b60008167ffffffffffffffff811115612c5857612c576148a5565b5b6040519080825280601f01601f191660200182016040528015612c8a5781602001600182028036833780820191505090505b5090505b60008514612d1757600182612ca39190614547565b9150600a85612cb29190614789565b6030612cbe9190614466565b60f81b818381518110612cd457612cd3614876565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1091906144bc565b9450612c8e565b8093505050505b919050565b50505050565b50505050565b612d3c8383836001612d54565b505050565b600080823b905060008111915050919050565b8280612d5e611b9b565b1015612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690614081565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e06906142a1565b60405180910390fd5b60008411612e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e49906142e1565b60405180910390fd5b60005b84811015613197576000612e6761319f565b9050612e7281611db2565b15612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990614281565b60405180910390fd5b60016005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550612eec600088836001612d23565b6001600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f5a9190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16612ffe9190614420565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550866009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426009600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613175576131356000888388612999565b613174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316b90614261565b60405180910390fd5b5b613183600088836001612d29565b50808061318f906146f6565b915050612e55565b505050505050565b6000806131aa611b9b565b116131ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e1906140e1565b60405180910390fd5b60006131f4611605565b6131fc611aeb565b6132069190614547565b90506000813341444542604051602001613224959493929190613e30565b6040516020818303038152906040528051906020012060001c6132479190614789565b90506000806003600084815260200190815260200160002054141561326e57819050613285565b600360008381526020019081526020016000205490505b6000600360006001866132989190614547565b81526020019081526020016000205414156132d6576001836132ba9190614547565b600360008481526020019081526020016000208190555061330e565b600360006001856132e79190614547565b81526020019081526020016000205460036000848152602001908152602001600020819055505b61331661332d565b50600454816133259190614466565b935050505090565b60008061333a600161298b565b9050613346600161334d565b8091505090565b6001816000016000828254019250508190555050565b82805461336f90614693565b90600052602060002090601f01602090048101928261339157600085556133d8565b82601f106133aa57803560ff19168380011785556133d8565b828001600101855582156133d8579182015b828111156133d75782358255916020019190600101906133bc565b5b5090506133e59190613423565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561343c576000816000905550600101613424565b5090565b600061345361344e846143a1565b61437c565b90508281526020810184848401111561346f5761346e6148e3565b5b61347a848285614627565b509392505050565b60008135905061349181615015565b92915050565b60008083601f8401126134ad576134ac6148d9565b5b8235905067ffffffffffffffff8111156134ca576134c96148d4565b5b6020830191508360208202830111156134e6576134e56148de565b5b9250929050565b6000813590506134fc8161502c565b92915050565b60008135905061351181615043565b92915050565b6000813590506135268161505a565b92915050565b60008151905061353b8161505a565b92915050565b600082601f830112613556576135556148d9565b5b8135613566848260208601613440565b91505092915050565b60008083601f840112613585576135846148d9565b5b8235905067ffffffffffffffff8111156135a2576135a16148d4565b5b6020830191508360018202830111156135be576135bd6148de565b5b9250929050565b6000813590506135d481615071565b92915050565b6000602082840312156135f0576135ef6148ed565b5b60006135fe84828501613482565b91505092915050565b6000806040838503121561361e5761361d6148ed565b5b600061362c85828601613482565b925050602061363d85828601613482565b9150509250929050565b6000806000606084860312156136605761365f6148ed565b5b600061366e86828701613482565b935050602061367f86828701613482565b9250506040613690868287016135c5565b9150509250925092565b600080600080608085870312156136b4576136b36148ed565b5b60006136c287828801613482565b94505060206136d387828801613482565b93505060406136e4878288016135c5565b925050606085013567ffffffffffffffff811115613705576137046148e8565b5b61371187828801613541565b91505092959194509250565b60008060408385031215613734576137336148ed565b5b600061374285828601613482565b9250506020613753858286016134ed565b9150509250929050565b60008060408385031215613774576137736148ed565b5b600061378285828601613482565b9250506020613793858286016135c5565b9150509250929050565b6000806000604084860312156137b6576137b56148ed565b5b600084013567ffffffffffffffff8111156137d4576137d36148e8565b5b6137e086828701613497565b935093505060206137f3868287016135c5565b9150509250925092565b600060208284031215613813576138126148ed565b5b600061382184828501613502565b91505092915050565b6000602082840312156138405761383f6148ed565b5b600061384e84828501613517565b91505092915050565b60006020828403121561386d5761386c6148ed565b5b600061387b8482850161352c565b91505092915050565b6000806020838503121561389b5761389a6148ed565b5b600083013567ffffffffffffffff8111156138b9576138b86148e8565b5b6138c58582860161356f565b92509250509250929050565b6000602082840312156138e7576138e66148ed565b5b60006138f5848285016135c5565b91505092915050565b61390f61390a8261458d565b614751565b82525050565b61391e8161457b565b82525050565b6139356139308261457b565b61473f565b82525050565b6139448161459f565b82525050565b613953816145ab565b82525050565b61396a613965826145ab565b614763565b82525050565b600061397b826143d2565b61398581856143e8565b9350613995818560208601614636565b61399e816148f2565b840191505092915050565b60006139b4826143dd565b6139be8185614404565b93506139ce818560208601614636565b6139d7816148f2565b840191505092915050565b60006139ed826143dd565b6139f78185614415565b9350613a07818560208601614636565b80840191505092915050565b6000613a20602283614404565b9150613a2b82614910565b604082019050919050565b6000613a43601c83614404565b9150613a4e8261495f565b602082019050919050565b6000613a66602683614404565b9150613a7182614988565b604082019050919050565b6000613a89602a83614404565b9150613a94826149d7565b604082019050919050565b6000613aac602883614404565b9150613ab782614a26565b604082019050919050565b6000613acf602383614404565b9150613ada82614a75565b604082019050919050565b6000613af2602583614404565b9150613afd82614ac4565b604082019050919050565b6000613b15601883614404565b9150613b2082614b13565b602082019050919050565b6000613b38600b83614404565b9150613b4382614b3c565b602082019050919050565b6000613b5b603983614404565b9150613b6682614b65565b604082019050919050565b6000613b7e602b83614404565b9150613b8982614bb4565b604082019050919050565b6000613ba1602683614404565b9150613bac82614c03565b604082019050919050565b6000613bc4600583614415565b9150613bcf82614c52565b600582019050919050565b6000613be7602083614404565b9150613bf282614c7b565b602082019050919050565b6000613c0a602f83614404565b9150613c1582614ca4565b604082019050919050565b6000613c2d601a83614404565b9150613c3882614cf3565b602082019050919050565b6000613c50603283614404565b9150613c5b82614d1c565b604082019050919050565b6000613c73601083614404565b9150613c7e82614d6b565b602082019050919050565b6000613c96602283614404565b9150613ca182614d94565b604082019050919050565b6000613cb96000836143f9565b9150613cc482614de3565b600082019050919050565b6000613cdc601083614404565b9150613ce782614de6565b602082019050919050565b6000613cff603383614404565b9150613d0a82614e0f565b604082019050919050565b6000613d22601d83614404565b9150613d2d82614e5e565b602082019050919050565b6000613d45602183614404565b9150613d5082614e87565b604082019050919050565b6000613d68600d83614404565b9150613d7382614ed6565b602082019050919050565b6000613d8b602883614404565b9150613d9682614eff565b604082019050919050565b6000613dae602e83614404565b9150613db982614f4e565b604082019050919050565b6000613dd1601f83614404565b9150613ddc82614f9d565b602082019050919050565b6000613df4602d83614404565b9150613dff82614fc6565b604082019050919050565b613e138161461d565b82525050565b613e2a613e258261461d565b61477f565b82525050565b6000613e3c8288613924565b601482019150613e4c82876138fe565b601482019150613e5c8286613e19565b602082019150613e6c8285613e19565b602082019150613e7c8284613e19565b6020820191508190509695505050505050565b6000613e9b8285613924565b601482019150613eab8284613e19565b6020820191508190509392505050565b6000613ec78285613959565b602082019150613ed78284613959565b6020820191508190509392505050565b6000613ef382856139e2565b9150613eff82846139e2565b91508190509392505050565b6000613f1782846139e2565b9150613f2282613bb7565b915081905092915050565b6000613f3882613cac565b9150819050919050565b6000602082019050613f576000830184613915565b92915050565b6000608082019050613f726000830187613915565b613f7f6020830186613915565b613f8c6040830185613e0a565b8181036060830152613f9e8184613970565b905095945050505050565b6000602082019050613fbe600083018461393b565b92915050565b6000602082019050613fd9600083018461394a565b92915050565b60006020820190508181036000830152613ff981846139a9565b905092915050565b6000602082019050818103600083015261401a81613a13565b9050919050565b6000602082019050818103600083015261403a81613a36565b9050919050565b6000602082019050818103600083015261405a81613a59565b9050919050565b6000602082019050818103600083015261407a81613a7c565b9050919050565b6000602082019050818103600083015261409a81613a9f565b9050919050565b600060208201905081810360008301526140ba81613ac2565b9050919050565b600060208201905081810360008301526140da81613ae5565b9050919050565b600060208201905081810360008301526140fa81613b08565b9050919050565b6000602082019050818103600083015261411a81613b2b565b9050919050565b6000602082019050818103600083015261413a81613b4e565b9050919050565b6000602082019050818103600083015261415a81613b71565b9050919050565b6000602082019050818103600083015261417a81613b94565b9050919050565b6000602082019050818103600083015261419a81613bda565b9050919050565b600060208201905081810360008301526141ba81613bfd565b9050919050565b600060208201905081810360008301526141da81613c20565b9050919050565b600060208201905081810360008301526141fa81613c43565b9050919050565b6000602082019050818103600083015261421a81613c66565b9050919050565b6000602082019050818103600083015261423a81613c89565b9050919050565b6000602082019050818103600083015261425a81613ccf565b9050919050565b6000602082019050818103600083015261427a81613cf2565b9050919050565b6000602082019050818103600083015261429a81613d15565b9050919050565b600060208201905081810360008301526142ba81613d38565b9050919050565b600060208201905081810360008301526142da81613d5b565b9050919050565b600060208201905081810360008301526142fa81613d7e565b9050919050565b6000602082019050818103600083015261431a81613da1565b9050919050565b6000602082019050818103600083015261433a81613dc4565b9050919050565b6000602082019050818103600083015261435a81613de7565b9050919050565b60006020820190506143766000830184613e0a565b92915050565b6000614386614397565b905061439282826146c5565b919050565b6000604051905090565b600067ffffffffffffffff8211156143bc576143bb6148a5565b5b6143c5826148f2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442b826145e1565b9150614436836145e1565b9250826fffffffffffffffffffffffffffffffff0382111561445b5761445a6147e9565b5b828201905092915050565b60006144718261461d565b915061447c8361461d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144b1576144b06147e9565b5b828201905092915050565b60006144c78261461d565b91506144d28361461d565b9250826144e2576144e1614818565b5b828204905092915050565b60006144f88261461d565b91506145038361461d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453c5761453b6147e9565b5b828202905092915050565b60006145528261461d565b915061455d8361461d565b9250828210156145705761456f6147e9565b5b828203905092915050565b6000614586826145fd565b9050919050565b6000614598826145fd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614654578082015181840152602081019050614639565b83811115614663576000848401525b50505050565b60006146748261461d565b91506000821415614688576146876147e9565b5b600182039050919050565b600060028204905060018216806146ab57607f821691505b602082108114156146bf576146be614847565b5b50919050565b6146ce826148f2565b810181811067ffffffffffffffff821117156146ed576146ec6148a5565b5b80604052505050565b60006147018261461d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614734576147336147e9565b5b600182019050919050565b600061474a8261476d565b9050919050565b600061475c8261476d565b9050919050565b6000819050919050565b600061477882614903565b9050919050565b6000819050919050565b60006147948261461d565b915061479f8361461d565b9250826147af576147ae614818565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732068617320616c726561647920636c61696d65642e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160008201527f7661696c61626c65000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f496e76616c696420466565000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d6178206d696e74207265616368656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61501e8161457b565b811461502957600080fd5b50565b6150358161459f565b811461504057600080fd5b50565b61504c816145ab565b811461505757600080fd5b50565b615063816145b5565b811461506e57600080fd5b50565b61507a8161461d565b811461508557600080fd5b5056fea2646970667358221220cb4309e0b0316a7e1aef9bb9409f0273b05c1f51839a9a25574ad23ebb9b1e5664736f6c63430008070033
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.