Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 14 from a total of 14 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 14996072 | 870 days ago | IN | 0 ETH | 0.00054482 | ||||
Mint | 14935284 | 880 days ago | IN | 0 ETH | 0.00426082 | ||||
Mint | 14934022 | 880 days ago | IN | 0 ETH | 0.00925916 | ||||
Mint | 14934016 | 880 days ago | IN | 0 ETH | 0.00597021 | ||||
Set Revealed | 14934006 | 880 days ago | IN | 0 ETH | 0.00265736 | ||||
Mint | 14934006 | 880 days ago | IN | 0.0075 ETH | 0.0063086 | ||||
Mint | 14934001 | 880 days ago | IN | 0 ETH | 0.00617175 | ||||
Mint | 14934001 | 880 days ago | IN | 0.0075 ETH | 0.00531657 | ||||
Mint | 14933987 | 880 days ago | IN | 0 ETH | 0.00662795 | ||||
Mint | 14933951 | 880 days ago | IN | 0.015 ETH | 0.00944713 | ||||
Mint | 14933923 | 880 days ago | IN | 0 ETH | 0.00978279 | ||||
Mint | 14931679 | 881 days ago | IN | 0 ETH | 0.00375787 | ||||
Mint | 14931675 | 881 days ago | IN | 0 ETH | 0.00301132 | ||||
0x60c06040 | 14918661 | 883 days ago | IN | 0 ETH | 0.06235745 |
Loading...
Loading
Contract Name:
GoblinVanGogh
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Multiple files format)
pragma solidity 0.8.14; // SPDX-License-Identifier: MIT import "./ERC721A.sol"; import "./Ownable.sol"; contract GoblinVanGogh is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public publicCost = 0.0015 ether; bool public paused = false; uint256 public maxAmount = 15; uint256 public maxSupply = 10000; string public UnrevealedURI; bool public revealed = false; uint256 public freeQuantity = 1500; uint256 public freeMinted = 0; uint256 freeAmount = 3; uint256 public startTime = 1654542000; constructor() ERC721A("GoblinVanGogh", "GoblinVanGogh") { setBaseURI("ipfs://QmRCGZsRte7NXUqNaKkHSsb5iNEEuLDihJpWx6D62iWpAT/"); setUnrevealedUri( "ipfs://QmWTKRUAqJuqNKGtC3VtjFnVEy4MKHKNDE5SyRaLasZPAf/" ); } function mint(uint256 quantity) external payable { uint256 supply = totalSupply(); require(!paused, "The contract is paused!"); require(quantity > 0, "Quantity Must Be Higher Than Zero"); require(supply + quantity <= maxSupply, "Max Supply Reached"); if (msg.sender != owner()) { require(block.timestamp >= startTime, "Mint didn't start yet"); uint256 balance = balanceOf(msg.sender); uint256 paidNFTs = 0; uint256 freeNFTs = 0; if (balance <= freeAmount && freeMinted <= freeQuantity) { uint256 total = balance + quantity; if (total >= freeAmount) { freeNFTs = freeAmount - balance; paidNFTs = total - freeAmount; freeMinted += freeNFTs; require( msg.value >= publicCost * paidNFTs, "Insufficient Funds" ); } else { freeMinted += quantity; } } else if (freeMinted >= freeQuantity) { require( msg.value >= publicCost * quantity, "Insufficient Funds" ); } else if (balance >= freeAmount) { require( msg.value >= publicCost * quantity, "Insufficient Funds" ); } else if (balance < freeAmount) { freeMinted += quantity; } require( balanceOf(msg.sender) + quantity <= maxAmount, "youre not allowed to hold that much" ); } _safeMint(msg.sender, quantity); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return UnrevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function Set(uint256 _publicCost, uint256 _maxAmount) public onlyOwner { publicCost = _publicCost; maxAmount = _maxAmount; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setStartTime(uint256 _startTime) public onlyOwner { startTime = _startTime; } function setFreeQuantity(uint256 _freeQuantity, uint256 _freeAmount) public onlyOwner { freeQuantity = _freeQuantity; freeAmount = _freeAmount; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setUnrevealedUri(string memory _UnrevealedUri) public onlyOwner { UnrevealedURI = _UnrevealedUri; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function withdraw() public onlyOwner { (bool y, ) = payable(0x6e0d7933d3dFB019777beFda09eB065D5d79a49e).call{ value: address(this).balance / 5 }(""); // developer wallet require(y); (bool ts, ) = payable(owner()).call{value: address(this).balance}(""); require(ts); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received( address(0), to, updatedIndex, _data ), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_publicCost","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"}],"name":"Set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UnrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQuantity","type":"uint256"},{"internalType":"uint256","name":"_freeAmount","type":"uint256"}],"name":"setFreeQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_UnrevealedUri","type":"string"}],"name":"setUnrevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200025d565b506605543df729c000600a55600b805460ff19908116909155600f600c819055612710600d55805490911690556105dc6010556000601155600360125563629e4eb06013553480156200007a57600080fd5b50604080518082018252600d8082526c08edec4d8d2dcacc2dc8edeced609b1b602080840182815285518087019096529285528401528151919291620000c3916001916200025d565b508051620000d99060029060208401906200025d565b505050620000f6620000f06200014460201b60201c565b62000148565b6200011a604051806060016040528060368152602001620028d8603691396200019a565b6200013e6040518060600160405280603681526020016200292e6036913962000202565b6200033f565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001e95760405162461bcd60e51b815260206004820181905260248201526000805160206200290e83398151915260448201526064015b60405180910390fd5b8051620001fe9060089060208401906200025d565b5050565b6007546001600160a01b031633146200024d5760405162461bcd60e51b815260206004820181905260248201526000805160206200290e8339815191526044820152606401620001e0565b8051620001fe90600e9060208401905b8280546200026b9062000303565b90600052602060002090601f0160209004810192826200028f5760008555620002da565b82601f10620002aa57805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002da578251825591602001919060010190620002bd565b50620002e8929150620002ec565b5090565b5b80821115620002e85760008155600101620002ed565b600181811c908216806200031857607f821691505b6020821081036200033957634e487b7160e01b600052602260045260246000fd5b50919050565b612589806200034f6000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610641578063da3ef23f14610657578063e0a8085314610677578063e985e9c514610697578063f2fde38b146106e057600080fd5b8063b88d4fde146105b6578063b98af54d146105d6578063c6682862146105f6578063c87b56dd1461060b578063d10a1a2b1461062b57600080fd5b80638da5cb5b116100f25780638da5cb5b1461053057806390fb5fb91461054e57806395d89b411461056e578063a0712d6814610583578063a22cb4651461059657600080fd5b80636c0360eb146104ba57806370a08231146104cf578063715018a6146104ef57806378e97925146105045780638693da201461051a57600080fd5b80633e0a322d116101bc57806355f804b31161018057806355f804b3146104345780635c975abb146104545780635f48f3931461046e578063626c8f8e146104845780636352211e1461049a57600080fd5b80633e0a322d1461039a57806342842e0e146103ba5780634f6ccce7146103da57806351830227146103fa578063545b620a1461041457600080fd5b806316c38b3c1161020357806316c38b3c1461030657806318160ddd1461032657806323b872dd146103455780632f745c59146103655780633ccfd60b1461038557600080fd5b806301ffc9a714610240578063059705231461027557806306fdde0314610297578063081812fc146102ac578063095ea7b3146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f6a565b610700565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076d565b60405161026c9190611fdf565b3480156102a357600080fd5b5061028a6107fb565b3480156102b857600080fd5b506102cc6102c7366004611ff2565b61088d565b6040516001600160a01b03909116815260200161026c565b3480156102f057600080fd5b506103046102ff366004612027565b61091d565b005b34801561031257600080fd5b50610304610321366004612061565b610a34565b34801561033257600080fd5b506000545b60405190815260200161026c565b34801561035157600080fd5b5061030461036036600461207c565b610a71565b34801561037157600080fd5b50610337610380366004612027565b610a7c565b34801561039157600080fd5b50610304610bd7565b3480156103a657600080fd5b506103046103b5366004611ff2565b610ce7565b3480156103c657600080fd5b506103046103d536600461207c565b610d16565b3480156103e657600080fd5b506103376103f5366004611ff2565b610d31565b34801561040657600080fd5b50600f546102609060ff1681565b34801561042057600080fd5b5061030461042f3660046120b8565b610d93565b34801561044057600080fd5b5061030461044f366004612166565b610dc8565b34801561046057600080fd5b50600b546102609060ff1681565b34801561047a57600080fd5b50610337600c5481565b34801561049057600080fd5b5061033760105481565b3480156104a657600080fd5b506102cc6104b5366004611ff2565b610e05565b3480156104c657600080fd5b5061028a610e17565b3480156104db57600080fd5b506103376104ea3660046121af565b610e24565b3480156104fb57600080fd5b50610304610eb5565b34801561051057600080fd5b5061033760135481565b34801561052657600080fd5b50610337600a5481565b34801561053c57600080fd5b506007546001600160a01b03166102cc565b34801561055a57600080fd5b50610304610569366004612166565b610eeb565b34801561057a57600080fd5b5061028a610f28565b610304610591366004611ff2565b610f37565b3480156105a257600080fd5b506103046105b13660046121ca565b61129b565b3480156105c257600080fd5b506103046105d13660046121fd565b61135f565b3480156105e257600080fd5b506103046105f13660046120b8565b611398565b34801561060257600080fd5b5061028a6113cd565b34801561061757600080fd5b5061028a610626366004611ff2565b6113da565b34801561063757600080fd5b5061033760115481565b34801561064d57600080fd5b50610337600d5481565b34801561066357600080fd5b50610304610672366004612166565b61154b565b34801561068357600080fd5b50610304610692366004612061565b611588565b3480156106a357600080fd5b506102606106b2366004612279565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506103046106fb3660046121af565b6115c5565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506001600160e01b0319821663780e9d6360e01b145b8061076757506301ffc9a760e01b6001600160e01b03198316145b92915050565b600e805461077a906122a3565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906122a3565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b505050505081565b60606001805461080a906122a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610836906122a3565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600061089a826000541190565b6109015760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061092882610e05565b9050806001600160a01b0316836001600160a01b0316036109965760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f8565b336001600160a01b03821614806109b257506109b281336106b2565b610a245760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f8565b610a2f838383611660565b505050565b6007546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016108f8906122dd565b600b805460ff1916911515919091179055565b610a2f8383836116bc565b6000610a8783610e24565b8210610ae05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f8565b600080549080805b83811015610b77576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3b57805192505b876001600160a01b0316836001600160a01b031603610b6e57868403610b675750935061076792505050565b6001909301925b50600101610ae8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f8565b6007546001600160a01b03163314610c015760405162461bcd60e51b81526004016108f8906122dd565b6000736e0d7933d3dfb019777befda09eb065d5d79a49e610c2360054761233e565b604051600081818185875af1925050503d8060008114610c5f576040519150601f19603f3d011682016040523d82523d6000602084013e610c64565b606091505b5050905080610c7257600080fd5b6000610c866007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cd0576040519150601f19603f3d011682016040523d82523d6000602084013e610cd5565b606091505b5050905080610ce357600080fd5b5050565b6007546001600160a01b03163314610d115760405162461bcd60e51b81526004016108f8906122dd565b601355565b610a2f8383836040518060200160405280600081525061135f565b600080548210610d8f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f8565b5090565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016108f8906122dd565b600a91909155600c55565b6007546001600160a01b03163314610df25760405162461bcd60e51b81526004016108f8906122dd565b8051610ce3906008906020840190611ec4565b6000610e10826119a1565b5192915050565b6008805461077a906122a3565b60006001600160a01b038216610e905760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610edf5760405162461bcd60e51b81526004016108f8906122dd565b610ee96000611a78565b565b6007546001600160a01b03163314610f155760405162461bcd60e51b81526004016108f8906122dd565b8051610ce390600e906020840190611ec4565b60606002805461080a906122a3565b600054600b5460ff1615610f8d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108f8565b60008211610fe75760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b60648201526084016108f8565b600d54610ff48383612352565b11156110375760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016108f8565b6007546001600160a01b03163314611291576013544210156110935760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08191a591b89dd081cdd185c9d081e595d605a1b60448201526064016108f8565b600061109e33610e24565b905060008060125483111580156110b9575060105460115411155b156111815760006110ca8685612352565b9050601254811061116357836012546110e3919061236a565b9150601254816110f3919061236a565b925081601160008282546111079190612352565b9091555050600a5461111a908490612381565b34101561115e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108f8565b61117b565b85601160008282546111759190612352565b90915550505b5061121c565b601054601154106111e35784600a5461119a9190612381565b3410156111de5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108f8565b61121c565b60125483106111fa5784600a5461119a9190612381565b60125483101561121c5784601160008282546112169190612352565b90915550505b600c548561122933610e24565b6112339190612352565b111561128d5760405162461bcd60e51b815260206004820152602360248201527f796f757265206e6f7420616c6c6f77656420746f20686f6c642074686174206d6044820152620eac6d60eb1b60648201526084016108f8565b5050505b610ce33383611aca565b336001600160a01b038316036112f35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61136a8484846116bc565b61137684848484611ae4565b6113925760405162461bcd60e51b81526004016108f8906123a0565b50505050565b6007546001600160a01b031633146113c25760405162461bcd60e51b81526004016108f8906122dd565b601091909155601255565b6009805461077a906122a3565b60606113e7826000541190565b61144b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f8565b600f5460ff1615156000036114ec57600e8054611467906122a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611493906122a3565b80156114e05780601f106114b5576101008083540402835291602001916114e0565b820191906000526020600020905b8154815290600101906020018083116114c357829003601f168201915b50505050509050919050565b60006114f6611be6565b905060008151116115165760405180602001604052806000815250611544565b8061152084611bf5565b6009604051602001611534939291906123f3565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115755760405162461bcd60e51b81526004016108f8906122dd565b8051610ce3906009906020840190611ec4565b6007546001600160a01b031633146115b25760405162461bcd60e51b81526004016108f8906122dd565b600f805460ff1916911515919091179055565b6007546001600160a01b031633146115ef5760405162461bcd60e51b81526004016108f8906122dd565b6001600160a01b0381166116545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b61165d81611a78565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116c7826119a1565b80519091506000906001600160a01b0316336001600160a01b031614806116fe5750336116f38461088d565b6001600160a01b0316145b806117105750815161171090336106b2565b90508061177a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f8565b846001600160a01b031682600001516001600160a01b0316146117ee5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f8565b6001600160a01b0384166118525760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f8565b6118626000848460000151611660565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119575761190a816000541190565b15611957578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526119c0826000541190565b611a1f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f8565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a6e579392505050565b5060001901611a21565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ce3828260405180602001604052806000815250611cf6565b60006001600160a01b0384163b15611bda57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b289033908990889088906004016124b6565b6020604051808303816000875af1925050508015611b63575060408051601f3d908101601f19168201909252611b60918101906124f3565b60015b611bc0573d808015611b91576040519150601f19603f3d011682016040523d82523d6000602084013e611b96565b606091505b508051600003611bb85760405162461bcd60e51b81526004016108f8906123a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bde565b5060015b949350505050565b60606008805461080a906122a3565b606081600003611c1c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c465780611c3081612510565b9150611c3f9050600a8361233e565b9150611c20565b60008167ffffffffffffffff811115611c6157611c616120da565b6040519080825280601f01601f191660200182016040528015611c8b576020820181803683370190505b5090505b8415611bde57611ca060018361236a565b9150611cad600a86612529565b611cb8906030612352565b60f81b818381518110611ccd57611ccd61253d565b60200101906001600160f81b031916908160001a905350611cef600a8661233e565b9450611c8f565b610a2f83838360016000546001600160a01b038516611d615760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f8565b83600003611dc25760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016108f8565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ebb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611eaf57611e936000888488611ae4565b611eaf5760405162461bcd60e51b81526004016108f8906123a0565b60019182019101611e40565b5060005561199a565b828054611ed0906122a3565b90600052602060002090601f016020900481019282611ef25760008555611f38565b82601f10611f0b57805160ff1916838001178555611f38565b82800160010185558215611f38579182015b82811115611f38578251825591602001919060010190611f1d565b50610d8f9291505b80821115610d8f5760008155600101611f40565b6001600160e01b03198116811461165d57600080fd5b600060208284031215611f7c57600080fd5b813561154481611f54565b60005b83811015611fa2578181015183820152602001611f8a565b838111156113925750506000910152565b60008151808452611fcb816020860160208601611f87565b601f01601f19169290920160200192915050565b6020815260006115446020830184611fb3565b60006020828403121561200457600080fd5b5035919050565b80356001600160a01b038116811461202257600080fd5b919050565b6000806040838503121561203a57600080fd5b6120438361200b565b946020939093013593505050565b8035801515811461202257600080fd5b60006020828403121561207357600080fd5b61154482612051565b60008060006060848603121561209157600080fd5b61209a8461200b565b92506120a86020850161200b565b9150604084013590509250925092565b600080604083850312156120cb57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561210b5761210b6120da565b604051601f8501601f19908116603f01168101908282118183101715612133576121336120da565b8160405280935085815286868601111561214c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561217857600080fd5b813567ffffffffffffffff81111561218f57600080fd5b8201601f810184136121a057600080fd5b611bde848235602084016120f0565b6000602082840312156121c157600080fd5b6115448261200b565b600080604083850312156121dd57600080fd5b6121e68361200b565b91506121f460208401612051565b90509250929050565b6000806000806080858703121561221357600080fd5b61221c8561200b565b935061222a6020860161200b565b925060408501359150606085013567ffffffffffffffff81111561224d57600080fd5b8501601f8101871361225e57600080fd5b61226d878235602084016120f0565b91505092959194509250565b6000806040838503121561228c57600080fd5b6122958361200b565b91506121f46020840161200b565b600181811c908216806122b757607f821691505b6020821081036122d757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261234d5761234d612312565b500490565b6000821982111561236557612365612328565b500190565b60008282101561237c5761237c612328565b500390565b600081600019048311821515161561239b5761239b612328565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206124068285838a01611f87565b8551918401916124198184848a01611f87565b8554920191600090600181811c908083168061243657607f831692505b858310810361245357634e487b7160e01b85526022600452602485fd5b8080156124675760018114612478576124a5565b60ff198516885283880195506124a5565b60008b81526020902060005b8581101561249d5781548a820152908401908801612484565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e990830184611fb3565b9695505050505050565b60006020828403121561250557600080fd5b815161154481611f54565b60006001820161252257612522612328565b5060010190565b60008261253857612538612312565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b3f35acb2ac1d9585aace0786b80bd9ea61d18246f275555073cd46aff7e2ea464736f6c634300080e0033697066733a2f2f516d5243475a73527465374e5855714e614b6b4853736235694e4545754c4469684a7057783644363269577041542f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572697066733a2f2f516d57544b525541714a75714e4b4774433356746a466e564579344d4b484b4e444535537952614c61735a5041662f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610641578063da3ef23f14610657578063e0a8085314610677578063e985e9c514610697578063f2fde38b146106e057600080fd5b8063b88d4fde146105b6578063b98af54d146105d6578063c6682862146105f6578063c87b56dd1461060b578063d10a1a2b1461062b57600080fd5b80638da5cb5b116100f25780638da5cb5b1461053057806390fb5fb91461054e57806395d89b411461056e578063a0712d6814610583578063a22cb4651461059657600080fd5b80636c0360eb146104ba57806370a08231146104cf578063715018a6146104ef57806378e97925146105045780638693da201461051a57600080fd5b80633e0a322d116101bc57806355f804b31161018057806355f804b3146104345780635c975abb146104545780635f48f3931461046e578063626c8f8e146104845780636352211e1461049a57600080fd5b80633e0a322d1461039a57806342842e0e146103ba5780634f6ccce7146103da57806351830227146103fa578063545b620a1461041457600080fd5b806316c38b3c1161020357806316c38b3c1461030657806318160ddd1461032657806323b872dd146103455780632f745c59146103655780633ccfd60b1461038557600080fd5b806301ffc9a714610240578063059705231461027557806306fdde0314610297578063081812fc146102ac578063095ea7b3146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f6a565b610700565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076d565b60405161026c9190611fdf565b3480156102a357600080fd5b5061028a6107fb565b3480156102b857600080fd5b506102cc6102c7366004611ff2565b61088d565b6040516001600160a01b03909116815260200161026c565b3480156102f057600080fd5b506103046102ff366004612027565b61091d565b005b34801561031257600080fd5b50610304610321366004612061565b610a34565b34801561033257600080fd5b506000545b60405190815260200161026c565b34801561035157600080fd5b5061030461036036600461207c565b610a71565b34801561037157600080fd5b50610337610380366004612027565b610a7c565b34801561039157600080fd5b50610304610bd7565b3480156103a657600080fd5b506103046103b5366004611ff2565b610ce7565b3480156103c657600080fd5b506103046103d536600461207c565b610d16565b3480156103e657600080fd5b506103376103f5366004611ff2565b610d31565b34801561040657600080fd5b50600f546102609060ff1681565b34801561042057600080fd5b5061030461042f3660046120b8565b610d93565b34801561044057600080fd5b5061030461044f366004612166565b610dc8565b34801561046057600080fd5b50600b546102609060ff1681565b34801561047a57600080fd5b50610337600c5481565b34801561049057600080fd5b5061033760105481565b3480156104a657600080fd5b506102cc6104b5366004611ff2565b610e05565b3480156104c657600080fd5b5061028a610e17565b3480156104db57600080fd5b506103376104ea3660046121af565b610e24565b3480156104fb57600080fd5b50610304610eb5565b34801561051057600080fd5b5061033760135481565b34801561052657600080fd5b50610337600a5481565b34801561053c57600080fd5b506007546001600160a01b03166102cc565b34801561055a57600080fd5b50610304610569366004612166565b610eeb565b34801561057a57600080fd5b5061028a610f28565b610304610591366004611ff2565b610f37565b3480156105a257600080fd5b506103046105b13660046121ca565b61129b565b3480156105c257600080fd5b506103046105d13660046121fd565b61135f565b3480156105e257600080fd5b506103046105f13660046120b8565b611398565b34801561060257600080fd5b5061028a6113cd565b34801561061757600080fd5b5061028a610626366004611ff2565b6113da565b34801561063757600080fd5b5061033760115481565b34801561064d57600080fd5b50610337600d5481565b34801561066357600080fd5b50610304610672366004612166565b61154b565b34801561068357600080fd5b50610304610692366004612061565b611588565b3480156106a357600080fd5b506102606106b2366004612279565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506103046106fb3660046121af565b6115c5565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506001600160e01b0319821663780e9d6360e01b145b8061076757506301ffc9a760e01b6001600160e01b03198316145b92915050565b600e805461077a906122a3565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906122a3565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b505050505081565b60606001805461080a906122a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610836906122a3565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600061089a826000541190565b6109015760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061092882610e05565b9050806001600160a01b0316836001600160a01b0316036109965760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f8565b336001600160a01b03821614806109b257506109b281336106b2565b610a245760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f8565b610a2f838383611660565b505050565b6007546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016108f8906122dd565b600b805460ff1916911515919091179055565b610a2f8383836116bc565b6000610a8783610e24565b8210610ae05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f8565b600080549080805b83811015610b77576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3b57805192505b876001600160a01b0316836001600160a01b031603610b6e57868403610b675750935061076792505050565b6001909301925b50600101610ae8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f8565b6007546001600160a01b03163314610c015760405162461bcd60e51b81526004016108f8906122dd565b6000736e0d7933d3dfb019777befda09eb065d5d79a49e610c2360054761233e565b604051600081818185875af1925050503d8060008114610c5f576040519150601f19603f3d011682016040523d82523d6000602084013e610c64565b606091505b5050905080610c7257600080fd5b6000610c866007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cd0576040519150601f19603f3d011682016040523d82523d6000602084013e610cd5565b606091505b5050905080610ce357600080fd5b5050565b6007546001600160a01b03163314610d115760405162461bcd60e51b81526004016108f8906122dd565b601355565b610a2f8383836040518060200160405280600081525061135f565b600080548210610d8f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f8565b5090565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016108f8906122dd565b600a91909155600c55565b6007546001600160a01b03163314610df25760405162461bcd60e51b81526004016108f8906122dd565b8051610ce3906008906020840190611ec4565b6000610e10826119a1565b5192915050565b6008805461077a906122a3565b60006001600160a01b038216610e905760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610edf5760405162461bcd60e51b81526004016108f8906122dd565b610ee96000611a78565b565b6007546001600160a01b03163314610f155760405162461bcd60e51b81526004016108f8906122dd565b8051610ce390600e906020840190611ec4565b60606002805461080a906122a3565b600054600b5460ff1615610f8d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108f8565b60008211610fe75760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b60648201526084016108f8565b600d54610ff48383612352565b11156110375760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016108f8565b6007546001600160a01b03163314611291576013544210156110935760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08191a591b89dd081cdd185c9d081e595d605a1b60448201526064016108f8565b600061109e33610e24565b905060008060125483111580156110b9575060105460115411155b156111815760006110ca8685612352565b9050601254811061116357836012546110e3919061236a565b9150601254816110f3919061236a565b925081601160008282546111079190612352565b9091555050600a5461111a908490612381565b34101561115e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108f8565b61117b565b85601160008282546111759190612352565b90915550505b5061121c565b601054601154106111e35784600a5461119a9190612381565b3410156111de5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108f8565b61121c565b60125483106111fa5784600a5461119a9190612381565b60125483101561121c5784601160008282546112169190612352565b90915550505b600c548561122933610e24565b6112339190612352565b111561128d5760405162461bcd60e51b815260206004820152602360248201527f796f757265206e6f7420616c6c6f77656420746f20686f6c642074686174206d6044820152620eac6d60eb1b60648201526084016108f8565b5050505b610ce33383611aca565b336001600160a01b038316036112f35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61136a8484846116bc565b61137684848484611ae4565b6113925760405162461bcd60e51b81526004016108f8906123a0565b50505050565b6007546001600160a01b031633146113c25760405162461bcd60e51b81526004016108f8906122dd565b601091909155601255565b6009805461077a906122a3565b60606113e7826000541190565b61144b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f8565b600f5460ff1615156000036114ec57600e8054611467906122a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611493906122a3565b80156114e05780601f106114b5576101008083540402835291602001916114e0565b820191906000526020600020905b8154815290600101906020018083116114c357829003601f168201915b50505050509050919050565b60006114f6611be6565b905060008151116115165760405180602001604052806000815250611544565b8061152084611bf5565b6009604051602001611534939291906123f3565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115755760405162461bcd60e51b81526004016108f8906122dd565b8051610ce3906009906020840190611ec4565b6007546001600160a01b031633146115b25760405162461bcd60e51b81526004016108f8906122dd565b600f805460ff1916911515919091179055565b6007546001600160a01b031633146115ef5760405162461bcd60e51b81526004016108f8906122dd565b6001600160a01b0381166116545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b61165d81611a78565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116c7826119a1565b80519091506000906001600160a01b0316336001600160a01b031614806116fe5750336116f38461088d565b6001600160a01b0316145b806117105750815161171090336106b2565b90508061177a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f8565b846001600160a01b031682600001516001600160a01b0316146117ee5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f8565b6001600160a01b0384166118525760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f8565b6118626000848460000151611660565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119575761190a816000541190565b15611957578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526119c0826000541190565b611a1f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f8565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a6e579392505050565b5060001901611a21565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ce3828260405180602001604052806000815250611cf6565b60006001600160a01b0384163b15611bda57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b289033908990889088906004016124b6565b6020604051808303816000875af1925050508015611b63575060408051601f3d908101601f19168201909252611b60918101906124f3565b60015b611bc0573d808015611b91576040519150601f19603f3d011682016040523d82523d6000602084013e611b96565b606091505b508051600003611bb85760405162461bcd60e51b81526004016108f8906123a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bde565b5060015b949350505050565b60606008805461080a906122a3565b606081600003611c1c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c465780611c3081612510565b9150611c3f9050600a8361233e565b9150611c20565b60008167ffffffffffffffff811115611c6157611c616120da565b6040519080825280601f01601f191660200182016040528015611c8b576020820181803683370190505b5090505b8415611bde57611ca060018361236a565b9150611cad600a86612529565b611cb8906030612352565b60f81b818381518110611ccd57611ccd61253d565b60200101906001600160f81b031916908160001a905350611cef600a8661233e565b9450611c8f565b610a2f83838360016000546001600160a01b038516611d615760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f8565b83600003611dc25760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016108f8565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ebb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611eaf57611e936000888488611ae4565b611eaf5760405162461bcd60e51b81526004016108f8906123a0565b60019182019101611e40565b5060005561199a565b828054611ed0906122a3565b90600052602060002090601f016020900481019282611ef25760008555611f38565b82601f10611f0b57805160ff1916838001178555611f38565b82800160010185558215611f38579182015b82811115611f38578251825591602001919060010190611f1d565b50610d8f9291505b80821115610d8f5760008155600101611f40565b6001600160e01b03198116811461165d57600080fd5b600060208284031215611f7c57600080fd5b813561154481611f54565b60005b83811015611fa2578181015183820152602001611f8a565b838111156113925750506000910152565b60008151808452611fcb816020860160208601611f87565b601f01601f19169290920160200192915050565b6020815260006115446020830184611fb3565b60006020828403121561200457600080fd5b5035919050565b80356001600160a01b038116811461202257600080fd5b919050565b6000806040838503121561203a57600080fd5b6120438361200b565b946020939093013593505050565b8035801515811461202257600080fd5b60006020828403121561207357600080fd5b61154482612051565b60008060006060848603121561209157600080fd5b61209a8461200b565b92506120a86020850161200b565b9150604084013590509250925092565b600080604083850312156120cb57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561210b5761210b6120da565b604051601f8501601f19908116603f01168101908282118183101715612133576121336120da565b8160405280935085815286868601111561214c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561217857600080fd5b813567ffffffffffffffff81111561218f57600080fd5b8201601f810184136121a057600080fd5b611bde848235602084016120f0565b6000602082840312156121c157600080fd5b6115448261200b565b600080604083850312156121dd57600080fd5b6121e68361200b565b91506121f460208401612051565b90509250929050565b6000806000806080858703121561221357600080fd5b61221c8561200b565b935061222a6020860161200b565b925060408501359150606085013567ffffffffffffffff81111561224d57600080fd5b8501601f8101871361225e57600080fd5b61226d878235602084016120f0565b91505092959194509250565b6000806040838503121561228c57600080fd5b6122958361200b565b91506121f46020840161200b565b600181811c908216806122b757607f821691505b6020821081036122d757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261234d5761234d612312565b500490565b6000821982111561236557612365612328565b500190565b60008282101561237c5761237c612328565b500390565b600081600019048311821515161561239b5761239b612328565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206124068285838a01611f87565b8551918401916124198184848a01611f87565b8554920191600090600181811c908083168061243657607f831692505b858310810361245357634e487b7160e01b85526022600452602485fd5b8080156124675760018114612478576124a5565b60ff198516885283880195506124a5565b60008b81526020902060005b8581101561249d5781548a820152908401908801612484565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e990830184611fb3565b9695505050505050565b60006020828403121561250557600080fd5b815161154481611f54565b60006001820161252257612522612328565b5060010190565b60008261253857612538612312565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b3f35acb2ac1d9585aace0786b80bd9ea61d18246f275555073cd46aff7e2ea464736f6c634300080e0033
Deployed Bytecode Sourcemap
105:4710:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;-1:-1:-1;3744:410:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3744:410:3;;;;;;;;406:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5720:98:3:-;;;;;;;;;;;;;:::i;7356:280::-;;;;;;;;;;-1:-1:-1;7356:280:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7356:280:3;1528:203:12;6892:403:3;;;;;;;;;;-1:-1:-1;6892:403:3;;;;;:::i;:::-;;:::i;:::-;;3631:81:11;;;;;;;;;;-1:-1:-1;3631:81:11;;;;;:::i;:::-;;:::i;1974:98:3:-;;;;;;;;;;-1:-1:-1;2027:7:3;2053:12;1974:98;;;2669:25:12;;;2657:2;2642:18;1974:98:3;2523:177:12;8340:156:3;;;;;;;;;;-1:-1:-1;8340:156:3;;;;;:::i;:::-;;:::i;2657:1020::-;;;;;;;;;;-1:-1:-1;2657:1020:3;;;;;:::i;:::-;;:::i;4490:323:11:-;;;;;;;;;;;;;:::i;3718:98::-;;;;;;;;;;-1:-1:-1;3718:98:11;;;;;:::i;:::-;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;2144:220::-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;439:28:11:-;;;;;;;;;;-1:-1:-1;439:28:11;;;;;;;;3481:144;;;;;;;;;;-1:-1:-1;3481:144:11;;;;;:::i;:::-;;:::i;4230:102::-;;;;;;;;;;-1:-1:-1;4230:102:11;;;;;:::i;:::-;;:::i;301:26::-;;;;;;;;;;-1:-1:-1;301:26:11;;;;;;;;333:29;;;;;;;;;;;;;;;;473:34;;;;;;;;;;;;;;;;5536:122:3;;;;;;;;;;-1:-1:-1;5536:122:3;;;;;:::i;:::-;;:::i;185:21:11:-;;;;;;;;;;;;;:::i;4213:252:3:-;;;;;;;;;;-1:-1:-1;4213:252:3;;;;;:::i;:::-;;:::i;1628:101:9:-;;;;;;;;;;;;;:::i;576:37:11:-;;;;;;;;;;;;;;;;255:40;;;;;;;;;;;;;;;;996:85:9;;;;;;;;;;-1:-1:-1;1068:6:9;;-1:-1:-1;;;;;1068:6:9;996:85;;4104:120:11;;;;;;;;;;-1:-1:-1;4104:120:11;;;;;:::i;:::-;;:::i;5882:102:3:-;;;;;;;;;;;;;:::i;873:1771:11:-;;;;;;:::i;:::-;;:::i;7703:303:3:-;;;;;;;;;;-1:-1:-1;7703:303:3;;;;;:::i;:::-;;:::i;8799:344::-;;;;;;;;;;-1:-1:-1;8799:344:3;;;;;:::i;:::-;;:::i;3822:185:11:-;;;;;;;;;;-1:-1:-1;3822:185:11;;;;;:::i;:::-;;:::i;212:37::-;;;;;;;;;;;;;:::i;2778:697::-;;;;;;;;;;-1:-1:-1;2778:697:11;;;;;:::i;:::-;;:::i;513:29::-;;;;;;;;;;;;;;;;368:32;;;;;;;;;;;;;;;;4338:146;;;;;;;;;;-1:-1:-1;4338:146:11;;;;;:::i;:::-;;:::i;4013:85::-;;;;;;;;;;-1:-1:-1;4013:85:11;;;;;:::i;:::-;;:::i;8072:206:3:-;;;;;;;;;;-1:-1:-1;8072:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;8236:25:3;;;8209:4;8236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8072:206;1878:232:9;;;;;;;;;;-1:-1:-1;1878:232:9;;;;;:::i;:::-;;:::i;3744:410:3:-;3886:4;-1:-1:-1;;;;;;3925:40:3;;-1:-1:-1;;;3925:40:3;;:104;;-1:-1:-1;;;;;;;3981:48:3;;-1:-1:-1;;;3981:48:3;3925:104;:170;;;-1:-1:-1;;;;;;;4045:50:3;;-1:-1:-1;;;4045:50:3;3925:170;:222;;;-1:-1:-1;;;;;;;;;;981:40:2;;;4111:36:3;3906:241;3744:410;-1:-1:-1;;3744:410:3:o;406:27:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5720:98:3:-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;7500:16;7479:108;;;;-1:-1:-1;;;7479:108:3;;6490:2:12;7479:108:3;;;6472:21:12;6529:2;6509:18;;;6502:30;6568:34;6548:18;;;6541:62;-1:-1:-1;;;6619:18:12;;;6612:43;6672:19;;7479:108:3;;;;;;;;;-1:-1:-1;7605:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7605:24:3;;7356:280::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;-1:-1:-1;;;;;7022:11:3;:2;-1:-1:-1;;;;;7022:11:3;;7014:58;;;;-1:-1:-1;;;7014:58:3;;6904:2:12;7014:58:3;;;6886:21:12;6943:2;6923:18;;;6916:30;6982:34;6962:18;;;6955:62;-1:-1:-1;;;7033:18:12;;;7026:32;7075:19;;7014:58:3;6702:398:12;7014:58:3;665:10:1;-1:-1:-1;;;;;7104:21:3;;;;:62;;-1:-1:-1;7129:37:3;7146:5;665:10:1;8072:206:3;:::i;7129:37::-;7083:166;;;;-1:-1:-1;;;7083:166:3;;7307:2:12;7083:166:3;;;7289:21:12;7346:2;7326:18;;;7319:30;7385:34;7365:18;;;7358:62;7456:27;7436:18;;;7429:55;7501:19;;7083:166:3;7105:421:12;7083:166:3;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6954:341;6892:403;;:::o;3631:81:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3690:6:11::1;:15:::0;;-1:-1:-1;;3690:15:11::1;::::0;::::1;;::::0;;;::::1;::::0;;3631:81::o;8340:156:3:-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;2657:1020::-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;-1:-1:-1;;;2801:71:3;;8094:2:12;2801:71:3;;;8076:21:12;8133:2;8113:18;;;8106:30;8172:34;8152:18;;;8145:62;-1:-1:-1;;;8223:18:12;;;8216:32;8265:19;;2801:71:3;7892:398:12;2801:71:3;2882:22;2053:12;;;2882:22;;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:14;;;:11;:14;;;;;;;;;3198:48;;;;;;;;;-1:-1:-1;;;;;3198:48:3;;;;;-1:-1:-1;;;3198:48:3;;;;;;;;;;;;3268:28;3264:109;;3340:14;;;-1:-1:-1;3264:109:3;3415:5;-1:-1:-1;;;;;3394:26:3;:17;-1:-1:-1;;;;;3394:26:3;;3390:190;;3463:5;3448:11;:20;3444:83;;-1:-1:-1;3503:1:3;-1:-1:-1;3496:8:3;;-1:-1:-1;;;3496:8:3;3444:83;3548:13;;;;;3390:190;-1:-1:-1;3175:3:3;;3139:455;;;-1:-1:-1;3614:56:3;;-1:-1:-1;;;3614:56:3;;8497:2:12;3614:56:3;;;8479:21:12;8536:2;8516:18;;;8509:30;8575:34;8555:18;;;8548:62;-1:-1:-1;;;8626:18:12;;;8619:44;8680:19;;3614:56:3;8295:410:12;4490:323:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;4538:6:11::1;4558:42;4627:25;4651:1;4627:21;:25;:::i;:::-;4550:116;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4537:129;;;4704:1;4696:10;;;::::0;::::1;;4717:7;4738;1068:6:9::0;;-1:-1:-1;;;;;1068:6:9;;996:85;4738:7:11::1;-1:-1:-1::0;;;;;4730:21:11::1;4759;4730:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4716:69;;;4803:2;4795:11;;;::::0;::::1;;4527:286;;4490:323::o:0;3718:98::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3787:9:11::1;:22:::0;3718:98::o;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;2144:220::-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;9511:2:12;2266:69:3;;;9493:21:12;9550:2;9530:18;;;9523:30;9589:34;9569:18;;;9562:62;-1:-1:-1;;;9640:18:12;;;9633:33;9683:19;;2266:69:3;9309:399:12;2266:69:3;-1:-1:-1;2352:5:3;2144:220::o;3481:144:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3562:10:11::1;:24:::0;;;;3596:9:::1;:22:::0;3481:144::o;4230:102::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;4304:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;5536:122:3:-:0;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;5536:122;-1:-1:-1;;5536:122:3:o;185:21:11:-;;;;;;;:::i;4213:252:3:-;4277:7;-1:-1:-1;;;;;4317:19:3;;4296:109;;;;-1:-1:-1;;;4296:109:3;;9915:2:12;4296:109:3;;;9897:21:12;9954:2;9934:18;;;9927:30;9993:34;9973:18;;;9966:62;-1:-1:-1;;;10044:18:12;;;10037:41;10095:19;;4296:109:3;9713:407:12;4296:109:3;-1:-1:-1;;;;;;4430:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4430:27:3;;4213:252::o;1628:101:9:-;1068:6;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;4104:120:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;4187:30:11;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;5882:102:3:-:0;5938:13;5970:7;5963:14;;;;;:::i;873:1771:11:-;932:14;2053:12:3;981:6:11;;;;980:7;972:43;;;;-1:-1:-1;;;972:43:11;;10327:2:12;972:43:11;;;10309:21:12;10366:2;10346:18;;;10339:30;10405:25;10385:18;;;10378:53;10448:18;;972:43:11;10125:347:12;972:43:11;1044:1;1033:8;:12;1025:58;;;;-1:-1:-1;;;1025:58:11;;10679:2:12;1025:58:11;;;10661:21:12;10718:2;10698:18;;;10691:30;10757:34;10737:18;;;10730:62;-1:-1:-1;;;10808:18:12;;;10801:31;10849:19;;1025:58:11;10477:397:12;1025:58:11;1122:9;;1101:17;1110:8;1101:6;:17;:::i;:::-;:30;;1093:61;;;;-1:-1:-1;;;1093:61:11;;11214:2:12;1093:61:11;;;11196:21:12;11253:2;11233:18;;;11226:30;-1:-1:-1;;;11272:18:12;;;11265:48;11330:18;;1093:61:11;11012:342:12;1093:61:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;1169:10:11;:21;1165:1432;;1233:9;;1214:15;:28;;1206:62;;;;-1:-1:-1;;;1206:62:11;;11561:2:12;1206:62:11;;;11543:21:12;11600:2;11580:18;;;11573:30;-1:-1:-1;;;11619:18:12;;;11612:51;11680:18;;1206:62:11;11359:345:12;1206:62:11;1282:15;1300:21;1310:10;1300:9;:21::i;:::-;1282:39;;1335:16;1369;1419:10;;1408:7;:21;;:51;;;;;1447:12;;1433:10;;:26;;1408:51;1404:1029;;;1479:13;1495:18;1505:8;1495:7;:18;:::i;:::-;1479:34;;1544:10;;1535:5;:19;1531:418;;1602:7;1589:10;;:20;;;;:::i;:::-;1578:31;;1650:10;;1642:5;:18;;;;:::i;:::-;1631:29;;1696:8;1682:10;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;1772:10:11;;:21;;1785:8;;1772:21;:::i;:::-;1759:9;:34;;1726:135;;;;-1:-1:-1;;;1726:135:11;;12214:2:12;1726:135:11;;;12196:21:12;12253:2;12233:18;;;12226:30;-1:-1:-1;;;12272:18:12;;;12265:48;12330:18;;1726:135:11;12012:342:12;1726:135:11;1531:418;;;1922:8;1908:10;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;1531:418:11;1461:502;1404:1029;;;1987:12;;1973:10;;:26;1969:464;;2074:8;2061:10;;:21;;;;:::i;:::-;2048:9;:34;;2019:123;;;;-1:-1:-1;;;2019:123:11;;12214:2:12;2019:123:11;;;12196:21:12;12253:2;12233:18;;;12226:30;-1:-1:-1;;;12272:18:12;;;12265:48;12330:18;;2019:123:11;12012:342:12;2019:123:11;1969:464;;;2178:10;;2167:7;:21;2163:270;;2263:8;2250:10;;:21;;;;:::i;2163:270::-;2366:10;;2356:7;:20;2352:81;;;2410:8;2396:10;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;2352:81:11;2508:9;;2496:8;2472:21;2482:10;2472:9;:21::i;:::-;:32;;;;:::i;:::-;:45;;2447:139;;;;-1:-1:-1;;;2447:139:11;;12561:2:12;2447:139:11;;;12543:21:12;12600:2;12580:18;;;12573:30;12639:34;12619:18;;;12612:62;-1:-1:-1;;;12690:18:12;;;12683:33;12733:19;;2447:139:11;12359:399:12;2447:139:11;1192:1405;;;1165:1432;2606:31;2616:10;2628:8;2606:9;:31::i;7703:303:3:-;665:10:1;-1:-1:-1;;;;;7817:24:3;;;7809:63;;;;-1:-1:-1;;;7809:63:3;;12965:2:12;7809:63:3;;;12947:21:12;13004:2;12984:18;;;12977:30;13043:28;13023:18;;;13016:56;13089:18;;7809:63:3;12763:350:12;7809:63:3;665:10:1;7883:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7883:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7883:53:3;;;;;;;;;;7951:48;;540:41:12;;;7883:42:3;;665:10:1;7951:48:3;;513:18:12;7951:48:3;;;;;;;7703:303;;:::o;8799:344::-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;-1:-1:-1;;;8990:146:3;;;;;;;:::i;:::-;8799:344;;;;:::o;3822:185:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3938:12:11::1;:28:::0;;;;3976:10:::1;:24:::0;3822:185::o;212:37::-;;;;;;;:::i;2778:697::-;2891:13;2941:16;2949:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;2941:16:11;2920:110;;;;-1:-1:-1;;;2920:110:11;;13740:2:12;2920:110:11;;;13722:21:12;13779:2;13759:18;;;13752:30;13818:34;13798:18;;;13791:62;-1:-1:-1;;;13869:18:12;;;13862:45;13924:19;;2920:110:11;13538:411:12;2920:110:11;3045:8;;;;:17;;:8;:17;3041:68;;3085:13;3078:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2778:697;;;:::o;3041:68::-;3119:28;3150:10;:8;:10::i;:::-;3119:41;;3220:1;3195:14;3189:28;:32;:279;;;;;;;;;;;;;;;;;3310:14;3350:18;:7;:16;:18::i;:::-;3394:13;3268:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3189:279;3170:298;2778:697;-1:-1:-1;;;2778:697:11:o;4338:146::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;4444:33:11;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4013:85::-:0;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;4074:8:11::1;:17:::0;;-1:-1:-1;;4074:17:11::1;::::0;::::1;;::::0;;;::::1;::::0;;4013:85::o;1878:232:9:-;1068:6;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:9;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:9;;15814:2:12;1958:107:9::1;::::0;::::1;15796:21:12::0;15853:2;15833:18;;;15826:30;15892:34;15872:18;;;15865:62;-1:-1:-1;;;15943:18:12;;;15936:36;15989:19;;1958:107:9::1;15612:402:12::0;1958:107:9::1;2075:28;2094:8;2075:18;:28::i;:::-;1878:232:::0;:::o;14401:189:3:-;14511:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14511:29:3;-1:-1:-1;;;;;14511:29:3;;;;;;;;;14555:28;;14511:24;;14555:28;;;;;;;14401:189;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12460:18;;12349:58;;-1:-1:-1;12418:22:3;;-1:-1:-1;;;;;12444:34:3;665:10:1;-1:-1:-1;;;;;12444:34:3;;:86;;;-1:-1:-1;665:10:1;12494:20:3;12506:7;12494:11;:20::i;:::-;-1:-1:-1;;;;;12494:36:3;;12444:86;:152;;;-1:-1:-1;12563:18:3;;12546:50;;665:10:1;8072:206:3;:::i;12546:50::-;12418:179;;12629:17;12608:114;;;;-1:-1:-1;;;12608:114:3;;16221:2:12;12608:114:3;;;16203:21:12;16260:2;16240:18;;;16233:30;16299:34;16279:18;;;16272:62;-1:-1:-1;;;16350:18:12;;;16343:48;16408:19;;12608:114:3;16019:414:12;12608:114:3;12776:4;-1:-1:-1;;;;;12754:26:3;:13;:18;;;-1:-1:-1;;;;;12754:26:3;;12733:111;;;;-1:-1:-1;;;12733:111:3;;16640:2:12;12733:111:3;;;16622:21:12;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;-1:-1:-1;;;16769:18:12;;;16762:36;16815:19;;12733:111:3;16438:402:12;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;17047:2:12;12854:66:3;;;17029:21:12;17086:2;17066:18;;;17059:30;17125:34;17105:18;;;17098:62;-1:-1:-1;;;17176:18:12;;;17169:35;17221:19;;12854:66:3;16845:401:12;12854:66:3;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;-1:-1:-1;;;;;13375:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13375:31:3;;;-1:-1:-1;;;;;13375:31:3;;;-1:-1:-1;;13375:31:3;;;;;;;13420:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13420:29:3;;;;;;;;;;;;;13464:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13508:61:3;;;;-1:-1:-1;;;13553:15:3;13508:61;;;;;;13839:11;;;13868:24;;;;;:29;13839:11;;13868:29;13864:315;;13935:20;13943:11;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;13935:20;13931:234;;;14011:18;;;13979:24;;;:11;:24;;;;;;;;:50;;14093:53;;;;14051:95;;-1:-1:-1;;;14051:95:3;-1:-1:-1;;;;;;14051:95:3;;;-1:-1:-1;;;;;13979:50:3;;;14051:95;;;;;;;13931:234;13351:838;14223:7;14219:2;-1:-1:-1;;;;;14204:27:3;14213:4;-1:-1:-1;;;;;14204:27:3;;;;;;;;;;;14241:42;12339:1951;;12239:2051;;;:::o;4927:552::-;-1:-1:-1;;;;;;;;;;;;;;;;;5057:16:3;5065:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;5057:16;5049:71;;;;-1:-1:-1;;;5049:71:3;;17453:2:12;5049:71:3;;;17435:21:12;17492:2;17472:18;;;17465:30;17531:34;17511:18;;;17504:62;-1:-1:-1;;;17582:18:12;;;17575:40;17632:19;;5049:71:3;17251:406:12;5049:71:3;5175:7;5155:240;5221:31;5255:17;;;:11;:17;;;;;;;;;5221:51;;;;;;;;;-1:-1:-1;;;;;5221:51:3;;;;;-1:-1:-1;;;5221:51:3;;;;;;;;;;;;5294:28;5290:91;;5353:9;4927:552;-1:-1:-1;;;4927:552:3:o;5290:91::-;-1:-1:-1;;;5195:6:3;5155:240;;2264:187:9;2356:6;;;-1:-1:-1;;;;;2372:17:9;;;-1:-1:-1;;;;;;2372:17:9;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;9504:102:3:-;9572:27;9582:2;9586:8;9572:27;;;;;;;;;;;;:9;:27::i;15143:955::-;15293:4;-1:-1:-1;;;;;15313:13:3;;1450:19:0;:23;15309:783:3;;15364:170;;-1:-1:-1;;;15364:170:3;;-1:-1:-1;;;;;15364:36:3;;;;;:170;;665:10:1;;15456:4:3;;15482:7;;15511:5;;15364:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15364:170:3;;;;;;;;-1:-1:-1;;15364:170:3;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15717:6;:13;15734:1;15717:18;15713:313;;15759:107;;-1:-1:-1;;;15759:107:3;;;;;;;:::i;15713:313::-;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;-1:-1:-1;;;;;;15596:55:3;-1:-1:-1;;;15596:55:3;;-1:-1:-1;15589:62:3;;15309:783;-1:-1:-1;16077:4:3;15309:783;15143:955;;;;;;:::o;2666:106:11:-;2726:13;2758:7;2751:14;;;;;:::i;328:703:10:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:10;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;9957:157:3;10075:32;10081:2;10085:8;10095:5;10102:4;10494:20;10517:12;-1:-1:-1;;;;;10547:16:3;;10539:62;;;;-1:-1:-1;;;10539:62:3;;19417:2:12;10539:62:3;;;19399:21:12;19456:2;19436:18;;;19429:30;19495:34;19475:18;;;19468:62;-1:-1:-1;;;19546:18:12;;;19539:31;19587:19;;10539:62:3;19215:397:12;10539:62:3;10619:8;10631:1;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;19819:2:12;10611:66:3;;;19801:21:12;19858:2;19838:18;;;19831:30;19897:34;19877:18;;;19870:62;-1:-1:-1;;;19948:18:12;;;19941:38;19996:19;;10611:66:3;19617:404:12;10611:66:3;-1:-1:-1;;;;;11021:16:3;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11021:45:3;;-1:-1:-1;;;;;11021:45:3;;;;;;;;;;11080:50;;;;;;;;;;;;;;11145:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11194:66:3;;;;-1:-1:-1;;;11244:15:3;11194:66;;;;;;;11145:25;;11325:543;11345:8;11341:1;:12;11325:543;;;11383:38;;11408:12;;-1:-1:-1;;;;;11383:38:3;;;11400:1;;11383:38;;11400:1;;11383:38;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;-1:-1:-1;;;11471:331:3;;;;;;;:::i;:::-;11839:14;;;;;11355:3;11325:543;;;-1:-1:-1;11882:12:3;:27;11930:60;8799:344;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:12;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:12;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:12:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:12;;1343:180;-1:-1:-1;1343:180:12:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:12;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:12:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:248::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;-1:-1:-1;;3206:23:12;;;3276:2;3261:18;;;3248:32;;-1:-1:-1;3038:248:12:o;3291:127::-;3352:10;3347:3;3343:20;3340:1;3333:31;3383:4;3380:1;3373:15;3407:4;3404:1;3397:15;3423:632;3488:5;3518:18;3559:2;3551:6;3548:14;3545:40;;;3565:18;;:::i;:::-;3640:2;3634:9;3608:2;3694:15;;-1:-1:-1;;3690:24:12;;;3716:2;3686:33;3682:42;3670:55;;;3740:18;;;3760:22;;;3737:46;3734:72;;;3786:18;;:::i;:::-;3826:10;3822:2;3815:22;3855:6;3846:15;;3885:6;3877;3870:22;3925:3;3916:6;3911:3;3907:16;3904:25;3901:45;;;3942:1;3939;3932:12;3901:45;3992:6;3987:3;3980:4;3972:6;3968:17;3955:44;4047:1;4040:4;4031:6;4023;4019:19;4015:30;4008:41;;;;3423:632;;;;;:::o;4060:451::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:12;;4408:1;4405;4398:12;4357:55;4431:74;4497:7;4492:2;4479:16;4474:2;4470;4466:11;4431:74;:::i;4516:186::-;4575:6;4628:2;4616:9;4607:7;4603:23;4599:32;4596:52;;;4644:1;4641;4634:12;4596:52;4667:29;4686:9;4667:29;:::i;4707:254::-;4772:6;4780;4833:2;4821:9;4812:7;4808:23;4804:32;4801:52;;;4849:1;4846;4839:12;4801:52;4872:29;4891:9;4872:29;:::i;:::-;4862:39;;4920:35;4951:2;4940:9;4936:18;4920:35;:::i;:::-;4910:45;;4707:254;;;;;:::o;4966:667::-;5061:6;5069;5077;5085;5138:3;5126:9;5117:7;5113:23;5109:33;5106:53;;;5155:1;5152;5145:12;5106:53;5178:29;5197:9;5178:29;:::i;:::-;5168:39;;5226:38;5260:2;5249:9;5245:18;5226:38;:::i;:::-;5216:48;;5311:2;5300:9;5296:18;5283:32;5273:42;;5366:2;5355:9;5351:18;5338:32;5393:18;5385:6;5382:30;5379:50;;;5425:1;5422;5415:12;5379:50;5448:22;;5501:4;5493:13;;5489:27;-1:-1:-1;5479:55:12;;5530:1;5527;5520:12;5479:55;5553:74;5619:7;5614:2;5601:16;5596:2;5592;5588:11;5553:74;:::i;:::-;5543:84;;;4966:667;;;;;;;:::o;5638:260::-;5706:6;5714;5767:2;5755:9;5746:7;5742:23;5738:32;5735:52;;;5783:1;5780;5773:12;5735:52;5806:29;5825:9;5806:29;:::i;:::-;5796:39;;5854:38;5888:2;5877:9;5873:18;5854:38;:::i;5903:380::-;5982:1;5978:12;;;;6025;;;6046:61;;6100:4;6092:6;6088:17;6078:27;;6046:61;6153:2;6145:6;6142:14;6122:18;6119:38;6116:161;;6199:10;6194:3;6190:20;6187:1;6180:31;6234:4;6231:1;6224:15;6262:4;6259:1;6252:15;6116:161;;5903:380;;;:::o;7531:356::-;7733:2;7715:21;;;7752:18;;;7745:30;7811:34;7806:2;7791:18;;7784:62;7878:2;7863:18;;7531:356::o;8710:127::-;8771:10;8766:3;8762:20;8759:1;8752:31;8802:4;8799:1;8792:15;8826:4;8823:1;8816:15;8842:127;8903:10;8898:3;8894:20;8891:1;8884:31;8934:4;8931:1;8924:15;8958:4;8955:1;8948:15;8974:120;9014:1;9040;9030:35;;9045:18;;:::i;:::-;-1:-1:-1;9079:9:12;;8974:120::o;10879:128::-;10919:3;10950:1;10946:6;10943:1;10940:13;10937:39;;;10956:18;;:::i;:::-;-1:-1:-1;10992:9:12;;10879:128::o;11709:125::-;11749:4;11777:1;11774;11771:8;11768:34;;;11782:18;;:::i;:::-;-1:-1:-1;11819:9:12;;11709:125::o;11839:168::-;11879:7;11945:1;11941;11937:6;11933:14;11930:1;11927:21;11922:1;11915:9;11908:17;11904:45;11901:71;;;11952:18;;:::i;:::-;-1:-1:-1;11992:9:12;;11839:168::o;13118:415::-;13320:2;13302:21;;;13359:2;13339:18;;;13332:30;13398:34;13393:2;13378:18;;13371:62;-1:-1:-1;;;13464:2:12;13449:18;;13442:49;13523:3;13508:19;;13118:415::o;14080:1527::-;14304:3;14342:6;14336:13;14368:4;14381:51;14425:6;14420:3;14415:2;14407:6;14403:15;14381:51;:::i;:::-;14495:13;;14454:16;;;;14517:55;14495:13;14454:16;14539:15;;;14517:55;:::i;:::-;14661:13;;14594:20;;;14634:1;;14721;14743:18;;;;14796;;;;14823:93;;14901:4;14891:8;14887:19;14875:31;;14823:93;14964:2;14954:8;14951:16;14931:18;14928:40;14925:167;;-1:-1:-1;;;14991:33:12;;15047:4;15044:1;15037:15;15077:4;14998:3;15065:17;14925:167;15108:18;15135:110;;;;15259:1;15254:328;;;;15101:481;;15135:110;-1:-1:-1;;15170:24:12;;15156:39;;15215:20;;;;-1:-1:-1;15135:110:12;;15254:328;14027:1;14020:14;;;14064:4;14051:18;;15349:1;15363:169;15377:8;15374:1;15371:15;15363:169;;;15459:14;;15444:13;;;15437:37;15502:16;;;;15394:10;;15363:169;;;15367:3;;15563:8;15556:5;15552:20;15545:27;;15101:481;-1:-1:-1;15598:3:12;;14080:1527;-1:-1:-1;;;;;;;;;;;14080:1527:12:o;18078:489::-;-1:-1:-1;;;;;18347:15:12;;;18329:34;;18399:15;;18394:2;18379:18;;18372:43;18446:2;18431:18;;18424:34;;;18494:3;18489:2;18474:18;;18467:31;;;18272:4;;18515:46;;18541:19;;18533:6;18515:46;:::i;:::-;18507:54;18078:489;-1:-1:-1;;;;;;18078:489:12:o;18572:249::-;18641:6;18694:2;18682:9;18673:7;18669:23;18665:32;18662:52;;;18710:1;18707;18700:12;18662:52;18742:9;18736:16;18761:30;18785:5;18761:30;:::i;18826:135::-;18865:3;18886:17;;;18883:43;;18906:18;;:::i;:::-;-1:-1:-1;18953:1:12;18942:13;;18826:135::o;18966:112::-;18998:1;19024;19014:35;;19029:18;;:::i;:::-;-1:-1:-1;19063:9:12;;18966:112::o;19083:127::-;19144:10;19139:3;19135:20;19132:1;19125:31;19175:4;19172:1;19165:15;19199:4;19196:1;19189:15
Swarm Source
ipfs://b3f35acb2ac1d9585aace0786b80bd9ea61d18246f275555073cd46aff7e2ea4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.