ERC-721
Overview
Max Total Supply
1,172 HAPPYOTTERS
Holders
157
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HAPPYOTTERSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HappyOtters
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-19 */ /** *Submitted for verification at Etherscan.io on 2022-03-12 */ /** *Submitted for verification at Etherscan.io on 2022-03-04 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/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); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract HappyOtters is ERC721A, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.0069 ether; uint256 public maxSupply = 6666; uint256 public maxMintAmount = 10; uint256 public maxFREEMintAmount = 3; uint256 public FREEnftPerAddressLimit = 3; uint256 public FREE_MAX_SUPPLY = 1000; bool public paused = true; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if (FREE_MAX_SUPPLY >= supply + _mintAmount) { require(_mintAmount <= maxFREEMintAmount, "max mint amount per session exceeded"); require(numberMinted(msg.sender) + _mintAmount <= FREEnftPerAddressLimit, "max NFT per address exceeded"); } else { require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(msg.value >= _mintAmount * cost, "Invalid funds provided"); } } _safeMint(msg.sender, _mintAmount); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setNftPerAddressLimit(uint256 _limit) public onlyOwner { FREEnftPerAddressLimit = _limit; } function setFreeMaxSupply(uint256 _FreeMaxAmount) public onlyOwner { FREE_MAX_SUPPLY = _FreeMaxAmount; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setFreeMaxMintAmount(uint256 _newFreeMaxMintAmount) public onlyOwner { maxFREEMintAmount = _newFreeMaxMintAmount; FREEnftPerAddressLimit = _newFreeMaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREEnftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"cost","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":"maxFREEMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FreeMaxAmount","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001ba565b506618838370f34000600a908155611a0a600b55600c556003600d819055600e556103e8600f556010805460ff191660011790553480156200006957600080fd5b506040516200274f3803806200274f8339810160408190526200008c9162000317565b825183908390620000a5906001906020850190620001ba565b508051620000bb906002906020840190620001ba565b505050620000d8620000d2620000ec60201b60201c565b620000f0565b620000e38162000142565b505050620003fb565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b6906008906020840190620001ba565b5050565b828054620001c890620003a8565b90600052602060002090601f016020900481019282620001ec576000855562000237565b82601f106200020757805160ff191683800117855562000237565b8280016001018555821562000237579182015b82811115620002375782518255916020019190600101906200021a565b506200024592915062000249565b5090565b5b808211156200024557600081556001016200024a565b600082601f8301126200027257600080fd5b81516001600160401b03808211156200028f576200028f620003e5565b604051601f8301601f19908116603f01168101908282118183101715620002ba57620002ba620003e5565b81604052838152602092508683858801011115620002d757600080fd5b600091505b83821015620002fb5785820183015181830184015290820190620002dc565b838211156200030d5760008385830101525b9695505050505050565b6000806000606084860312156200032d57600080fd5b83516001600160401b03808211156200034557600080fd5b620003538783880162000260565b945060208601519150808211156200036a57600080fd5b620003788783880162000260565b935060408601519150808211156200038f57600080fd5b506200039e8682870162000260565b9150509250925092565b600181811c90821680620003bd57607f821691505b60208210811415620003df57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612344806200040b6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063c6682862116100ab578063d5abeb011161006f578063d5abeb01146105fe578063da3ef23f14610614578063dc33e68114610634578063e985e9c514610654578063f2fde38b1461069d57600080fd5b8063c668286214610569578063c87b56dd1461057e578063d0eb26b01461059e578063d223a631146105be578063d4fcb2ae146105de57600080fd5b80638da5cb5b116100f25780638da5cb5b146104e357806395d89b4114610501578063a0712d6814610516578063a22cb46514610529578063b88d4fde1461054957600080fd5b8063715018a6146104825780637c7c867f146104975780637f00c7a6146104ad5780638069876d146104cd57600080fd5b80632f745c59116101b157806355f804b31161017557806355f804b3146103f2578063586963d9146104125780635c975abb146104285780636352211e1461044257806370a082311461046257600080fd5b80632f745c591461036a5780633ccfd60b1461038a57806342842e0e1461039257806344a0d68a146103b25780634f6ccce7146103d257600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031f578063239c70ae1461033457806323b872dd1461034a57600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611f00565b6106bd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611ee5565b61072a565b005b34801561028d57600080fd5b50610296610770565b60405161025691906120c9565b3480156102af57600080fd5b506102c36102be366004611f83565b610802565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f6366004611ebb565b61088d565b34801561030757600080fd5b50610311600a5481565b604051908152602001610256565b34801561032b57600080fd5b50600054610311565b34801561034057600080fd5b50610311600c5481565b34801561035657600080fd5b5061027f610365366004611dd9565b6109a5565b34801561037657600080fd5b50610311610385366004611ebb565b6109b0565b61027f610b0d565b34801561039e57600080fd5b5061027f6103ad366004611dd9565b610bab565b3480156103be57600080fd5b5061027f6103cd366004611f83565b610bc6565b3480156103de57600080fd5b506103116103ed366004611f83565b610bf5565b3480156103fe57600080fd5b5061027f61040d366004611f3a565b610c57565b34801561041e57600080fd5b50610311600e5481565b34801561043457600080fd5b5060105461024a9060ff1681565b34801561044e57600080fd5b506102c361045d366004611f83565b610c98565b34801561046e57600080fd5b5061031161047d366004611d8b565b610caa565b34801561048e57600080fd5b5061027f610d3b565b3480156104a357600080fd5b50610311600d5481565b3480156104b957600080fd5b5061027f6104c8366004611f83565b610d71565b3480156104d957600080fd5b50610311600f5481565b3480156104ef57600080fd5b506007546001600160a01b03166102c3565b34801561050d57600080fd5b50610296610da0565b61027f610524366004611f83565b610daf565b34801561053557600080fd5b5061027f610544366004611e91565b610f83565b34801561055557600080fd5b5061027f610564366004611e15565b611048565b34801561057557600080fd5b50610296611081565b34801561058a57600080fd5b50610296610599366004611f83565b61110f565b3480156105aa57600080fd5b5061027f6105b9366004611f83565b6111df565b3480156105ca57600080fd5b5061027f6105d9366004611f83565b61120e565b3480156105ea57600080fd5b5061027f6105f9366004611f83565b61123d565b34801561060a57600080fd5b50610311600b5481565b34801561062057600080fd5b5061027f61062f366004611f3a565b611271565b34801561064057600080fd5b5061031161064f366004611d8b565b6112ae565b34801561066057600080fd5b5061024a61066f366004611da6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106a957600080fd5b5061027f6106b8366004611d8b565b6112b9565b60006001600160e01b031982166380ac58cd60e01b14806106ee57506001600160e01b03198216635b5e139f60e01b145b8061070957506001600160e01b0319821663780e9d6360e01b145b8061072457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461075d5760405162461bcd60e51b815260040161075490612120565b60405180910390fd5b6010805460ff1916911515919091179055565b60606001805461077f90612236565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90612236565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b600061080f826000541190565b6108715760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610754565b506000908152600560205260409020546001600160a01b031690565b600061089882610c98565b9050806001600160a01b0316836001600160a01b031614156109075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610754565b336001600160a01b03821614806109235750610923813361066f565b6109955760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610754565b6109a0838383611351565b505050565b6109a08383836113ad565b60006109bb83610caa565b8210610a145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610754565b600080549080805b83811015610aad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a6f57805192505b876001600160a01b0316836001600160a01b03161415610aa45786841415610a9d5750935061072492505050565b6001909301925b50600101610a1c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610754565b6007546001600160a01b03163314610b375760405162461bcd60e51b815260040161075490612120565b6000610b4b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b95576040519150601f19603f3d011682016040523d82523d6000602084013e610b9a565b606091505b5050905080610ba857600080fd5b50565b6109a083838360405180602001604052806000815250611048565b6007546001600160a01b03163314610bf05760405162461bcd60e51b815260040161075490612120565b600a55565b600080548210610c535760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610754565b5090565b6007546001600160a01b03163314610c815760405162461bcd60e51b815260040161075490612120565b8051610c94906008906020840190611c59565b5050565b6000610ca382611692565b5192915050565b60006001600160a01b038216610d165760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610754565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d655760405162461bcd60e51b815260040161075490612120565b610d6f6000611769565b565b6007546001600160a01b03163314610d9b5760405162461bcd60e51b815260040161075490612120565b600c55565b60606002805461077f90612236565b60105460ff1615610dfb5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610754565b600054600b54610e0b83836121a8565b1115610e525760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610754565b6007546001600160a01b03163314610f7957610e6e82826121a8565b600f5410610f0257600d54821115610e985760405162461bcd60e51b8152600401610754906120dc565b600e5482610ea5336112ae565b610eaf91906121a8565b1115610efd5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610754565b610f79565b600c54821115610f245760405162461bcd60e51b8152600401610754906120dc565b600a54610f3190836121d4565b341015610f795760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610754565b610c9433836117bb565b6001600160a01b038216331415610fdc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610754565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110538484846113ad565b61105f848484846117d5565b61107b5760405162461bcd60e51b815260040161075490612155565b50505050565b6009805461108e90612236565b80601f01602080910402602001604051908101604052809291908181526020018280546110ba90612236565b80156111075780601f106110dc57610100808354040283529160200191611107565b820191906000526020600020905b8154815290600101906020018083116110ea57829003601f168201915b505050505081565b606061111c826000541190565b6111805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610754565b600061118a6118e3565b905060008151116111aa57604051806020016040528060008152506111d8565b806111b4846118f2565b60096040516020016111c893929190611fc8565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112095760405162461bcd60e51b815260040161075490612120565b600e55565b6007546001600160a01b031633146112385760405162461bcd60e51b815260040161075490612120565b600f55565b6007546001600160a01b031633146112675760405162461bcd60e51b815260040161075490612120565b600d819055600e55565b6007546001600160a01b0316331461129b5760405162461bcd60e51b815260040161075490612120565b8051610c94906009906020840190611c59565b6000610724826119f0565b6007546001600160a01b031633146112e35760405162461bcd60e51b815260040161075490612120565b6001600160a01b0381166113485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610754565b610ba881611769565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113b882611692565b80519091506000906001600160a01b0316336001600160a01b031614806113ef5750336113e484610802565b6001600160a01b0316145b8061140157508151611401903361066f565b90508061146b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610754565b846001600160a01b031682600001516001600160a01b0316146114df5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610754565b6001600160a01b0384166115435760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610754565b6115536000848460000151611351565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611648576115fb816000541190565b15611648578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526116b1826000541190565b6117105760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610754565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561175f579392505050565b5060001901611712565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c94828260405180602001604052806000815250611a8e565b60006001600160a01b0384163b156118d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181990339089908890889060040161208c565b602060405180830381600087803b15801561183357600080fd5b505af1925050508015611863575060408051601f3d908101601f1916820190925261186091810190611f1d565b60015b6118bd573d808015611891576040519150601f19603f3d011682016040523d82523d6000602084013e611896565b606091505b5080516118b55760405162461bcd60e51b815260040161075490612155565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118db565b5060015b949350505050565b60606008805461077f90612236565b6060816119165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611940578061192a81612271565b91506119399050600a836121c0565b915061191a565b60008167ffffffffffffffff81111561195b5761195b6122e2565b6040519080825280601f01601f191660200182016040528015611985576020820181803683370190505b5090505b84156118db5761199a6001836121f3565b91506119a7600a8661228c565b6119b29060306121a8565b60f81b8183815181106119c7576119c76122cc565b60200101906001600160f81b031916908160001a9053506119e9600a866121c0565b9450611989565b60006001600160a01b038216611a625760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610754565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6109a083838360016000546001600160a01b038516611af95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610754565b83611b575760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610754565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c505760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c4457611c2860008884886117d5565b611c445760405162461bcd60e51b815260040161075490612155565b60019182019101611bd5565b5060005561168b565b828054611c6590612236565b90600052602060002090601f016020900481019282611c875760008555611ccd565b82601f10611ca057805160ff1916838001178555611ccd565b82800160010185558215611ccd579182015b82811115611ccd578251825591602001919060010190611cb2565b50610c539291505b80821115610c535760008155600101611cd5565b600067ffffffffffffffff80841115611d0457611d046122e2565b604051601f8501601f19908116603f01168101908282118183101715611d2c57611d2c6122e2565b81604052809350858152868686011115611d4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d7657600080fd5b919050565b80358015158114611d7657600080fd5b600060208284031215611d9d57600080fd5b6111d882611d5f565b60008060408385031215611db957600080fd5b611dc283611d5f565b9150611dd060208401611d5f565b90509250929050565b600080600060608486031215611dee57600080fd5b611df784611d5f565b9250611e0560208501611d5f565b9150604084013590509250925092565b60008060008060808587031215611e2b57600080fd5b611e3485611d5f565b9350611e4260208601611d5f565b925060408501359150606085013567ffffffffffffffff811115611e6557600080fd5b8501601f81018713611e7657600080fd5b611e8587823560208401611ce9565b91505092959194509250565b60008060408385031215611ea457600080fd5b611ead83611d5f565b9150611dd060208401611d7b565b60008060408385031215611ece57600080fd5b611ed783611d5f565b946020939093013593505050565b600060208284031215611ef757600080fd5b6111d882611d7b565b600060208284031215611f1257600080fd5b81356111d8816122f8565b600060208284031215611f2f57600080fd5b81516111d8816122f8565b600060208284031215611f4c57600080fd5b813567ffffffffffffffff811115611f6357600080fd5b8201601f81018413611f7457600080fd5b6118db84823560208401611ce9565b600060208284031215611f9557600080fd5b5035919050565b60008151808452611fb481602086016020860161220a565b601f01601f19169290920160200192915050565b600084516020611fdb8285838a0161220a565b855191840191611fee8184848a0161220a565b8554920191600090600181811c908083168061200b57607f831692505b85831081141561202957634e487b7160e01b85526022600452602485fd5b80801561203d576001811461204e5761207b565b60ff1985168852838801955061207b565b60008b81526020902060005b858110156120735781548a82015290840190880161205a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120bf90830184611f9c565b9695505050505050565b6020815260006111d86020830184611f9c565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156121bb576121bb6122a0565b500190565b6000826121cf576121cf6122b6565b500490565b60008160001904831182151516156121ee576121ee6122a0565b500290565b600082821015612205576122056122a0565b500390565b60005b8381101561222557818101518382015260200161220d565b8381111561107b5750506000910152565b600181811c9082168061224a57607f821691505b6020821081141561226b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612285576122856122a0565b5060010190565b60008261229b5761229b6122b6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ba857600080fdfea26469706673582212207207931b3d3634ed9b0cf7db572713b06139aca8e4400549e796a1b56de7beea64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c4861707079204f74746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b48415050594f54544552530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d657371386d524b67505957483470796871647669394a664870357031506964575a4a6437344c696b6663584b2f00000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c8063715018a611610123578063c6682862116100ab578063d5abeb011161006f578063d5abeb01146105fe578063da3ef23f14610614578063dc33e68114610634578063e985e9c514610654578063f2fde38b1461069d57600080fd5b8063c668286214610569578063c87b56dd1461057e578063d0eb26b01461059e578063d223a631146105be578063d4fcb2ae146105de57600080fd5b80638da5cb5b116100f25780638da5cb5b146104e357806395d89b4114610501578063a0712d6814610516578063a22cb46514610529578063b88d4fde1461054957600080fd5b8063715018a6146104825780637c7c867f146104975780637f00c7a6146104ad5780638069876d146104cd57600080fd5b80632f745c59116101b157806355f804b31161017557806355f804b3146103f2578063586963d9146104125780635c975abb146104285780636352211e1461044257806370a082311461046257600080fd5b80632f745c591461036a5780633ccfd60b1461038a57806342842e0e1461039257806344a0d68a146103b25780634f6ccce7146103d257600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031f578063239c70ae1461033457806323b872dd1461034a57600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611f00565b6106bd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611ee5565b61072a565b005b34801561028d57600080fd5b50610296610770565b60405161025691906120c9565b3480156102af57600080fd5b506102c36102be366004611f83565b610802565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f6366004611ebb565b61088d565b34801561030757600080fd5b50610311600a5481565b604051908152602001610256565b34801561032b57600080fd5b50600054610311565b34801561034057600080fd5b50610311600c5481565b34801561035657600080fd5b5061027f610365366004611dd9565b6109a5565b34801561037657600080fd5b50610311610385366004611ebb565b6109b0565b61027f610b0d565b34801561039e57600080fd5b5061027f6103ad366004611dd9565b610bab565b3480156103be57600080fd5b5061027f6103cd366004611f83565b610bc6565b3480156103de57600080fd5b506103116103ed366004611f83565b610bf5565b3480156103fe57600080fd5b5061027f61040d366004611f3a565b610c57565b34801561041e57600080fd5b50610311600e5481565b34801561043457600080fd5b5060105461024a9060ff1681565b34801561044e57600080fd5b506102c361045d366004611f83565b610c98565b34801561046e57600080fd5b5061031161047d366004611d8b565b610caa565b34801561048e57600080fd5b5061027f610d3b565b3480156104a357600080fd5b50610311600d5481565b3480156104b957600080fd5b5061027f6104c8366004611f83565b610d71565b3480156104d957600080fd5b50610311600f5481565b3480156104ef57600080fd5b506007546001600160a01b03166102c3565b34801561050d57600080fd5b50610296610da0565b61027f610524366004611f83565b610daf565b34801561053557600080fd5b5061027f610544366004611e91565b610f83565b34801561055557600080fd5b5061027f610564366004611e15565b611048565b34801561057557600080fd5b50610296611081565b34801561058a57600080fd5b50610296610599366004611f83565b61110f565b3480156105aa57600080fd5b5061027f6105b9366004611f83565b6111df565b3480156105ca57600080fd5b5061027f6105d9366004611f83565b61120e565b3480156105ea57600080fd5b5061027f6105f9366004611f83565b61123d565b34801561060a57600080fd5b50610311600b5481565b34801561062057600080fd5b5061027f61062f366004611f3a565b611271565b34801561064057600080fd5b5061031161064f366004611d8b565b6112ae565b34801561066057600080fd5b5061024a61066f366004611da6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106a957600080fd5b5061027f6106b8366004611d8b565b6112b9565b60006001600160e01b031982166380ac58cd60e01b14806106ee57506001600160e01b03198216635b5e139f60e01b145b8061070957506001600160e01b0319821663780e9d6360e01b145b8061072457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461075d5760405162461bcd60e51b815260040161075490612120565b60405180910390fd5b6010805460ff1916911515919091179055565b60606001805461077f90612236565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90612236565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b600061080f826000541190565b6108715760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610754565b506000908152600560205260409020546001600160a01b031690565b600061089882610c98565b9050806001600160a01b0316836001600160a01b031614156109075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610754565b336001600160a01b03821614806109235750610923813361066f565b6109955760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610754565b6109a0838383611351565b505050565b6109a08383836113ad565b60006109bb83610caa565b8210610a145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610754565b600080549080805b83811015610aad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a6f57805192505b876001600160a01b0316836001600160a01b03161415610aa45786841415610a9d5750935061072492505050565b6001909301925b50600101610a1c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610754565b6007546001600160a01b03163314610b375760405162461bcd60e51b815260040161075490612120565b6000610b4b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b95576040519150601f19603f3d011682016040523d82523d6000602084013e610b9a565b606091505b5050905080610ba857600080fd5b50565b6109a083838360405180602001604052806000815250611048565b6007546001600160a01b03163314610bf05760405162461bcd60e51b815260040161075490612120565b600a55565b600080548210610c535760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610754565b5090565b6007546001600160a01b03163314610c815760405162461bcd60e51b815260040161075490612120565b8051610c94906008906020840190611c59565b5050565b6000610ca382611692565b5192915050565b60006001600160a01b038216610d165760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610754565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d655760405162461bcd60e51b815260040161075490612120565b610d6f6000611769565b565b6007546001600160a01b03163314610d9b5760405162461bcd60e51b815260040161075490612120565b600c55565b60606002805461077f90612236565b60105460ff1615610dfb5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610754565b600054600b54610e0b83836121a8565b1115610e525760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610754565b6007546001600160a01b03163314610f7957610e6e82826121a8565b600f5410610f0257600d54821115610e985760405162461bcd60e51b8152600401610754906120dc565b600e5482610ea5336112ae565b610eaf91906121a8565b1115610efd5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610754565b610f79565b600c54821115610f245760405162461bcd60e51b8152600401610754906120dc565b600a54610f3190836121d4565b341015610f795760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610754565b610c9433836117bb565b6001600160a01b038216331415610fdc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610754565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110538484846113ad565b61105f848484846117d5565b61107b5760405162461bcd60e51b815260040161075490612155565b50505050565b6009805461108e90612236565b80601f01602080910402602001604051908101604052809291908181526020018280546110ba90612236565b80156111075780601f106110dc57610100808354040283529160200191611107565b820191906000526020600020905b8154815290600101906020018083116110ea57829003601f168201915b505050505081565b606061111c826000541190565b6111805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610754565b600061118a6118e3565b905060008151116111aa57604051806020016040528060008152506111d8565b806111b4846118f2565b60096040516020016111c893929190611fc8565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112095760405162461bcd60e51b815260040161075490612120565b600e55565b6007546001600160a01b031633146112385760405162461bcd60e51b815260040161075490612120565b600f55565b6007546001600160a01b031633146112675760405162461bcd60e51b815260040161075490612120565b600d819055600e55565b6007546001600160a01b0316331461129b5760405162461bcd60e51b815260040161075490612120565b8051610c94906009906020840190611c59565b6000610724826119f0565b6007546001600160a01b031633146112e35760405162461bcd60e51b815260040161075490612120565b6001600160a01b0381166113485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610754565b610ba881611769565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113b882611692565b80519091506000906001600160a01b0316336001600160a01b031614806113ef5750336113e484610802565b6001600160a01b0316145b8061140157508151611401903361066f565b90508061146b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610754565b846001600160a01b031682600001516001600160a01b0316146114df5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610754565b6001600160a01b0384166115435760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610754565b6115536000848460000151611351565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611648576115fb816000541190565b15611648578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526116b1826000541190565b6117105760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610754565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561175f579392505050565b5060001901611712565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c94828260405180602001604052806000815250611a8e565b60006001600160a01b0384163b156118d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181990339089908890889060040161208c565b602060405180830381600087803b15801561183357600080fd5b505af1925050508015611863575060408051601f3d908101601f1916820190925261186091810190611f1d565b60015b6118bd573d808015611891576040519150601f19603f3d011682016040523d82523d6000602084013e611896565b606091505b5080516118b55760405162461bcd60e51b815260040161075490612155565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118db565b5060015b949350505050565b60606008805461077f90612236565b6060816119165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611940578061192a81612271565b91506119399050600a836121c0565b915061191a565b60008167ffffffffffffffff81111561195b5761195b6122e2565b6040519080825280601f01601f191660200182016040528015611985576020820181803683370190505b5090505b84156118db5761199a6001836121f3565b91506119a7600a8661228c565b6119b29060306121a8565b60f81b8183815181106119c7576119c76122cc565b60200101906001600160f81b031916908160001a9053506119e9600a866121c0565b9450611989565b60006001600160a01b038216611a625760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610754565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6109a083838360016000546001600160a01b038516611af95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610754565b83611b575760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610754565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c505760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c4457611c2860008884886117d5565b611c445760405162461bcd60e51b815260040161075490612155565b60019182019101611bd5565b5060005561168b565b828054611c6590612236565b90600052602060002090601f016020900481019282611c875760008555611ccd565b82601f10611ca057805160ff1916838001178555611ccd565b82800160010185558215611ccd579182015b82811115611ccd578251825591602001919060010190611cb2565b50610c539291505b80821115610c535760008155600101611cd5565b600067ffffffffffffffff80841115611d0457611d046122e2565b604051601f8501601f19908116603f01168101908282118183101715611d2c57611d2c6122e2565b81604052809350858152868686011115611d4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d7657600080fd5b919050565b80358015158114611d7657600080fd5b600060208284031215611d9d57600080fd5b6111d882611d5f565b60008060408385031215611db957600080fd5b611dc283611d5f565b9150611dd060208401611d5f565b90509250929050565b600080600060608486031215611dee57600080fd5b611df784611d5f565b9250611e0560208501611d5f565b9150604084013590509250925092565b60008060008060808587031215611e2b57600080fd5b611e3485611d5f565b9350611e4260208601611d5f565b925060408501359150606085013567ffffffffffffffff811115611e6557600080fd5b8501601f81018713611e7657600080fd5b611e8587823560208401611ce9565b91505092959194509250565b60008060408385031215611ea457600080fd5b611ead83611d5f565b9150611dd060208401611d7b565b60008060408385031215611ece57600080fd5b611ed783611d5f565b946020939093013593505050565b600060208284031215611ef757600080fd5b6111d882611d7b565b600060208284031215611f1257600080fd5b81356111d8816122f8565b600060208284031215611f2f57600080fd5b81516111d8816122f8565b600060208284031215611f4c57600080fd5b813567ffffffffffffffff811115611f6357600080fd5b8201601f81018413611f7457600080fd5b6118db84823560208401611ce9565b600060208284031215611f9557600080fd5b5035919050565b60008151808452611fb481602086016020860161220a565b601f01601f19169290920160200192915050565b600084516020611fdb8285838a0161220a565b855191840191611fee8184848a0161220a565b8554920191600090600181811c908083168061200b57607f831692505b85831081141561202957634e487b7160e01b85526022600452602485fd5b80801561203d576001811461204e5761207b565b60ff1985168852838801955061207b565b60008b81526020902060005b858110156120735781548a82015290840190880161205a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120bf90830184611f9c565b9695505050505050565b6020815260006111d86020830184611f9c565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156121bb576121bb6122a0565b500190565b6000826121cf576121cf6122b6565b500490565b60008160001904831182151516156121ee576121ee6122a0565b500290565b600082821015612205576122056122a0565b500390565b60005b8381101561222557818101518382015260200161220d565b8381111561107b5750506000910152565b600181811c9082168061224a57607f821691505b6020821081141561226b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612285576122856122a0565b5060010190565b60008261229b5761229b6122b6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ba857600080fdfea26469706673582212207207931b3d3634ed9b0cf7db572713b06139aca8e4400549e796a1b56de7beea64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c4861707079204f74746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b48415050594f54544552530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d657371386d524b67505957483470796871647669394a664870357031506964575a4a6437344c696b6663584b2f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Happy Otters
Arg [1] : _symbol (string): HAPPYOTTERS
Arg [2] : _initBaseURI (string): ipfs://Qmesq8mRKgPYWH4pyhqdvi9JfHp5p1PidWZJd74LikfcXK/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 4861707079204f74746572730000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 48415050594f5454455253000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d657371386d524b67505957483470796871647669394a66
Arg [9] : 4870357031506964575a4a6437344c696b6663584b2f00000000000000000000
Deployed Bytecode Sourcemap
39461:3164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23947:372;;;;;;;;;;-1:-1:-1;23947:372:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;23947:372:0;;;;;;;;42397:73;;;;;;;;;;-1:-1:-1;42397:73:0;;;;;:::i;:::-;;:::i;:::-;;25833:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27395:214::-;;;;;;;;;;-1:-1:-1;27395:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;27395:214:0;6304:203:1;26916:413:0;;;;;;;;;;-1:-1:-1;26916:413:0;;;;;:::i;:::-;;:::i;39600:34::-;;;;;;;;;;;;;;;;;;;17506:25:1;;;17494:2;17479:18;39600:34:0;17360:177:1;22204:100:0;;;;;;;;;;-1:-1:-1;22257:7:0;22284:12;22204:100;;39675:33;;;;;;;;;;;;;;;;28271:162;;;;;;;;;;-1:-1:-1;28271:162:0;;;;;:::i;:::-;;:::i;22868:1007::-;;;;;;;;;;-1:-1:-1;22868:1007:0;;;;;:::i;:::-;;:::i;42477:145::-;;;:::i;28504:177::-;;;;;;;;;;-1:-1:-1;28504:177:0;;;;;:::i;:::-;;:::i;41766:80::-;;;;;;;;;;-1:-1:-1;41766:80:0;;;;;:::i;:::-;;:::i;22381:187::-;;;;;;;;;;-1:-1:-1;22381:187:0;;;;;:::i;:::-;;:::i;42165:98::-;;;;;;;;;;-1:-1:-1;42165:98:0;;;;;:::i;:::-;;:::i;39754:41::-;;;;;;;;;;;;;;;;39842:25;;;;;;;;;;-1:-1:-1;39842:25:0;;;;;;;;25642:124;;;;;;;;;;-1:-1:-1;25642:124:0;;;;;:::i;:::-;;:::i;24383:221::-;;;;;;;;;;-1:-1:-1;24383:221:0;;;;;:::i;:::-;;:::i;38797:94::-;;;;;;;;;;;;;:::i;39713:36::-;;;;;;;;;;;;;;;;41852:116;;;;;;;;;;-1:-1:-1;41852:116:0;;;;;:::i;:::-;;:::i;39800:37::-;;;;;;;;;;;;;;;;38146:87;;;;;;;;;;-1:-1:-1;38219:6:0;;-1:-1:-1;;;;;38219:6:0;38146:87;;26002:104;;;;;;;;;;;;;:::i;40181:781::-;;;;;;:::i;:::-;;:::i;27681:288::-;;;;;;;;;;-1:-1:-1;27681:288:0;;;;;:::i;:::-;;:::i;28752:355::-;;;;;;;;;;-1:-1:-1;28752:355:0;;;;;:::i;:::-;;:::i;39558:37::-;;;;;;;;;;;;;:::i;41083:423::-;;;;;;;;;;-1:-1:-1;41083:423:0;;;;;:::i;:::-;;:::i;41532:108::-;;;;;;;;;;-1:-1:-1;41532:108:0;;;;;:::i;:::-;;:::i;41646:112::-;;;;;;;;;;-1:-1:-1;41646:112:0;;;;;:::i;:::-;;:::i;41974:185::-;;;;;;;;;;-1:-1:-1;41974:185:0;;;;;:::i;:::-;;:::i;39639:31::-;;;;;;;;;;;;;;;;42269:122;;;;;;;;;;-1:-1:-1;42269:122:0;;;;;:::i;:::-;;:::i;40970:107::-;;;;;;;;;;-1:-1:-1;40970:107:0;;;;;:::i;:::-;;:::i;28040:164::-;;;;;;;;;;-1:-1:-1;28040:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28161:25:0;;;28137:4;28161:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28040:164;39046:192;;;;;;;;;;-1:-1:-1;39046:192:0;;;;;:::i;:::-;;:::i;23947:372::-;24049:4;-1:-1:-1;;;;;;24086:40:0;;-1:-1:-1;;;24086:40:0;;:105;;-1:-1:-1;;;;;;;24143:48:0;;-1:-1:-1;;;24143:48:0;24086:105;:172;;;-1:-1:-1;;;;;;;24208:50:0;;-1:-1:-1;;;24208:50:0;24086:172;:225;;;-1:-1:-1;;;;;;;;;;7691:40:0;;;24275:36;24066:245;23947:372;-1:-1:-1;;23947:372:0:o;42397:73::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;;;;;;;;;42449:6:::1;:15:::0;;-1:-1:-1;;42449:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42397:73::o;25833:100::-;25887:13;25920:5;25913:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25833:100;:::o;27395:214::-;27463:7;27491:16;27499:7;29419:4;29453:12;-1:-1:-1;29443:22:0;29362:111;27491:16;27483:74;;;;-1:-1:-1;;;27483:74:0;;17148:2:1;27483:74:0;;;17130:21:1;17187:2;17167:18;;;17160:30;17226:34;17206:18;;;17199:62;-1:-1:-1;;;17277:18:1;;;17270:43;17330:19;;27483:74:0;16946:409:1;27483:74:0;-1:-1:-1;27577:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27577:24:0;;27395:214::o;26916:413::-;26989:13;27005:24;27021:7;27005:15;:24::i;:::-;26989:40;;27054:5;-1:-1:-1;;;;;27048:11:0;:2;-1:-1:-1;;;;;27048:11:0;;;27040:58;;;;-1:-1:-1;;;27040:58:0;;14683:2:1;27040:58:0;;;14665:21:1;14722:2;14702:18;;;14695:30;14761:34;14741:18;;;14734:62;-1:-1:-1;;;14812:18:1;;;14805:32;14854:19;;27040:58:0;14481:398:1;27040:58:0;20305:10;-1:-1:-1;;;;;27133:21:0;;;;:62;;-1:-1:-1;27158:37:0;27175:5;20305:10;28040:164;:::i;27158:37::-;27111:169;;;;-1:-1:-1;;;27111:169:0;;10429:2:1;27111:169:0;;;10411:21:1;10468:2;10448:18;;;10441:30;10507:34;10487:18;;;10480:62;10578:27;10558:18;;;10551:55;10623:19;;27111:169:0;10227:421:1;27111:169:0;27293:28;27302:2;27306:7;27315:5;27293:8;:28::i;:::-;26978:351;26916:413;;:::o;28271:162::-;28397:28;28407:4;28413:2;28417:7;28397:9;:28::i;22868:1007::-;22957:7;22993:16;23003:5;22993:9;:16::i;:::-;22985:5;:24;22977:71;;;;-1:-1:-1;;;22977:71:0;;7623:2:1;22977:71:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:32;7794:19;;22977:71:0;7421:398:1;22977:71:0;23059:22;22284:12;;;23059:22;;23322:466;23342:14;23338:1;:18;23322:466;;;23382:31;23416:14;;;:11;:14;;;;;;;;;23382:48;;;;;;;;;-1:-1:-1;;;;;23382:48:0;;;;;-1:-1:-1;;;23382:48:0;;;;;;;;;;;;23453:28;23449:111;;23526:14;;;-1:-1:-1;23449:111:0;23603:5;-1:-1:-1;;;;;23582:26:0;:17;-1:-1:-1;;;;;23582:26:0;;23578:195;;;23652:5;23637:11;:20;23633:85;;;-1:-1:-1;23693:1:0;-1:-1:-1;23686:8:0;;-1:-1:-1;;;23686:8:0;23633:85;23740:13;;;;;23578:195;-1:-1:-1;23358:3:0;;23322:466;;;-1:-1:-1;23811:56:0;;-1:-1:-1;;;23811:56:0;;16317:2:1;23811:56:0;;;16299:21:1;16356:2;16336:18;;;16329:30;16395:34;16375:18;;;16368:62;-1:-1:-1;;;16446:18:1;;;16439:44;16500:19;;23811:56:0;16115:410:1;42477:145:0;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;42530:7:::1;42551;38219:6:::0;;-1:-1:-1;;;;;38219:6:0;;38146:87;42551:7:::1;-1:-1:-1::0;;;;;42543:21:0::1;42572;42543:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42529:69;;;42613:2;42605:11;;;::::0;::::1;;42522:100;42477:145::o:0;28504:177::-;28634:39;28651:4;28657:2;28661:7;28634:39;;;;;;;;;;;;:16;:39::i;41766:80::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;41825:4:::1;:15:::0;41766:80::o;22381:187::-;22448:7;22284:12;;22476:5;:21;22468:69;;;;-1:-1:-1;;;22468:69:0;;9201:2:1;22468:69:0;;;9183:21:1;9240:2;9220:18;;;9213:30;9279:34;9259:18;;;9252:62;-1:-1:-1;;;9330:18:1;;;9323:33;9373:19;;22468:69:0;8999:399:1;22468:69:0;-1:-1:-1;22555:5:0;22381:187::o;42165:98::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;42236:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42165:98:::0;:::o;25642:124::-;25706:7;25733:20;25745:7;25733:11;:20::i;:::-;:25;;25642:124;-1:-1:-1;;25642:124:0:o;24383:221::-;24447:7;-1:-1:-1;;;;;24475:19:0;;24467:75;;;;-1:-1:-1;;;24467:75:0;;11611:2:1;24467:75:0;;;11593:21:1;11650:2;11630:18;;;11623:30;11689:34;11669:18;;;11662:62;-1:-1:-1;;;11740:18:1;;;11733:41;11791:19;;24467:75:0;11409:407:1;24467:75:0;-1:-1:-1;;;;;;24568:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24568:27:0;;24383:221::o;38797:94::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;38862:21:::1;38880:1;38862:9;:21::i;:::-;38797:94::o:0;41852:116::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;41929:13:::1;:33:::0;41852:116::o;26002:104::-;26058:13;26091:7;26084:14;;;;;:::i;40181:781::-;40247:6;;;;40246:7;40238:42;;;;-1:-1:-1;;;40238:42:0;;12791:2:1;40238:42:0;;;12773:21:1;12830:2;12810:18;;;12803:30;-1:-1:-1;;;12849:18:1;;;12842:52;12911:18;;40238:42:0;12589:346:1;40238:42:0;40287:14;22284:12;40356:9;;40332:20;40341:11;22284:12;40332:20;:::i;:::-;:33;;40324:68;;;;-1:-1:-1;;;40324:68:0;;10855:2:1;40324:68:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:52;10975:18;;40324:68:0;10653:346:1;40324:68:0;38219:6;;-1:-1:-1;;;;;38219:6:0;40405:10;:21;40401:509;;40462:20;40471:11;40462:6;:20;:::i;:::-;40443:15;;:39;40439:464;;40522:17;;40507:11;:32;;40499:81;;;;-1:-1:-1;;;40499:81:0;;;;;;;:::i;:::-;40645:22;;40630:11;40603:24;40616:10;40603:12;:24::i;:::-;:38;;;;:::i;:::-;:64;;40595:105;;;;-1:-1:-1;;;40595:105:0;;8844:2:1;40595:105:0;;;8826:21:1;8883:2;8863:18;;;8856:30;8922;8902:18;;;8895:58;8970:18;;40595:105:0;8642:352:1;40595:105:0;40439:464;;;40756:13;;40741:11;:28;;40733:77;;;;-1:-1:-1;;;40733:77:0;;;;;;;:::i;:::-;40860:4;;40846:18;;:11;:18;:::i;:::-;40833:9;:31;;40825:66;;;;-1:-1:-1;;;40825:66:0;;14332:2:1;40825:66:0;;;14314:21:1;14371:2;14351:18;;;14344:30;-1:-1:-1;;;14390:18:1;;;14383:52;14452:18;;40825:66:0;14130:346:1;40825:66:0;40916:34;40926:10;40938:11;40916:9;:34::i;27681:288::-;-1:-1:-1;;;;;27776:24:0;;20305:10;27776:24;;27768:63;;;;-1:-1:-1;;;27768:63:0;;13558:2:1;27768:63:0;;;13540:21:1;13597:2;13577:18;;;13570:30;13636:28;13616:18;;;13609:56;13682:18;;27768:63:0;13356:350:1;27768:63:0;20305:10;27844:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27844:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27844:53:0;;;;;;;;;;27913:48;;7145:41:1;;;27844:42:0;;20305:10;27913:48;;7118:18:1;27913:48:0;;;;;;;27681:288;;:::o;28752:355::-;28911:28;28921:4;28927:2;28931:7;28911:9;:28::i;:::-;28972:48;28995:4;29001:2;29005:7;29014:5;28972:22;:48::i;:::-;28950:149;;;;-1:-1:-1;;;28950:149:0;;;;;;;:::i;:::-;28752:355;;;;:::o;39558:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41083:423::-;41181:13;41222:16;41230:7;29419:4;29453:12;-1:-1:-1;29443:22:0;29362:111;41222:16;41206:97;;;;-1:-1:-1;;;41206:97:0;;13142:2:1;41206:97:0;;;13124:21:1;13181:2;13161:18;;;13154:30;13220:34;13200:18;;;13193:62;-1:-1:-1;;;13271:18:1;;;13264:45;13326:19;;41206:97:0;12940:411:1;41206:97:0;41312:28;41343:10;:8;:10::i;:::-;41312:41;;41398:1;41373:14;41367:28;:32;:133;;;;;;;;;;;;;;;;;41435:14;41451:18;:7;:16;:18::i;:::-;41471:13;41418:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41367:133;41360:140;41083:423;-1:-1:-1;;;41083:423:0:o;41532:108::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;41603:22:::1;:31:::0;41532:108::o;41646:112::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;41720:15:::1;:32:::0;41646:112::o;41974:185::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;42059:17:::1;:41:::0;;;42107:22:::1;:46:::0;41974:185::o;42269:122::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;42352:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;40970:107::-:0;41028:7;41051:20;41065:5;41051:13;:20::i;39046:192::-;38219:6;;-1:-1:-1;;;;;38219:6:0;20305:10;38366:23;38358:68;;;;-1:-1:-1;;;38358:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39135:22:0;::::1;39127:73;;;::::0;-1:-1:-1;;;39127:73:0;;8026:2:1;39127:73:0::1;::::0;::::1;8008:21:1::0;8065:2;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;-1:-1:-1;;;8155:18:1;;;8148:36;8201:19;;39127:73:0::1;7824:402:1::0;39127:73:0::1;39211:19;39221:8;39211:9;:19::i;34282:196::-:0;34397:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34397:29:0;-1:-1:-1;;;;;34397:29:0;;;;;;;;;34442:28;;34397:24;;34442:28;;;;;;;34282:196;;;:::o;32162:2002::-;32277:35;32315:20;32327:7;32315:11;:20::i;:::-;32390:18;;32277:58;;-1:-1:-1;32348:22:0;;-1:-1:-1;;;;;32374:34:0;20305:10;-1:-1:-1;;;;;32374:34:0;;:87;;;-1:-1:-1;20305:10:0;32425:20;32437:7;32425:11;:20::i;:::-;-1:-1:-1;;;;;32425:36:0;;32374:87;:154;;;-1:-1:-1;32495:18:0;;32478:50;;20305:10;28040:164;:::i;32478:50::-;32348:181;;32550:17;32542:80;;;;-1:-1:-1;;;32542:80:0;;13913:2:1;32542:80:0;;;13895:21:1;13952:2;13932:18;;;13925:30;13991:34;13971:18;;;13964:62;-1:-1:-1;;;14042:18:1;;;14035:48;14100:19;;32542:80:0;13711:414:1;32542:80:0;32665:4;-1:-1:-1;;;;;32643:26:0;:13;:18;;;-1:-1:-1;;;;;32643:26:0;;32635:77;;;;-1:-1:-1;;;32635:77:0;;12023:2:1;32635:77:0;;;12005:21:1;12062:2;12042:18;;;12035:30;12101:34;12081:18;;;12074:62;-1:-1:-1;;;12152:18:1;;;12145:36;12198:19;;32635:77:0;11821:402:1;32635:77:0;-1:-1:-1;;;;;32731:16:0;;32723:66;;;;-1:-1:-1;;;32723:66:0;;9605:2:1;32723:66:0;;;9587:21:1;9644:2;9624:18;;;9617:30;9683:34;9663:18;;;9656:62;-1:-1:-1;;;9734:18:1;;;9727:35;9779:19;;32723:66:0;9403:401:1;32723:66:0;32910:49;32927:1;32931:7;32940:13;:18;;;32910:8;:49::i;:::-;-1:-1:-1;;;;;33255:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;33255:31:0;;;-1:-1:-1;;;;;33255:31:0;;;-1:-1:-1;;33255:31:0;;;;;;;33301:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;33301:29:0;;;;;;;;;;;;;33347:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;33392:61:0;;;;-1:-1:-1;;;33437:15:0;33392:61;;;;;;33727:11;;;33757:24;;;;;:29;33727:11;;33757:29;33753:295;;33825:20;33833:11;29419:4;29453:12;-1:-1:-1;29443:22:0;29362:111;33825:20;33821:212;;;33902:18;;;33870:24;;;:11;:24;;;;;;;;:50;;33985:28;;;;33943:70;;-1:-1:-1;;;33943:70:0;-1:-1:-1;;;;;;33943:70:0;;;-1:-1:-1;;;;;33870:50:0;;;33943:70;;;;;;;33821:212;33230:829;34095:7;34091:2;-1:-1:-1;;;;;34076:27:0;34085:4;-1:-1:-1;;;;;34076:27:0;;;;;;;;;;;34114:42;32266:1898;;32162:2002;;;:::o;25043:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;25146:16:0;25154:7;29419:4;29453:12;-1:-1:-1;29443:22:0;29362:111;25146:16;25138:71;;;;-1:-1:-1;;;25138:71:0;;8433:2:1;25138:71:0;;;8415:21:1;8472:2;8452:18;;;8445:30;8511:34;8491:18;;;8484:62;-1:-1:-1;;;8562:18:1;;;8555:40;8612:19;;25138:71:0;8231:406:1;25138:71:0;25267:7;25247:245;25314:31;25348:17;;;:11;:17;;;;;;;;;25314:51;;;;;;;;;-1:-1:-1;;;;;25314:51:0;;;;;-1:-1:-1;;;25314:51:0;;;;;;;;;;;;25388:28;25384:93;;25448:9;25043:537;-1:-1:-1;;;25043:537:0:o;25384:93::-;-1:-1:-1;;;25287:6:0;25247:245;;39246:173;39321:6;;;-1:-1:-1;;;;;39338:17:0;;;-1:-1:-1;;;;;;39338:17:0;;;;;;;39371:40;;39321:6;;;39338:17;39321:6;;39371:40;;39302:16;;39371:40;39291:128;39246:173;:::o;29481:104::-;29550:27;29560:2;29564:8;29550:27;;;;;;;;;;;;:9;:27::i;35043:804::-;35198:4;-1:-1:-1;;;;;35219:13:0;;10905:20;10953:8;35215:625;;35255:72;;-1:-1:-1;;;35255:72:0;;-1:-1:-1;;;;;35255:36:0;;;;;:72;;20305:10;;35306:4;;35312:7;;35321:5;;35255:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35255:72:0;;;;;;;;-1:-1:-1;;35255:72:0;;;;;;;;;;;;:::i;:::-;;;35251:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35501:13:0;;35497:273;;35544:61;;-1:-1:-1;;;35544:61:0;;;;;;;:::i;35497:273::-;35720:6;35714:13;35705:6;35701:2;35697:15;35690:38;35251:534;-1:-1:-1;;;;;;35378:55:0;-1:-1:-1;;;35378:55:0;;-1:-1:-1;35371:62:0;;35215:625;-1:-1:-1;35824:4:0;35215:625;35043:804;;;;;;:::o;40060:102::-;40120:13;40149:7;40142:14;;;;;:::i;8057:723::-;8113:13;8334:10;8330:53;;-1:-1:-1;;8361:10:0;;;;;;;;;;;;-1:-1:-1;;;8361:10:0;;;;;8057:723::o;8330:53::-;8408:5;8393:12;8449:78;8456:9;;8449:78;;8482:8;;;;:::i;:::-;;-1:-1:-1;8505:10:0;;-1:-1:-1;8513:2:0;8505:10;;:::i;:::-;;;8449:78;;;8537:19;8569:6;8559:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8559:17:0;;8537:39;;8587:154;8594:10;;8587:154;;8621:11;8631:1;8621:11;;:::i;:::-;;-1:-1:-1;8690:10:0;8698:2;8690:5;:10;:::i;:::-;8677:24;;:2;:24;:::i;:::-;8664:39;;8647:6;8654;8647:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8647:56:0;;;;;;;;-1:-1:-1;8718:11:0;8727:2;8718:11;;:::i;:::-;;;8587:154;;24612:229;24673:7;-1:-1:-1;;;;;24701:19:0;;24693:81;;;;-1:-1:-1;;;24693:81:0;;10011:2:1;24693:81:0;;;9993:21:1;10050:2;10030:18;;;10023:30;10089:34;10069:18;;;10062:62;-1:-1:-1;;;10140:18:1;;;10133:47;10197:19;;24693:81:0;9809:413:1;24693:81:0;-1:-1:-1;;;;;;24800:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24800:32:0;;-1:-1:-1;;;;;24800:32:0;;24612:229::o;29948:163::-;30071:32;30077:2;30081:8;30091:5;30098:4;30509:20;30532:12;-1:-1:-1;;;;;30563:16:0;;30555:62;;;;-1:-1:-1;;;30555:62:0;;15506:2:1;30555:62:0;;;15488:21:1;15545:2;15525:18;;;15518:30;15584:34;15564:18;;;15557:62;-1:-1:-1;;;15635:18:1;;;15628:31;15676:19;;30555:62:0;15304:397:1;30555:62:0;30636:13;30628:66;;;;-1:-1:-1;;;30628:66:0;;15908:2:1;30628:66:0;;;15890:21:1;15947:2;15927:18;;;15920:30;15986:34;15966:18;;;15959:62;-1:-1:-1;;;16037:18:1;;;16030:38;16085:19;;30628:66:0;15706:404:1;30628:66:0;-1:-1:-1;;;;;31046:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31046:45:0;;-1:-1:-1;;;;;31046:45:0;;;;;;;;;;31106:50;;;;;;;;;;;;;;31173:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;31223:66:0;;;;-1:-1:-1;;;31273:15:0;31223:66;;;;;;;31173:25;;31358:415;31378:8;31374:1;:12;31358:415;;;31417:38;;31442:12;;-1:-1:-1;;;;;31417:38:0;;;31434:1;;31417:38;;31434:1;;31417:38;31478:4;31474:249;;;31541:59;31572:1;31576:2;31580:12;31594:5;31541:22;:59::i;:::-;31507:196;;;;-1:-1:-1;;;31507:196:0;;;;;;;:::i;:::-;31743:14;;;;;31388:3;31358:415;;;-1:-1:-1;31789:12:0;:27;31840:60;28752:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;17615:1;17608:14;;;17652:4;17639:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;11004:400::-;11206:2;11188:21;;;11245:2;11225:18;;;11218:30;11284:34;11279:2;11264:18;;11257:62;-1:-1:-1;;;11350:2:1;11335:18;;11328:34;11394:3;11379:19;;11004:400::o;12228:356::-;12430:2;12412:21;;;12449:18;;;12442:30;12508:34;12503:2;12488:18;;12481:62;12575:2;12560:18;;12228:356::o;14884:415::-;15086:2;15068:21;;;15125:2;15105:18;;;15098:30;15164:34;15159:2;15144:18;;15137:62;-1:-1:-1;;;15230:2:1;15215:18;;15208:49;15289:3;15274:19;;14884:415::o;17668:128::-;17708:3;17739:1;17735:6;17732:1;17729:13;17726:39;;;17745:18;;:::i;:::-;-1:-1:-1;17781:9:1;;17668:128::o;17801:120::-;17841:1;17867;17857:35;;17872:18;;:::i;:::-;-1:-1:-1;17906:9:1;;17801:120::o;17926:168::-;17966:7;18032:1;18028;18024:6;18020:14;18017:1;18014:21;18009:1;18002:9;17995:17;17991:45;17988:71;;;18039:18;;:::i;:::-;-1:-1:-1;18079:9:1;;17926:168::o;18099:125::-;18139:4;18167:1;18164;18161:8;18158:34;;;18172:18;;:::i;:::-;-1:-1:-1;18209:9:1;;18099:125::o;18229:258::-;18301:1;18311:113;18325:6;18322:1;18319:13;18311:113;;;18401:11;;;18395:18;18382:11;;;18375:39;18347:2;18340:10;18311:113;;;18442:6;18439:1;18436:13;18433:48;;;-1:-1:-1;;18477:1:1;18459:16;;18452:27;18229:258::o;18492:380::-;18571:1;18567:12;;;;18614;;;18635:61;;18689:4;18681:6;18677:17;18667:27;;18635:61;18742:2;18734:6;18731:14;18711:18;18708:38;18705:161;;;18788:10;18783:3;18779:20;18776:1;18769:31;18823:4;18820:1;18813:15;18851:4;18848:1;18841:15;18705:161;;18492:380;;;:::o;18877:135::-;18916:3;-1:-1:-1;;18937:17:1;;18934:43;;;18957:18;;:::i;:::-;-1:-1:-1;19004:1:1;18993:13;;18877:135::o;19017:112::-;19049:1;19075;19065:35;;19080:18;;:::i;:::-;-1:-1:-1;19114:9:1;;19017:112::o;19134:127::-;19195:10;19190:3;19186:20;19183:1;19176:31;19226:4;19223:1;19216:15;19250:4;19247:1;19240:15;19266:127;19327:10;19322:3;19318:20;19315:1;19308:31;19358:4;19355:1;19348:15;19382:4;19379:1;19372:15;19398:127;19459:10;19454:3;19450:20;19447:1;19440:31;19490:4;19487:1;19480:15;19514:4;19511:1;19504:15;19530:127;19591:10;19586:3;19582:20;19579:1;19572:31;19622:4;19619:1;19612:15;19646:4;19643:1;19636:15;19662:131;-1:-1:-1;;;;;;19736:32:1;;19726:43;;19716:71;;19783:1;19780;19773:12
Swarm Source
ipfs://7207931b3d3634ed9b0cf7db572713b06139aca8e4400549e796a1b56de7beea
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.