Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 480 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19894200 | 223 days ago | IN | 0 ETH | 0.00018701 | ||||
Transfer From | 19505606 | 277 days ago | IN | 0 ETH | 0.0011933 | ||||
Set Approval For... | 18287371 | 448 days ago | IN | 0 ETH | 0.00014204 | ||||
Set Approval For... | 18077379 | 478 days ago | IN | 0 ETH | 0.00044279 | ||||
Transfer From | 17269305 | 591 days ago | IN | 0 ETH | 0.0038206 | ||||
Set Approval For... | 17153517 | 607 days ago | IN | 0 ETH | 0.00156788 | ||||
Set Approval For... | 16992218 | 630 days ago | IN | 0 ETH | 0.00133708 | ||||
Set Approval For... | 16899603 | 643 days ago | IN | 0 ETH | 0.00133449 | ||||
Set Approval For... | 16702363 | 671 days ago | IN | 0 ETH | 0.00113792 | ||||
Set Approval For... | 16132878 | 751 days ago | IN | 0 ETH | 0.000651 | ||||
Set Approval For... | 16020417 | 766 days ago | IN | 0 ETH | 0.00060391 | ||||
Set Approval For... | 15890507 | 784 days ago | IN | 0 ETH | 0.00129833 | ||||
Set Approval For... | 15786029 | 799 days ago | IN | 0 ETH | 0.00098517 | ||||
Set Approval For... | 15783451 | 799 days ago | IN | 0 ETH | 0.00059837 | ||||
Set Approval For... | 15771456 | 801 days ago | IN | 0 ETH | 0.00077079 | ||||
Safe Transfer Fr... | 15763855 | 802 days ago | IN | 0 ETH | 0.00089984 | ||||
Safe Transfer Fr... | 15683436 | 813 days ago | IN | 0 ETH | 0.00184145 | ||||
Transfer From | 15431023 | 851 days ago | IN | 0 ETH | 0.00076963 | ||||
Transfer From | 15311846 | 870 days ago | IN | 0 ETH | 0.00079477 | ||||
Set Approval For... | 15245948 | 880 days ago | IN | 0 ETH | 0.00042554 | ||||
Set Approval For... | 15227753 | 883 days ago | IN | 0 ETH | 0.00077771 | ||||
Set Approval For... | 15225042 | 884 days ago | IN | 0 ETH | 0.00037936 | ||||
Set Approval For... | 15205068 | 887 days ago | IN | 0 ETH | 0.00037518 | ||||
Safe Transfer Fr... | 15203584 | 887 days ago | IN | 0 ETH | 0.00019419 | ||||
Safe Transfer Fr... | 15203584 | 887 days ago | IN | 0 ETH | 0.00021205 |
Loading...
Loading
Contract Name:
NFT_Contract
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity Multiple files format)
pragma solidity 0.8.11; // SPDX-License-Identifier: MIT import "./ERC721A.sol"; import "./Ownable.sol"; import "./MerkleProof.sol"; contract NFT_Contract is ERC721A, Ownable { using Strings for uint256; mapping(address => uint256) public whitelistClaimed; string public baseURI; uint256 public whitelistCost = 0.11 ether; uint256 public publicCost = 0.11 ether; bool public whitelistEnabled = false; string public baseExtension = ".json"; bool public paused = true; bool public freeMint; bytes32 public merkleRoot; uint256 public maxWhitelist = 1; // initial for the free mint uint256 public maxPublic = 10; uint256 public maxTX = 1; uint256 public maxSupply = 3333; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); } function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof) public payable { uint256 supply = totalSupply(); require(quantity <= maxTX, "Please Check Your Quantity Amount"); require(supply + quantity <= maxSupply, "Max Supply Reached"); require(whitelistEnabled, "The whitelist sale is not enabled!"); require( whitelistClaimed[msg.sender] + quantity <= maxWhitelist, "You're not allowed to mint this Much!" ); if (!freeMint) require( msg.value >= whitelistCost * quantity, "Insufficient Funds" ); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!" ); whitelistClaimed[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable { uint256 supply = totalSupply(); require(!paused, "The contract is paused!"); require(quantity > 0, "Quantity Must Be Higher Than Zero"); require(supply + quantity <= maxSupply, "Max Supply Reached"); if (msg.sender != owner()) { require( quantity <= maxPublic, "You're Not Allowed To Mint more than maxMint Amount" ); require(msg.value >= publicCost * quantity, "Insufficient Funds"); } _safeMint(msg.sender, quantity); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function setCost(uint256 _whitelistCost, uint256 _publicCost) public onlyOwner { whitelistCost = _whitelistCost; publicCost = _publicCost; } function setFreeMint(bool _Status) public onlyOwner { freeMint = _Status; } function ActivateWhitelist() public onlyOwner { freeMint = false; maxWhitelist = 5; whitelistEnabled = true; } function setMax( uint256 _whitelist, uint256 _public, uint256 _normalTX ) public onlyOwner { maxWhitelist = _whitelist; maxPublic = _public; maxTX = _normalTX; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setWhitelistEnabled(bool _state) public onlyOwner { whitelistEnabled = _state; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 // Creator: Chiru Labs pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); 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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received( address(0), to, updatedIndex, _data ), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } }
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"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ActivateWhitelist","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_Status","type":"bool"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"},{"internalType":"uint256","name":"_normalTX","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
670186cc6acd4b0000600a819055600b55600c805460ff1916905560c06040526005608081905264173539b7b760d91b60a09081526200004391600d9190620001c5565b50600e805460ff191660019081179091556010819055600a601155601255610d056013553480156200007457600080fd5b5060405162002bfa38038062002bfa833981016040819052620000979162000338565b825183908390620000b0906001906020850190620001c5565b508051620000c6906002906020840190620001c5565b505050620000e3620000dd620000f760201b60201c565b620000fb565b620000ee816200014d565b50505062000406565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c1906009906020840190620001c5565b5050565b828054620001d390620003c9565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029357600080fd5b81516001600160401b0380821115620002b057620002b06200026b565b604051601f8301601f19908116603f01168101908282118183101715620002db57620002db6200026b565b81604052838152602092508683858801011115620002f857600080fd5b600091505b838210156200031c5785820183015181830184015290820190620002fd565b838211156200032e5760008385830101525b9695505050505050565b6000806000606084860312156200034e57600080fd5b83516001600160401b03808211156200036657600080fd5b620003748783880162000281565b945060208601519150808211156200038b57600080fd5b620003998783880162000281565b93506040860151915080821115620003b057600080fd5b50620003bf8682870162000281565b9150509250925092565b600181811c90821680620003de57607f821691505b602082108114156200040057634e487b7160e01b600052602260045260246000fd5b50919050565b6127e480620004166000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063bf0d96c3116100b6578063da3ef23f1161007a578063da3ef23f146106bf578063db4bec44146106df578063e7b99ec71461070c578063e985e9c514610722578063ebae7c1c1461076b578063f2fde38b1461078157600080fd5b8063bf0d96c31461064b578063c668286214610661578063c87b56dd14610676578063d2cab05614610696578063d5abeb01146106a957600080fd5b80638693da20116101085780638693da20146105af5780638da5cb5b146105c557806395d89b41146105e3578063a0712d68146105f8578063a22cb4651461060b578063b88d4fde1461062b57600080fd5b806370a0823114610524578063715018a6146105445780637696e088146105595780637cb64759146105795780637dc429751461059957600080fd5b80633ccfd60b116101dd57806355f804b3116101a157806355f804b3146104765780635b70ea9f146104965780635c975abb146104b55780636352211e146104cf5780636c0360eb146104ef5780636f6098521461050457600080fd5b80633ccfd60b146103e75780633f815b9a146103fc57806342842e0e1461041c5780634f6ccce71461043c57806351fb012d1461045c57600080fd5b806316c38b3c1161022f57806316c38b3c1461033d57806318160ddd1461035d57806323b872dd1461037c5780632d5943f01461039c5780632eb4a7ab146103b15780632f745c59146103c757600080fd5b806301ffc9a71461026c578063052d9e7e146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612116565b6107a1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612148565b61080e565b005b3480156102cf57600080fd5b506102d8610854565b60405161029891906121bb565b3480156102f157600080fd5b506103056103003660046121ce565b6108e6565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046121fe565b610971565b34801561034957600080fd5b506102c1610358366004612148565b610a89565b34801561036957600080fd5b506000545b604051908152602001610298565b34801561038857600080fd5b506102c1610397366004612228565b610ac6565b3480156103a857600080fd5b506102c1610ad1565b3480156103bd57600080fd5b5061036e600f5481565b3480156103d357600080fd5b5061036e6103e23660046121fe565b610b1a565b3480156103f357600080fd5b506102c1610c77565b34801561040857600080fd5b506102c1610417366004612148565b610d15565b34801561042857600080fd5b506102c1610437366004612228565b610d59565b34801561044857600080fd5b5061036e6104573660046121ce565b610d74565b34801561046857600080fd5b50600c5461028c9060ff1681565b34801561048257600080fd5b506102c16104913660046122f0565b610dd6565b3480156104a257600080fd5b50600e5461028c90610100900460ff1681565b3480156104c157600080fd5b50600e5461028c9060ff1681565b3480156104db57600080fd5b506103056104ea3660046121ce565b610e17565b3480156104fb57600080fd5b506102d8610e29565b34801561051057600080fd5b506102c161051f366004612339565b610eb7565b34801561053057600080fd5b5061036e61053f366004612365565b610eef565b34801561055057600080fd5b506102c1610f80565b34801561056557600080fd5b506102c1610574366004612380565b610fb6565b34801561058557600080fd5b506102c16105943660046121ce565b610feb565b3480156105a557600080fd5b5061036e60115481565b3480156105bb57600080fd5b5061036e600b5481565b3480156105d157600080fd5b506007546001600160a01b0316610305565b3480156105ef57600080fd5b506102d861101a565b6102c16106063660046121ce565b611029565b34801561061757600080fd5b506102c16106263660046123a2565b611205565b34801561063757600080fd5b506102c16106463660046123d5565b6112ca565b34801561065757600080fd5b5061036e60105481565b34801561066d57600080fd5b506102d8611303565b34801561068257600080fd5b506102d86106913660046121ce565b611310565b6102c16106a4366004612451565b6113e0565b3480156106b557600080fd5b5061036e60135481565b3480156106cb57600080fd5b506102c16106da3660046122f0565b6116b4565b3480156106eb57600080fd5b5061036e6106fa366004612365565b60086020526000908152604090205481565b34801561071857600080fd5b5061036e600a5481565b34801561072e57600080fd5b5061028c61073d3660046124d0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077757600080fd5b5061036e60125481565b34801561078d57600080fd5b506102c161079c366004612365565b6116f1565b60006001600160e01b031982166380ac58cd60e01b14806107d257506001600160e01b03198216635b5e139f60e01b145b806107ed57506001600160e01b0319821663780e9d6360e01b145b8061080857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108415760405162461bcd60e51b8152600401610838906124fa565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600180546108639061252f565b80601f016020809104026020016040519081016040528092919081815260200182805461088f9061252f565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108f3826000541190565b6109555760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610838565b506000908152600560205260409020546001600160a01b031690565b600061097c82610e17565b9050806001600160a01b0316836001600160a01b031614156109eb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610838565b336001600160a01b0382161480610a075750610a07813361073d565b610a795760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610838565b610a84838383611789565b505050565b6007546001600160a01b03163314610ab35760405162461bcd60e51b8152600401610838906124fa565b600e805460ff1916911515919091179055565b610a848383836117e5565b6007546001600160a01b03163314610afb5760405162461bcd60e51b8152600401610838906124fa565b600e805461ff00191690556005601055600c805460ff19166001179055565b6000610b2583610eef565b8210610b7e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610838565b600080549080805b83811015610c17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bd957805192505b876001600160a01b0316836001600160a01b03161415610c0e5786841415610c075750935061080892505050565b6001909301925b50600101610b86565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610838565b6007546001600160a01b03163314610ca15760405162461bcd60e51b8152600401610838906124fa565b6000610cb56007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cff576040519150601f19603f3d011682016040523d82523d6000602084013e610d04565b606091505b5050905080610d1257600080fd5b50565b6007546001600160a01b03163314610d3f5760405162461bcd60e51b8152600401610838906124fa565b600e80549115156101000261ff0019909216919091179055565b610a84838383604051806020016040528060008152506112ca565b600080548210610dd25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610838565b5090565b6007546001600160a01b03163314610e005760405162461bcd60e51b8152600401610838906124fa565b8051610e13906009906020840190612070565b5050565b6000610e2282611ac7565b5192915050565b60098054610e369061252f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e629061252f565b8015610eaf5780601f10610e8457610100808354040283529160200191610eaf565b820191906000526020600020905b815481529060010190602001808311610e9257829003601f168201915b505050505081565b6007546001600160a01b03163314610ee15760405162461bcd60e51b8152600401610838906124fa565b601092909255601155601255565b60006001600160a01b038216610f5b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610838565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610838906124fa565b610fb46000611b9e565b565b6007546001600160a01b03163314610fe05760405162461bcd60e51b8152600401610838906124fa565b600a91909155600b55565b6007546001600160a01b031633146110155760405162461bcd60e51b8152600401610838906124fa565b600f55565b6060600280546108639061252f565b600054600e5460ff161561107f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610838565b600082116110d95760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610838565b6013546110e68383612580565b11156111295760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610838565b6007546001600160a01b031633146111fb576011548211156111a95760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610838565b81600b546111b79190612598565b3410156111fb5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610838565b610e133383611bf0565b6001600160a01b03821633141561125e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610838565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112d58484846117e5565b6112e184848484611c0a565b6112fd5760405162461bcd60e51b8152600401610838906125b7565b50505050565b600d8054610e369061252f565b606061131d826000541190565b6113815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610838565b600061138b611d09565b905060008151116113ab57604051806020016040528060008152506113d9565b806113b584611d18565b600d6040516020016113c99392919061260a565b6040516020818303038152906040525b9392505050565b60005460125484111561143f5760405162461bcd60e51b815260206004820152602160248201527f506c6561736520436865636b20596f7572205175616e7469747920416d6f756e6044820152601d60fa1b6064820152608401610838565b60135461144c8583612580565b111561148f5760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610838565b600c5460ff166114ec5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610838565b6010543360009081526008602052604090205461150a908690612580565b11156115665760405162461bcd60e51b815260206004820152602560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206044820152644d7563682160d81b6064820152608401610838565b600e54610100900460ff166115c75783600a546115839190612598565b3410156115c75760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610838565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061164184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611e16565b61167e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610838565b336000908152600860205260408120805487929061169d908490612580565b909155506116ad90503386611bf0565b5050505050565b6007546001600160a01b031633146116de5760405162461bcd60e51b8152600401610838906124fa565b8051610e1390600d906020840190612070565b6007546001600160a01b0316331461171b5760405162461bcd60e51b8152600401610838906124fa565b6001600160a01b0381166117805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610838565b610d1281611b9e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f082611ac7565b80519091506000906001600160a01b0316336001600160a01b0316148061182757503361181c846108e6565b6001600160a01b0316145b8061183957508151611839903361073d565b9050806118a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610838565b846001600160a01b031682600001516001600160a01b0316146119175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610838565b6001600160a01b03841661197b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610838565b61198b6000848460000151611789565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a8057611a33816000541190565b15611a80578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ad565b6040805180820190915260008082526020820152611ae6826000541190565b611b455760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610838565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b94579392505050565b5060001901611b47565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e13828260405180602001604052806000815250611e2c565b60006001600160a01b0384163b15611cfd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4e9033908990889088906004016126ce565b6020604051808303816000875af1925050508015611c89575060408051601f3d908101601f19168201909252611c869181019061270b565b60015b611ce3573d808015611cb7576040519150601f19603f3d011682016040523d82523d6000602084013e611cbc565b606091505b508051611cdb5760405162461bcd60e51b8152600401610838906125b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d01565b5060015b949350505050565b6060600980546108639061252f565b606081611d3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d665780611d5081612728565b9150611d5f9050600a83612759565b9150611d40565b60008167ffffffffffffffff811115611d8157611d81612264565b6040519080825280601f01601f191660200182016040528015611dab576020820181803683370190505b5090505b8415611d0157611dc060018361276d565b9150611dcd600a86612784565b611dd8906030612580565b60f81b818381518110611ded57611ded612798565b60200101906001600160f81b031916908160001a905350611e0f600a86612759565b9450611daf565b600082611e238584611e39565b14949350505050565b610a848383836001611ead565b600081815b8451811015611ea5576000858281518110611e5b57611e5b612798565b60200260200101519050808311611e815760008381526020829052604090209250611e92565b600081815260208490526040902092505b5080611e9d81612728565b915050611e3e565b509392505050565b6000546001600160a01b038516611f105760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610838565b83611f6e5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610838565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156120675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561205b5761203f6000888488611c0a565b61205b5760405162461bcd60e51b8152600401610838906125b7565b60019182019101611fec565b506000556116ad565b82805461207c9061252f565b90600052602060002090601f01602090048101928261209e57600085556120e4565b82601f106120b757805160ff19168380011785556120e4565b828001600101855582156120e4579182015b828111156120e45782518255916020019190600101906120c9565b50610dd29291505b80821115610dd257600081556001016120ec565b6001600160e01b031981168114610d1257600080fd5b60006020828403121561212857600080fd5b81356113d981612100565b8035801515811461214357600080fd5b919050565b60006020828403121561215a57600080fd5b6113d982612133565b60005b8381101561217e578181015183820152602001612166565b838111156112fd5750506000910152565b600081518084526121a7816020860160208601612163565b601f01601f19169290920160200192915050565b6020815260006113d9602083018461218f565b6000602082840312156121e057600080fd5b5035919050565b80356001600160a01b038116811461214357600080fd5b6000806040838503121561221157600080fd5b61221a836121e7565b946020939093013593505050565b60008060006060848603121561223d57600080fd5b612246846121e7565b9250612254602085016121e7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561229557612295612264565b604051601f8501601f19908116603f011681019082821181831017156122bd576122bd612264565b816040528093508581528686860111156122d657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561230257600080fd5b813567ffffffffffffffff81111561231957600080fd5b8201601f8101841361232a57600080fd5b611d018482356020840161227a565b60008060006060848603121561234e57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561237757600080fd5b6113d9826121e7565b6000806040838503121561239357600080fd5b50508035926020909101359150565b600080604083850312156123b557600080fd5b6123be836121e7565b91506123cc60208401612133565b90509250929050565b600080600080608085870312156123eb57600080fd5b6123f4856121e7565b9350612402602086016121e7565b925060408501359150606085013567ffffffffffffffff81111561242557600080fd5b8501601f8101871361243657600080fd5b6124458782356020840161227a565b91505092959194509250565b60008060006040848603121561246657600080fd5b83359250602084013567ffffffffffffffff8082111561248557600080fd5b818601915086601f83011261249957600080fd5b8135818111156124a857600080fd5b8760208260051b85010111156124bd57600080fd5b6020830194508093505050509250925092565b600080604083850312156124e357600080fd5b6124ec836121e7565b91506123cc602084016121e7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061254357607f821691505b6020821081141561256457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125935761259361256a565b500190565b60008160001904831182151516156125b2576125b261256a565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061261d8285838a01612163565b8551918401916126308184848a01612163565b8554920191600090600181811c908083168061264d57607f831692505b85831081141561266b57634e487b7160e01b85526022600452602485fd5b80801561267f5760018114612690576126bd565b60ff198516885283880195506126bd565b60008b81526020902060005b858110156126b55781548a82015290840190880161269c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127019083018461218f565b9695505050505050565b60006020828403121561271d57600080fd5b81516113d981612100565b600060001982141561273c5761273c61256a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261276857612768612743565b500490565b60008282101561277f5761277f61256a565b500390565b60008261279357612793612743565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122036649123c6e7ee2597cd95548a0db28ea03f41e951a29a5afeca7320a7fd7fe164736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000125374726f6b65727320476f6c6620436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035347430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c697066733a2f2f686173682f0000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c806370a0823111610144578063bf0d96c3116100b6578063da3ef23f1161007a578063da3ef23f146106bf578063db4bec44146106df578063e7b99ec71461070c578063e985e9c514610722578063ebae7c1c1461076b578063f2fde38b1461078157600080fd5b8063bf0d96c31461064b578063c668286214610661578063c87b56dd14610676578063d2cab05614610696578063d5abeb01146106a957600080fd5b80638693da20116101085780638693da20146105af5780638da5cb5b146105c557806395d89b41146105e3578063a0712d68146105f8578063a22cb4651461060b578063b88d4fde1461062b57600080fd5b806370a0823114610524578063715018a6146105445780637696e088146105595780637cb64759146105795780637dc429751461059957600080fd5b80633ccfd60b116101dd57806355f804b3116101a157806355f804b3146104765780635b70ea9f146104965780635c975abb146104b55780636352211e146104cf5780636c0360eb146104ef5780636f6098521461050457600080fd5b80633ccfd60b146103e75780633f815b9a146103fc57806342842e0e1461041c5780634f6ccce71461043c57806351fb012d1461045c57600080fd5b806316c38b3c1161022f57806316c38b3c1461033d57806318160ddd1461035d57806323b872dd1461037c5780632d5943f01461039c5780632eb4a7ab146103b15780632f745c59146103c757600080fd5b806301ffc9a71461026c578063052d9e7e146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612116565b6107a1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612148565b61080e565b005b3480156102cf57600080fd5b506102d8610854565b60405161029891906121bb565b3480156102f157600080fd5b506103056103003660046121ce565b6108e6565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046121fe565b610971565b34801561034957600080fd5b506102c1610358366004612148565b610a89565b34801561036957600080fd5b506000545b604051908152602001610298565b34801561038857600080fd5b506102c1610397366004612228565b610ac6565b3480156103a857600080fd5b506102c1610ad1565b3480156103bd57600080fd5b5061036e600f5481565b3480156103d357600080fd5b5061036e6103e23660046121fe565b610b1a565b3480156103f357600080fd5b506102c1610c77565b34801561040857600080fd5b506102c1610417366004612148565b610d15565b34801561042857600080fd5b506102c1610437366004612228565b610d59565b34801561044857600080fd5b5061036e6104573660046121ce565b610d74565b34801561046857600080fd5b50600c5461028c9060ff1681565b34801561048257600080fd5b506102c16104913660046122f0565b610dd6565b3480156104a257600080fd5b50600e5461028c90610100900460ff1681565b3480156104c157600080fd5b50600e5461028c9060ff1681565b3480156104db57600080fd5b506103056104ea3660046121ce565b610e17565b3480156104fb57600080fd5b506102d8610e29565b34801561051057600080fd5b506102c161051f366004612339565b610eb7565b34801561053057600080fd5b5061036e61053f366004612365565b610eef565b34801561055057600080fd5b506102c1610f80565b34801561056557600080fd5b506102c1610574366004612380565b610fb6565b34801561058557600080fd5b506102c16105943660046121ce565b610feb565b3480156105a557600080fd5b5061036e60115481565b3480156105bb57600080fd5b5061036e600b5481565b3480156105d157600080fd5b506007546001600160a01b0316610305565b3480156105ef57600080fd5b506102d861101a565b6102c16106063660046121ce565b611029565b34801561061757600080fd5b506102c16106263660046123a2565b611205565b34801561063757600080fd5b506102c16106463660046123d5565b6112ca565b34801561065757600080fd5b5061036e60105481565b34801561066d57600080fd5b506102d8611303565b34801561068257600080fd5b506102d86106913660046121ce565b611310565b6102c16106a4366004612451565b6113e0565b3480156106b557600080fd5b5061036e60135481565b3480156106cb57600080fd5b506102c16106da3660046122f0565b6116b4565b3480156106eb57600080fd5b5061036e6106fa366004612365565b60086020526000908152604090205481565b34801561071857600080fd5b5061036e600a5481565b34801561072e57600080fd5b5061028c61073d3660046124d0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077757600080fd5b5061036e60125481565b34801561078d57600080fd5b506102c161079c366004612365565b6116f1565b60006001600160e01b031982166380ac58cd60e01b14806107d257506001600160e01b03198216635b5e139f60e01b145b806107ed57506001600160e01b0319821663780e9d6360e01b145b8061080857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108415760405162461bcd60e51b8152600401610838906124fa565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600180546108639061252f565b80601f016020809104026020016040519081016040528092919081815260200182805461088f9061252f565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108f3826000541190565b6109555760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610838565b506000908152600560205260409020546001600160a01b031690565b600061097c82610e17565b9050806001600160a01b0316836001600160a01b031614156109eb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610838565b336001600160a01b0382161480610a075750610a07813361073d565b610a795760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610838565b610a84838383611789565b505050565b6007546001600160a01b03163314610ab35760405162461bcd60e51b8152600401610838906124fa565b600e805460ff1916911515919091179055565b610a848383836117e5565b6007546001600160a01b03163314610afb5760405162461bcd60e51b8152600401610838906124fa565b600e805461ff00191690556005601055600c805460ff19166001179055565b6000610b2583610eef565b8210610b7e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610838565b600080549080805b83811015610c17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bd957805192505b876001600160a01b0316836001600160a01b03161415610c0e5786841415610c075750935061080892505050565b6001909301925b50600101610b86565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610838565b6007546001600160a01b03163314610ca15760405162461bcd60e51b8152600401610838906124fa565b6000610cb56007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cff576040519150601f19603f3d011682016040523d82523d6000602084013e610d04565b606091505b5050905080610d1257600080fd5b50565b6007546001600160a01b03163314610d3f5760405162461bcd60e51b8152600401610838906124fa565b600e80549115156101000261ff0019909216919091179055565b610a84838383604051806020016040528060008152506112ca565b600080548210610dd25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610838565b5090565b6007546001600160a01b03163314610e005760405162461bcd60e51b8152600401610838906124fa565b8051610e13906009906020840190612070565b5050565b6000610e2282611ac7565b5192915050565b60098054610e369061252f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e629061252f565b8015610eaf5780601f10610e8457610100808354040283529160200191610eaf565b820191906000526020600020905b815481529060010190602001808311610e9257829003601f168201915b505050505081565b6007546001600160a01b03163314610ee15760405162461bcd60e51b8152600401610838906124fa565b601092909255601155601255565b60006001600160a01b038216610f5b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610838565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610838906124fa565b610fb46000611b9e565b565b6007546001600160a01b03163314610fe05760405162461bcd60e51b8152600401610838906124fa565b600a91909155600b55565b6007546001600160a01b031633146110155760405162461bcd60e51b8152600401610838906124fa565b600f55565b6060600280546108639061252f565b600054600e5460ff161561107f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610838565b600082116110d95760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610838565b6013546110e68383612580565b11156111295760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610838565b6007546001600160a01b031633146111fb576011548211156111a95760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610838565b81600b546111b79190612598565b3410156111fb5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610838565b610e133383611bf0565b6001600160a01b03821633141561125e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610838565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112d58484846117e5565b6112e184848484611c0a565b6112fd5760405162461bcd60e51b8152600401610838906125b7565b50505050565b600d8054610e369061252f565b606061131d826000541190565b6113815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610838565b600061138b611d09565b905060008151116113ab57604051806020016040528060008152506113d9565b806113b584611d18565b600d6040516020016113c99392919061260a565b6040516020818303038152906040525b9392505050565b60005460125484111561143f5760405162461bcd60e51b815260206004820152602160248201527f506c6561736520436865636b20596f7572205175616e7469747920416d6f756e6044820152601d60fa1b6064820152608401610838565b60135461144c8583612580565b111561148f5760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610838565b600c5460ff166114ec5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610838565b6010543360009081526008602052604090205461150a908690612580565b11156115665760405162461bcd60e51b815260206004820152602560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206044820152644d7563682160d81b6064820152608401610838565b600e54610100900460ff166115c75783600a546115839190612598565b3410156115c75760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610838565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061164184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611e16565b61167e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610838565b336000908152600860205260408120805487929061169d908490612580565b909155506116ad90503386611bf0565b5050505050565b6007546001600160a01b031633146116de5760405162461bcd60e51b8152600401610838906124fa565b8051610e1390600d906020840190612070565b6007546001600160a01b0316331461171b5760405162461bcd60e51b8152600401610838906124fa565b6001600160a01b0381166117805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610838565b610d1281611b9e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f082611ac7565b80519091506000906001600160a01b0316336001600160a01b0316148061182757503361181c846108e6565b6001600160a01b0316145b8061183957508151611839903361073d565b9050806118a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610838565b846001600160a01b031682600001516001600160a01b0316146119175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610838565b6001600160a01b03841661197b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610838565b61198b6000848460000151611789565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a8057611a33816000541190565b15611a80578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ad565b6040805180820190915260008082526020820152611ae6826000541190565b611b455760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610838565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b94579392505050565b5060001901611b47565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e13828260405180602001604052806000815250611e2c565b60006001600160a01b0384163b15611cfd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4e9033908990889088906004016126ce565b6020604051808303816000875af1925050508015611c89575060408051601f3d908101601f19168201909252611c869181019061270b565b60015b611ce3573d808015611cb7576040519150601f19603f3d011682016040523d82523d6000602084013e611cbc565b606091505b508051611cdb5760405162461bcd60e51b8152600401610838906125b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d01565b5060015b949350505050565b6060600980546108639061252f565b606081611d3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d665780611d5081612728565b9150611d5f9050600a83612759565b9150611d40565b60008167ffffffffffffffff811115611d8157611d81612264565b6040519080825280601f01601f191660200182016040528015611dab576020820181803683370190505b5090505b8415611d0157611dc060018361276d565b9150611dcd600a86612784565b611dd8906030612580565b60f81b818381518110611ded57611ded612798565b60200101906001600160f81b031916908160001a905350611e0f600a86612759565b9450611daf565b600082611e238584611e39565b14949350505050565b610a848383836001611ead565b600081815b8451811015611ea5576000858281518110611e5b57611e5b612798565b60200260200101519050808311611e815760008381526020829052604090209250611e92565b600081815260208490526040902092505b5080611e9d81612728565b915050611e3e565b509392505050565b6000546001600160a01b038516611f105760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610838565b83611f6e5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610838565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156120675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561205b5761203f6000888488611c0a565b61205b5760405162461bcd60e51b8152600401610838906125b7565b60019182019101611fec565b506000556116ad565b82805461207c9061252f565b90600052602060002090601f01602090048101928261209e57600085556120e4565b82601f106120b757805160ff19168380011785556120e4565b828001600101855582156120e4579182015b828111156120e45782518255916020019190600101906120c9565b50610dd29291505b80821115610dd257600081556001016120ec565b6001600160e01b031981168114610d1257600080fd5b60006020828403121561212857600080fd5b81356113d981612100565b8035801515811461214357600080fd5b919050565b60006020828403121561215a57600080fd5b6113d982612133565b60005b8381101561217e578181015183820152602001612166565b838111156112fd5750506000910152565b600081518084526121a7816020860160208601612163565b601f01601f19169290920160200192915050565b6020815260006113d9602083018461218f565b6000602082840312156121e057600080fd5b5035919050565b80356001600160a01b038116811461214357600080fd5b6000806040838503121561221157600080fd5b61221a836121e7565b946020939093013593505050565b60008060006060848603121561223d57600080fd5b612246846121e7565b9250612254602085016121e7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561229557612295612264565b604051601f8501601f19908116603f011681019082821181831017156122bd576122bd612264565b816040528093508581528686860111156122d657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561230257600080fd5b813567ffffffffffffffff81111561231957600080fd5b8201601f8101841361232a57600080fd5b611d018482356020840161227a565b60008060006060848603121561234e57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561237757600080fd5b6113d9826121e7565b6000806040838503121561239357600080fd5b50508035926020909101359150565b600080604083850312156123b557600080fd5b6123be836121e7565b91506123cc60208401612133565b90509250929050565b600080600080608085870312156123eb57600080fd5b6123f4856121e7565b9350612402602086016121e7565b925060408501359150606085013567ffffffffffffffff81111561242557600080fd5b8501601f8101871361243657600080fd5b6124458782356020840161227a565b91505092959194509250565b60008060006040848603121561246657600080fd5b83359250602084013567ffffffffffffffff8082111561248557600080fd5b818601915086601f83011261249957600080fd5b8135818111156124a857600080fd5b8760208260051b85010111156124bd57600080fd5b6020830194508093505050509250925092565b600080604083850312156124e357600080fd5b6124ec836121e7565b91506123cc602084016121e7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061254357607f821691505b6020821081141561256457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125935761259361256a565b500190565b60008160001904831182151516156125b2576125b261256a565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061261d8285838a01612163565b8551918401916126308184848a01612163565b8554920191600090600181811c908083168061264d57607f831692505b85831081141561266b57634e487b7160e01b85526022600452602485fd5b80801561267f5760018114612690576126bd565b60ff198516885283880195506126bd565b60008b81526020902060005b858110156126b55781548a82015290840190880161269c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127019083018461218f565b9695505050505050565b60006020828403121561271d57600080fd5b81516113d981612100565b600060001982141561273c5761273c61256a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261276857612768612743565b500490565b60008282101561277f5761277f61256a565b500390565b60008261279357612793612743565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122036649123c6e7ee2597cd95548a0db28ea03f41e951a29a5afeca7320a7fd7fe164736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000125374726f6b65727320476f6c6620436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035347430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c697066733a2f2f686173682f0000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Strokers Golf Club
Arg [1] : _symbol (string): SGC
Arg [2] : _initBaseURI (string): ipfs://hash/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 5374726f6b65727320476f6c6620436c75620000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5347430000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 697066733a2f2f686173682f0000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
133:4453:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;-1:-1:-1;3744:410:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;3744:410:3;;;;;;;;3986:101:10;;;;;;;;;;-1:-1:-1;3986:101:10;;;;;:::i;:::-;;:::i;:::-;;5720:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7356:280::-;;;;;;;;;;-1:-1:-1;7356:280:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:13;;;2024:51;;2012:2;1997:18;7356:280:3;1878:203:13;6892:403:3;;;;;;;;;;-1:-1:-1;6892:403:3;;;;;:::i;:::-;;:::i;4093:81:10:-;;;;;;;;;;-1:-1:-1;4093:81:10;;;;;:::i;:::-;;:::i;1974:98:3:-;;;;;;;;;;-1:-1:-1;2027:7:3;2053:12;1974:98;;;2669:25:13;;;2657:2;2642:18;1974:98:3;2523:177:13;8340:156:3;;;;;;;;;;-1:-1:-1;8340:156:3;;;;;:::i;:::-;;:::i;3511:138:10:-;;;;;;;;;;;;;:::i;531:25::-;;;;;;;;;;;;;;;;2657:1020:3;;;;;;;;;;-1:-1:-1;2657:1020:3;;;;;:::i;:::-;;:::i;4440:144:10:-;;;;;;;;;;;;;:::i;3418:87::-;;;;;;;;;;-1:-1:-1;3418:87:10;;;;;:::i;:::-;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;2144:220::-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;388:36:10:-;;;;;;;;;;-1:-1:-1;388:36:10;;;;;;;;4180:102;;;;;;;;;;-1:-1:-1;4180:102:10;;;;;:::i;:::-;;:::i;505:20::-;;;;;;;;;;-1:-1:-1;505:20:10;;;;;;;;;;;474:25;;;;;;;;;;-1:-1:-1;474:25:10;;;;;;;;5536:122:3;;;;;;;;;;-1:-1:-1;5536:122:3;;;;;:::i;:::-;;:::i;270:21:10:-;;;;;;;;;;;;;:::i;3655:217::-;;;;;;;;;;-1:-1:-1;3655:217:10;;;;;:::i;:::-;;:::i;4213:252:3:-;;;;;;;;;;-1:-1:-1;4213:252:3;;;;;:::i;:::-;;:::i;1628:101:11:-;;;;;;;;;;;;;:::i;3232:180:10:-;;;;;;;;;;-1:-1:-1;3232:180:10;;;;;:::i;:::-;;:::i;3878:102::-;;;;;;;;;;-1:-1:-1;3878:102:10;;;;;:::i;:::-;;:::i;628:29::-;;;;;;;;;;;;;;;;344:38;;;;;;;;;;;;;;;;996:85:11;;;;;;;;;;-1:-1:-1;1068:6:11;;-1:-1:-1;;;;;1068:6:11;996:85;;5882:102:3;;;;;;;;;;;;;:::i;1872:601:10:-;;;;;;:::i;:::-;;:::i;7703:303:3:-;;;;;;;;;;-1:-1:-1;7703:303:3;;;;;:::i;:::-;;:::i;8799:344::-;;;;;;;;;;-1:-1:-1;8799:344:3;;;;;:::i;:::-;;:::i;562:31:10:-;;;;;;;;;;;;;;;;430:37;;;;;;;;;;;;;:::i;2607:619::-;;;;;;;;;;-1:-1:-1;2607:619:10;;;;;:::i;:::-;;:::i;916:950::-;;;;;;:::i;:::-;;:::i;693:31::-;;;;;;;;;;;;;;;;4288:146;;;;;;;;;;-1:-1:-1;4288:146:10;;;;;:::i;:::-;;:::i;212:51::-;;;;;;;;;;-1:-1:-1;212:51:10;;;;;:::i;:::-;;;;;;;;;;;;;;297:41;;;;;;;;;;;;;;;;8072:206:3;;;;;;;;;;-1:-1:-1;8072:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;8236:25:3;;;8209:4;8236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8072:206;663:24:10;;;;;;;;;;;;;;;;1878:232:11;;;;;;;;;;-1:-1:-1;1878:232:11;;;;;:::i;:::-;;:::i;3744:410:3:-;3886:4;-1:-1:-1;;;;;;3925:40:3;;-1:-1:-1;;;3925:40:3;;:104;;-1:-1:-1;;;;;;;3981:48:3;;-1:-1:-1;;;3981:48:3;3925:104;:170;;;-1:-1:-1;;;;;;;4045:50:3;;-1:-1:-1;;;4045:50:3;3925:170;:222;;;-1:-1:-1;;;;;;;;;;981:40:2;;;4111:36:3;3906:241;3744:410;-1:-1:-1;;3744:410:3:o;3986:101:10:-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;;;;;;;;;4055:16:10::1;:25:::0;;-1:-1:-1;;4055:25:10::1;::::0;::::1;;::::0;;;::::1;::::0;;3986:101::o;5720:98:3:-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;7500:16;7479:108;;;;-1:-1:-1;;;7479:108:3;;8227:2:13;7479:108:3;;;8209:21:13;8266:2;8246:18;;;8239:30;8305:34;8285:18;;;8278:62;-1:-1:-1;;;8356:18:13;;;8349:43;8409:19;;7479:108:3;8025:409:13;7479:108:3;-1:-1:-1;7605:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7605:24:3;;7356:280::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;-1:-1:-1;;;;;7022:11:3;:2;-1:-1:-1;;;;;7022:11:3;;;7014:58;;;;-1:-1:-1;;;7014:58:3;;8641:2:13;7014:58:3;;;8623:21:13;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:13;;;8763:32;8812:19;;7014:58:3;8439:398:13;7014:58:3;665:10:1;-1:-1:-1;;;;;7104:21:3;;;;:62;;-1:-1:-1;7129:37:3;7146:5;665:10:1;8072:206:3;:::i;7129:37::-;7083:166;;;;-1:-1:-1;;;7083:166:3;;9044:2:13;7083:166:3;;;9026:21:13;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;9193:27;9173:18;;;9166:55;9238:19;;7083:166:3;8842:421:13;7083:166:3;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6954:341;6892:403;;:::o;4093:81:10:-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;4152:6:10::1;:15:::0;;-1:-1:-1;;4152:15:10::1;::::0;::::1;;::::0;;;::::1;::::0;;4093:81::o;8340:156:3:-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;3511:138:10:-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;3567:8:10::1;:16:::0;;-1:-1:-1;;3567:16:10::1;::::0;;3608:1:::1;3593:12;:16:::0;3619::::1;:23:::0;;-1:-1:-1;;3619:23:10::1;3567:8;3619:23;::::0;;3511:138::o;2657:1020:3:-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;-1:-1:-1;;;2801:71:3;;9470:2:13;2801:71:3;;;9452:21:13;9509:2;9489:18;;;9482:30;9548:34;9528:18;;;9521:62;-1:-1:-1;;;9599:18:13;;;9592:32;9641:19;;2801:71:3;9268:398:13;2801:71:3;2882:22;2053:12;;;2882:22;;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:14;;;:11;:14;;;;;;;;;3198:48;;;;;;;;;-1:-1:-1;;;;;3198:48:3;;;;;-1:-1:-1;;;3198:48:3;;;;;;;;;;;;3268:28;3264:109;;3340:14;;;-1:-1:-1;3264:109:3;3415:5;-1:-1:-1;;;;;3394:26:3;:17;-1:-1:-1;;;;;3394:26:3;;3390:190;;;3463:5;3448:11;:20;3444:83;;;-1:-1:-1;3503:1:3;-1:-1:-1;3496:8:3;;-1:-1:-1;;;3496:8:3;3444:83;3548:13;;;;;3390:190;-1:-1:-1;3175:3:3;;3139:455;;;-1:-1:-1;3614:56:3;;-1:-1:-1;;;3614:56:3;;9873:2:13;3614:56:3;;;9855:21:13;9912:2;9892:18;;;9885:30;9951:34;9931:18;;;9924:62;-1:-1:-1;;;10002:18:13;;;9995:44;10056:19;;3614:56:3;9671:410:13;4440:144:10;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;4488:7:10::1;4509;1068:6:11::0;;-1:-1:-1;;;;;1068:6:11;;996:85;4509:7:10::1;-1:-1:-1::0;;;;;4501:21:10::1;4530;4501:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4487:69;;;4574:2;4566:11;;;::::0;::::1;;4477:107;4440:144::o:0;3418:87::-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;3480:8:10::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;3480:18:10;;::::1;::::0;;;::::1;::::0;;3418:87::o;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;2144:220::-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;10498:2:13;2266:69:3;;;10480:21:13;10537:2;10517:18;;;10510:30;10576:34;10556:18;;;10549:62;-1:-1:-1;;;10627:18:13;;;10620:33;10670:19;;2266:69:3;10296:399:13;2266:69:3;-1:-1:-1;2352:5:3;2144:220::o;4180:102:10:-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;4254:21:10;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4180:102:::0;:::o;5536:122:3:-;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;5536:122;-1:-1:-1;;5536:122:3:o;270:21:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3655:217::-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;3784:12:10::1;:25:::0;;;;3819:9:::1;:19:::0;3848:5:::1;:17:::0;3655:217::o;4213:252:3:-;4277:7;-1:-1:-1;;;;;4317:19:3;;4296:109;;;;-1:-1:-1;;;4296:109:3;;10902:2:13;4296:109:3;;;10884:21:13;10941:2;10921:18;;;10914:30;10980:34;10960:18;;;10953:62;-1:-1:-1;;;11031:18:13;;;11024:41;11082:19;;4296:109:3;10700:407:13;4296:109:3;-1:-1:-1;;;;;;4430:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4430:27:3;;4213:252::o;1628:101:11:-;1068:6;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;3232:180:10:-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;3341:13:10::1;:30:::0;;;;3381:10:::1;:24:::0;3232:180::o;3878:102::-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;3949:10:10::1;:24:::0;3878:102::o;5882::3:-;5938:13;5970:7;5963:14;;;;;:::i;1872:601:10:-;1931:14;2053:12:3;1980:6:10;;;;1979:7;1971:43;;;;-1:-1:-1;;;1971:43:10;;11314:2:13;1971:43:10;;;11296:21:13;11353:2;11333:18;;;11326:30;11392:25;11372:18;;;11365:53;11435:18;;1971:43:10;11112:347:13;1971:43:10;2043:1;2032:8;:12;2024:58;;;;-1:-1:-1;;;2024:58:10;;11666:2:13;2024:58:10;;;11648:21:13;11705:2;11685:18;;;11678:30;11744:34;11724:18;;;11717:62;-1:-1:-1;;;11795:18:13;;;11788:31;11836:19;;2024:58:10;11464:397:13;2024:58:10;2121:9;;2100:17;2109:8;2100:6;:17;:::i;:::-;:30;;2092:61;;;;-1:-1:-1;;;2092:61:10;;12333:2:13;2092:61:10;;;12315:21:13;12372:2;12352:18;;;12345:30;-1:-1:-1;;;12391:18:13;;;12384:48;12449:18;;2092:61:10;12131:342:13;2092:61:10;1068:6:11;;-1:-1:-1;;;;;1068:6:11;2168:10:10;:21;2164:262;;2242:9;;2230:8;:21;;2205:131;;;;-1:-1:-1;;;2205:131:10;;12680:2:13;2205:131:10;;;12662:21:13;12719:2;12699:18;;;12692:30;12758:34;12738:18;;;12731:62;-1:-1:-1;;;12809:18:13;;;12802:49;12868:19;;2205:131:10;12478:415:13;2205:131:10;2384:8;2371:10;;:21;;;;:::i;:::-;2358:9;:34;;2350:65;;;;-1:-1:-1;;;2350:65:10;;13273:2:13;2350:65:10;;;13255:21:13;13312:2;13292:18;;;13285:30;-1:-1:-1;;;13331:18:13;;;13324:48;13389:18;;2350:65:10;13071:342:13;2350:65:10;2435:31;2445:10;2457:8;2435:9;:31::i;7703:303:3:-;-1:-1:-1;;;;;7817:24:3;;665:10:1;7817:24:3;;7809:63;;;;-1:-1:-1;;;7809:63:3;;13620:2:13;7809:63:3;;;13602:21:13;13659:2;13639:18;;;13632:30;13698:28;13678:18;;;13671:56;13744:18;;7809:63:3;13418:350:13;7809:63:3;665:10:1;7883:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7883:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7883:53:3;;;;;;;;;;7951:48;;540:41:13;;;7883:42:3;;665:10:1;7951:48:3;;513:18:13;7951:48:3;;;;;;;7703:303;;:::o;8799:344::-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;-1:-1:-1;;;8990:146:3;;;;;;;:::i;:::-;8799:344;;;;:::o;430:37:10:-;;;;;;;:::i;2607:619::-;2720:13;2770:16;2778:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;2770:16:10;2749:110;;;;-1:-1:-1;;;2749:110:10;;14395:2:13;2749:110:10;;;14377:21:13;14434:2;14414:18;;;14407:30;14473:34;14453:18;;;14446:62;-1:-1:-1;;;14524:18:13;;;14517:45;14579:19;;2749:110:10;14193:411:13;2749:110:10;2870:28;2901:10;:8;:10::i;:::-;2870:41;;2971:1;2946:14;2940:28;:32;:279;;;;;;;;;;;;;;;;;3061:14;3101:18;:7;:16;:18::i;:::-;3145:13;3019:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2940:279;2921:298;2607:619;-1:-1:-1;;;2607:619:10:o;916:950::-;1035:14;2053:12:3;1095:5:10;;1083:17;;;1075:63;;;;-1:-1:-1;;;1075:63:10;;16469:2:13;1075:63:10;;;16451:21:13;16508:2;16488:18;;;16481:30;16547:34;16527:18;;;16520:62;-1:-1:-1;;;16598:18:13;;;16591:31;16639:19;;1075:63:10;16267:397:13;1075:63:10;1177:9;;1156:17;1165:8;1156:6;:17;:::i;:::-;:30;;1148:61;;;;-1:-1:-1;;;1148:61:10;;12333:2:13;1148:61:10;;;12315:21:13;12372:2;12352:18;;;12345:30;-1:-1:-1;;;12391:18:13;;;12384:48;12449:18;;1148:61:10;12131:342:13;1148:61:10;1227:16;;;;1219:63;;;;-1:-1:-1;;;1219:63:10;;16871:2:13;1219:63:10;;;16853:21:13;16910:2;16890:18;;;16883:30;16949:34;16929:18;;;16922:62;-1:-1:-1;;;17000:18:13;;;16993:32;17042:19;;1219:63:10;16669:398:13;1219:63:10;1356:12;;1330:10;1313:28;;;;:16;:28;;;;;;:39;;1344:8;;1313:39;:::i;:::-;:55;;1292:139;;;;-1:-1:-1;;;1292:139:10;;17274:2:13;1292:139:10;;;17256:21:13;17313:2;17293:18;;;17286:30;17352:34;17332:18;;;17325:62;-1:-1:-1;;;17403:18:13;;;17396:35;17448:19;;1292:139:10;17072:401:13;1292:139:10;1446:8;;;;;;;1441:141;;1522:8;1506:13;;:24;;;;:::i;:::-;1493:9;:37;;1468:114;;;;-1:-1:-1;;;1468:114:10;;13273:2:13;1468:114:10;;;13255:21:13;13312:2;13292:18;;;13285:30;-1:-1:-1;;;13331:18:13;;;13324:48;13389:18;;1468:114:10;13071:342:13;1468:114:10;1617:28;;-1:-1:-1;;1634:10:10;17627:2:13;17623:15;17619:53;1617:28:10;;;17607:66:13;1592:12:10;;17689::13;;1617:28:10;;;;;;;;;;;;1607:39;;;;;;1592:54;;1677:50;1696:12;;1677:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1710:10:10;;;-1:-1:-1;1722:4:10;;-1:-1:-1;1677:18:10;:50::i;:::-;1656:111;;;;-1:-1:-1;;;1656:111:10;;17914:2:13;1656:111:10;;;17896:21:13;17953:2;17933:18;;;17926:30;-1:-1:-1;;;17972:18:13;;;17965:44;18026:18;;1656:111:10;17712:338:13;1656:111:10;1795:10;1778:28;;;;:16;:28;;;;;:40;;1810:8;;1778:28;:40;;1810:8;;1778:40;:::i;:::-;;;;-1:-1:-1;1828:31:10;;-1:-1:-1;1838:10:10;1850:8;1828:9;:31::i;:::-;1025:841;;916:950;;;:::o;4288:146::-;1068:6:11;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;4394:33:10;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;1878:232:11:-:0;1068:6;;-1:-1:-1;;;;;1068:6:11;665:10:1;1208:23:11;1200:68;;;;-1:-1:-1;;;1200:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:11;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:11;;18257:2:13;1958:107:11::1;::::0;::::1;18239:21:13::0;18296:2;18276:18;;;18269:30;18335:34;18315:18;;;18308:62;-1:-1:-1;;;18386:18:13;;;18379:36;18432:19;;1958:107:11::1;18055:402:13::0;1958:107:11::1;2075:28;2094:8;2075:18;:28::i;14401:189:3:-:0;14511:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14511:29:3;-1:-1:-1;;;;;14511:29:3;;;;;;;;;14555:28;;14511:24;;14555:28;;;;;;;14401:189;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12460:18;;12349:58;;-1:-1:-1;12418:22:3;;-1:-1:-1;;;;;12444:34:3;665:10:1;-1:-1:-1;;;;;12444:34:3;;:86;;;-1:-1:-1;665:10:1;12494:20:3;12506:7;12494:11;:20::i;:::-;-1:-1:-1;;;;;12494:36:3;;12444:86;:152;;;-1:-1:-1;12563:18:3;;12546:50;;665:10:1;8072:206:3;:::i;12546:50::-;12418:179;;12629:17;12608:114;;;;-1:-1:-1;;;12608:114:3;;18664:2:13;12608:114:3;;;18646:21:13;18703:2;18683:18;;;18676:30;18742:34;18722:18;;;18715:62;-1:-1:-1;;;18793:18:13;;;18786:48;18851:19;;12608:114:3;18462:414:13;12608:114:3;12776:4;-1:-1:-1;;;;;12754:26:3;:13;:18;;;-1:-1:-1;;;;;12754:26:3;;12733:111;;;;-1:-1:-1;;;12733:111:3;;19083:2:13;12733:111:3;;;19065:21:13;19122:2;19102:18;;;19095:30;19161:34;19141:18;;;19134:62;-1:-1:-1;;;19212:18:13;;;19205:36;19258:19;;12733:111:3;18881:402:13;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;19490:2:13;12854:66:3;;;19472:21:13;19529:2;19509:18;;;19502:30;19568:34;19548:18;;;19541:62;-1:-1:-1;;;19619:18:13;;;19612:35;19664:19;;12854:66:3;19288:401:13;12854:66:3;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;-1:-1:-1;;;;;13375:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13375:31:3;;;-1:-1:-1;;;;;13375:31:3;;;-1:-1:-1;;13375:31:3;;;;;;;13420:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13420:29:3;;;;;;;;;;;;;13464:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13508:61:3;;;;-1:-1:-1;;;13553:15:3;13508:61;;;;;;13839:11;;;13868:24;;;;;:29;13839:11;;13868:29;13864:315;;13935:20;13943:11;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;13935:20;13931:234;;;14011:18;;;13979:24;;;:11;:24;;;;;;;;:50;;14093:53;;;;14051:95;;-1:-1:-1;;;14051:95:3;-1:-1:-1;;;;;;14051:95:3;;;-1:-1:-1;;;;;13979:50:3;;;14051:95;;;;;;;13931:234;13351:838;14223:7;14219:2;-1:-1:-1;;;;;14204:27:3;14213:4;-1:-1:-1;;;;;14204:27:3;;;;;;;;;;;14241:42;8799:344;4927:552;-1:-1:-1;;;;;;;;;;;;;;;;;5057:16:3;5065:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;5057:16;5049:71;;;;-1:-1:-1;;;5049:71:3;;19896:2:13;5049:71:3;;;19878:21:13;19935:2;19915:18;;;19908:30;19974:34;19954:18;;;19947:62;-1:-1:-1;;;20025:18:13;;;20018:40;20075:19;;5049:71:3;19694:406:13;5049:71:3;5175:7;5155:240;5221:31;5255:17;;;:11;:17;;;;;;;;;5221:51;;;;;;;;;-1:-1:-1;;;;;5221:51:3;;;;;-1:-1:-1;;;5221:51:3;;;;;;;;;;;;5294:28;5290:91;;5353:9;4927:552;-1:-1:-1;;;4927:552:3:o;5290:91::-;-1:-1:-1;;;5195:6:3;5155:240;;2264:187:11;2356:6;;;-1:-1:-1;;;;;2372:17:11;;;-1:-1:-1;;;;;;2372:17:11;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;9504:102:3:-;9572:27;9582:2;9586:8;9572:27;;;;;;;;;;;;:9;:27::i;15143:955::-;15293:4;-1:-1:-1;;;;;15313:13:3;;1450:19:0;:23;15309:783:3;;15364:170;;-1:-1:-1;;;15364:170:3;;-1:-1:-1;;;;;15364:36:3;;;;;:170;;665:10:1;;15456:4:3;;15482:7;;15511:5;;15364:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15364:170:3;;;;;;;;-1:-1:-1;;15364:170:3;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15717:13:3;;15713:313;;15759:107;;-1:-1:-1;;;15759:107:3;;;;;;;:::i;15713:313::-;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;-1:-1:-1;;;;;;15596:55:3;-1:-1:-1;;;15596:55:3;;-1:-1:-1;15589:62:3;;15309:783;-1:-1:-1;16077:4:3;15309:783;15143:955;;;;;;:::o;2495:106:10:-;2555:13;2587:7;2580:14;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:12;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;1069:184:9;1190:4;1242;1213:25;1226:5;1233:4;1213:12;:25::i;:::-;:33;;1069:184;-1:-1:-1;;;;1069:184:9:o;9957:157:3:-;10075:32;10081:2;10085:8;10095:5;10102:4;10075:5;:32::i;1604:662:9:-;1687:7;1729:4;1687:7;1743:488;1767:5;:12;1763:1;:16;1743:488;;;1800:20;1823:5;1829:1;1823:8;;;;;;;;:::i;:::-;;;;;;;1800:31;;1865:12;1849;:28;1845:376;;2340:13;2388:15;;;2423:4;2416:15;;;2469:4;2453:21;;1975:57;;1845:376;;;2340:13;2388:15;;;2423:4;2416:15;;;2469:4;2453:21;;2149:57;;1845:376;-1:-1:-1;1781:3:9;;;;:::i;:::-;;;;1743:488;;;-1:-1:-1;2247:12:9;1604:662;-1:-1:-1;;;1604:662:9:o;10361:1636:3:-;10494:20;10517:12;-1:-1:-1;;;;;10547:16:3;;10539:62;;;;-1:-1:-1;;;10539:62:3;;22247:2:13;10539:62:3;;;22229:21:13;22286:2;22266:18;;;22259:30;22325:34;22305:18;;;22298:62;-1:-1:-1;;;22376:18:13;;;22369:31;22417:19;;10539:62:3;22045:397:13;10539:62:3;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;22649:2:13;10611:66:3;;;22631:21:13;22688:2;22668:18;;;22661:30;22727:34;22707:18;;;22700:62;-1:-1:-1;;;22778:18:13;;;22771:38;22826:19;;10611:66:3;22447:404:13;10611:66:3;-1:-1:-1;;;;;11021:16:3;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11021:45:3;;-1:-1:-1;;;;;11021:45:3;;;;;;;;;;11080:50;;;;;;;;;;;;;;11145:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11194:66:3;;;;-1:-1:-1;;;11244:15:3;11194:66;;;;;;;11145:25;;11325:543;11345:8;11341:1;:12;11325:543;;;11383:38;;11408:12;;-1:-1:-1;;;;;11383:38:3;;;11400:1;;11383:38;;11400:1;;11383:38;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;-1:-1:-1;;;11471:331:3;;;;;;;:::i;:::-;11839:14;;;;;11355:3;11325:543;;;-1:-1:-1;11882:12:3;:27;11930:60;8799:344;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:13;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:13;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:13:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:13;;1693:180;-1:-1:-1;1693:180:13:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:13;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:13:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3220:127::-;3281:10;3276:3;3272:20;3269:1;3262:31;3312:4;3309:1;3302:15;3336:4;3333:1;3326:15;3352:632;3417:5;3447:18;3488:2;3480:6;3477:14;3474:40;;;3494:18;;:::i;:::-;3569:2;3563:9;3537:2;3623:15;;-1:-1:-1;;3619:24:13;;;3645:2;3615:33;3611:42;3599:55;;;3669:18;;;3689:22;;;3666:46;3663:72;;;3715:18;;:::i;:::-;3755:10;3751:2;3744:22;3784:6;3775:15;;3814:6;3806;3799:22;3854:3;3845:6;3840:3;3836:16;3833:25;3830:45;;;3871:1;3868;3861:12;3830:45;3921:6;3916:3;3909:4;3901:6;3897:17;3884:44;3976:1;3969:4;3960:6;3952;3948:19;3944:30;3937:41;;;;3352:632;;;;;:::o;3989:451::-;4058:6;4111:2;4099:9;4090:7;4086:23;4082:32;4079:52;;;4127:1;4124;4117:12;4079:52;4167:9;4154:23;4200:18;4192:6;4189:30;4186:50;;;4232:1;4229;4222:12;4186:50;4255:22;;4308:4;4300:13;;4296:27;-1:-1:-1;4286:55:13;;4337:1;4334;4327:12;4286:55;4360:74;4426:7;4421:2;4408:16;4403:2;4399;4395:11;4360:74;:::i;4445:316::-;4522:6;4530;4538;4591:2;4579:9;4570:7;4566:23;4562:32;4559:52;;;4607:1;4604;4597:12;4559:52;-1:-1:-1;;4630:23:13;;;4700:2;4685:18;;4672:32;;-1:-1:-1;4751:2:13;4736:18;;;4723:32;;4445:316;-1:-1:-1;4445:316:13:o;4766:186::-;4825:6;4878:2;4866:9;4857:7;4853:23;4849:32;4846:52;;;4894:1;4891;4884:12;4846:52;4917:29;4936:9;4917:29;:::i;4957:248::-;5025:6;5033;5086:2;5074:9;5065:7;5061:23;5057:32;5054:52;;;5102:1;5099;5092:12;5054:52;-1:-1:-1;;5125:23:13;;;5195:2;5180:18;;;5167:32;;-1:-1:-1;4957:248:13:o;5395:254::-;5460:6;5468;5521:2;5509:9;5500:7;5496:23;5492:32;5489:52;;;5537:1;5534;5527:12;5489:52;5560:29;5579:9;5560:29;:::i;:::-;5550:39;;5608:35;5639:2;5628:9;5624:18;5608:35;:::i;:::-;5598:45;;5395:254;;;;;:::o;5654:667::-;5749:6;5757;5765;5773;5826:3;5814:9;5805:7;5801:23;5797:33;5794:53;;;5843:1;5840;5833:12;5794:53;5866:29;5885:9;5866:29;:::i;:::-;5856:39;;5914:38;5948:2;5937:9;5933:18;5914:38;:::i;:::-;5904:48;;5999:2;5988:9;5984:18;5971:32;5961:42;;6054:2;6043:9;6039:18;6026:32;6081:18;6073:6;6070:30;6067:50;;;6113:1;6110;6103:12;6067:50;6136:22;;6189:4;6181:13;;6177:27;-1:-1:-1;6167:55:13;;6218:1;6215;6208:12;6167:55;6241:74;6307:7;6302:2;6289:16;6284:2;6280;6276:11;6241:74;:::i;:::-;6231:84;;;5654:667;;;;;;;:::o;6326:683::-;6421:6;6429;6437;6490:2;6478:9;6469:7;6465:23;6461:32;6458:52;;;6506:1;6503;6496:12;6458:52;6542:9;6529:23;6519:33;;6603:2;6592:9;6588:18;6575:32;6626:18;6667:2;6659:6;6656:14;6653:34;;;6683:1;6680;6673:12;6653:34;6721:6;6710:9;6706:22;6696:32;;6766:7;6759:4;6755:2;6751:13;6747:27;6737:55;;6788:1;6785;6778:12;6737:55;6828:2;6815:16;6854:2;6846:6;6843:14;6840:34;;;6870:1;6867;6860:12;6840:34;6923:7;6918:2;6908:6;6905:1;6901:14;6897:2;6893:23;6889:32;6886:45;6883:65;;;6944:1;6941;6934:12;6883:65;6975:2;6971;6967:11;6957:21;;6997:6;6987:16;;;;;6326:683;;;;;:::o;7014:260::-;7082:6;7090;7143:2;7131:9;7122:7;7118:23;7114:32;7111:52;;;7159:1;7156;7149:12;7111:52;7182:29;7201:9;7182:29;:::i;:::-;7172:39;;7230:38;7264:2;7253:9;7249:18;7230:38;:::i;7279:356::-;7481:2;7463:21;;;7500:18;;;7493:30;7559:34;7554:2;7539:18;;7532:62;7626:2;7611:18;;7279:356::o;7640:380::-;7719:1;7715:12;;;;7762;;;7783:61;;7837:4;7829:6;7825:17;7815:27;;7783:61;7890:2;7882:6;7879:14;7859:18;7856:38;7853:161;;;7936:10;7931:3;7927:20;7924:1;7917:31;7971:4;7968:1;7961:15;7999:4;7996:1;7989:15;7853:161;;7640:380;;;:::o;11866:127::-;11927:10;11922:3;11918:20;11915:1;11908:31;11958:4;11955:1;11948:15;11982:4;11979:1;11972:15;11998:128;12038:3;12069:1;12065:6;12062:1;12059:13;12056:39;;;12075:18;;:::i;:::-;-1:-1:-1;12111:9:13;;11998:128::o;12898:168::-;12938:7;13004:1;13000;12996:6;12992:14;12989:1;12986:21;12981:1;12974:9;12967:17;12963:45;12960:71;;;13011:18;;:::i;:::-;-1:-1:-1;13051:9:13;;12898:168::o;13773:415::-;13975:2;13957:21;;;14014:2;13994:18;;;13987:30;14053:34;14048:2;14033:18;;14026:62;-1:-1:-1;;;14119:2:13;14104:18;;14097:49;14178:3;14163:19;;13773:415::o;14735:1527::-;14959:3;14997:6;14991:13;15023:4;15036:51;15080:6;15075:3;15070:2;15062:6;15058:15;15036:51;:::i;:::-;15150:13;;15109:16;;;;15172:55;15150:13;15109:16;15194:15;;;15172:55;:::i;:::-;15316:13;;15249:20;;;15289:1;;15376;15398:18;;;;15451;;;;15478:93;;15556:4;15546:8;15542:19;15530:31;;15478:93;15619:2;15609:8;15606:16;15586:18;15583:40;15580:167;;;-1:-1:-1;;;15646:33:13;;15702:4;15699:1;15692:15;15732:4;15653:3;15720:17;15580:167;15763:18;15790:110;;;;15914:1;15909:328;;;;15756:481;;15790:110;-1:-1:-1;;15825:24:13;;15811:39;;15870:20;;;;-1:-1:-1;15790:110:13;;15909:328;14682:1;14675:14;;;14719:4;14706:18;;16004:1;16018:169;16032:8;16029:1;16026:15;16018:169;;;16114:14;;16099:13;;;16092:37;16157:16;;;;16049:10;;16018:169;;;16022:3;;16218:8;16211:5;16207:20;16200:27;;15756:481;-1:-1:-1;16253:3:13;;14735:1527;-1:-1:-1;;;;;;;;;;;14735:1527:13:o;20521:489::-;-1:-1:-1;;;;;20790:15:13;;;20772:34;;20842:15;;20837:2;20822:18;;20815:43;20889:2;20874:18;;20867:34;;;20937:3;20932:2;20917:18;;20910:31;;;20715:4;;20958:46;;20984:19;;20976:6;20958:46;:::i;:::-;20950:54;20521:489;-1:-1:-1;;;;;;20521:489:13:o;21015:249::-;21084:6;21137:2;21125:9;21116:7;21112:23;21108:32;21105:52;;;21153:1;21150;21143:12;21105:52;21185:9;21179:16;21204:30;21228:5;21204:30;:::i;21269:135::-;21308:3;-1:-1:-1;;21329:17:13;;21326:43;;;21349:18;;:::i;:::-;-1:-1:-1;21396:1:13;21385:13;;21269:135::o;21409:127::-;21470:10;21465:3;21461:20;21458:1;21451:31;21501:4;21498:1;21491:15;21525:4;21522:1;21515:15;21541:120;21581:1;21607;21597:35;;21612:18;;:::i;:::-;-1:-1:-1;21646:9:13;;21541:120::o;21666:125::-;21706:4;21734:1;21731;21728:8;21725:34;;;21739:18;;:::i;:::-;-1:-1:-1;21776:9:13;;21666:125::o;21796:112::-;21828:1;21854;21844:35;;21859:18;;:::i;:::-;-1:-1:-1;21893:9:13;;21796:112::o;21913:127::-;21974:10;21969:3;21965:20;21962:1;21955:31;22005:4;22002:1;21995:15;22029:4;22026:1;22019:15
Swarm Source
ipfs://36649123c6e7ee2597cd95548a0db28ea03f41e951a29a5afeca7320a7fd7fe1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.