Overview
ETH Balance
0.54 ETH
Eth Value
$1,832.52 (@ $3,393.56/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 12 from a total of 12 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 15253923 | 914 days ago | IN | 0.3 ETH | 0.00079537 | ||||
Set Approval For... | 14980879 | 958 days ago | IN | 0 ETH | 0.00136067 | ||||
Presale Mint | 14964735 | 961 days ago | IN | 0.16 ETH | 0.0031706 | ||||
Presale Mint | 14964517 | 961 days ago | IN | 0.08 ETH | 0.00224954 | ||||
Extend Sale Time... | 14964501 | 961 days ago | IN | 0 ETH | 0.00100618 | ||||
Withdraw | 14964443 | 961 days ago | IN | 0 ETH | 0.0008809 | ||||
Extend Sale Time... | 14964389 | 961 days ago | IN | 0 ETH | 0.00093457 | ||||
Presale Mint | 14964368 | 961 days ago | IN | 0.08 ETH | 0.004306 | ||||
Airdrop | 14964291 | 961 days ago | IN | 0 ETH | 0.00643978 | ||||
Set Base URI | 14964261 | 961 days ago | IN | 0 ETH | 0.00107156 | ||||
Setup OS | 14964223 | 961 days ago | IN | 0 ETH | 0.00215744 | ||||
Reveal | 14964046 | 961 days ago | IN | 0 ETH | 0.0020029 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14964443 | 961 days ago | 0.08 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DoggoNFT
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract DoggoNFT is ERC721A, Ownable, ReentrancyGuard { string private baseURI = ""; string public constant baseExtension = ".json"; string private notRevealedUri; uint256 public MAX_SUPPLY = 10000; bool public paused = false; bool public revealed = false; uint256 public price = 0.1 ether; uint256 public presalePrice = 0.08 ether; bytes32 public ROOT; uint256 public PRESALE_MAX_PER_WALLET = 3; uint256 public MAX_PER_TX = 10; uint256 public presaleEndTime; uint256 public presaleStartTime; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri, bytes32 _initRoot, uint256 _presaleStartTime, uint256 _duration ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); presaleStartTime = _presaleStartTime; presaleEndTime = _presaleStartTime + _duration; ROOT = _initRoot; } function presaleMint(uint256 _amount, bytes32[] calldata _merkleProof) external payable { address _caller = msg.sender; require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); bool isWL = isWhitelisted(_caller, _merkleProof); uint256 callerBalance = balanceOf(msg.sender); uint256 userMaxMint = maxMintAmount(); uint256 totalMintCost = presalePrice * _amount; require(block.timestamp > presaleStartTime, "Sale Has Not Started Yet"); require(block.timestamp < presaleEndTime, "Presale has Ended"); if (_caller != owner()) { require(isWL == true, "user is not whitelisted"); require( callerBalance + _amount <= userMaxMint, "Exceeds Maximum Allowed During Whitelist" ); require(totalMintCost == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function mint(uint256 _amount) external payable { address _caller = msg.sender; require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); uint256 mintCost = price; uint256 totalMintCost = mintCost * _amount; require(block.timestamp > presaleEndTime, "Presale has not ended yet"); if (_caller != owner()) { require(totalMintCost == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) public view override returns (bool) { return super.isApprovedForAll(owner, operator); } function isWhitelisted(address _user, bytes32[] calldata _merkleProof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(_user)); if (MerkleProof.verify(_merkleProof, ROOT, leaf)) { return true; } else { return false; } } function maxMintAmount() public view returns (uint256) { uint256 maxMint; if (block.timestamp < presaleEndTime) { maxMint = PRESALE_MAX_PER_WALLET; } else { maxMint = MAX_PER_TX; } return maxMint; } function currentPrice() public view returns (uint256) { if (block.timestamp < presaleEndTime) { return presalePrice; } else { return price; } } function reveal() public onlyOwner { revealed = true; } function withdraw() external onlyOwner nonReentrant { _withdraw(msg.sender); } function changePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function _withdraw(address _caller) private { payable(_caller).transfer(address(this).balance); } function setmaxMintAmounts(uint256 presaleMax, uint256 _newMax) public onlyOwner { PRESALE_MAX_PER_WALLET = presaleMax; MAX_PER_TX = _newMax; } function setupOS() external onlyOwner { _safeMint(_msgSender(), 1); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function updateMaxSupply(uint256 _newSupply) external onlyOwner { MAX_SUPPLY = _newSupply; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function airdrop(address _to, uint256 _amount) public onlyOwner { require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == msg.sender, "No contracts"); _safeMint(_to, _amount); } function airDropAll(address[] calldata _addressList, uint256 amount) public onlyOwner { require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + amount, "Exceeds max supply"); require(amount > 0, "No 0 mints"); require(tx.origin == msg.sender, "No contracts"); for (uint256 i = 0; i < _addressList.length; i++) { address currRecipient = _addressList[i]; _safeMint(currRecipient, amount); } } function updateRoot(bytes32 _newRoot) public onlyOwner { ROOT = _newRoot; } function extendSaleTimes(uint256 _newStart, uint256 _duration) public onlyOwner { presaleStartTime = _newStart; presaleEndTime = _newStart + _duration; } function changePresalePrice(uint256 _newPrice) public onlyOwner { presalePrice = _newPrice; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = baseURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), baseExtension ) ) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev 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) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_initRoot","type":"bytes32"},{"internalType":"uint256","name":"_presaleStartTime","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airDropAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStart","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"extendSaleTimes","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":[{"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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMax","type":"uint256"},{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setmaxMintAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b929190620003d5565b50612710600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555067016345785d8a0000600e5567011c37937e080000600f556003601155600a6012553480156200009757600080fd5b5060405162005700380380620057008339818101604052810190620000bd919062000698565b86868160029080519060200190620000d7929190620003d5565b508060039080519060200190620000f0929190620003d5565b50620001016200018260201b60201c565b6000819055505050620001296200011d6200018760201b60201c565b6200018f60201b60201c565b600160098190555062000142856200025560201b60201c565b62000153846200030060201b60201c565b816014819055508082620001689190620007f6565b60138190555082601081905550505050505050506200093a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002656200018760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028b620003ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002db90620008b4565b60405180910390fd5b80600a9080519060200190620002fc929190620003d5565b5050565b620003106200018760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000336620003ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038690620008b4565b60405180910390fd5b80600b9080519060200190620003a7929190620003d5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e39062000905565b90600052602060002090601f01602090048101928262000407576000855562000453565b82601f106200042257805160ff191683800117855562000453565b8280016001018555821562000453579182015b828111156200045257825182559160200191906001019062000435565b5b50905062000462919062000466565b5090565b5b808211156200048157600081600090555060010162000467565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004ee82620004a3565b810181811067ffffffffffffffff8211171562000510576200050f620004b4565b5b80604052505050565b60006200052562000485565b9050620005338282620004e3565b919050565b600067ffffffffffffffff821115620005565762000555620004b4565b5b6200056182620004a3565b9050602081019050919050565b60005b838110156200058e57808201518184015260208101905062000571565b838111156200059e576000848401525b50505050565b6000620005bb620005b58462000538565b62000519565b905082815260208101848484011115620005da57620005d96200049e565b5b620005e78482856200056e565b509392505050565b600082601f83011262000607576200060662000499565b5b815162000619848260208601620005a4565b91505092915050565b6000819050919050565b620006378162000622565b81146200064357600080fd5b50565b60008151905062000657816200062c565b92915050565b6000819050919050565b62000672816200065d565b81146200067e57600080fd5b50565b600081519050620006928162000667565b92915050565b600080600080600080600060e0888a031215620006ba57620006b96200048f565b5b600088015167ffffffffffffffff811115620006db57620006da62000494565b5b620006e98a828b01620005ef565b975050602088015167ffffffffffffffff8111156200070d576200070c62000494565b5b6200071b8a828b01620005ef565b965050604088015167ffffffffffffffff8111156200073f576200073e62000494565b5b6200074d8a828b01620005ef565b955050606088015167ffffffffffffffff81111562000771576200077062000494565b5b6200077f8a828b01620005ef565b9450506080620007928a828b0162000646565b93505060a0620007a58a828b0162000681565b92505060c0620007b88a828b0162000681565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000803826200065d565b915062000810836200065d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008485762000847620007c7565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200089c60208362000853565b9150620008a98262000864565b602082019050919050565b60006020820190508181036000830152620008cf816200088d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091e57607f821691505b602082108103620009345762000933620008d6565b5b50919050565b614db6806200094a6000396000f3fe6080604052600436106102875760003560e01c8063715018a61161015a578063a475b5dd116100c1578063e49863c01161007a578063e49863c014610953578063e985e9c51461097c578063f103b433146109b9578063f2c4ce1e146109e2578063f2fde38b14610a0b578063f43a22dc14610a3457610287565b8063a475b5dd14610864578063a82524b21461087b578063b88d4fde146108a6578063c6682862146108cf578063c87b56dd146108fa578063e3e1e8ef1461093757610287565b806395d89b411161011357806395d89b41146107755780639d1b464a146107a0578063a035b1fe146107cb578063a0712d68146107f6578063a22cb46514610812578063a2b40d191461083b57610287565b8063715018a61461068f5780638606d938146106a657806389e225df146106cf5780638ba4cc3c146106f85780638c91fe92146107215780638da5cb5b1461074a57610287565b806332cb6b0c116101fe5780635a23dd99116101b75780635a23dd991461056b5780635c975abb146105a85780635e7ac138146105d35780636352211e146105fe578063698982ba1461063b57806370a082311461065257610287565b806332cb6b0c146104815780633ccfd60b146104ac57806342842e0e146104c357806351830227146104ec57806355f804b3146105175780635909c12f1461054057610287565b8063095ea7b311610250578063095ea7b31461038557806318160ddd146103ae57806321ff9970146103d9578063239c70ae1461040257806323b872dd1461042d578063249b7c191461045657610287565b80620e7fa81461028c57806301ffc9a7146102b757806302329a29146102f457806306fdde031461031d578063081812fc14610348575b600080fd5b34801561029857600080fd5b506102a1610a5f565b6040516102ae9190613994565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190613a1b565b610a65565b6040516102eb9190613a63565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190613aaa565b610b47565b005b34801561032957600080fd5b50610332610be0565b60405161033f9190613b70565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613bbe565b610c72565b60405161037c9190613c2c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613c73565b610cee565b005b3480156103ba57600080fd5b506103c3610df2565b6040516103d09190613994565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613ce9565b610e09565b005b34801561040e57600080fd5b50610417610e8f565b6040516104249190613994565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613d16565b610eb3565b005b34801561046257600080fd5b5061046b610ec3565b6040516104789190613994565b60405180910390f35b34801561048d57600080fd5b50610496610ec9565b6040516104a39190613994565b60405180910390f35b3480156104b857600080fd5b506104c1610ecf565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613d16565b610fab565b005b3480156104f857600080fd5b50610501610fcb565b60405161050e9190613a63565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613e9e565b610fde565b005b34801561054c57600080fd5b50610555611074565b6040516105629190613ef6565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190613f71565b61107a565b60405161059f9190613a63565b60405180910390f35b3480156105b457600080fd5b506105bd611110565b6040516105ca9190613a63565b60405180910390f35b3480156105df57600080fd5b506105e8611123565b6040516105f59190613994565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613bbe565b611129565b6040516106329190613c2c565b60405180910390f35b34801561064757600080fd5b5061065061113f565b005b34801561065e57600080fd5b5061067960048036038101906106749190613fd1565b6111cf565b6040516106869190613994565b60405180910390f35b34801561069b57600080fd5b506106a461129e565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613bbe565b611326565b005b3480156106db57600080fd5b506106f660048036038101906106f19190614054565b6113ac565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613c73565b6115de565b005b34801561072d57600080fd5b50610748600480360381019061074391906140b4565b6117c0565b005b34801561075657600080fd5b5061075f611859565b60405161076c9190613c2c565b60405180910390f35b34801561078157600080fd5b5061078a611883565b6040516107979190613b70565b60405180910390f35b3480156107ac57600080fd5b506107b5611915565b6040516107c29190613994565b60405180910390f35b3480156107d757600080fd5b506107e0611934565b6040516107ed9190613994565b60405180910390f35b610810600480360381019061080b9190613bbe565b61193a565b005b34801561081e57600080fd5b50610839600480360381019061083491906140f4565b611b7f565b005b34801561084757600080fd5b50610862600480360381019061085d9190613bbe565b611cf6565b005b34801561087057600080fd5b50610879611d7c565b005b34801561088757600080fd5b50610890611e15565b60405161089d9190613994565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c891906141d5565b611e1b565b005b3480156108db57600080fd5b506108e4611e93565b6040516108f19190613b70565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190613bbe565b611ecc565b60405161092e9190613b70565b60405180910390f35b610951600480360381019061094c9190614258565b6120db565b005b34801561095f57600080fd5b5061097a600480360381019061097591906140b4565b612420565b005b34801561098857600080fd5b506109a3600480360381019061099e91906142b8565b6124ae565b6040516109b09190613a63565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db9190613bbe565b6124c2565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613e9e565b612548565b005b348015610a1757600080fd5b50610a326004803603810190610a2d9190613fd1565b6125de565b005b348015610a4057600080fd5b50610a496126d5565b604051610a569190613994565b60405180910390f35b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b405750610b3f826126db565b5b9050919050565b610b4f612745565b73ffffffffffffffffffffffffffffffffffffffff16610b6d611859565b73ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90614344565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060028054610bef90614393565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1b90614393565b8015610c685780601f10610c3d57610100808354040283529160200191610c68565b820191906000526020600020905b815481529060010190602001808311610c4b57829003601f168201915b5050505050905090565b6000610c7d8261274d565b610cb3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cf982611129565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d7f612745565b73ffffffffffffffffffffffffffffffffffffffff1614610de257610dab81610da6612745565b6124ae565b610de1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ded83838361279b565b505050565b6000610dfc61284d565b6001546000540303905090565b610e11612745565b73ffffffffffffffffffffffffffffffffffffffff16610e2f611859565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90614344565b60405180910390fd5b8060108190555050565b600080601354421015610ea6576011549050610eac565b60125490505b8091505090565b610ebe838383612852565b505050565b60135481565b600c5481565b610ed7612745565b73ffffffffffffffffffffffffffffffffffffffff16610ef5611859565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614344565b60405180910390fd5b600260095403610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790614410565b60405180910390fd5b6002600981905550610fa133612d06565b6001600981905550565b610fc683838360405180602001604052806000815250611e1b565b505050565b600d60019054906101000a900460ff1681565b610fe6612745565b73ffffffffffffffffffffffffffffffffffffffff16611004611859565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614344565b60405180910390fd5b80600a9080519060200190611070929190613895565b5050565b60105481565b6000808460405160200161108e9190614478565b6040516020818303038152906040528051906020012090506110f4848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612d50565b15611103576001915050611109565b60009150505b9392505050565b600d60009054906101000a900460ff1681565b60115481565b600061113482612d67565b600001519050919050565b611147612745565b73ffffffffffffffffffffffffffffffffffffffff16611165611859565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290614344565b60405180910390fd5b6111cd6111c6612745565b6001612ff2565b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611236576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112a6612745565b73ffffffffffffffffffffffffffffffffffffffff166112c4611859565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190614344565b60405180910390fd5b6113246000613010565b565b61132e612745565b73ffffffffffffffffffffffffffffffffffffffff1661134c611859565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614344565b60405180910390fd5b80600f8190555050565b6113b4612745565b73ffffffffffffffffffffffffffffffffffffffff166113d2611859565b73ffffffffffffffffffffffffffffffffffffffff1614611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90614344565b60405180910390fd5b600d60009054906101000a900460ff1615611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906144df565b60405180910390fd5b80611481610df2565b61148b919061452e565b600c5410156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c6906145d0565b60405180910390fd5b60008111611512576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115099061463c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906146a8565b60405180910390fd5b60005b838390508110156115d85760008484838181106115a3576115a26146c8565b5b90506020020160208101906115b89190613fd1565b90506115c48184612ff2565b5080806115d0906146f7565b915050611583565b50505050565b6115e6612745565b73ffffffffffffffffffffffffffffffffffffffff16611604611859565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614344565b60405180910390fd5b600d60009054906101000a900460ff16156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a1906144df565b60405180910390fd5b806116b3610df2565b6116bd919061452e565b600c541015611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906145d0565b60405180910390fd5b60008111611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061463c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a9906146a8565b60405180910390fd5b6117bc8282612ff2565b5050565b6117c8612745565b73ffffffffffffffffffffffffffffffffffffffff166117e6611859565b73ffffffffffffffffffffffffffffffffffffffff161461183c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183390614344565b60405180910390fd5b81601481905550808261184f919061452e565b6013819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461189290614393565b80601f01602080910402602001604051908101604052809291908181526020018280546118be90614393565b801561190b5780601f106118e05761010080835404028352916020019161190b565b820191906000526020600020905b8154815290600101906020018083116118ee57829003601f168201915b5050505050905090565b600060135442101561192b57600f549050611931565b600e5490505b90565b600e5481565b6000339050600d60009054906101000a900460ff161561198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906144df565b60405180910390fd5b81611998610df2565b6119a2919061452e565b600c5410156119e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dd906145d0565b60405180910390fd5b60008211611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061463c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e906146a8565b60405180910390fd5b6000600e54905060008382611aac919061473f565b90506013544211611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906147e5565b60405180910390fd5b611afa611859565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b6f57348114611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590614851565b60405180910390fd5b5b611b798385612ff2565b50505050565b611b87612745565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611beb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bf8612745565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ca5612745565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cea9190613a63565b60405180910390a35050565b611cfe612745565b73ffffffffffffffffffffffffffffffffffffffff16611d1c611859565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990614344565b60405180910390fd5b80600e8190555050565b611d84612745565b73ffffffffffffffffffffffffffffffffffffffff16611da2611859565b73ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614344565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b60145481565b611e26848484612852565b611e458373ffffffffffffffffffffffffffffffffffffffff166130d6565b15611e8d57611e56848484846130f9565b611e8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611ed78261274d565b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906148e3565b60405180910390fd5b60001515600d60019054906101000a900460ff16151503611fc357600b8054611f3e90614393565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6a90614393565b8015611fb75780601f10611f8c57610100808354040283529160200191611fb7565b820191906000526020600020905b815481529060010190602001808311611f9a57829003601f168201915b505050505090506120d6565b6000600a8054611fd290614393565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffe90614393565b801561204b5780601f106120205761010080835404028352916020019161204b565b820191906000526020600020905b81548152906001019060200180831161202e57829003601f168201915b50505050509050600081511161207057604051806020016040528060008152506120d2565b8061207a84613249565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016120c29392919061493f565b6040516020818303038152906040525b9150505b919050565b6000339050600d60009054906101000a900460ff1615612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906144df565b60405180910390fd5b83612139610df2565b612143919061452e565b600c541015612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e906145d0565b60405180910390fd5b600084116121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c19061463c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f906146a8565b60405180910390fd5b600061224582858561107a565b90506000612252336111cf565b9050600061225e610e8f565b9050600087600f54612270919061473f565b905060145442116122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad906149bc565b60405180910390fd5b60135442106122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614a28565b60405180910390fd5b612302611859565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461240c57600115158415151461237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290614a94565b60405180910390fd5b818884612388919061452e565b11156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090614b26565b60405180910390fd5b34811461240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240290614851565b60405180910390fd5b5b6124168589612ff2565b5050505050505050565b612428612745565b73ffffffffffffffffffffffffffffffffffffffff16612446611859565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390614344565b60405180910390fd5b81601181905550806012819055505050565b60006124ba83836133a9565b905092915050565b6124ca612745565b73ffffffffffffffffffffffffffffffffffffffff166124e8611859565b73ffffffffffffffffffffffffffffffffffffffff161461253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614344565b60405180910390fd5b80600c8190555050565b612550612745565b73ffffffffffffffffffffffffffffffffffffffff1661256e611859565b73ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb90614344565b60405180910390fd5b80600b90805190602001906125da929190613895565b5050565b6125e6612745565b73ffffffffffffffffffffffffffffffffffffffff16612604611859565b73ffffffffffffffffffffffffffffffffffffffff161461265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190614344565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090614bb8565b60405180910390fd5b6126d281613010565b50565b60125481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161275861284d565b11158015612767575060005482105b8015612794575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061285d82612d67565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166128e9612745565b73ffffffffffffffffffffffffffffffffffffffff161480612918575061291785612912612745565b6124ae565b5b8061295d5750612926612745565b73ffffffffffffffffffffffffffffffffffffffff1661294584610c72565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612996576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a09858585600161343d565b612a156000848761279b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612c94576000548214612c9357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cff8585856001613443565b5050505050565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612d4c573d6000803e3d6000fd5b5050565b600082612d5d8584613449565b1490509392505050565b612d6f61391b565b600082905080612d7d61284d565b11612fbb57600054811015612fba576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612fb857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e9c578092505050612fed565b5b600115612fb757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb2578092505050612fed565b612e9d565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61300c8282604051806020016040528060008152506134be565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311f612745565b8786866040518563ffffffff1660e01b81526004016131419493929190614c2d565b6020604051808303816000875af192505050801561317d57506040513d601f19601f8201168201806040525081019061317a9190614c8e565b60015b6131f6573d80600081146131ad576040519150601f19603f3d011682016040523d82523d6000602084013e6131b2565b606091505b5060008151036131ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613290576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133a4565b600082905060005b600082146132c25780806132ab906146f7565b915050600a826132bb9190614cea565b9150613298565b60008167ffffffffffffffff8111156132de576132dd613d73565b5b6040519080825280601f01601f1916602001820160405280156133105781602001600182028036833780820191505090505b5090505b6000851461339d576001826133299190614d1b565b9150600a856133389190614d4f565b6030613344919061452e565b60f81b81838151811061335a576133596146c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133969190614cea565b9450613314565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b60008082905060005b84518110156134b35760008582815181106134705761346f6146c8565b5b602002602001015190508083116134925761348b838261387e565b925061349f565b61349c818461387e565b92505b5080806134ab906146f7565b915050613452565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361352a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613564576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613571600085838661343d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506137328673ffffffffffffffffffffffffffffffffffffffff166130d6565b156137f7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137a760008784806001019550876130f9565b6137dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106137385782600054146137f257600080fd5b613862565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106137f8575b8160008190555050506138786000858386613443565b50505050565b600082600052816020526040600020905092915050565b8280546138a190614393565b90600052602060002090601f0160209004810192826138c3576000855561390a565b82601f106138dc57805160ff191683800117855561390a565b8280016001018555821561390a579182015b828111156139095782518255916020019190600101906138ee565b5b509050613917919061395e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561397757600081600090555060010161395f565b5090565b6000819050919050565b61398e8161397b565b82525050565b60006020820190506139a96000830184613985565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f8816139c3565b8114613a0357600080fd5b50565b600081359050613a15816139ef565b92915050565b600060208284031215613a3157613a306139b9565b5b6000613a3f84828501613a06565b91505092915050565b60008115159050919050565b613a5d81613a48565b82525050565b6000602082019050613a786000830184613a54565b92915050565b613a8781613a48565b8114613a9257600080fd5b50565b600081359050613aa481613a7e565b92915050565b600060208284031215613ac057613abf6139b9565b5b6000613ace84828501613a95565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b11578082015181840152602081019050613af6565b83811115613b20576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b4282613ad7565b613b4c8185613ae2565b9350613b5c818560208601613af3565b613b6581613b26565b840191505092915050565b60006020820190508181036000830152613b8a8184613b37565b905092915050565b613b9b8161397b565b8114613ba657600080fd5b50565b600081359050613bb881613b92565b92915050565b600060208284031215613bd457613bd36139b9565b5b6000613be284828501613ba9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c1682613beb565b9050919050565b613c2681613c0b565b82525050565b6000602082019050613c416000830184613c1d565b92915050565b613c5081613c0b565b8114613c5b57600080fd5b50565b600081359050613c6d81613c47565b92915050565b60008060408385031215613c8a57613c896139b9565b5b6000613c9885828601613c5e565b9250506020613ca985828601613ba9565b9150509250929050565b6000819050919050565b613cc681613cb3565b8114613cd157600080fd5b50565b600081359050613ce381613cbd565b92915050565b600060208284031215613cff57613cfe6139b9565b5b6000613d0d84828501613cd4565b91505092915050565b600080600060608486031215613d2f57613d2e6139b9565b5b6000613d3d86828701613c5e565b9350506020613d4e86828701613c5e565b9250506040613d5f86828701613ba9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dab82613b26565b810181811067ffffffffffffffff82111715613dca57613dc9613d73565b5b80604052505050565b6000613ddd6139af565b9050613de98282613da2565b919050565b600067ffffffffffffffff821115613e0957613e08613d73565b5b613e1282613b26565b9050602081019050919050565b82818337600083830152505050565b6000613e41613e3c84613dee565b613dd3565b905082815260208101848484011115613e5d57613e5c613d6e565b5b613e68848285613e1f565b509392505050565b600082601f830112613e8557613e84613d69565b5b8135613e95848260208601613e2e565b91505092915050565b600060208284031215613eb457613eb36139b9565b5b600082013567ffffffffffffffff811115613ed257613ed16139be565b5b613ede84828501613e70565b91505092915050565b613ef081613cb3565b82525050565b6000602082019050613f0b6000830184613ee7565b92915050565b600080fd5b600080fd5b60008083601f840112613f3157613f30613d69565b5b8235905067ffffffffffffffff811115613f4e57613f4d613f11565b5b602083019150836020820283011115613f6a57613f69613f16565b5b9250929050565b600080600060408486031215613f8a57613f896139b9565b5b6000613f9886828701613c5e565b935050602084013567ffffffffffffffff811115613fb957613fb86139be565b5b613fc586828701613f1b565b92509250509250925092565b600060208284031215613fe757613fe66139b9565b5b6000613ff584828501613c5e565b91505092915050565b60008083601f84011261401457614013613d69565b5b8235905067ffffffffffffffff81111561403157614030613f11565b5b60208301915083602082028301111561404d5761404c613f16565b5b9250929050565b60008060006040848603121561406d5761406c6139b9565b5b600084013567ffffffffffffffff81111561408b5761408a6139be565b5b61409786828701613ffe565b935093505060206140aa86828701613ba9565b9150509250925092565b600080604083850312156140cb576140ca6139b9565b5b60006140d985828601613ba9565b92505060206140ea85828601613ba9565b9150509250929050565b6000806040838503121561410b5761410a6139b9565b5b600061411985828601613c5e565b925050602061412a85828601613a95565b9150509250929050565b600067ffffffffffffffff82111561414f5761414e613d73565b5b61415882613b26565b9050602081019050919050565b600061417861417384614134565b613dd3565b90508281526020810184848401111561419457614193613d6e565b5b61419f848285613e1f565b509392505050565b600082601f8301126141bc576141bb613d69565b5b81356141cc848260208601614165565b91505092915050565b600080600080608085870312156141ef576141ee6139b9565b5b60006141fd87828801613c5e565b945050602061420e87828801613c5e565b935050604061421f87828801613ba9565b925050606085013567ffffffffffffffff8111156142405761423f6139be565b5b61424c878288016141a7565b91505092959194509250565b600080600060408486031215614271576142706139b9565b5b600061427f86828701613ba9565b935050602084013567ffffffffffffffff8111156142a05761429f6139be565b5b6142ac86828701613f1b565b92509250509250925092565b600080604083850312156142cf576142ce6139b9565b5b60006142dd85828601613c5e565b92505060206142ee85828601613c5e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061432e602083613ae2565b9150614339826142f8565b602082019050919050565b6000602082019050818103600083015261435d81614321565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143ab57607f821691505b6020821081036143be576143bd614364565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143fa601f83613ae2565b9150614405826143c4565b602082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b60008160601b9050919050565b600061444882614430565b9050919050565b600061445a8261443d565b9050919050565b61447261446d82613c0b565b61444f565b82525050565b60006144848284614461565b60148201915081905092915050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006144c9600683613ae2565b91506144d482614493565b602082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145398261397b565b91506145448361397b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614579576145786144ff565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006145ba601283613ae2565b91506145c582614584565b602082019050919050565b600060208201905081810360008301526145e9816145ad565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614626600a83613ae2565b9150614631826145f0565b602082019050919050565b6000602082019050818103600083015261465581614619565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000614692600c83613ae2565b915061469d8261465c565b602082019050919050565b600060208201905081810360008301526146c181614685565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006147028261397b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614734576147336144ff565b5b600182019050919050565b600061474a8261397b565b91506147558361397b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478e5761478d6144ff565b5b828202905092915050565b7f50726573616c6520686173206e6f7420656e6465642079657400000000000000600082015250565b60006147cf601983613ae2565b91506147da82614799565b602082019050919050565b600060208201905081810360008301526147fe816147c2565b9050919050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b600061483b601683613ae2565b915061484682614805565b602082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148cd602f83613ae2565b91506148d882614871565b604082019050919050565b600060208201905081810360008301526148fc816148c0565b9050919050565b600081905092915050565b600061491982613ad7565b6149238185614903565b9350614933818560208601613af3565b80840191505092915050565b600061494b828661490e565b9150614957828561490e565b9150614963828461490e565b9150819050949350505050565b7f53616c6520486173204e6f742053746172746564205965740000000000000000600082015250565b60006149a6601883613ae2565b91506149b182614970565b602082019050919050565b600060208201905081810360008301526149d581614999565b9050919050565b7f50726573616c652068617320456e646564000000000000000000000000000000600082015250565b6000614a12601183613ae2565b9150614a1d826149dc565b602082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000614a7e601783613ae2565b9150614a8982614a48565b602082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f45786365656473204d6178696d756d20416c6c6f77656420447572696e67205760008201527f686974656c697374000000000000000000000000000000000000000000000000602082015250565b6000614b10602883613ae2565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ba2602683613ae2565b9150614bad82614b46565b604082019050919050565b60006020820190508181036000830152614bd181614b95565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614bff82614bd8565b614c098185614be3565b9350614c19818560208601613af3565b614c2281613b26565b840191505092915050565b6000608082019050614c426000830187613c1d565b614c4f6020830186613c1d565b614c5c6040830185613985565b8181036060830152614c6e8184614bf4565b905095945050505050565b600081519050614c88816139ef565b92915050565b600060208284031215614ca457614ca36139b9565b5b6000614cb284828501614c79565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cf58261397b565b9150614d008361397b565b925082614d1057614d0f614cbb565b5b828204905092915050565b6000614d268261397b565b9150614d318361397b565b925082821015614d4457614d436144ff565b5b828203905092915050565b6000614d5a8261397b565b9150614d658361397b565b925082614d7557614d74614cbb565b5b82820690509291505056fea264697066735822122008221f245d5aae46c99a83e71ee6b8aecaaf9cb46dd0100762e6f24835aa8c7c64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0027eee01af59666fea5a9f4b072fe3dfe2bb1cbad01b809dde5da7c4ef26920b0000000000000000000000000000000000000000000000000000000062a8f6d000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000005444f47474f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444f47474f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002348747470733a2f2f696d6763646e2e646f67676f2d6e6674732e636f6d2f6a736f6e2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002948747470733a2f2f696d6763646e2e646f67676f2d6e6674732e636f6d2f68696464656e6a736f6e2f0000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102875760003560e01c8063715018a61161015a578063a475b5dd116100c1578063e49863c01161007a578063e49863c014610953578063e985e9c51461097c578063f103b433146109b9578063f2c4ce1e146109e2578063f2fde38b14610a0b578063f43a22dc14610a3457610287565b8063a475b5dd14610864578063a82524b21461087b578063b88d4fde146108a6578063c6682862146108cf578063c87b56dd146108fa578063e3e1e8ef1461093757610287565b806395d89b411161011357806395d89b41146107755780639d1b464a146107a0578063a035b1fe146107cb578063a0712d68146107f6578063a22cb46514610812578063a2b40d191461083b57610287565b8063715018a61461068f5780638606d938146106a657806389e225df146106cf5780638ba4cc3c146106f85780638c91fe92146107215780638da5cb5b1461074a57610287565b806332cb6b0c116101fe5780635a23dd99116101b75780635a23dd991461056b5780635c975abb146105a85780635e7ac138146105d35780636352211e146105fe578063698982ba1461063b57806370a082311461065257610287565b806332cb6b0c146104815780633ccfd60b146104ac57806342842e0e146104c357806351830227146104ec57806355f804b3146105175780635909c12f1461054057610287565b8063095ea7b311610250578063095ea7b31461038557806318160ddd146103ae57806321ff9970146103d9578063239c70ae1461040257806323b872dd1461042d578063249b7c191461045657610287565b80620e7fa81461028c57806301ffc9a7146102b757806302329a29146102f457806306fdde031461031d578063081812fc14610348575b600080fd5b34801561029857600080fd5b506102a1610a5f565b6040516102ae9190613994565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190613a1b565b610a65565b6040516102eb9190613a63565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190613aaa565b610b47565b005b34801561032957600080fd5b50610332610be0565b60405161033f9190613b70565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613bbe565b610c72565b60405161037c9190613c2c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613c73565b610cee565b005b3480156103ba57600080fd5b506103c3610df2565b6040516103d09190613994565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613ce9565b610e09565b005b34801561040e57600080fd5b50610417610e8f565b6040516104249190613994565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613d16565b610eb3565b005b34801561046257600080fd5b5061046b610ec3565b6040516104789190613994565b60405180910390f35b34801561048d57600080fd5b50610496610ec9565b6040516104a39190613994565b60405180910390f35b3480156104b857600080fd5b506104c1610ecf565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613d16565b610fab565b005b3480156104f857600080fd5b50610501610fcb565b60405161050e9190613a63565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613e9e565b610fde565b005b34801561054c57600080fd5b50610555611074565b6040516105629190613ef6565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190613f71565b61107a565b60405161059f9190613a63565b60405180910390f35b3480156105b457600080fd5b506105bd611110565b6040516105ca9190613a63565b60405180910390f35b3480156105df57600080fd5b506105e8611123565b6040516105f59190613994565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613bbe565b611129565b6040516106329190613c2c565b60405180910390f35b34801561064757600080fd5b5061065061113f565b005b34801561065e57600080fd5b5061067960048036038101906106749190613fd1565b6111cf565b6040516106869190613994565b60405180910390f35b34801561069b57600080fd5b506106a461129e565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613bbe565b611326565b005b3480156106db57600080fd5b506106f660048036038101906106f19190614054565b6113ac565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613c73565b6115de565b005b34801561072d57600080fd5b50610748600480360381019061074391906140b4565b6117c0565b005b34801561075657600080fd5b5061075f611859565b60405161076c9190613c2c565b60405180910390f35b34801561078157600080fd5b5061078a611883565b6040516107979190613b70565b60405180910390f35b3480156107ac57600080fd5b506107b5611915565b6040516107c29190613994565b60405180910390f35b3480156107d757600080fd5b506107e0611934565b6040516107ed9190613994565b60405180910390f35b610810600480360381019061080b9190613bbe565b61193a565b005b34801561081e57600080fd5b50610839600480360381019061083491906140f4565b611b7f565b005b34801561084757600080fd5b50610862600480360381019061085d9190613bbe565b611cf6565b005b34801561087057600080fd5b50610879611d7c565b005b34801561088757600080fd5b50610890611e15565b60405161089d9190613994565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c891906141d5565b611e1b565b005b3480156108db57600080fd5b506108e4611e93565b6040516108f19190613b70565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190613bbe565b611ecc565b60405161092e9190613b70565b60405180910390f35b610951600480360381019061094c9190614258565b6120db565b005b34801561095f57600080fd5b5061097a600480360381019061097591906140b4565b612420565b005b34801561098857600080fd5b506109a3600480360381019061099e91906142b8565b6124ae565b6040516109b09190613a63565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db9190613bbe565b6124c2565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613e9e565b612548565b005b348015610a1757600080fd5b50610a326004803603810190610a2d9190613fd1565b6125de565b005b348015610a4057600080fd5b50610a496126d5565b604051610a569190613994565b60405180910390f35b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b405750610b3f826126db565b5b9050919050565b610b4f612745565b73ffffffffffffffffffffffffffffffffffffffff16610b6d611859565b73ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90614344565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060028054610bef90614393565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1b90614393565b8015610c685780601f10610c3d57610100808354040283529160200191610c68565b820191906000526020600020905b815481529060010190602001808311610c4b57829003601f168201915b5050505050905090565b6000610c7d8261274d565b610cb3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cf982611129565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d7f612745565b73ffffffffffffffffffffffffffffffffffffffff1614610de257610dab81610da6612745565b6124ae565b610de1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ded83838361279b565b505050565b6000610dfc61284d565b6001546000540303905090565b610e11612745565b73ffffffffffffffffffffffffffffffffffffffff16610e2f611859565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90614344565b60405180910390fd5b8060108190555050565b600080601354421015610ea6576011549050610eac565b60125490505b8091505090565b610ebe838383612852565b505050565b60135481565b600c5481565b610ed7612745565b73ffffffffffffffffffffffffffffffffffffffff16610ef5611859565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614344565b60405180910390fd5b600260095403610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790614410565b60405180910390fd5b6002600981905550610fa133612d06565b6001600981905550565b610fc683838360405180602001604052806000815250611e1b565b505050565b600d60019054906101000a900460ff1681565b610fe6612745565b73ffffffffffffffffffffffffffffffffffffffff16611004611859565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614344565b60405180910390fd5b80600a9080519060200190611070929190613895565b5050565b60105481565b6000808460405160200161108e9190614478565b6040516020818303038152906040528051906020012090506110f4848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612d50565b15611103576001915050611109565b60009150505b9392505050565b600d60009054906101000a900460ff1681565b60115481565b600061113482612d67565b600001519050919050565b611147612745565b73ffffffffffffffffffffffffffffffffffffffff16611165611859565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290614344565b60405180910390fd5b6111cd6111c6612745565b6001612ff2565b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611236576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112a6612745565b73ffffffffffffffffffffffffffffffffffffffff166112c4611859565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190614344565b60405180910390fd5b6113246000613010565b565b61132e612745565b73ffffffffffffffffffffffffffffffffffffffff1661134c611859565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614344565b60405180910390fd5b80600f8190555050565b6113b4612745565b73ffffffffffffffffffffffffffffffffffffffff166113d2611859565b73ffffffffffffffffffffffffffffffffffffffff1614611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90614344565b60405180910390fd5b600d60009054906101000a900460ff1615611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906144df565b60405180910390fd5b80611481610df2565b61148b919061452e565b600c5410156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c6906145d0565b60405180910390fd5b60008111611512576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115099061463c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906146a8565b60405180910390fd5b60005b838390508110156115d85760008484838181106115a3576115a26146c8565b5b90506020020160208101906115b89190613fd1565b90506115c48184612ff2565b5080806115d0906146f7565b915050611583565b50505050565b6115e6612745565b73ffffffffffffffffffffffffffffffffffffffff16611604611859565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614344565b60405180910390fd5b600d60009054906101000a900460ff16156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a1906144df565b60405180910390fd5b806116b3610df2565b6116bd919061452e565b600c541015611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906145d0565b60405180910390fd5b60008111611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061463c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a9906146a8565b60405180910390fd5b6117bc8282612ff2565b5050565b6117c8612745565b73ffffffffffffffffffffffffffffffffffffffff166117e6611859565b73ffffffffffffffffffffffffffffffffffffffff161461183c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183390614344565b60405180910390fd5b81601481905550808261184f919061452e565b6013819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461189290614393565b80601f01602080910402602001604051908101604052809291908181526020018280546118be90614393565b801561190b5780601f106118e05761010080835404028352916020019161190b565b820191906000526020600020905b8154815290600101906020018083116118ee57829003601f168201915b5050505050905090565b600060135442101561192b57600f549050611931565b600e5490505b90565b600e5481565b6000339050600d60009054906101000a900460ff161561198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906144df565b60405180910390fd5b81611998610df2565b6119a2919061452e565b600c5410156119e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dd906145d0565b60405180910390fd5b60008211611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061463c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e906146a8565b60405180910390fd5b6000600e54905060008382611aac919061473f565b90506013544211611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906147e5565b60405180910390fd5b611afa611859565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b6f57348114611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590614851565b60405180910390fd5b5b611b798385612ff2565b50505050565b611b87612745565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611beb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bf8612745565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ca5612745565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cea9190613a63565b60405180910390a35050565b611cfe612745565b73ffffffffffffffffffffffffffffffffffffffff16611d1c611859565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990614344565b60405180910390fd5b80600e8190555050565b611d84612745565b73ffffffffffffffffffffffffffffffffffffffff16611da2611859565b73ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614344565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b60145481565b611e26848484612852565b611e458373ffffffffffffffffffffffffffffffffffffffff166130d6565b15611e8d57611e56848484846130f9565b611e8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611ed78261274d565b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906148e3565b60405180910390fd5b60001515600d60019054906101000a900460ff16151503611fc357600b8054611f3e90614393565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6a90614393565b8015611fb75780601f10611f8c57610100808354040283529160200191611fb7565b820191906000526020600020905b815481529060010190602001808311611f9a57829003601f168201915b505050505090506120d6565b6000600a8054611fd290614393565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffe90614393565b801561204b5780601f106120205761010080835404028352916020019161204b565b820191906000526020600020905b81548152906001019060200180831161202e57829003601f168201915b50505050509050600081511161207057604051806020016040528060008152506120d2565b8061207a84613249565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016120c29392919061493f565b6040516020818303038152906040525b9150505b919050565b6000339050600d60009054906101000a900460ff1615612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906144df565b60405180910390fd5b83612139610df2565b612143919061452e565b600c541015612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e906145d0565b60405180910390fd5b600084116121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c19061463c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f906146a8565b60405180910390fd5b600061224582858561107a565b90506000612252336111cf565b9050600061225e610e8f565b9050600087600f54612270919061473f565b905060145442116122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad906149bc565b60405180910390fd5b60135442106122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614a28565b60405180910390fd5b612302611859565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461240c57600115158415151461237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290614a94565b60405180910390fd5b818884612388919061452e565b11156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090614b26565b60405180910390fd5b34811461240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240290614851565b60405180910390fd5b5b6124168589612ff2565b5050505050505050565b612428612745565b73ffffffffffffffffffffffffffffffffffffffff16612446611859565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390614344565b60405180910390fd5b81601181905550806012819055505050565b60006124ba83836133a9565b905092915050565b6124ca612745565b73ffffffffffffffffffffffffffffffffffffffff166124e8611859565b73ffffffffffffffffffffffffffffffffffffffff161461253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614344565b60405180910390fd5b80600c8190555050565b612550612745565b73ffffffffffffffffffffffffffffffffffffffff1661256e611859565b73ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb90614344565b60405180910390fd5b80600b90805190602001906125da929190613895565b5050565b6125e6612745565b73ffffffffffffffffffffffffffffffffffffffff16612604611859565b73ffffffffffffffffffffffffffffffffffffffff161461265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190614344565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090614bb8565b60405180910390fd5b6126d281613010565b50565b60125481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161275861284d565b11158015612767575060005482105b8015612794575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061285d82612d67565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166128e9612745565b73ffffffffffffffffffffffffffffffffffffffff161480612918575061291785612912612745565b6124ae565b5b8061295d5750612926612745565b73ffffffffffffffffffffffffffffffffffffffff1661294584610c72565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612996576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a09858585600161343d565b612a156000848761279b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612c94576000548214612c9357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cff8585856001613443565b5050505050565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612d4c573d6000803e3d6000fd5b5050565b600082612d5d8584613449565b1490509392505050565b612d6f61391b565b600082905080612d7d61284d565b11612fbb57600054811015612fba576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612fb857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e9c578092505050612fed565b5b600115612fb757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb2578092505050612fed565b612e9d565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61300c8282604051806020016040528060008152506134be565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311f612745565b8786866040518563ffffffff1660e01b81526004016131419493929190614c2d565b6020604051808303816000875af192505050801561317d57506040513d601f19601f8201168201806040525081019061317a9190614c8e565b60015b6131f6573d80600081146131ad576040519150601f19603f3d011682016040523d82523d6000602084013e6131b2565b606091505b5060008151036131ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613290576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133a4565b600082905060005b600082146132c25780806132ab906146f7565b915050600a826132bb9190614cea565b9150613298565b60008167ffffffffffffffff8111156132de576132dd613d73565b5b6040519080825280601f01601f1916602001820160405280156133105781602001600182028036833780820191505090505b5090505b6000851461339d576001826133299190614d1b565b9150600a856133389190614d4f565b6030613344919061452e565b60f81b81838151811061335a576133596146c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133969190614cea565b9450613314565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b60008082905060005b84518110156134b35760008582815181106134705761346f6146c8565b5b602002602001015190508083116134925761348b838261387e565b925061349f565b61349c818461387e565b92505b5080806134ab906146f7565b915050613452565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361352a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613564576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613571600085838661343d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506137328673ffffffffffffffffffffffffffffffffffffffff166130d6565b156137f7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137a760008784806001019550876130f9565b6137dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106137385782600054146137f257600080fd5b613862565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106137f8575b8160008190555050506138786000858386613443565b50505050565b600082600052816020526040600020905092915050565b8280546138a190614393565b90600052602060002090601f0160209004810192826138c3576000855561390a565b82601f106138dc57805160ff191683800117855561390a565b8280016001018555821561390a579182015b828111156139095782518255916020019190600101906138ee565b5b509050613917919061395e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561397757600081600090555060010161395f565b5090565b6000819050919050565b61398e8161397b565b82525050565b60006020820190506139a96000830184613985565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f8816139c3565b8114613a0357600080fd5b50565b600081359050613a15816139ef565b92915050565b600060208284031215613a3157613a306139b9565b5b6000613a3f84828501613a06565b91505092915050565b60008115159050919050565b613a5d81613a48565b82525050565b6000602082019050613a786000830184613a54565b92915050565b613a8781613a48565b8114613a9257600080fd5b50565b600081359050613aa481613a7e565b92915050565b600060208284031215613ac057613abf6139b9565b5b6000613ace84828501613a95565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b11578082015181840152602081019050613af6565b83811115613b20576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b4282613ad7565b613b4c8185613ae2565b9350613b5c818560208601613af3565b613b6581613b26565b840191505092915050565b60006020820190508181036000830152613b8a8184613b37565b905092915050565b613b9b8161397b565b8114613ba657600080fd5b50565b600081359050613bb881613b92565b92915050565b600060208284031215613bd457613bd36139b9565b5b6000613be284828501613ba9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c1682613beb565b9050919050565b613c2681613c0b565b82525050565b6000602082019050613c416000830184613c1d565b92915050565b613c5081613c0b565b8114613c5b57600080fd5b50565b600081359050613c6d81613c47565b92915050565b60008060408385031215613c8a57613c896139b9565b5b6000613c9885828601613c5e565b9250506020613ca985828601613ba9565b9150509250929050565b6000819050919050565b613cc681613cb3565b8114613cd157600080fd5b50565b600081359050613ce381613cbd565b92915050565b600060208284031215613cff57613cfe6139b9565b5b6000613d0d84828501613cd4565b91505092915050565b600080600060608486031215613d2f57613d2e6139b9565b5b6000613d3d86828701613c5e565b9350506020613d4e86828701613c5e565b9250506040613d5f86828701613ba9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dab82613b26565b810181811067ffffffffffffffff82111715613dca57613dc9613d73565b5b80604052505050565b6000613ddd6139af565b9050613de98282613da2565b919050565b600067ffffffffffffffff821115613e0957613e08613d73565b5b613e1282613b26565b9050602081019050919050565b82818337600083830152505050565b6000613e41613e3c84613dee565b613dd3565b905082815260208101848484011115613e5d57613e5c613d6e565b5b613e68848285613e1f565b509392505050565b600082601f830112613e8557613e84613d69565b5b8135613e95848260208601613e2e565b91505092915050565b600060208284031215613eb457613eb36139b9565b5b600082013567ffffffffffffffff811115613ed257613ed16139be565b5b613ede84828501613e70565b91505092915050565b613ef081613cb3565b82525050565b6000602082019050613f0b6000830184613ee7565b92915050565b600080fd5b600080fd5b60008083601f840112613f3157613f30613d69565b5b8235905067ffffffffffffffff811115613f4e57613f4d613f11565b5b602083019150836020820283011115613f6a57613f69613f16565b5b9250929050565b600080600060408486031215613f8a57613f896139b9565b5b6000613f9886828701613c5e565b935050602084013567ffffffffffffffff811115613fb957613fb86139be565b5b613fc586828701613f1b565b92509250509250925092565b600060208284031215613fe757613fe66139b9565b5b6000613ff584828501613c5e565b91505092915050565b60008083601f84011261401457614013613d69565b5b8235905067ffffffffffffffff81111561403157614030613f11565b5b60208301915083602082028301111561404d5761404c613f16565b5b9250929050565b60008060006040848603121561406d5761406c6139b9565b5b600084013567ffffffffffffffff81111561408b5761408a6139be565b5b61409786828701613ffe565b935093505060206140aa86828701613ba9565b9150509250925092565b600080604083850312156140cb576140ca6139b9565b5b60006140d985828601613ba9565b92505060206140ea85828601613ba9565b9150509250929050565b6000806040838503121561410b5761410a6139b9565b5b600061411985828601613c5e565b925050602061412a85828601613a95565b9150509250929050565b600067ffffffffffffffff82111561414f5761414e613d73565b5b61415882613b26565b9050602081019050919050565b600061417861417384614134565b613dd3565b90508281526020810184848401111561419457614193613d6e565b5b61419f848285613e1f565b509392505050565b600082601f8301126141bc576141bb613d69565b5b81356141cc848260208601614165565b91505092915050565b600080600080608085870312156141ef576141ee6139b9565b5b60006141fd87828801613c5e565b945050602061420e87828801613c5e565b935050604061421f87828801613ba9565b925050606085013567ffffffffffffffff8111156142405761423f6139be565b5b61424c878288016141a7565b91505092959194509250565b600080600060408486031215614271576142706139b9565b5b600061427f86828701613ba9565b935050602084013567ffffffffffffffff8111156142a05761429f6139be565b5b6142ac86828701613f1b565b92509250509250925092565b600080604083850312156142cf576142ce6139b9565b5b60006142dd85828601613c5e565b92505060206142ee85828601613c5e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061432e602083613ae2565b9150614339826142f8565b602082019050919050565b6000602082019050818103600083015261435d81614321565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143ab57607f821691505b6020821081036143be576143bd614364565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143fa601f83613ae2565b9150614405826143c4565b602082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b60008160601b9050919050565b600061444882614430565b9050919050565b600061445a8261443d565b9050919050565b61447261446d82613c0b565b61444f565b82525050565b60006144848284614461565b60148201915081905092915050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006144c9600683613ae2565b91506144d482614493565b602082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145398261397b565b91506145448361397b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614579576145786144ff565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006145ba601283613ae2565b91506145c582614584565b602082019050919050565b600060208201905081810360008301526145e9816145ad565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614626600a83613ae2565b9150614631826145f0565b602082019050919050565b6000602082019050818103600083015261465581614619565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000614692600c83613ae2565b915061469d8261465c565b602082019050919050565b600060208201905081810360008301526146c181614685565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006147028261397b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614734576147336144ff565b5b600182019050919050565b600061474a8261397b565b91506147558361397b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478e5761478d6144ff565b5b828202905092915050565b7f50726573616c6520686173206e6f7420656e6465642079657400000000000000600082015250565b60006147cf601983613ae2565b91506147da82614799565b602082019050919050565b600060208201905081810360008301526147fe816147c2565b9050919050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b600061483b601683613ae2565b915061484682614805565b602082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148cd602f83613ae2565b91506148d882614871565b604082019050919050565b600060208201905081810360008301526148fc816148c0565b9050919050565b600081905092915050565b600061491982613ad7565b6149238185614903565b9350614933818560208601613af3565b80840191505092915050565b600061494b828661490e565b9150614957828561490e565b9150614963828461490e565b9150819050949350505050565b7f53616c6520486173204e6f742053746172746564205965740000000000000000600082015250565b60006149a6601883613ae2565b91506149b182614970565b602082019050919050565b600060208201905081810360008301526149d581614999565b9050919050565b7f50726573616c652068617320456e646564000000000000000000000000000000600082015250565b6000614a12601183613ae2565b9150614a1d826149dc565b602082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000614a7e601783613ae2565b9150614a8982614a48565b602082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f45786365656473204d6178696d756d20416c6c6f77656420447572696e67205760008201527f686974656c697374000000000000000000000000000000000000000000000000602082015250565b6000614b10602883613ae2565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ba2602683613ae2565b9150614bad82614b46565b604082019050919050565b60006020820190508181036000830152614bd181614b95565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614bff82614bd8565b614c098185614be3565b9350614c19818560208601613af3565b614c2281613b26565b840191505092915050565b6000608082019050614c426000830187613c1d565b614c4f6020830186613c1d565b614c5c6040830185613985565b8181036060830152614c6e8184614bf4565b905095945050505050565b600081519050614c88816139ef565b92915050565b600060208284031215614ca457614ca36139b9565b5b6000614cb284828501614c79565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cf58261397b565b9150614d008361397b565b925082614d1057614d0f614cbb565b5b828204905092915050565b6000614d268261397b565b9150614d318361397b565b925082821015614d4457614d436144ff565b5b828203905092915050565b6000614d5a8261397b565b9150614d658361397b565b925082614d7557614d74614cbb565b5b82820690509291505056fea264697066735822122008221f245d5aae46c99a83e71ee6b8aecaaf9cb46dd0100762e6f24835aa8c7c64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0027eee01af59666fea5a9f4b072fe3dfe2bb1cbad01b809dde5da7c4ef26920b0000000000000000000000000000000000000000000000000000000062a8f6d000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000005444f47474f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444f47474f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002348747470733a2f2f696d6763646e2e646f67676f2d6e6674732e636f6d2f6a736f6e2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002948747470733a2f2f696d6763646e2e646f67676f2d6e6674732e636f6d2f68696464656e6a736f6e2f0000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): DOGGO
Arg [1] : _symbol (string): DOGGO
Arg [2] : _initBaseURI (string): Https://imgcdn.doggo-nfts.com/json/
Arg [3] : _initNotRevealedUri (string): Https://imgcdn.doggo-nfts.com/hiddenjson/
Arg [4] : _initRoot (bytes32): 0x027eee01af59666fea5a9f4b072fe3dfe2bb1cbad01b809dde5da7c4ef26920b
Arg [5] : _presaleStartTime (uint256): 1655240400
Arg [6] : _duration (uint256): 86400
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 027eee01af59666fea5a9f4b072fe3dfe2bb1cbad01b809dde5da7c4ef26920b
Arg [5] : 0000000000000000000000000000000000000000000000000000000062a8f6d0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 444f47474f000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 444f47474f000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [12] : 48747470733a2f2f696d6763646e2e646f67676f2d6e6674732e636f6d2f6a73
Arg [13] : 6f6e2f0000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [15] : 48747470733a2f2f696d6763646e2e646f67676f2d6e6674732e636f6d2f6869
Arg [16] : 6464656e6a736f6e2f0000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,393.11 | 0.54 | $1,832.28 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.