ERC-721
Overview
Max Total Supply
999 CTC
Holders
428
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CTCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CutieCatsClub
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT // Create by 0xChrisx pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721A.sol"; import "./Strings.sol"; import "./MerkleProof.sol"; contract CutieCatsClub is Ownable, ERC721A, ReentrancyGuard { event Received(address, uint); uint256 public mintPhase ; uint256 public mintPrice = 0 ether; uint256 public collectionSize_ = 999 ; uint256 public maxWlRound = 925 ; uint256 public maxPerPublic = 5; uint256 public maxPerWhitelist = 2; uint256 public maxPerAllowlist = 2; bytes32 public WLroot ; bytes32 public ALroot ; string private baseURI ; constructor() ERC721A("CutieCatsClub", "CTC", maxPerPublic , collectionSize_ ) { } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } //------------------ BaseURI function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI (string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } //--------------------- END BaseURI //--------------------- Set & Change anythings function setMintPrice (uint256 newPrice) public onlyOwner { mintPrice = newPrice ; } function setCollectionSize (uint256 newCollectionSize) public onlyOwner { collectionSize_ = newCollectionSize ; } function setMaxWlRound (uint256 newMaxWlRound) public onlyOwner { maxWlRound = newMaxWlRound ; } function setMaxPerAddress (uint256 newMaxPerAddress) public onlyOwner { maxPerPublic = newMaxPerAddress ; } function setMaxPerWhitelist (uint256 newMaxPerWhitelist ) public onlyOwner { maxPerWhitelist = newMaxPerWhitelist; } function setMaxPerAllowlist (uint256 newMaxPerAllowlist ) public onlyOwner { maxPerAllowlist = newMaxPerAllowlist; } function setWLRoot (bytes32 newWLRoot) public onlyOwner { WLroot = newWLRoot ; } function setALRoot (bytes32 newALRoot) public onlyOwner { ALroot = newALRoot ; } function setPhase (uint256 newPhase) public onlyOwner { mintPhase = newPhase ; } //--------------------- END Set & Change anythings //--------------------------------------- Mint //-------------------- PublicMint function publicMint(uint256 _mintAmount) external payable callerIsUser { require(mintPhase == 5, "public sale hasn't begun yet"); require(totalSupply() + _mintAmount <= collectionSize_ , "reached max supply"); // must less than collction size require(numberMinted(msg.sender) + _mintAmount <= maxPerPublic, "can not mint this many"); // check max mint PerAddress ? require(msg.value >= mintPrice * _mintAmount, "ETH amount is not sufficient"); _safeMint(msg.sender, _mintAmount); } function numberMinted(address owner) public view returns (uint256) { // check number Minted of that address จำนวนที่มิ้นไปแล้ว ใน address นั้น return _numberMinted(owner); } //-------------------- END PublicMint //-------------------- DevMint function devMint(address _to ,uint256 _mintAmount) external onlyOwner { require(totalSupply() + _mintAmount <= collectionSize_ , "You can't mint more than collection size"); _safeMint( _to,_mintAmount); } //-------------------- END DevMint //-------------------- WhitelistMint function mintWhiteList(uint256 _mintAmount , bytes32[] memory _Proof) external payable { require(mintPhase == 1, "Whitelist round hasn't open yet"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_Proof, WLroot, leaf), "You're not whitelist." ); require(totalSupply() + _mintAmount <= maxWlRound , "Purchase would exceed max tokens"); require(numberMinted(msg.sender) + _mintAmount <= maxPerWhitelist, "Max per address for whitelist. Please try lower."); require(mintPrice * _mintAmount <= msg.value, "Ether value sent is not correct"); _safeMint(msg.sender, _mintAmount); } function isValidWL(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, WLroot, leaf); } //-------------------- END WhitelistMint //-------------------- AllowlistMint function mintAllowList(uint256 _mintAmount , bytes32[] memory _Proof) external payable { require(mintPhase == 3, "Allowlist round hasn't open yet"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_Proof, ALroot, leaf), "You're not Allowlist" ); require(totalSupply() + _mintAmount <= collectionSize_, "Purchase would exceed max tokens"); require(numberMinted(msg.sender) + _mintAmount <= maxPerAllowlist, "Max per address for allowlist. Please try lower."); require(mintPrice * _mintAmount <= msg.value, "Ether value sent is not correct"); _safeMint(msg.sender, _mintAmount); } function isValidAL(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, ALroot, leaf); } //-------------------- END AllowlistMint //--------------------------------------------- END Mint //------------------------- Withdraw Money address private wallet1 = 0xb4Eb727F3420005955045ACE103E3B260645DEE3; // K.Pim address private wallet2 = 0x8D5532c04f37A60F6E60b5F28D72b4E9013F938C; // K.Chris address private wallet3 = 0x031633884306abAF5d5003Ca5A631Aec9Ef258AA; // K.Kung address private wallet4 = 0xf9265783c26866FBC183a8dEB8F891C3c1cEF16b; // VAULT function withdrawMoney() external payable nonReentrant { uint256 _paytoW1 = address(this).balance*37/100 ; // K.pim uint256 _paytoW2 = address(this).balance*27/100 ; // K.Chris uint256 _paytoW3 = address(this).balance*27/100 ; // K.Kung uint256 _paytoW4 = address(this).balance*9/100 ; // VAULT require(address(this).balance > 0, "No ETH left"); require(payable(wallet1).send(_paytoW1)); require(payable(wallet2).send(_paytoW2)); require(payable(wallet3).send(_paytoW3)); require(payable(wallet4).send(_paytoW4)); } //------------------------- END Withdraw Money //-------------------- START Fallback Receive Ether Function receive() external payable { emit Received(msg.sender, msg.value); } //-------------------- END Fallback Receive Ether Function }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ 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 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @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(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); 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); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] calldata leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] calldata leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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":[],"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":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","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":"ALroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidAL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAllowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWlRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_Proof","type":"bytes32[]"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_Proof","type":"bytes32[]"}],"name":"mintWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"bytes32","name":"newALRoot","type":"bytes32"}],"name":"setALRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerAddress","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerAllowlist","type":"uint256"}],"name":"setMaxPerAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWhitelist","type":"uint256"}],"name":"setMaxPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWlRound","type":"uint256"}],"name":"setMaxWlRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPhase","type":"uint256"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWLRoot","type":"bytes32"}],"name":"setWLRoot","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600060018190556008819055600b556103e7600c5561039d600d556005600e556002600f819055601055601480546001600160a01b031990811673b4eb727f3420005955045ace103e3b260645dee317909155601580548216738d5532c04f37a60f6e60b5f28d72b4e9013f938c17905560168054821673031633884306abaf5d5003ca5a631aec9ef258aa1790556017805490911673f9265783c26866fbc183a8deb8f891c3c1cef16b179055348015620000bf57600080fd5b506040518060400160405280600d81526020016c21baba34b2a1b0ba39a1b63ab160991b8152506040518060400160405280600381526020016243544360e81b815250600e54600c54620001226200011c6200023360201b60201c565b62000237565b600081116200018f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001f15760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000186565b83516200020690600290602087019062000287565b5082516200021c90600390602086019062000287565b5060a0919091526080525050600160095562000369565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000295906200032d565b90600052602060002090601f016020900481019282620002b9576000855562000304565b82601f10620002d457805160ff191683800117855562000304565b8280016001018555821562000304579182015b8281111562000304578251825591602001919060010190620002e7565b506200031292915062000316565b5090565b5b8082111562000312576000815560010162000317565b600181811c908216806200034257607f821691505b6020821081036200036357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612e026200039a60003960008181611f1701528181611f410152612447015260005050612e026000f3fe60806040526004361061028c5760003560e01c80636817c76c1161015a578063b2bb934a116100c1578063dc33e6811161007a578063dc33e68114610780578063e1bf9a09146107a0578063e985e9c5146107b6578063f2fde38b146107ff578063f4a0a5281461081f578063fa05a6571461083f57600080fd5b8063b2bb934a146106de578063b88d4fde146106f4578063c2218fdd14610714578063c87b56dd14610734578063cfe1908d14610754578063d7224ba01461076a57600080fd5b806397f062781161011357806397f0627814610640578063a22cb46514610656578063ac44600214610676578063aca8ffe71461067e578063aff048b71461069e578063b11c7f82146106be57600080fd5b80636817c76c146105a257806370a08231146105b8578063715018a6146105d85780637bddd65b146105ed5780638da5cb5b1461060d57806395d89b411461062b57600080fd5b80632db11544116101fe5780634d87b974116101b75780634d87b974146104ec5780634f6ccce71461050c57806355f804b31461052c578063627804af1461054c5780636352211e1461056c57806366cc5f0d1461058c57600080fd5b80632db11544146104505780632f745c59146104635780633e9e834b146104835780633ffde173146104a357806342842e0e146104b95780634d10b546146104d957600080fd5b806318160ddd1161025057806318160ddd146103a55780631d706965146103ba57806323a47023146103da57806323b872dd146103f05780632b0052c6146104105780632cc826551461043057600080fd5b806301ffc9a7146102d057806306fdde0314610305578063081812fc14610327578063095ea7b31461035f57806317881cbf1461038157600080fd5b366102cb57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b3480156102dc57600080fd5b506102f06102eb366004612739565b610852565b60405190151581526020015b60405180910390f35b34801561031157600080fd5b5061031a6108bf565b6040516102fc91906127ae565b34801561033357600080fd5b506103476103423660046127c1565b610951565b6040516001600160a01b0390911681526020016102fc565b34801561036b57600080fd5b5061037f61037a3660046127f6565b6109e1565b005b34801561038d57600080fd5b50610397600a5481565b6040519081526020016102fc565b3480156103b157600080fd5b50600154610397565b3480156103c657600080fd5b506102f06103d53660046128e5565b610af8565b3480156103e657600080fd5b50610397600c5481565b3480156103fc57600080fd5b5061037f61040b366004612929565b610b0e565b34801561041c57600080fd5b506102f061042b3660046128e5565b610b19565b34801561043c57600080fd5b5061037f61044b3660046127c1565b610b28565b61037f61045e3660046127c1565b610b57565b34801561046f57600080fd5b5061039761047e3660046127f6565b610d1a565b34801561048f57600080fd5b5061037f61049e3660046127c1565b610e90565b3480156104af57600080fd5b5061039760115481565b3480156104c557600080fd5b5061037f6104d4366004612929565b610ebf565b61037f6104e7366004612965565b610eda565b3480156104f857600080fd5b5061037f6105073660046127c1565b611100565b34801561051857600080fd5b506103976105273660046127c1565b61112f565b34801561053857600080fd5b5061037f610547366004612a02565b611198565b34801561055857600080fd5b5061037f6105673660046127f6565b6111d9565b34801561057857600080fd5b506103476105873660046127c1565b611283565b34801561059857600080fd5b50610397600f5481565b3480156105ae57600080fd5b50610397600b5481565b3480156105c457600080fd5b506103976105d3366004612a4a565b611295565b3480156105e457600080fd5b5061037f611326565b3480156105f957600080fd5b5061037f6106083660046127c1565b61135c565b34801561061957600080fd5b506000546001600160a01b0316610347565b34801561063757600080fd5b5061031a61138b565b34801561064c57600080fd5b50610397600d5481565b34801561066257600080fd5b5061037f610671366004612a65565b61139a565b61037f61145e565b34801561068a57600080fd5b5061037f6106993660046127c1565b611632565b3480156106aa57600080fd5b5061037f6106b93660046127c1565b611661565b3480156106ca57600080fd5b5061037f6106d93660046127c1565b611690565b3480156106ea57600080fd5b5061039760125481565b34801561070057600080fd5b5061037f61070f366004612aa1565b6116bf565b34801561072057600080fd5b5061037f61072f3660046127c1565b6116f8565b34801561074057600080fd5b5061031a61074f3660046127c1565b611727565b34801561076057600080fd5b50610397600e5481565b34801561077657600080fd5b5061039760085481565b34801561078c57600080fd5b5061039761079b366004612a4a565b6117f3565b3480156107ac57600080fd5b5061039760105481565b3480156107c257600080fd5b506102f06107d1366004612b1c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080b57600080fd5b5061037f61081a366004612a4a565b6117fe565b34801561082b57600080fd5b5061037f61083a3660046127c1565b611896565b61037f61084d366004612965565b6118c5565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506001600160e01b0319821663780e9d6360e01b145b806108b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108ce90612b4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa90612b4f565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b5050505050905090565b600061095e826001541190565b6109c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109ec82611283565b9050806001600160a01b0316836001600160a01b031603610a5a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109bc565b336001600160a01b0382161480610a765750610a7681336107d1565b610ae85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109bc565b610af3838383611a83565b505050565b6000610b078360115484611adf565b9392505050565b610af3838383611af5565b6000610b078360125484611adf565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016109bc90612b89565b600a55565b323314610ba65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109bc565b600a54600514610bf85760405162461bcd60e51b815260206004820152601c60248201527f7075626c69632073616c65206861736e277420626567756e207965740000000060448201526064016109bc565b600c5481610c0560015490565b610c0f9190612bd4565b1115610c525760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016109bc565b600e5481610c5f336117f3565b610c699190612bd4565b1115610cb05760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016109bc565b80600b54610cbe9190612bec565b341015610d0d5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016109bc565b610d173382611e7b565b50565b6000610d2583611295565b8210610d7e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109bc565b6000610d8960015490565b905060008060005b83811015610e30576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610de357805192505b876001600160a01b0316836001600160a01b031603610e1d57868403610e0f575093506108b992505050565b83610e1981612c0b565b9450505b5080610e2881612c0b565b915050610d91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109bc565b6000546001600160a01b03163314610eba5760405162461bcd60e51b81526004016109bc90612b89565b600d55565b610af3838383604051806020016040528060008152506116bf565b600a54600114610f2c5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c69737420726f756e64206861736e2774206f70656e207965740060448201526064016109bc565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f728260115483611adf565b610fb65760405162461bcd60e51b81526020600482015260156024820152742cb7ba93b932903737ba103bb434ba32b634b9ba1760591b60448201526064016109bc565b600d5483610fc360015490565b610fcd9190612bd4565b111561101b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016109bc565b600f5483611028336117f3565b6110329190612bd4565b11156110995760405162461bcd60e51b815260206004820152603060248201527f4d617820706572206164647265737320666f722077686974656c6973742e205060448201526f3632b0b9b2903a393c903637bbb2b91760811b60648201526084016109bc565b3483600b546110a89190612bec565b11156110f65760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016109bc565b610af33384611e7b565b6000546001600160a01b0316331461112a5760405162461bcd60e51b81526004016109bc90612b89565b601055565b600061113a60015490565b82106111945760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109bc565b5090565b6000546001600160a01b031633146111c25760405162461bcd60e51b81526004016109bc90612b89565b80516111d5906013906020840190612693565b5050565b6000546001600160a01b031633146112035760405162461bcd60e51b81526004016109bc90612b89565b600c548161121060015490565b61121a9190612bd4565b11156112795760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20636f6c6c656374604482015267696f6e2073697a6560c01b60648201526084016109bc565b6111d58282611e7b565b600061128e82611e95565b5192915050565b60006001600160a01b0382166113015760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109bc565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113505760405162461bcd60e51b81526004016109bc90612b89565b61135a600061203e565b565b6000546001600160a01b031633146113865760405162461bcd60e51b81526004016109bc90612b89565b600e55565b6060600380546108ce90612b4f565b336001600160a01b038316036113f25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109bc565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600954036114b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109bc565b6002600955600060646114c4476025612bec565b6114ce9190612c3a565b9050600060646114df47601b612bec565b6114e99190612c3a565b9050600060646114fa47601b612bec565b6115049190612c3a565b905060006064611515476009612bec565b61151f9190612c3a565b90506000471161155f5760405162461bcd60e51b815260206004820152600b60248201526a139bc8115512081b19599d60aa1b60448201526064016109bc565b6014546040516001600160a01b039091169085156108fc029086906000818181858888f1935050505061159157600080fd5b6015546040516001600160a01b039091169084156108fc029085906000818181858888f193505050506115c357600080fd5b6016546040516001600160a01b039091169083156108fc029084906000818181858888f193505050506115f557600080fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061162757600080fd5b505060016009555050565b6000546001600160a01b0316331461165c5760405162461bcd60e51b81526004016109bc90612b89565b600c55565b6000546001600160a01b0316331461168b5760405162461bcd60e51b81526004016109bc90612b89565b600f55565b6000546001600160a01b031633146116ba5760405162461bcd60e51b81526004016109bc90612b89565b601155565b6116ca848484611af5565b6116d68484848461208e565b6116f25760405162461bcd60e51b81526004016109bc90612c4e565b50505050565b6000546001600160a01b031633146117225760405162461bcd60e51b81526004016109bc90612b89565b601255565b6060611734826001541190565b6117985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109bc565b60006117a2612190565b905060008151116117c25760405180602001604052806000815250610b07565b806117cc8461219f565b6040516020016117dd929190612ca1565b6040516020818303038152906040529392505050565b60006108b98261229f565b6000546001600160a01b031633146118285760405162461bcd60e51b81526004016109bc90612b89565b6001600160a01b03811661188d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bc565b610d178161203e565b6000546001600160a01b031633146118c05760405162461bcd60e51b81526004016109bc90612b89565b600b55565b600a546003146119175760405162461bcd60e51b815260206004820152601f60248201527f416c6c6f776c69737420726f756e64206861736e2774206f70656e207965740060448201526064016109bc565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061195d8260125483611adf565b6119a05760405162461bcd60e51b8152602060048201526014602482015273165bdd49dc99481b9bdd08105b1b1bdddb1a5cdd60621b60448201526064016109bc565b600c54836119ad60015490565b6119b79190612bd4565b1115611a055760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016109bc565b60105483611a12336117f3565b611a1c9190612bd4565b11156110995760405162461bcd60e51b815260206004820152603060248201527f4d617820706572206164647265737320666f7220616c6c6f776c6973742e205060448201526f3632b0b9b2903a393c903637bbb2b91760811b60648201526084016109bc565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611aec858461233d565b14949350505050565b6000611b0082611e95565b80519091506000906001600160a01b0316336001600160a01b03161480611b37575033611b2c84610951565b6001600160a01b0316145b80611b4957508151611b4990336107d1565b905080611bb35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109bc565b846001600160a01b031682600001516001600160a01b031614611c275760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109bc565b6001600160a01b038416611c8b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109bc565b611c9b6000848460000151611a83565b6001600160a01b0385166000908152600560205260408120805460019290611ccd9084906001600160801b0316612cd0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611d1991859116612cf8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da0846001612bd4565b6000818152600460205260409020549091506001600160a01b0316611e3157611dca816001541190565b15611e315760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111d582826040518060200160405280600081525061238a565b6040805180820190915260008082526020820152611eb4826001541190565b611f135760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109bc565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f7457611f667f000000000000000000000000000000000000000000000000000000000000000084612d1a565b611f71906001612bd4565b90505b825b818110611fdd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fca57949350505050565b5080611fd581612d31565b915050611f76565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561218457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d2903390899088908890600401612d48565b6020604051808303816000875af192505050801561210d575060408051601f3d908101601f1916820190925261210a91810190612d85565b60015b61216a573d80801561213b576040519150601f19603f3d011682016040523d82523d6000602084013e612140565b606091505b5080516000036121625760405162461bcd60e51b81526004016109bc90612c4e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612188565b5060015b949350505050565b6060601380546108ce90612b4f565b6060816000036121c65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121f057806121da81612c0b565b91506121e99050600a83612c3a565b91506121ca565b6000816001600160401b0381111561220a5761220a612820565b6040519080825280601f01601f191660200182016040528015612234576020820181803683370190505b5090505b841561218857612249600183612d1a565b9150612256600a86612da2565b612261906030612bd4565b60f81b81838151811061227657612276612db6565b60200101906001600160f81b031916908160001a905350612298600a86612c3a565b9450612238565b60006001600160a01b0382166123115760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109bc565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081815b84518110156123825761236e8286838151811061236157612361612db6565b6020026020010151612664565b91508061237a81612c0b565b915050612342565b509392505050565b6001546001600160a01b0384166123ed5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109bc565b6123f8816001541190565b156124455760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109bc565b7f00000000000000000000000000000000000000000000000000000000000000008311156124c05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109bc565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061251c908790612cf8565b6001600160801b0316815260200185836020015161253a9190612cf8565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126595760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461261d600088848861208e565b6126395760405162461bcd60e51b81526004016109bc90612c4e565b8161264381612c0b565b925050808061265190612c0b565b9150506125d0565b506001819055611e73565b6000818310612680576000828152602084905260409020610b07565b6000838152602083905260409020610b07565b82805461269f90612b4f565b90600052602060002090601f0160209004810192826126c15760008555612707565b82601f106126da57805160ff1916838001178555612707565b82800160010185558215612707579182015b828111156127075782518255916020019190600101906126ec565b506111949291505b80821115611194576000815560010161270f565b6001600160e01b031981168114610d1757600080fd5b60006020828403121561274b57600080fd5b8135610b0781612723565b60005b83811015612771578181015183820152602001612759565b838111156116f25750506000910152565b6000815180845261279a816020860160208601612756565b601f01601f19169290920160200192915050565b602081526000610b076020830184612782565b6000602082840312156127d357600080fd5b5035919050565b80356001600160a01b03811681146127f157600080fd5b919050565b6000806040838503121561280957600080fd5b612812836127da565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561285e5761285e612820565b604052919050565b600082601f83011261287757600080fd5b813560206001600160401b0382111561289257612892612820565b8160051b6128a1828201612836565b92835284810182019282810190878511156128bb57600080fd5b83870192505b848310156128da578235825291830191908301906128c1565b979650505050505050565b600080604083850312156128f857600080fd5b82356001600160401b0381111561290e57600080fd5b61291a85828601612866565b95602094909401359450505050565b60008060006060848603121561293e57600080fd5b612947846127da565b9250612955602085016127da565b9150604084013590509250925092565b6000806040838503121561297857600080fd5b8235915060208301356001600160401b0381111561299557600080fd5b6129a185828601612866565b9150509250929050565b60006001600160401b038311156129c4576129c4612820565b6129d7601f8401601f1916602001612836565b90508281528383830111156129eb57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612a1457600080fd5b81356001600160401b03811115612a2a57600080fd5b8201601f81018413612a3b57600080fd5b612188848235602084016129ab565b600060208284031215612a5c57600080fd5b610b07826127da565b60008060408385031215612a7857600080fd5b612a81836127da565b915060208301358015158114612a9657600080fd5b809150509250929050565b60008060008060808587031215612ab757600080fd5b612ac0856127da565b9350612ace602086016127da565b92506040850135915060608501356001600160401b03811115612af057600080fd5b8501601f81018713612b0157600080fd5b612b10878235602084016129ab565b91505092959194509250565b60008060408385031215612b2f57600080fd5b612b38836127da565b9150612b46602084016127da565b90509250929050565b600181811c90821680612b6357607f821691505b602082108103612b8357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612be757612be7612bbe565b500190565b6000816000190483118215151615612c0657612c06612bbe565b500290565b600060018201612c1d57612c1d612bbe565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612c4957612c49612c24565b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612cb3818460208801612756565b835190830190612cc7818360208801612756565b01949350505050565b60006001600160801b0383811690831681811015612cf057612cf0612bbe565b039392505050565b60006001600160801b03808316818516808303821115612cc757612cc7612bbe565b600082821015612d2c57612d2c612bbe565b500390565b600081612d4057612d40612bbe565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7b90830184612782565b9695505050505050565b600060208284031215612d9757600080fd5b8151610b0781612723565b600082612db157612db1612c24565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c6bc1a5294e2dba5dd2ff9408fb189d6490616776dfbe44ab071ef49226834f164736f6c634300080e0033
Deployed Bytecode
0x60806040526004361061028c5760003560e01c80636817c76c1161015a578063b2bb934a116100c1578063dc33e6811161007a578063dc33e68114610780578063e1bf9a09146107a0578063e985e9c5146107b6578063f2fde38b146107ff578063f4a0a5281461081f578063fa05a6571461083f57600080fd5b8063b2bb934a146106de578063b88d4fde146106f4578063c2218fdd14610714578063c87b56dd14610734578063cfe1908d14610754578063d7224ba01461076a57600080fd5b806397f062781161011357806397f0627814610640578063a22cb46514610656578063ac44600214610676578063aca8ffe71461067e578063aff048b71461069e578063b11c7f82146106be57600080fd5b80636817c76c146105a257806370a08231146105b8578063715018a6146105d85780637bddd65b146105ed5780638da5cb5b1461060d57806395d89b411461062b57600080fd5b80632db11544116101fe5780634d87b974116101b75780634d87b974146104ec5780634f6ccce71461050c57806355f804b31461052c578063627804af1461054c5780636352211e1461056c57806366cc5f0d1461058c57600080fd5b80632db11544146104505780632f745c59146104635780633e9e834b146104835780633ffde173146104a357806342842e0e146104b95780634d10b546146104d957600080fd5b806318160ddd1161025057806318160ddd146103a55780631d706965146103ba57806323a47023146103da57806323b872dd146103f05780632b0052c6146104105780632cc826551461043057600080fd5b806301ffc9a7146102d057806306fdde0314610305578063081812fc14610327578063095ea7b31461035f57806317881cbf1461038157600080fd5b366102cb57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b3480156102dc57600080fd5b506102f06102eb366004612739565b610852565b60405190151581526020015b60405180910390f35b34801561031157600080fd5b5061031a6108bf565b6040516102fc91906127ae565b34801561033357600080fd5b506103476103423660046127c1565b610951565b6040516001600160a01b0390911681526020016102fc565b34801561036b57600080fd5b5061037f61037a3660046127f6565b6109e1565b005b34801561038d57600080fd5b50610397600a5481565b6040519081526020016102fc565b3480156103b157600080fd5b50600154610397565b3480156103c657600080fd5b506102f06103d53660046128e5565b610af8565b3480156103e657600080fd5b50610397600c5481565b3480156103fc57600080fd5b5061037f61040b366004612929565b610b0e565b34801561041c57600080fd5b506102f061042b3660046128e5565b610b19565b34801561043c57600080fd5b5061037f61044b3660046127c1565b610b28565b61037f61045e3660046127c1565b610b57565b34801561046f57600080fd5b5061039761047e3660046127f6565b610d1a565b34801561048f57600080fd5b5061037f61049e3660046127c1565b610e90565b3480156104af57600080fd5b5061039760115481565b3480156104c557600080fd5b5061037f6104d4366004612929565b610ebf565b61037f6104e7366004612965565b610eda565b3480156104f857600080fd5b5061037f6105073660046127c1565b611100565b34801561051857600080fd5b506103976105273660046127c1565b61112f565b34801561053857600080fd5b5061037f610547366004612a02565b611198565b34801561055857600080fd5b5061037f6105673660046127f6565b6111d9565b34801561057857600080fd5b506103476105873660046127c1565b611283565b34801561059857600080fd5b50610397600f5481565b3480156105ae57600080fd5b50610397600b5481565b3480156105c457600080fd5b506103976105d3366004612a4a565b611295565b3480156105e457600080fd5b5061037f611326565b3480156105f957600080fd5b5061037f6106083660046127c1565b61135c565b34801561061957600080fd5b506000546001600160a01b0316610347565b34801561063757600080fd5b5061031a61138b565b34801561064c57600080fd5b50610397600d5481565b34801561066257600080fd5b5061037f610671366004612a65565b61139a565b61037f61145e565b34801561068a57600080fd5b5061037f6106993660046127c1565b611632565b3480156106aa57600080fd5b5061037f6106b93660046127c1565b611661565b3480156106ca57600080fd5b5061037f6106d93660046127c1565b611690565b3480156106ea57600080fd5b5061039760125481565b34801561070057600080fd5b5061037f61070f366004612aa1565b6116bf565b34801561072057600080fd5b5061037f61072f3660046127c1565b6116f8565b34801561074057600080fd5b5061031a61074f3660046127c1565b611727565b34801561076057600080fd5b50610397600e5481565b34801561077657600080fd5b5061039760085481565b34801561078c57600080fd5b5061039761079b366004612a4a565b6117f3565b3480156107ac57600080fd5b5061039760105481565b3480156107c257600080fd5b506102f06107d1366004612b1c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080b57600080fd5b5061037f61081a366004612a4a565b6117fe565b34801561082b57600080fd5b5061037f61083a3660046127c1565b611896565b61037f61084d366004612965565b6118c5565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506001600160e01b0319821663780e9d6360e01b145b806108b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108ce90612b4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa90612b4f565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b5050505050905090565b600061095e826001541190565b6109c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109ec82611283565b9050806001600160a01b0316836001600160a01b031603610a5a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109bc565b336001600160a01b0382161480610a765750610a7681336107d1565b610ae85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109bc565b610af3838383611a83565b505050565b6000610b078360115484611adf565b9392505050565b610af3838383611af5565b6000610b078360125484611adf565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016109bc90612b89565b600a55565b323314610ba65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109bc565b600a54600514610bf85760405162461bcd60e51b815260206004820152601c60248201527f7075626c69632073616c65206861736e277420626567756e207965740000000060448201526064016109bc565b600c5481610c0560015490565b610c0f9190612bd4565b1115610c525760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016109bc565b600e5481610c5f336117f3565b610c699190612bd4565b1115610cb05760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016109bc565b80600b54610cbe9190612bec565b341015610d0d5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016109bc565b610d173382611e7b565b50565b6000610d2583611295565b8210610d7e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109bc565b6000610d8960015490565b905060008060005b83811015610e30576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610de357805192505b876001600160a01b0316836001600160a01b031603610e1d57868403610e0f575093506108b992505050565b83610e1981612c0b565b9450505b5080610e2881612c0b565b915050610d91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109bc565b6000546001600160a01b03163314610eba5760405162461bcd60e51b81526004016109bc90612b89565b600d55565b610af3838383604051806020016040528060008152506116bf565b600a54600114610f2c5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c69737420726f756e64206861736e2774206f70656e207965740060448201526064016109bc565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f728260115483611adf565b610fb65760405162461bcd60e51b81526020600482015260156024820152742cb7ba93b932903737ba103bb434ba32b634b9ba1760591b60448201526064016109bc565b600d5483610fc360015490565b610fcd9190612bd4565b111561101b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016109bc565b600f5483611028336117f3565b6110329190612bd4565b11156110995760405162461bcd60e51b815260206004820152603060248201527f4d617820706572206164647265737320666f722077686974656c6973742e205060448201526f3632b0b9b2903a393c903637bbb2b91760811b60648201526084016109bc565b3483600b546110a89190612bec565b11156110f65760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016109bc565b610af33384611e7b565b6000546001600160a01b0316331461112a5760405162461bcd60e51b81526004016109bc90612b89565b601055565b600061113a60015490565b82106111945760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109bc565b5090565b6000546001600160a01b031633146111c25760405162461bcd60e51b81526004016109bc90612b89565b80516111d5906013906020840190612693565b5050565b6000546001600160a01b031633146112035760405162461bcd60e51b81526004016109bc90612b89565b600c548161121060015490565b61121a9190612bd4565b11156112795760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20636f6c6c656374604482015267696f6e2073697a6560c01b60648201526084016109bc565b6111d58282611e7b565b600061128e82611e95565b5192915050565b60006001600160a01b0382166113015760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109bc565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113505760405162461bcd60e51b81526004016109bc90612b89565b61135a600061203e565b565b6000546001600160a01b031633146113865760405162461bcd60e51b81526004016109bc90612b89565b600e55565b6060600380546108ce90612b4f565b336001600160a01b038316036113f25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109bc565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600954036114b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109bc565b6002600955600060646114c4476025612bec565b6114ce9190612c3a565b9050600060646114df47601b612bec565b6114e99190612c3a565b9050600060646114fa47601b612bec565b6115049190612c3a565b905060006064611515476009612bec565b61151f9190612c3a565b90506000471161155f5760405162461bcd60e51b815260206004820152600b60248201526a139bc8115512081b19599d60aa1b60448201526064016109bc565b6014546040516001600160a01b039091169085156108fc029086906000818181858888f1935050505061159157600080fd5b6015546040516001600160a01b039091169084156108fc029085906000818181858888f193505050506115c357600080fd5b6016546040516001600160a01b039091169083156108fc029084906000818181858888f193505050506115f557600080fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061162757600080fd5b505060016009555050565b6000546001600160a01b0316331461165c5760405162461bcd60e51b81526004016109bc90612b89565b600c55565b6000546001600160a01b0316331461168b5760405162461bcd60e51b81526004016109bc90612b89565b600f55565b6000546001600160a01b031633146116ba5760405162461bcd60e51b81526004016109bc90612b89565b601155565b6116ca848484611af5565b6116d68484848461208e565b6116f25760405162461bcd60e51b81526004016109bc90612c4e565b50505050565b6000546001600160a01b031633146117225760405162461bcd60e51b81526004016109bc90612b89565b601255565b6060611734826001541190565b6117985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109bc565b60006117a2612190565b905060008151116117c25760405180602001604052806000815250610b07565b806117cc8461219f565b6040516020016117dd929190612ca1565b6040516020818303038152906040529392505050565b60006108b98261229f565b6000546001600160a01b031633146118285760405162461bcd60e51b81526004016109bc90612b89565b6001600160a01b03811661188d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bc565b610d178161203e565b6000546001600160a01b031633146118c05760405162461bcd60e51b81526004016109bc90612b89565b600b55565b600a546003146119175760405162461bcd60e51b815260206004820152601f60248201527f416c6c6f776c69737420726f756e64206861736e2774206f70656e207965740060448201526064016109bc565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061195d8260125483611adf565b6119a05760405162461bcd60e51b8152602060048201526014602482015273165bdd49dc99481b9bdd08105b1b1bdddb1a5cdd60621b60448201526064016109bc565b600c54836119ad60015490565b6119b79190612bd4565b1115611a055760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016109bc565b60105483611a12336117f3565b611a1c9190612bd4565b11156110995760405162461bcd60e51b815260206004820152603060248201527f4d617820706572206164647265737320666f7220616c6c6f776c6973742e205060448201526f3632b0b9b2903a393c903637bbb2b91760811b60648201526084016109bc565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611aec858461233d565b14949350505050565b6000611b0082611e95565b80519091506000906001600160a01b0316336001600160a01b03161480611b37575033611b2c84610951565b6001600160a01b0316145b80611b4957508151611b4990336107d1565b905080611bb35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109bc565b846001600160a01b031682600001516001600160a01b031614611c275760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109bc565b6001600160a01b038416611c8b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109bc565b611c9b6000848460000151611a83565b6001600160a01b0385166000908152600560205260408120805460019290611ccd9084906001600160801b0316612cd0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611d1991859116612cf8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da0846001612bd4565b6000818152600460205260409020549091506001600160a01b0316611e3157611dca816001541190565b15611e315760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111d582826040518060200160405280600081525061238a565b6040805180820190915260008082526020820152611eb4826001541190565b611f135760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109bc565b60007f00000000000000000000000000000000000000000000000000000000000000058310611f7457611f667f000000000000000000000000000000000000000000000000000000000000000584612d1a565b611f71906001612bd4565b90505b825b818110611fdd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fca57949350505050565b5080611fd581612d31565b915050611f76565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561218457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d2903390899088908890600401612d48565b6020604051808303816000875af192505050801561210d575060408051601f3d908101601f1916820190925261210a91810190612d85565b60015b61216a573d80801561213b576040519150601f19603f3d011682016040523d82523d6000602084013e612140565b606091505b5080516000036121625760405162461bcd60e51b81526004016109bc90612c4e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612188565b5060015b949350505050565b6060601380546108ce90612b4f565b6060816000036121c65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121f057806121da81612c0b565b91506121e99050600a83612c3a565b91506121ca565b6000816001600160401b0381111561220a5761220a612820565b6040519080825280601f01601f191660200182016040528015612234576020820181803683370190505b5090505b841561218857612249600183612d1a565b9150612256600a86612da2565b612261906030612bd4565b60f81b81838151811061227657612276612db6565b60200101906001600160f81b031916908160001a905350612298600a86612c3a565b9450612238565b60006001600160a01b0382166123115760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109bc565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081815b84518110156123825761236e8286838151811061236157612361612db6565b6020026020010151612664565b91508061237a81612c0b565b915050612342565b509392505050565b6001546001600160a01b0384166123ed5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109bc565b6123f8816001541190565b156124455760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109bc565b7f00000000000000000000000000000000000000000000000000000000000000058311156124c05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109bc565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061251c908790612cf8565b6001600160801b0316815260200185836020015161253a9190612cf8565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126595760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461261d600088848861208e565b6126395760405162461bcd60e51b81526004016109bc90612c4e565b8161264381612c0b565b925050808061265190612c0b565b9150506125d0565b506001819055611e73565b6000818310612680576000828152602084905260409020610b07565b6000838152602083905260409020610b07565b82805461269f90612b4f565b90600052602060002090601f0160209004810192826126c15760008555612707565b82601f106126da57805160ff1916838001178555612707565b82800160010185558215612707579182015b828111156127075782518255916020019190600101906126ec565b506111949291505b80821115611194576000815560010161270f565b6001600160e01b031981168114610d1757600080fd5b60006020828403121561274b57600080fd5b8135610b0781612723565b60005b83811015612771578181015183820152602001612759565b838111156116f25750506000910152565b6000815180845261279a816020860160208601612756565b601f01601f19169290920160200192915050565b602081526000610b076020830184612782565b6000602082840312156127d357600080fd5b5035919050565b80356001600160a01b03811681146127f157600080fd5b919050565b6000806040838503121561280957600080fd5b612812836127da565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561285e5761285e612820565b604052919050565b600082601f83011261287757600080fd5b813560206001600160401b0382111561289257612892612820565b8160051b6128a1828201612836565b92835284810182019282810190878511156128bb57600080fd5b83870192505b848310156128da578235825291830191908301906128c1565b979650505050505050565b600080604083850312156128f857600080fd5b82356001600160401b0381111561290e57600080fd5b61291a85828601612866565b95602094909401359450505050565b60008060006060848603121561293e57600080fd5b612947846127da565b9250612955602085016127da565b9150604084013590509250925092565b6000806040838503121561297857600080fd5b8235915060208301356001600160401b0381111561299557600080fd5b6129a185828601612866565b9150509250929050565b60006001600160401b038311156129c4576129c4612820565b6129d7601f8401601f1916602001612836565b90508281528383830111156129eb57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612a1457600080fd5b81356001600160401b03811115612a2a57600080fd5b8201601f81018413612a3b57600080fd5b612188848235602084016129ab565b600060208284031215612a5c57600080fd5b610b07826127da565b60008060408385031215612a7857600080fd5b612a81836127da565b915060208301358015158114612a9657600080fd5b809150509250929050565b60008060008060808587031215612ab757600080fd5b612ac0856127da565b9350612ace602086016127da565b92506040850135915060608501356001600160401b03811115612af057600080fd5b8501601f81018713612b0157600080fd5b612b10878235602084016129ab565b91505092959194509250565b60008060408385031215612b2f57600080fd5b612b38836127da565b9150612b46602084016127da565b90509250929050565b600181811c90821680612b6357607f821691505b602082108103612b8357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612be757612be7612bbe565b500190565b6000816000190483118215151615612c0657612c06612bbe565b500290565b600060018201612c1d57612c1d612bbe565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612c4957612c49612c24565b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612cb3818460208801612756565b835190830190612cc7818360208801612756565b01949350505050565b60006001600160801b0383811690831681811015612cf057612cf0612bbe565b039392505050565b60006001600160801b03808316818516808303821115612cc757612cc7612bbe565b600082821015612d2c57612d2c612bbe565b500390565b600081612d4057612d40612bbe565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7b90830184612782565b9695505050505050565b600060208284031215612d9757600080fd5b8151610b0781612723565b600082612db157612db1612c24565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c6bc1a5294e2dba5dd2ff9408fb189d6490616776dfbe44ab071ef49226834f164736f6c634300080e0033
Deployed Bytecode Sourcemap
213:6539:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6652:31;;;6661:10;188:51:14;;6673:9:2;270:2:14;255:18;;248:34;6652:31:2;;161:18:14;6652:31:2;;;;;;;213:6539;;;;;3826:358:4;;;;;;;;;;-1:-1:-1;3826:358:4;;;;;:::i;:::-;;:::i;:::-;;;844:14:14;;837:22;819:41;;807:2;792:18;3826:358:4;;;;;;;;5490:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:14;;;1953:51;;1941:2;1926:18;6955:200:4;1807:203:14;6533:369:4;;;;;;;;;;-1:-1:-1;6533:369:4;;;;;:::i;:::-;;:::i;:::-;;316:24:2;;;;;;;;;;;;;;;;;;;2598:25:14;;;2586:2;2571:18;316:24:2;2452:177:14;2432:92:4;;;;;;;;;;-1:-1:-1;2507:12:4;;2432:92;;4271:157:2;;;;;;;;;;-1:-1:-1;4271:157:2;;;;;:::i;:::-;;:::i;389:36::-;;;;;;;;;;;;;;;;7773:136:4;;;;;;;;;;-1:-1:-1;7773:136:4;;;;;:::i;:::-;;:::i;5239:157:2:-;;;;;;;;;;-1:-1:-1;5239:157:2;;;;;:::i;:::-;;:::i;2173:92::-;;;;;;;;;;-1:-1:-1;2173:92:2;;;;;:::i;:::-;;:::i;2403:528::-;;;;;;:::i;:::-;;:::i;3046:721:4:-;;;;;;;;;;-1:-1:-1;3046:721:4;;;;;:::i;:::-;;:::i;1470:108:2:-;;;;;;;;;;-1:-1:-1;1470:108:2;;;;;:::i;:::-;;:::i;590:21::-;;;;;;;;;;;;;;;;7967:151:4;;;;;;;;;;-1:-1:-1;7967:151:4;;;;;:::i;:::-;;:::i;3548:717:2:-;;;;;;:::i;:::-;;:::i;1843:128::-;;;;;;;;;;-1:-1:-1;1843:128:2;;;;;:::i;:::-;;:::i;2588:174:4:-;;;;;;;;;;-1:-1:-1;2588:174:4;;;;;:::i;:::-;;:::i;1040:103:2:-;;;;;;;;;;-1:-1:-1;1040:103:2;;;;;:::i;:::-;;:::i;3244:226::-;;;;;;;;;;-1:-1:-1;3244:226:2;;;;;:::i;:::-;;:::i;5320:116:4:-;;;;;;;;;;-1:-1:-1;5320:116:4;;;;;:::i;:::-;;:::i;509:34:2:-;;;;;;;;;;;;;;;;348;;;;;;;;;;;;;;;;4235:208:4;;;;;;;;;;-1:-1:-1;4235:208:4;;;;;:::i;:::-;;:::i;1598:92:11:-;;;;;;;;;;;;;:::i;1584:119:2:-;;;;;;;;;;-1:-1:-1;1584:119:2;;;;;:::i;:::-;;:::i;966:85:11:-;;;;;;;;;;-1:-1:-1;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;966:85;;5638:96:4;;;;;;;;;;;;;:::i;432:32:2:-;;;;;;;;;;;;;;;;7214:269:4;;;;;;;;;;-1:-1:-1;7214:269:4;;;;;:::i;:::-;;:::i;5896:596:2:-;;;:::i;1339:125::-;;;;;;;;;;-1:-1:-1;1339:125:2;;;;;:::i;:::-;;:::i;1709:128::-;;;;;;;;;;-1:-1:-1;1709:128:2;;;;;:::i;:::-;;:::i;1977:92::-;;;;;;;;;;-1:-1:-1;1977:92:2;;;;;:::i;:::-;;:::i;618:21::-;;;;;;;;;;;;;;;;8176:300:4;;;;;;;;;;-1:-1:-1;8176:300:4;;;;;:::i;:::-;;:::i;2075:92:2:-;;;;;;;;;;-1:-1:-1;2075:92:2;;;;;:::i;:::-;;:::i;5792:377:4:-;;;;;;;;;;-1:-1:-1;5792:377:4;;;;;:::i;:::-;;:::i;472:31:2:-;;;;;;;;;;;;;;;;12446:43:4;;;;;;;;;;;;;;;;2937:233:2;;;;;;;;;;-1:-1:-1;2937:233:2;;;;;:::i;:::-;;:::i;549:34::-;;;;;;;;;;;;;;;;7541:178:4;;;;;;;;;;-1:-1:-1;7541:178:4;;;;;:::i;:::-;-1:-1:-1;;;;;7679:25:4;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178;1839:189:11;;;;;;;;;;-1:-1:-1;1839:189:11;;;;;:::i;:::-;;:::i;1233:96:2:-;;;;;;;;;;-1:-1:-1;1233:96:2;;;;;:::i;:::-;;:::i;4513:720::-;;;;;;:::i;:::-;;:::i;3826:358:4:-;3948:4;-1:-1:-1;;;;;;3975:40:4;;-1:-1:-1;;;3975:40:4;;:98;;-1:-1:-1;;;;;;;4025:48:4;;-1:-1:-1;;;4025:48:4;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:4;;-1:-1:-1;;;4083:50:4;3975:158;:204;;;-1:-1:-1;;;;;;;;;;871:40:3;;;4143:36:4;3962:217;3826:358;-1:-1:-1;;3826:358:4:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;8792:12;;-1:-1:-1;8782:22:4;8706:103;7046:16;7038:74;;;;-1:-1:-1;;;7038:74:4;;8240:2:14;7038:74:4;;;8222:21:14;8279:2;8259:18;;;8252:30;8318:34;8298:18;;;8291:62;-1:-1:-1;;;8369:18:14;;;8362:43;8422:19;;7038:74:4;;;;;;;;;-1:-1:-1;7126:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:4;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:4;:2;-1:-1:-1;;;;;6655:11:4;;6647:58;;;;-1:-1:-1;;;6647:58:4;;8654:2:14;6647:58:4;;;8636:21:14;8693:2;8673:18;;;8666:30;8732:34;8712:18;;;8705:62;-1:-1:-1;;;8783:18:14;;;8776:32;8825:19;;6647:58:4;8452:398:14;6647:58:4;665:10:1;-1:-1:-1;;;;;6727:21:4;;;;:62;;-1:-1:-1;6752:37:4;6769:5;665:10:1;7541:178:4;:::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:4;;9057:2:14;6712:150:4;;;9039:21:14;9096:2;9076:18;;;9069:30;9135:34;9115:18;;;9108:62;9206:27;9186:18;;;9179:55;9251:19;;6712:150:4;8855:421:14;6712:150:4;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6595:307;6533:369;;:::o;4271:157:2:-;4349:4;4381:39;4400:5;4407:6;;4415:4;4381:18;:39::i;:::-;4374:46;4271:157;-1:-1:-1;;;4271:157:2:o;7773:136:4:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;5239:157:2:-;5317:4;5349:39;5368:5;5375:6;;5383:4;5349:18;:39::i;2173:92::-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2237:9:2::1;:20:::0;2173:92::o;2403:528::-;820:9;833:10;820:23;812:66;;;;-1:-1:-1;;;812:66:2;;9844:2:14;812:66:2;;;9826:21:14;9883:2;9863:18;;;9856:30;9922:32;9902:18;;;9895:60;9972:18;;812:66:2;9642:354:14;812:66:2;2493:9:::1;;2506:1;2493:14;2485:55;;;::::0;-1:-1:-1;;;2485:55:2;;10203:2:14;2485:55:2::1;::::0;::::1;10185:21:14::0;10242:2;10222:18;;;10215:30;10281;10261:18;;;10254:58;10329:18;;2485:55:2::1;10001:352:14::0;2485:55:2::1;2589:15;;2574:11;2558:13;2507:12:4::0;;;2432:92;2558:13:2::1;:27;;;;:::i;:::-;:46;;2550:79;;;::::0;-1:-1:-1;;;2550:79:2;;10825:2:14;2550:79:2::1;::::0;::::1;10807:21:14::0;10864:2;10844:18;;;10837:30;-1:-1:-1;;;10883:18:14;;;10876:48;10941:18;;2550:79:2::1;10623:342:14::0;2550:79:2::1;2722:12;;2707:11;2680:24;2693:10;2680:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;2672:89;;;::::0;-1:-1:-1;;;2672:89:2;;11172:2:14;2672:89:2::1;::::0;::::1;11154:21:14::0;11211:2;11191:18;;;11184:30;-1:-1:-1;;;11230:18:14;;;11223:52;11292:18;;2672:89:2::1;10970:346:14::0;2672:89:2::1;2835:11;2823:9;;:23;;;;:::i;:::-;2810:9;:36;;2802:77;;;::::0;-1:-1:-1;;;2802:77:2;;11696:2:14;2802:77:2::1;::::0;::::1;11678:21:14::0;11735:2;11715:18;;;11708:30;11774;11754:18;;;11747:58;11822:18;;2802:77:2::1;11494:352:14::0;2802:77:2::1;2890:34;2900:10;2912:11;2890:9;:34::i;:::-;2403:528:::0;:::o;3046:721:4:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:4;;12053:2:14;3168:71:4;;;12035:21:14;12092:2;12072:18;;;12065:30;12131:34;12111:18;;;12104:62;-1:-1:-1;;;12182:18:14;;;12175:32;12224:19;;3168:71:4;11851:398:14;3168:71:4;3245:22;3270:13;2507:12;;;2432:92;3270:13;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:4;;;;;-1:-1:-1;;;3415:48:4;;;-1:-1:-1;;;;;3415:48:4;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:4;3590:5;-1:-1:-1;;;;;3569:26:4;:17;-1:-1:-1;;;;;3569:26:4;;3565:130;;3626:5;3611:11;:20;3607:57;;-1:-1:-1;3652:1:4;-1:-1:-1;3645:8:4;;-1:-1:-1;;;3645:8:4;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:4;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:4;;-1:-1:-1;;;3706:56:4;;12596:2:14;3706:56:4;;;12578:21:14;12635:2;12615:18;;;12608:30;12674:34;12654:18;;;12647:62;-1:-1:-1;;;12725:18:14;;;12718:44;12779:19;;3706:56:4;12394:410:14;1470:108:2;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1544:10:2::1;:26:::0;1470:108::o;7967:151:4:-;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;3548:717:2:-;3653:9;;3666:1;3653:14;3645:58;;;;-1:-1:-1;;;3645:58:2;;13011:2:14;3645:58:2;;;12993:21:14;13050:2;13030:18;;;13023:30;13089:33;13069:18;;;13062:61;13140:18;;3645:58:2;12809:355:14;3645:58:2;3739:28;;-1:-1:-1;;3756:10:2;13318:2:14;13314:15;13310:53;3739:28:2;;;13298:66:14;3714:12:2;;13380::14;;3739:28:2;;;;;;;;;;;;3729:39;;;;;;3714:54;;3799:40;3818:6;3826;;3834:4;3799:18;:40::i;:::-;3778:108;;;;-1:-1:-1;;;3778:108:2;;13605:2:14;3778:108:2;;;13587:21:14;13644:2;13624:18;;;13617:30;-1:-1:-1;;;13663:18:14;;;13656:51;13724:18;;3778:108:2;13403:345:14;3778:108:2;3936:10;;3921:11;3905:13;2507:12:4;;;2432:92;3905:13:2;:27;;;;:::i;:::-;:41;;3897:87;;;;-1:-1:-1;;;3897:87:2;;13955:2:14;3897:87:2;;;13937:21:14;;;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;14085:18;;3897:87:2;13753:356:14;3897:87:2;4053:15;;4038:11;4011:24;4024:10;4011:12;:24::i;:::-;:38;;;;:::i;:::-;:57;;4003:118;;;;-1:-1:-1;;;4003:118:2;;14316:2:14;4003:118:2;;;14298:21:14;14355:2;14335:18;;;14328:30;14394:34;14374:18;;;14367:62;-1:-1:-1;;;14445:18:14;;;14438:46;14501:19;;4003:118:2;14114:412:14;4003:118:2;4167:9;4152:11;4140:9;;:23;;;;:::i;:::-;:36;;4132:80;;;;-1:-1:-1;;;4132:80:2;;14733:2:14;4132:80:2;;;14715:21:14;14772:2;14752:18;;;14745:30;14811:33;14791:18;;;14784:61;14862:18;;4132:80:2;14531:355:14;4132:80:2;4223:34;4233:10;4245:11;4223:9;:34::i;1843:128::-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1928:15:2::1;:36:::0;1843:128::o;2588:174:4:-;2655:7;2686:13;2507:12;;;2432:92;2686:13;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:4;;15093:2:14;2670:69:4;;;15075:21:14;15132:2;15112:18;;;15105:30;15171:34;15151:18;;;15144:62;-1:-1:-1;;;15222:18:14;;;15215:33;15265:19;;2670:69:4;14891:399:14;2670:69:4;-1:-1:-1;2752:5:4;2588:174::o;1040:103:2:-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1115:21:2;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1040:103:::0;:::o;3244:226::-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;3364:15:2::1;;3349:11;3333:13;2507:12:4::0;;;2432:92;3333:13:2::1;:27;;;;:::i;:::-;:46;;3325:100;;;::::0;-1:-1:-1;;;3325:100:2;;15497:2:14;3325:100:2::1;::::0;::::1;15479:21:14::0;15536:2;15516:18;;;15509:30;15575:34;15555:18;;;15548:62;-1:-1:-1;;;15626:18:14;;;15619:38;15674:19;;3325:100:2::1;15295:404:14::0;3325:100:2::1;3436:27;3447:3;3451:11;3436:9;:27::i;5320:116:4:-:0;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:4:o;4235:208::-;4299:7;-1:-1:-1;;;;;4322:19:4;;4314:75;;;;-1:-1:-1;;;4314:75:4;;15906:2:14;4314:75:4;;;15888:21:14;15945:2;15925:18;;;15918:30;15984:34;15964:18;;;15957:62;-1:-1:-1;;;16035:18:14;;;16028:41;16086:19;;4314:75:4;15704:407:14;4314:75:4;-1:-1:-1;;;;;;4410:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:4;;4235:208::o;1598:92:11:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1584:119:2:-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1664:12:2::1;:31:::0;1584:119::o;5638:96:4:-;5694:13;5722:7;5715:14;;;;;:::i;7214:269::-;665:10:1;-1:-1:-1;;;;;7304:24:4;;;7296:63;;;;-1:-1:-1;;;7296:63:4;;16318:2:14;7296:63:4;;;16300:21:14;16357:2;16337:18;;;16330:30;16396:28;16376:18;;;16369:56;16442:18;;7296:63:4;16116:350:14;7296:63:4;665:10:1;7366:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7366:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:4;;;;;;;;;;7430:48;;819:41:14;;;7366:42:4;;665:10:1;7430:48:4;;792:18:14;7430:48:4;;;;;;;7214:269;;:::o;5896:596:2:-;1680:1:12;2259:7;;:19;2251:63;;;;-1:-1:-1;;;2251:63:12;;16673:2:14;2251:63:12;;;16655:21:14;16712:2;16692:18;;;16685:30;16751:33;16731:18;;;16724:61;16802:18;;2251:63:12;16471:355:14;2251:63:12;1680:1;2389:7;:18;5963:16:2::1;6007:3;5982:24;:21;6004:2;5982:24;:::i;:::-;:28;;;;:::i;:::-;5963:47:::0;-1:-1:-1;6030:16:2::1;6074:3;6049:24;:21;6071:2;6049:24;:::i;:::-;:28;;;;:::i;:::-;6030:47:::0;-1:-1:-1;6099:16:2::1;6143:3;6118:24;:21;6140:2;6118:24;:::i;:::-;:28;;;;:::i;:::-;6099:47:::0;-1:-1:-1;6167:16:2::1;6210:3;6186:23;:21;6208:1;6186:23;:::i;:::-;:27;;;;:::i;:::-;6167:46;;6266:1;6242:21;:25;6234:49;;;::::0;-1:-1:-1;;;6234:49:2;;17290:2:14;6234:49:2::1;::::0;::::1;17272:21:14::0;17329:2;17309:18;;;17302:30;-1:-1:-1;;;17348:18:14;;;17341:41;17399:18;;6234:49:2::1;17088:335:14::0;6234:49:2::1;6310:7;::::0;6302:31:::1;::::0;-1:-1:-1;;;;;6310:7:2;;::::1;::::0;6302:31;::::1;;;::::0;6324:8;;6310:7:::1;6302:31:::0;6310:7;6302:31;6324:8;6310:7;6302:31;::::1;;;;;;6294:40;;;::::0;::::1;;6360:7;::::0;6352:31:::1;::::0;-1:-1:-1;;;;;6360:7:2;;::::1;::::0;6352:31;::::1;;;::::0;6374:8;;6360:7:::1;6352:31:::0;6360:7;6352:31;6374:8;6360:7;6352:31;::::1;;;;;;6344:40;;;::::0;::::1;;6410:7;::::0;6402:31:::1;::::0;-1:-1:-1;;;;;6410:7:2;;::::1;::::0;6402:31;::::1;;;::::0;6424:8;;6410:7:::1;6402:31:::0;6410:7;6402:31;6424:8;6410:7;6402:31;::::1;;;;;;6394:40;;;::::0;::::1;;6460:7;::::0;6452:31:::1;::::0;-1:-1:-1;;;;;6460:7:2;;::::1;::::0;6452:31;::::1;;;::::0;6474:8;;6460:7:::1;6452:31:::0;6460:7;6452:31;6474:8;6460:7;6452:31;::::1;;;;;;6444:40;;;::::0;::::1;;-1:-1:-1::0;;1637:1:12;2562:7;:22;-1:-1:-1;;5896:596:2:o;1339:125::-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1421:15:2::1;:35:::0;1339:125::o;1709:128::-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1794:15:2::1;:36:::0;1709:128::o;1977:92::-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2043:6:2::1;:18:::0;1977:92::o;8176:300:4:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:4;;;;;;;:::i;:::-;8176:300;;;;:::o;2075:92:2:-;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2141:6:2::1;:18:::0;2075:92::o;5792:377:4:-;5885:13;5923:16;5931:7;8792:12;;-1:-1:-1;8782:22:4;8706:103;5923:16;5908:94;;;;-1:-1:-1;;;5908:94:4;;18050:2:14;5908:94:4;;;18032:21:14;18089:2;18069:18;;;18062:30;18128:34;18108:18;;;18101:62;-1:-1:-1;;;18179:18:14;;;18172:45;18234:19;;5908:94:4;17848:411:14;5908:94:4;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6049:115;5792:377;-1:-1:-1;;;5792:377:4:o;2937:233:2:-;2995:7;3143:20;3157:5;3143:13;:20::i;1839:189:11:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:11;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:11;;18941:2:14;1919:73:11::1;::::0;::::1;18923:21:14::0;18980:2;18960:18;;;18953:30;19019:34;18999:18;;;18992:62;-1:-1:-1;;;19070:18:14;;;19063:36;19116:19;;1919:73:11::1;18739:402:14::0;1919:73:11::1;2002:19;2012:8;2002:9;:19::i;1233:96:2:-:0;1012:7:11;1038:6;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1301:9:2::1;:20:::0;1233:96::o;4513:720::-;4618:9;;4631:1;4618:14;4610:58;;;;-1:-1:-1;;;4610:58:2;;19348:2:14;4610:58:2;;;19330:21:14;19387:2;19367:18;;;19360:30;19426:33;19406:18;;;19399:61;19477:18;;4610:58:2;19146:355:14;4610:58:2;4704:28;;-1:-1:-1;;4721:10:2;13318:2:14;13314:15;13310:53;4704:28:2;;;13298:66:14;4679:12:2;;13380::14;;4704:28:2;;;;;;;;;;;;4694:39;;;;;;4679:54;;4764:40;4783:6;4791;;4799:4;4764:18;:40::i;:::-;4743:107;;;;-1:-1:-1;;;4743:107:2;;19708:2:14;4743:107:2;;;19690:21:14;19747:2;19727:18;;;19720:30;-1:-1:-1;;;19766:18:14;;;19759:50;19826:18;;4743:107:2;19506:344:14;4743:107:2;4900:15;;4885:11;4869:13;2507:12:4;;;2432:92;4869:13:2;:27;;;;:::i;:::-;:46;;4861:91;;;;-1:-1:-1;;;4861:91:2;;13955:2:14;4861:91:2;;;13937:21:14;;;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;14085:18;;4861:91:2;13753:356:14;4861:91:2;5021:15;;5006:11;4979:24;4992:10;4979:12;:24::i;:::-;:38;;;;:::i;:::-;:57;;4971:118;;;;-1:-1:-1;;;4971:118:2;;20057:2:14;4971:118:2;;;20039:21:14;20096:2;20076:18;;;20069:30;20135:34;20115:18;;;20108:62;-1:-1:-1;;;20186:18:14;;;20179:46;20242:19;;4971:118:2;19855:412:14;12277:165:4;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:4;-1:-1:-1;;;;;12369:29:4;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;1153:184:10:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:10:o;10694:1484:4:-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10893:18;;10786:58;;-1:-1:-1;10851:22:4;;-1:-1:-1;;;;;10877:34:4;665:10:1;-1:-1:-1;;;;;10877:34:4;;:80;;;-1:-1:-1;665:10:1;10921:20:4;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:4;;10877:80;:140;;;-1:-1:-1;10984:18:4;;10967:50;;665:10:1;7541:178:4;:::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:4;;20474:2:14;11025:98:4;;;20456:21:14;20513:2;20493:18;;;20486:30;20552:34;20532:18;;;20525:62;-1:-1:-1;;;20603:18:14;;;20596:48;20661:19;;11025:98:4;20272:414:14;11025:98:4;11167:4;-1:-1:-1;;;;;11145:26:4;:13;:18;;;-1:-1:-1;;;;;11145:26:4;;11130:95;;;;-1:-1:-1;;;11130:95:4;;20893:2:14;11130:95:4;;;20875:21:14;20932:2;20912:18;;;20905:30;20971:34;20951:18;;;20944:62;-1:-1:-1;;;21022:18:14;;;21015:36;21068:19;;11130:95:4;20691:402:14;11130:95:4;-1:-1:-1;;;;;11239:16:4;;11231:66;;;;-1:-1:-1;;;11231:66:4;;21300:2:14;11231:66:4;;;21282:21:14;21339:2;21319:18;;;21312:30;21378:34;21358:18;;;21351:62;-1:-1:-1;;;21429:18:14;;;21422:35;21474:19;;11231:66:4;21098:401:14;11231:66:4;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:4;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:4;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:4;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:4;;-1:-1:-1;11494:16:4;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:4;;:29;;-1:-1:-1;;11494:29:4;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:4;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:4;;;;;;;;-1:-1:-1;;;;;11552:43:4;;;;;-1:-1:-1;;;;;11578:15:4;11552:43;;;;;;;;;-1:-1:-1;11529:20:4;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:4;-1:-1:-1;;;;;;11529:66:4;;;;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:4;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:4;11858:229;;11919:20;11927:11;8792:12;;-1:-1:-1;8782:22:4;8706:103;11919:20;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:4;;;;;;12034:28;;;;-1:-1:-1;;;;;11978:94:4;;;;;;;;;-1:-1:-1;11951:24:4;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11951:121:4;-1:-1:-1;;;;;;11951:121:4;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:4;12107:4;-1:-1:-1;;;;;12098:27:4;;;;;;;;;;;12131:42;10780:1398;;;10694:1484;;;:::o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;4685:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:4;4805:7;8792:12;;-1:-1:-1;8782:22:4;8706:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:4;;22215:2:14;4789:71:4;;;22197:21:14;22254:2;22234:18;;;22227:30;22293:34;22273:18;;;22266:62;-1:-1:-1;;;22344:18:14;;;22337:40;22394:19;;4789:71:4;22013:406:14;4789:71:4;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:4;;;;;-1:-1:-1;;;5069:51:4;;;-1:-1:-1;;;;;5069:51:4;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:4:o;5128:69::-;-1:-1:-1;5053:6:4;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:4;;-1:-1:-1;;;5209:57:4;;22897:2:14;5209:57:4;;;22879:21:14;22936:2;22916:18;;;22909:30;22975:34;22955:18;;;22948:62;-1:-1:-1;;;23026:18:14;;;23019:45;23081:19;;5209:57:4;22695:411:14;2034:169:11;2089:16;2108:6;;-1:-1:-1;;;;;2124:17:11;;;-1:-1:-1;;;;;;2124:17:11;;;;;;2156:40;;2108:6;;;;;;;2156:40;;2089:16;2156:40;2079:124;2034:169;:::o;13947:667:4:-;14079:4;-1:-1:-1;;;;;14095:13:4;;1034:20:0;1080:8;14091:519:4;;14132:72;;-1:-1:-1;;;14132:72:4;;-1:-1:-1;;;;;14132:36:4;;;;;:72;;665:10:1;;14183:4:4;;14189:7;;14198:5;;14132:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:4;;;;;;;;-1:-1:-1;;14132:72:4;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14359:6;:13;14376:1;14359:18;14355:209;;14391:61;;-1:-1:-1;;;14391:61:4;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:4;-1:-1:-1;;;14252:55:4;;-1:-1:-1;14245:62:4;;14091:519;-1:-1:-1;14599:4:4;14091:519;13947:667;;;;;;:::o;928:106:2:-;988:13;1020:7;1013:14;;;;;:::i;275:703:13:-;331:13;548:5;557:1;548:10;544:51;;-1:-1:-1;;574:10:13;;;;;;;;;;;;-1:-1:-1;;;574:10:13;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:13;;-1:-1:-1;720:2:13;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;-1:-1:-1;;;;;764:17:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:13;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:13;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:13;;;;;;;;-1:-1:-1;919:11:13;928:2;919:11;;:::i;:::-;;;791:150;;4447:234:4;4508:7;-1:-1:-1;;;;;4538:19:4;;4523:99;;;;-1:-1:-1;;;4523:99:4;;24310:2:14;4523:99:4;;;24292:21:14;24349:2;24329:18;;;24322:30;24388:34;24368:18;;;24361:62;-1:-1:-1;;;24439:18:14;;;24432:47;24496:19;;4523:99:4;24108:413:14;4523:99:4;-1:-1:-1;;;;;;4643:19:4;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:4;;-1:-1:-1;;;;;4643:32:4;;4447:234::o;1991:290:10:-;2074:7;2116:4;2074:7;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:10;;;;:::i;:::-;;;;2130:116;;;-1:-1:-1;2262:12:10;1991:290;-1:-1:-1;;;1991:290:10:o;9235:1239:4:-;9358:12;;-1:-1:-1;;;;;9384:16:4;;9376:62;;;;-1:-1:-1;;;9376:62:4;;24728:2:14;9376:62:4;;;24710:21:14;24767:2;24747:18;;;24740:30;24806:34;24786:18;;;24779:62;-1:-1:-1;;;24857:18:14;;;24850:31;24898:19;;9376:62:4;24526:397:14;9376:62:4;9573:21;9581:12;8792;;-1:-1:-1;8782:22:4;8706:103;9573:21;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:4;;25130:2:14;9564:64:4;;;25112:21:14;25169:2;25149:18;;;25142:30;25208:31;25188:18;;;25181:59;25257:18;;9564:64:4;24928:353:14;9564:64:4;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:4;;25488:2:14;9634:71:4;;;25470:21:14;25527:2;25507:18;;;25500:30;25566:34;25546:18;;;25539:62;-1:-1:-1;;;25617:18:14;;;25610:32;25659:19;;9634:71:4;25286:398:14;9634:71:4;-1:-1:-1;;;;;9813:16:4;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:4;;;;;-1:-1:-1;;;9780:49:4;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:4;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:4;;;;;;-1:-1:-1;;;;;9835:16:4;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9835:135:4;;;;;;;;;;;;10004:43;;;;;;;;;;-1:-1:-1;;;;;10030:15:4;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:4;-1:-1:-1;;;;;;9976:71:4;;;;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:4;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:4;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:4;:27;;;10409:60;8176:300;5518:147:10;5581:7;5611:1;5607;:5;:51;;5739:13;5830:15;;;5865:4;5858:15;;;5911:4;5895:21;;5607:51;;;5739:13;5830:15;;;5865:4;5858:15;;;5911:4;5895:21;;5615:20;5671:261;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:14;-1:-1:-1;;;;;;367:32:14;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:14;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:14;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:14:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:14;;1622:180;-1:-1:-1;1622:180:14:o;2015:173::-;2083:20;;-1:-1:-1;;;;;2132:31:14;;2122:42;;2112:70;;2178:1;2175;2168:12;2112:70;2015:173;;;:::o;2193:254::-;2261:6;2269;2322:2;2310:9;2301:7;2297:23;2293:32;2290:52;;;2338:1;2335;2328:12;2290:52;2361:29;2380:9;2361:29;:::i;:::-;2351:39;2437:2;2422:18;;;;2409:32;;-1:-1:-1;;;2193:254:14:o;2634:127::-;2695:10;2690:3;2686:20;2683:1;2676:31;2726:4;2723:1;2716:15;2750:4;2747:1;2740:15;2766:275;2837:2;2831:9;2902:2;2883:13;;-1:-1:-1;;2879:27:14;2867:40;;-1:-1:-1;;;;;2922:34:14;;2958:22;;;2919:62;2916:88;;;2984:18;;:::i;:::-;3020:2;3013:22;2766:275;;-1:-1:-1;2766:275:14:o;3046:712::-;3100:5;3153:3;3146:4;3138:6;3134:17;3130:27;3120:55;;3171:1;3168;3161:12;3120:55;3207:6;3194:20;3233:4;-1:-1:-1;;;;;3252:2:14;3249:26;3246:52;;;3278:18;;:::i;:::-;3324:2;3321:1;3317:10;3347:28;3371:2;3367;3363:11;3347:28;:::i;:::-;3409:15;;;3479;;;3475:24;;;3440:12;;;;3511:15;;;3508:35;;;3539:1;3536;3529:12;3508:35;3575:2;3567:6;3563:15;3552:26;;3587:142;3603:6;3598:3;3595:15;3587:142;;;3669:17;;3657:30;;3620:12;;;;3707;;;;3587:142;;;3747:5;3046:712;-1:-1:-1;;;;;;;3046:712:14:o;3763:416::-;3856:6;3864;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3973:9;3960:23;-1:-1:-1;;;;;3998:6:14;3995:30;3992:50;;;4038:1;4035;4028:12;3992:50;4061:61;4114:7;4105:6;4094:9;4090:22;4061:61;:::i;:::-;4051:71;4169:2;4154:18;;;;4141:32;;-1:-1:-1;;;;3763:416:14:o;4184:328::-;4261:6;4269;4277;4330:2;4318:9;4309:7;4305:23;4301:32;4298:52;;;4346:1;4343;4336:12;4298:52;4369:29;4388:9;4369:29;:::i;:::-;4359:39;;4417:38;4451:2;4440:9;4436:18;4417:38;:::i;:::-;4407:48;;4502:2;4491:9;4487:18;4474:32;4464:42;;4184:328;;;;;:::o;4699:416::-;4792:6;4800;4853:2;4841:9;4832:7;4828:23;4824:32;4821:52;;;4869:1;4866;4859:12;4821:52;4905:9;4892:23;4882:33;;4966:2;4955:9;4951:18;4938:32;-1:-1:-1;;;;;4985:6:14;4982:30;4979:50;;;5025:1;5022;5015:12;4979:50;5048:61;5101:7;5092:6;5081:9;5077:22;5048:61;:::i;:::-;5038:71;;;4699:416;;;;;:::o;5120:407::-;5185:5;-1:-1:-1;;;;;5211:6:14;5208:30;5205:56;;;5241:18;;:::i;:::-;5279:57;5324:2;5303:15;;-1:-1:-1;;5299:29:14;5330:4;5295:40;5279:57;:::i;:::-;5270:66;;5359:6;5352:5;5345:21;5399:3;5390:6;5385:3;5381:16;5378:25;5375:45;;;5416:1;5413;5406:12;5375:45;5465:6;5460:3;5453:4;5446:5;5442:16;5429:43;5519:1;5512:4;5503:6;5496:5;5492:18;5488:29;5481:40;5120:407;;;;;:::o;5532:451::-;5601:6;5654:2;5642:9;5633:7;5629:23;5625:32;5622:52;;;5670:1;5667;5660:12;5622:52;5710:9;5697:23;-1:-1:-1;;;;;5735:6:14;5732:30;5729:50;;;5775:1;5772;5765:12;5729:50;5798:22;;5851:4;5843:13;;5839:27;-1:-1:-1;5829:55:14;;5880:1;5877;5870:12;5829:55;5903:74;5969:7;5964:2;5951:16;5946:2;5942;5938:11;5903:74;:::i;5988:186::-;6047:6;6100:2;6088:9;6079:7;6075:23;6071:32;6068:52;;;6116:1;6113;6106:12;6068:52;6139:29;6158:9;6139:29;:::i;6179:347::-;6244:6;6252;6305:2;6293:9;6284:7;6280:23;6276:32;6273:52;;;6321:1;6318;6311:12;6273:52;6344:29;6363:9;6344:29;:::i;:::-;6334:39;;6423:2;6412:9;6408:18;6395:32;6470:5;6463:13;6456:21;6449:5;6446:32;6436:60;;6492:1;6489;6482:12;6436:60;6515:5;6505:15;;;6179:347;;;;;:::o;6716:667::-;6811:6;6819;6827;6835;6888:3;6876:9;6867:7;6863:23;6859:33;6856:53;;;6905:1;6902;6895:12;6856:53;6928:29;6947:9;6928:29;:::i;:::-;6918:39;;6976:38;7010:2;6999:9;6995:18;6976:38;:::i;:::-;6966:48;;7061:2;7050:9;7046:18;7033:32;7023:42;;7116:2;7105:9;7101:18;7088:32;-1:-1:-1;;;;;7135:6:14;7132:30;7129:50;;;7175:1;7172;7165:12;7129:50;7198:22;;7251:4;7243:13;;7239:27;-1:-1:-1;7229:55:14;;7280:1;7277;7270:12;7229:55;7303:74;7369:7;7364:2;7351:16;7346:2;7342;7338:11;7303:74;:::i;:::-;7293:84;;;6716:667;;;;;;;:::o;7388:260::-;7456:6;7464;7517:2;7505:9;7496:7;7492:23;7488:32;7485:52;;;7533:1;7530;7523:12;7485:52;7556:29;7575:9;7556:29;:::i;:::-;7546:39;;7604:38;7638:2;7627:9;7623:18;7604:38;:::i;:::-;7594:48;;7388:260;;;;;:::o;7653:380::-;7732:1;7728:12;;;;7775;;;7796:61;;7850:4;7842:6;7838:17;7828:27;;7796:61;7903:2;7895:6;7892:14;7872:18;7869:38;7866:161;;7949:10;7944:3;7940:20;7937:1;7930:31;7984:4;7981:1;7974:15;8012:4;8009:1;8002:15;7866:161;;7653:380;;;:::o;9281:356::-;9483:2;9465:21;;;9502:18;;;9495:30;9561:34;9556:2;9541:18;;9534:62;9628:2;9613:18;;9281:356::o;10358:127::-;10419:10;10414:3;10410:20;10407:1;10400:31;10450:4;10447:1;10440:15;10474:4;10471:1;10464:15;10490:128;10530:3;10561:1;10557:6;10554:1;10551:13;10548:39;;;10567:18;;:::i;:::-;-1:-1:-1;10603:9:14;;10490:128::o;11321:168::-;11361:7;11427:1;11423;11419:6;11415:14;11412:1;11409:21;11404:1;11397:9;11390:17;11386:45;11383:71;;;11434:18;;:::i;:::-;-1:-1:-1;11474:9:14;;11321:168::o;12254:135::-;12293:3;12314:17;;;12311:43;;12334:18;;:::i;:::-;-1:-1:-1;12381:1:14;12370:13;;12254:135::o;16831:127::-;16892:10;16887:3;16883:20;16880:1;16873:31;16923:4;16920:1;16913:15;16947:4;16944:1;16937:15;16963:120;17003:1;17029;17019:35;;17034:18;;:::i;:::-;-1:-1:-1;17068:9:14;;16963:120::o;17428:415::-;17630:2;17612:21;;;17669:2;17649:18;;;17642:30;17708:34;17703:2;17688:18;;17681:62;-1:-1:-1;;;17774:2:14;17759:18;;17752:49;17833:3;17818:19;;17428:415::o;18264:470::-;18443:3;18481:6;18475:13;18497:53;18543:6;18538:3;18531:4;18523:6;18519:17;18497:53;:::i;:::-;18613:13;;18572:16;;;;18635:57;18613:13;18572:16;18669:4;18657:17;;18635:57;:::i;:::-;18708:20;;18264:470;-1:-1:-1;;;;18264:470:14:o;21504:246::-;21544:4;-1:-1:-1;;;;;21657:10:14;;;;21627;;21679:12;;;21676:38;;;21694:18;;:::i;:::-;21731:13;;21504:246;-1:-1:-1;;;21504:246:14:o;21755:253::-;21795:3;-1:-1:-1;;;;;21884:2:14;21881:1;21877:10;21914:2;21911:1;21907:10;21945:3;21941:2;21937:12;21932:3;21929:21;21926:47;;;21953:18;;:::i;22424:125::-;22464:4;22492:1;22489;22486:8;22483:34;;;22497:18;;:::i;:::-;-1:-1:-1;22534:9:14;;22424:125::o;22554:136::-;22593:3;22621:5;22611:39;;22630:18;;:::i;:::-;-1:-1:-1;;;22666:18:14;;22554:136::o;23111:489::-;-1:-1:-1;;;;;23380:15:14;;;23362:34;;23432:15;;23427:2;23412:18;;23405:43;23479:2;23464:18;;23457:34;;;23527:3;23522:2;23507:18;;23500:31;;;23305:4;;23548:46;;23574:19;;23566:6;23548:46;:::i;:::-;23540:54;23111:489;-1:-1:-1;;;;;;23111:489:14:o;23605:249::-;23674:6;23727:2;23715:9;23706:7;23702:23;23698:32;23695:52;;;23743:1;23740;23733:12;23695:52;23775:9;23769:16;23794:30;23818:5;23794:30;:::i;23859:112::-;23891:1;23917;23907:35;;23922:18;;:::i;:::-;-1:-1:-1;23956:9:14;;23859:112::o;23976:127::-;24037:10;24032:3;24028:20;24025:1;24018:31;24068:4;24065:1;24058:15;24092:4;24089:1;24082:15
Swarm Source
ipfs://c6bc1a5294e2dba5dd2ff9408fb189d6490616776dfbe44ab071ef49226834f1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.