Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 99 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17310649 | 533 days ago | IN | 0 ETH | 0.00118719 | ||||
Set Approval For... | 15859580 | 737 days ago | IN | 0 ETH | 0.00045563 | ||||
Set Approval For... | 15418072 | 801 days ago | IN | 0 ETH | 0.00072593 | ||||
Set Approval For... | 15368859 | 809 days ago | IN | 0 ETH | 0.00047521 | ||||
Set Approval For... | 14596362 | 933 days ago | IN | 0 ETH | 0.00103361 | ||||
Set Approval For... | 14365353 | 969 days ago | IN | 0 ETH | 0.00094882 | ||||
Set Approval For... | 13989403 | 1028 days ago | IN | 0 ETH | 0.00679342 | ||||
Set Approval For... | 13916625 | 1039 days ago | IN | 0 ETH | 0.00326722 | ||||
Set Approval For... | 13803976 | 1056 days ago | IN | 0 ETH | 0.00299534 | ||||
Transfer From | 13606024 | 1088 days ago | IN | 0 ETH | 0.01324881 | ||||
Transfer From | 13407333 | 1119 days ago | IN | 0 ETH | 0.00993729 | ||||
Set Approval For... | 13380384 | 1123 days ago | IN | 0 ETH | 0.00619014 | ||||
Stop Burn | 13379849 | 1123 days ago | IN | 0 ETH | 0.00314744 | ||||
Burn | 13375255 | 1124 days ago | IN | 0 ETH | 0.00649812 | ||||
Burn | 13372819 | 1124 days ago | IN | 0 ETH | 0.01269845 | ||||
Burn | 13372817 | 1124 days ago | IN | 0 ETH | 0.01518594 | ||||
Burn | 13372807 | 1124 days ago | IN | 0 ETH | 0.01568081 | ||||
Burn | 13369749 | 1125 days ago | IN | 0 ETH | 0.00953587 | ||||
Burn | 13367855 | 1125 days ago | IN | 0 ETH | 0.01519859 | ||||
Burn | 13367691 | 1125 days ago | IN | 0 ETH | 0.01212343 | ||||
Burn | 13367413 | 1125 days ago | IN | 0 ETH | 0.01193266 | ||||
Burn | 13367361 | 1125 days ago | IN | 0 ETH | 0.0199416 | ||||
Start Burn | 13367347 | 1125 days ago | IN | 0 ETH | 0.00580429 | ||||
Stop Live | 13367314 | 1125 days ago | IN | 0 ETH | 0.00402228 | ||||
Withdraw | 13366290 | 1125 days ago | IN | 0 ETH | 0.00371787 |
Loading...
Loading
Contract Name:
MightyManateesMerchPass
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-30 */ // Sources flattened with hardhat v2.6.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => address) public proxies; } /* * @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; } } // File @openzeppelin/contracts/access/[email protected] /** * @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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] /** * @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/[email protected] /** * @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/[email protected] /** * @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/token/ERC721/extensions/[email protected] /** * @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/utils/[email protected] /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success,) = recipient.call{value : amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value : value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] /** * @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/introspection/[email protected] /** * @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/token/ERC721/[email protected] /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] /** * @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/token/ERC721/extensions/[email protected] /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } /** * @title Mighty Manatee contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract MightyManateesMerchPass is IERC721, Ownable, ERC721Enumerable { using SafeMath for uint256; uint256 public MerchPassPrice = 50000000000000000; // 0.05 ETH uint256 public MAX_PASSES = 1000; bool public isLive = false; bool public canBurn = false; uint public constant maxMerchPassPurchase = 20; string public baseURI = "https://api.mightymanateez.io/merchpasses/"; mapping(address => uint256[]) public userOwnedTokens; mapping(uint256 => uint256) public tokenIsAtIndex; IERC721 public manateezNFTAddress; constructor(IERC721 _manateezNFTAddress) ERC721("Mighty Manateez Merch Pass", "MMMP") { manateezNFTAddress = _manateezNFTAddress; } function goLive() external onlyOwner { isLive = true; } function stopLive() external onlyOwner { isLive = false; } function startBurn() external onlyOwner { canBurn = true; } function stopBurn() external onlyOwner { canBurn = false; } function changeNftPrice(uint256 price) public onlyOwner { MerchPassPrice = price; } function setBaseURI(string memory newBaseURI) external onlyOwner { baseURI = newBaseURI; } function mintMerchCards(uint numberOfTokens, uint manateeID) public payable { require(manateezNFTAddress.ownerOf(manateeID) == msg.sender, 'Mighty Manatee: Caller does not own tokenID in NFT collection'); require(isLive, "Can not mint Merch Card before the sale has started"); require(numberOfTokens <= maxMerchPassPurchase, "Can only mint 20 merch cards at a time"); require(balanceOf(msg.sender) <= 20, "You cannot buy more than 20 merch passes!"); require(totalSupply().add(numberOfTokens) <= MAX_PASSES, "Purchase would exceed max supply of Merch Cards"); require(MerchPassPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); for (uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_PASSES) { _safeMint(msg.sender, mintIndex); userOwnedTokens[msg.sender].push(mintIndex); } } } function _transfer(address from, address to, uint256 tokenId) internal virtual override { super._transfer(from, to, tokenId); userOwnedTokens[to].push(tokenId); for (uint i = 0; i <= userOwnedTokens[from].length; i++) { if (i == tokenId) { remove(from, tokenId); } } } function remove(address owner, uint index) internal returns (uint[] memory) { if (userOwnedTokens[owner].length >= index) { for (uint i = index; i < userOwnedTokens[owner].length - 1; i++) { userOwnedTokens[owner][i] = userOwnedTokens[owner][i + 1]; } userOwnedTokens[owner].pop(); } return userOwnedTokens[owner]; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, uint2str(_tokenId))); } function burn(uint256 howMany) external { require(canBurn, "Can not burn right now!"); require(howMany <= balanceOf(msg.sender), "You do not own that many merch passes!"); for (uint i = 0; i < howMany; i++) { uint256 tokenID = userOwnedTokens[msg.sender][i]; _burn(tokenID); remove(msg.sender, i); } } function withdraw() public onlyOwner { (bool success,) = owner().call{value : address(this).balance}(""); require(success, "MMMP: Withdraw unsuccessful"); } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - (_i / 10) * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC721","name":"_manateezNFTAddress","type":"address"}],"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":"MAX_PASSES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MerchPassPrice","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"howMany","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changeNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goLive","outputs":[],"stateMutability":"nonpayable","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":"isLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manateezNFTAddress","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMerchPassPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"manateeID","type":"uint256"}],"name":"mintMerchCards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopLive","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":"uint256","name":"","type":"uint256"}],"name":"tokenIsAtIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userOwnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66b1a2bc2ec50000600b556103e8600c55600d805461ffff1916905560e0604052602a60808181529062002d0360a03980516200004591600e916020909101906200018c565b503480156200005357600080fd5b5060405162002d2d38038062002d2d833981016040819052620000769162000232565b6040518060400160405280601a81526020017f4d6967687479204d616e617465657a204d6572636820506173730000000000008152506040518060400160405280600481526020016304d4d4d560e41b815250620000e3620000dd6200013860201b60201c565b6200013c565b8151620000f89060019060208501906200018c565b5080516200010e9060029060208401906200018c565b5050601180546001600160a01b0319166001600160a01b03939093169290921790915550620002a1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200019a9062000264565b90600052602060002090601f016020900481019282620001be576000855562000209565b82601f10620001d957805160ff191683800117855562000209565b8280016001018555821562000209579182015b8281111562000209578251825591602001919060010190620001ec565b50620002179291506200021b565b5090565b5b808211156200021757600081556001016200021c565b6000602082840312156200024557600080fd5b81516001600160a01b03811681146200025d57600080fd5b9392505050565b600181811c908216806200027957607f821691505b602082108114156200029b57634e487b7160e01b600052602260045260246000fd5b50919050565b612a5280620002b16000396000f3fe60806040526004361061021a5760003560e01c806368700a9511610123578063b88d4fde116100ab578063c87b56dd1161006f578063c87b56dd146105e9578063e960662b14610609578063e985e9c51461061e578063f2fde38b14610667578063f2ffb4fc1461068757600080fd5b8063b88d4fde14610543578063b8f7a66514610563578063c1eb18401461057d578063c2f833191461059c578063c5463127146105c957600080fd5b806380e736df116100f257806380e736df146104c857806389b02e46146104dd5780638da5cb5b146104f057806395d89b411461050e578063a22cb4651461052357600080fd5b806368700a95146104685780636c0360eb1461047e57806370a0823114610493578063715018a6146104b357600080fd5b80632f745c59116101a65780634f6ccce7116101755780634f6ccce7146103dd57806355f804b3146103fd5780635def2d7c1461041d5780636352211e14610433578063637486791461045357600080fd5b80632f745c59146103685780633ccfd60b1461038857806342842e0e1461039d57806342966c68146103bd57600080fd5b806309fc04b2116101ed57806309fc04b2146102d057806314b924e2146102f057806318160ddd1461031e57806323b872dd146103335780632c28f5791461035357600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046123ba565b61069c565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106c7565b60405161024b919061242f565b34801561028257600080fd5b50610296610291366004612442565b610759565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612470565b6107f3565b005b3480156102dc57600080fd5b50601154610296906001600160a01b031681565b3480156102fc57600080fd5b5061031061030b366004612470565b610909565b60405190815260200161024b565b34801561032a57600080fd5b50600954610310565b34801561033f57600080fd5b506102ce61034e36600461249c565b61093a565b34801561035f57600080fd5b506102ce61096b565b34801561037457600080fd5b50610310610383366004612470565b6109a4565b34801561039457600080fd5b506102ce610a3a565b3480156103a957600080fd5b506102ce6103b836600461249c565b610b0a565b3480156103c957600080fd5b506102ce6103d8366004612442565b610b25565b3480156103e957600080fd5b506103106103f8366004612442565b610c48565b34801561040957600080fd5b506102ce610418366004612569565b610cdb565b34801561042957600080fd5b50610310600c5481565b34801561043f57600080fd5b5061029661044e366004612442565b610d18565b34801561045f57600080fd5b506102ce610d8f565b34801561047457600080fd5b50610310600b5481565b34801561048a57600080fd5b50610269610dc6565b34801561049f57600080fd5b506103106104ae3660046125b2565b610e54565b3480156104bf57600080fd5b506102ce610edb565b3480156104d457600080fd5b50610310601481565b6102ce6104eb3660046125cf565b610f11565b3480156104fc57600080fd5b506000546001600160a01b0316610296565b34801561051a57600080fd5b50610269611285565b34801561052f57600080fd5b506102ce61053e3660046125f1565b611294565b34801561054f57600080fd5b506102ce61055e36600461262f565b611359565b34801561056f57600080fd5b50600d5461023f9060ff1681565b34801561058957600080fd5b50600d5461023f90610100900460ff1681565b3480156105a857600080fd5b506103106105b7366004612442565b60106020526000908152604090205481565b3480156105d557600080fd5b506102ce6105e4366004612442565b611391565b3480156105f557600080fd5b50610269610604366004612442565b6113c0565b34801561061557600080fd5b506102ce611471565b34801561062a57600080fd5b5061023f6106393660046126af565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067357600080fd5b506102ce6106823660046125b2565b6114ac565b34801561069357600080fd5b506102ce611544565b60006001600160e01b0319821663780e9d6360e01b14806106c157506106c18261157a565b92915050565b6060600180546106d6906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610702906126dd565b801561074f5780601f106107245761010080835404028352916020019161074f565b820191906000526020600020905b81548152906001019060200180831161073257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107fe82610d18565b9050806001600160a01b0316836001600160a01b0316141561086c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ce565b336001600160a01b038216148061088857506108888133610639565b6108fa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ce565b61090483836115ca565b505050565b600f602052816000526040600020818154811061092557600080fd5b90600052602060002001600091509150505481565b6109443382611638565b6109605760405162461bcd60e51b81526004016107ce90612718565b61090483838361172f565b6000546001600160a01b031633146109955760405162461bcd60e51b81526004016107ce90612769565b600d805460ff19166001179055565b60006109af83610e54565b8210610a115760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ce565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610a645760405162461bcd60e51b81526004016107ce90612769565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610ab1576040519150601f19603f3d011682016040523d82523d6000602084013e610ab6565b606091505b5050905080610b075760405162461bcd60e51b815260206004820152601b60248201527f4d4d4d503a20576974686472617720756e7375636365737366756c000000000060448201526064016107ce565b50565b61090483838360405180602001604052806000815250611359565b600d54610100900460ff16610b7c5760405162461bcd60e51b815260206004820152601760248201527f43616e206e6f74206275726e207269676874206e6f772100000000000000000060448201526064016107ce565b610b8533610e54565b811115610be35760405162461bcd60e51b815260206004820152602660248201527f596f7520646f206e6f74206f776e2074686174206d616e79206d65726368207060448201526561737365732160d01b60648201526084016107ce565b60005b81811015610c4457336000908152600f60205260408120805483908110610c0f57610c0f61279e565b90600052602060002001549050610c25816117ac565b610c2f3383611853565b50508080610c3c906127ca565b915050610be6565b5050565b6000610c5360095490565b8210610cb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ce565b60098281548110610cc957610cc961279e565b90600052602060002001549050919050565b6000546001600160a01b03163314610d055760405162461bcd60e51b81526004016107ce90612769565b8051610c4490600e90602084019061230b565b6000818152600360205260408120546001600160a01b0316806106c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ce565b6000546001600160a01b03163314610db95760405162461bcd60e51b81526004016107ce90612769565b600d805461ff0019169055565b600e8054610dd3906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff906126dd565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b505050505081565b60006001600160a01b038216610ebf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ce565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f055760405162461bcd60e51b81526004016107ce90612769565b610f0f60006119df565b565b6011546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610f5557600080fd5b505afa158015610f69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8d91906127e5565b6001600160a01b0316146110095760405162461bcd60e51b815260206004820152603d60248201527f4d6967687479204d616e617465653a2043616c6c657220646f6573206e6f742060448201527f6f776e20746f6b656e494420696e204e465420636f6c6c656374696f6e00000060648201526084016107ce565b600d5460ff166110775760405162461bcd60e51b815260206004820152603360248201527f43616e206e6f74206d696e74204d657263682043617264206265666f726520746044820152721a19481cd85b19481a185cc81cdd185c9d1959606a1b60648201526084016107ce565b60148211156110d75760405162461bcd60e51b815260206004820152602660248201527f43616e206f6e6c79206d696e74203230206d6572636820636172647320617420604482015265612074696d6560d01b60648201526084016107ce565b60146110e233610e54565b11156111425760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f7420627579206d6f7265207468616e203230206d65726360448201526868207061737365732160b81b60648201526084016107ce565b600c546111588361115260095490565b90611a2f565b11156111be5760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526e206f66204d6572636820436172647360881b60648201526084016107ce565b600b5434906111cd9084611a95565b111561121b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107ce565b60005b8281101561090457600061123160095490565b9050600c5461123f60095490565b10156112725761124f3382611b14565b336000908152600f60209081526040822080546001810182559083529120018190555b508061127d816127ca565b91505061121e565b6060600280546106d6906126dd565b6001600160a01b0382163314156112ed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ce565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113633383611638565b61137f5760405162461bcd60e51b81526004016107ce90612718565b61138b84848484611b2e565b50505050565b6000546001600160a01b031633146113bb5760405162461bcd60e51b81526004016107ce90612769565b600b55565b6000818152600360205260409020546060906001600160a01b031661143f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ce565b600e61144a83611b61565b60405160200161145b92919061281e565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461149b5760405162461bcd60e51b81526004016107ce90612769565b600d805461ff001916610100179055565b6000546001600160a01b031633146114d65760405162461bcd60e51b81526004016107ce90612769565b6001600160a01b03811661153b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ce565b610b07816119df565b6000546001600160a01b0316331461156e5760405162461bcd60e51b81526004016107ce90612769565b600d805460ff19169055565b60006001600160e01b031982166380ac58cd60e01b14806115ab57506001600160e01b03198216635b5e139f60e01b145b806106c157506301ffc9a760e01b6001600160e01b03198316146106c1565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115ff82610d18565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ce565b60006116bc83610d18565b9050806001600160a01b0316846001600160a01b031614806116f75750836001600160a01b03166116ec84610759565b6001600160a01b0316145b8061172757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b61173a838383611c8a565b6001600160a01b0382166000908152600f6020908152604082208054600181018255908352908220018290555b6001600160a01b0384166000908152600f6020526040902054811161138b578181141561179a576117988483611853565b505b806117a4816127ca565b915050611767565b60006117b782610d18565b90506117c581600084611e35565b6117d06000836115ca565b6001600160a01b03811660009081526004602052604081208054600192906117f99084906128c5565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166000908152600f6020526040902054606090821161197457815b6001600160a01b0384166000908152600f602052604090205461189c906001906128c5565b811015611935576001600160a01b0384166000908152600f602052604090206118c68260016128dc565b815481106118d6576118d661279e565b9060005260206000200154600f6000866001600160a01b03166001600160a01b0316815260200190815260200160002082815481106119175761191761279e565b6000918252602090912001558061192d816127ca565b915050611877565b506001600160a01b0383166000908152600f6020526040902080548061195d5761195d6128f4565b600190038181906000526020600020016000905590555b6001600160a01b0383166000908152600f6020908152604091829020805483518184028101840190945280845290918301828280156119d257602002820191906000526020600020905b8154815260200190600101908083116119be575b5050505050905092915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080611a3c83856128dc565b905083811015611a8e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107ce565b9392505050565b600082611aa4575060006106c1565b6000611ab0838561290a565b905082611abd8583612929565b14611a8e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107ce565b610c44828260405180602001604052806000815250611eed565b611b3984848461172f565b611b4584848484611f20565b61138b5760405162461bcd60e51b81526004016107ce9061294b565b606081611b855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611baf5780611b99816127ca565b9150611ba89050600a83612929565b9150611b89565b60008167ffffffffffffffff811115611bca57611bca6124dd565b6040519080825280601f01601f191660200182016040528015611bf4576020820181803683370190505b509050815b8515611c8157611c0a6001826128c5565b90506000611c19600a88612929565b611c2490600a61290a565b611c2e90886128c5565b611c3990603061299d565b905060008160f81b905080848481518110611c5657611c5661279e565b60200101906001600160f81b031916908160001a905350611c78600a89612929565b97505050611bf9565b50949350505050565b826001600160a01b0316611c9d82610d18565b6001600160a01b031614611d055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ce565b6001600160a01b038216611d675760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ce565b611d72838383611e35565b611d7d6000826115ca565b6001600160a01b0383166000908152600460205260408120805460019290611da69084906128c5565b90915550506001600160a01b0382166000908152600460205260408120805460019290611dd49084906128dc565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038316611e9057611e8b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611eb3565b816001600160a01b0316836001600160a01b031614611eb357611eb3838261202d565b6001600160a01b038216611eca57610904816120ca565b826001600160a01b0316826001600160a01b031614610904576109048282612179565b611ef783836121bd565b611f046000848484611f20565b6109045760405162461bcd60e51b81526004016107ce9061294b565b60006001600160a01b0384163b1561202257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f649033908990889088906004016129c2565b602060405180830381600087803b158015611f7e57600080fd5b505af1925050508015611fae575060408051601f3d908101601f19168201909252611fab918101906129ff565b60015b612008573d808015611fdc576040519150601f19603f3d011682016040523d82523d6000602084013e611fe1565b606091505b5080516120005760405162461bcd60e51b81526004016107ce9061294b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611727565b506001949350505050565b6000600161203a84610e54565b61204491906128c5565b600083815260086020526040902054909150808214612097576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120dc906001906128c5565b6000838152600a6020526040812054600980549394509092849081106121045761210461279e565b9060005260206000200154905080600983815481106121255761212561279e565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061215d5761215d6128f4565b6001900381819060005260206000200160009055905550505050565b600061218483610e54565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166122135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ce565b6000818152600360205260409020546001600160a01b0316156122785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ce565b61228460008383611e35565b6001600160a01b03821660009081526004602052604081208054600192906122ad9084906128dc565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612317906126dd565b90600052602060002090601f016020900481019282612339576000855561237f565b82601f1061235257805160ff191683800117855561237f565b8280016001018555821561237f579182015b8281111561237f578251825591602001919060010190612364565b5061238b92915061238f565b5090565b5b8082111561238b5760008155600101612390565b6001600160e01b031981168114610b0757600080fd5b6000602082840312156123cc57600080fd5b8135611a8e816123a4565b60005b838110156123f25781810151838201526020016123da565b8381111561138b5750506000910152565b6000815180845261241b8160208601602086016123d7565b601f01601f19169290920160200192915050565b602081526000611a8e6020830184612403565b60006020828403121561245457600080fd5b5035919050565b6001600160a01b0381168114610b0757600080fd5b6000806040838503121561248357600080fd5b823561248e8161245b565b946020939093013593505050565b6000806000606084860312156124b157600080fd5b83356124bc8161245b565b925060208401356124cc8161245b565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561250e5761250e6124dd565b604051601f8501601f19908116603f01168101908282118183101715612536576125366124dd565b8160405280935085815286868601111561254f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561257b57600080fd5b813567ffffffffffffffff81111561259257600080fd5b8201601f810184136125a357600080fd5b611727848235602084016124f3565b6000602082840312156125c457600080fd5b8135611a8e8161245b565b600080604083850312156125e257600080fd5b50508035926020909101359150565b6000806040838503121561260457600080fd5b823561260f8161245b565b91506020830135801515811461262457600080fd5b809150509250929050565b6000806000806080858703121561264557600080fd5b84356126508161245b565b935060208501356126608161245b565b925060408501359150606085013567ffffffffffffffff81111561268357600080fd5b8501601f8101871361269457600080fd5b6126a3878235602084016124f3565b91505092959194509250565b600080604083850312156126c257600080fd5b82356126cd8161245b565b915060208301356126248161245b565b600181811c908216806126f157607f821691505b6020821081141561271257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156127de576127de6127b4565b5060010190565b6000602082840312156127f757600080fd5b8151611a8e8161245b565b600081516128148185602086016123d7565b9290920192915050565b600080845481600182811c91508083168061283a57607f831692505b602080841082141561285a57634e487b7160e01b86526022600452602486fd5b81801561286e576001811461287f576128ac565b60ff198616895284890196506128ac565b60008b81526020902060005b868110156128a45781548b82015290850190830161288b565b505084890196505b5050505050506128bc8185612802565b95945050505050565b6000828210156128d7576128d76127b4565b500390565b600082198211156128ef576128ef6127b4565b500190565b634e487b7160e01b600052603160045260246000fd5b6000816000190483118215151615612924576129246127b4565b500290565b60008261294657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060ff821660ff84168060ff038211156129ba576129ba6127b4565b019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f590830184612403565b9695505050505050565b600060208284031215612a1157600080fd5b8151611a8e816123a456fea26469706673582212203174a0fd9c253ff0db32d3e492bc20bd872613aaa900b103fb592e5ce59e74b964736f6c6343000808003368747470733a2f2f6170692e6d69676874796d616e617465657a2e696f2f6d657263687061737365732f000000000000000000000000984ac9911c6839a6870a1040a5fb89dd66513bc5
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806368700a9511610123578063b88d4fde116100ab578063c87b56dd1161006f578063c87b56dd146105e9578063e960662b14610609578063e985e9c51461061e578063f2fde38b14610667578063f2ffb4fc1461068757600080fd5b8063b88d4fde14610543578063b8f7a66514610563578063c1eb18401461057d578063c2f833191461059c578063c5463127146105c957600080fd5b806380e736df116100f257806380e736df146104c857806389b02e46146104dd5780638da5cb5b146104f057806395d89b411461050e578063a22cb4651461052357600080fd5b806368700a95146104685780636c0360eb1461047e57806370a0823114610493578063715018a6146104b357600080fd5b80632f745c59116101a65780634f6ccce7116101755780634f6ccce7146103dd57806355f804b3146103fd5780635def2d7c1461041d5780636352211e14610433578063637486791461045357600080fd5b80632f745c59146103685780633ccfd60b1461038857806342842e0e1461039d57806342966c68146103bd57600080fd5b806309fc04b2116101ed57806309fc04b2146102d057806314b924e2146102f057806318160ddd1461031e57806323b872dd146103335780632c28f5791461035357600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046123ba565b61069c565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106c7565b60405161024b919061242f565b34801561028257600080fd5b50610296610291366004612442565b610759565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612470565b6107f3565b005b3480156102dc57600080fd5b50601154610296906001600160a01b031681565b3480156102fc57600080fd5b5061031061030b366004612470565b610909565b60405190815260200161024b565b34801561032a57600080fd5b50600954610310565b34801561033f57600080fd5b506102ce61034e36600461249c565b61093a565b34801561035f57600080fd5b506102ce61096b565b34801561037457600080fd5b50610310610383366004612470565b6109a4565b34801561039457600080fd5b506102ce610a3a565b3480156103a957600080fd5b506102ce6103b836600461249c565b610b0a565b3480156103c957600080fd5b506102ce6103d8366004612442565b610b25565b3480156103e957600080fd5b506103106103f8366004612442565b610c48565b34801561040957600080fd5b506102ce610418366004612569565b610cdb565b34801561042957600080fd5b50610310600c5481565b34801561043f57600080fd5b5061029661044e366004612442565b610d18565b34801561045f57600080fd5b506102ce610d8f565b34801561047457600080fd5b50610310600b5481565b34801561048a57600080fd5b50610269610dc6565b34801561049f57600080fd5b506103106104ae3660046125b2565b610e54565b3480156104bf57600080fd5b506102ce610edb565b3480156104d457600080fd5b50610310601481565b6102ce6104eb3660046125cf565b610f11565b3480156104fc57600080fd5b506000546001600160a01b0316610296565b34801561051a57600080fd5b50610269611285565b34801561052f57600080fd5b506102ce61053e3660046125f1565b611294565b34801561054f57600080fd5b506102ce61055e36600461262f565b611359565b34801561056f57600080fd5b50600d5461023f9060ff1681565b34801561058957600080fd5b50600d5461023f90610100900460ff1681565b3480156105a857600080fd5b506103106105b7366004612442565b60106020526000908152604090205481565b3480156105d557600080fd5b506102ce6105e4366004612442565b611391565b3480156105f557600080fd5b50610269610604366004612442565b6113c0565b34801561061557600080fd5b506102ce611471565b34801561062a57600080fd5b5061023f6106393660046126af565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067357600080fd5b506102ce6106823660046125b2565b6114ac565b34801561069357600080fd5b506102ce611544565b60006001600160e01b0319821663780e9d6360e01b14806106c157506106c18261157a565b92915050565b6060600180546106d6906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610702906126dd565b801561074f5780601f106107245761010080835404028352916020019161074f565b820191906000526020600020905b81548152906001019060200180831161073257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107fe82610d18565b9050806001600160a01b0316836001600160a01b0316141561086c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ce565b336001600160a01b038216148061088857506108888133610639565b6108fa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ce565b61090483836115ca565b505050565b600f602052816000526040600020818154811061092557600080fd5b90600052602060002001600091509150505481565b6109443382611638565b6109605760405162461bcd60e51b81526004016107ce90612718565b61090483838361172f565b6000546001600160a01b031633146109955760405162461bcd60e51b81526004016107ce90612769565b600d805460ff19166001179055565b60006109af83610e54565b8210610a115760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ce565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610a645760405162461bcd60e51b81526004016107ce90612769565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610ab1576040519150601f19603f3d011682016040523d82523d6000602084013e610ab6565b606091505b5050905080610b075760405162461bcd60e51b815260206004820152601b60248201527f4d4d4d503a20576974686472617720756e7375636365737366756c000000000060448201526064016107ce565b50565b61090483838360405180602001604052806000815250611359565b600d54610100900460ff16610b7c5760405162461bcd60e51b815260206004820152601760248201527f43616e206e6f74206275726e207269676874206e6f772100000000000000000060448201526064016107ce565b610b8533610e54565b811115610be35760405162461bcd60e51b815260206004820152602660248201527f596f7520646f206e6f74206f776e2074686174206d616e79206d65726368207060448201526561737365732160d01b60648201526084016107ce565b60005b81811015610c4457336000908152600f60205260408120805483908110610c0f57610c0f61279e565b90600052602060002001549050610c25816117ac565b610c2f3383611853565b50508080610c3c906127ca565b915050610be6565b5050565b6000610c5360095490565b8210610cb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ce565b60098281548110610cc957610cc961279e565b90600052602060002001549050919050565b6000546001600160a01b03163314610d055760405162461bcd60e51b81526004016107ce90612769565b8051610c4490600e90602084019061230b565b6000818152600360205260408120546001600160a01b0316806106c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ce565b6000546001600160a01b03163314610db95760405162461bcd60e51b81526004016107ce90612769565b600d805461ff0019169055565b600e8054610dd3906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff906126dd565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b505050505081565b60006001600160a01b038216610ebf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ce565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f055760405162461bcd60e51b81526004016107ce90612769565b610f0f60006119df565b565b6011546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610f5557600080fd5b505afa158015610f69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8d91906127e5565b6001600160a01b0316146110095760405162461bcd60e51b815260206004820152603d60248201527f4d6967687479204d616e617465653a2043616c6c657220646f6573206e6f742060448201527f6f776e20746f6b656e494420696e204e465420636f6c6c656374696f6e00000060648201526084016107ce565b600d5460ff166110775760405162461bcd60e51b815260206004820152603360248201527f43616e206e6f74206d696e74204d657263682043617264206265666f726520746044820152721a19481cd85b19481a185cc81cdd185c9d1959606a1b60648201526084016107ce565b60148211156110d75760405162461bcd60e51b815260206004820152602660248201527f43616e206f6e6c79206d696e74203230206d6572636820636172647320617420604482015265612074696d6560d01b60648201526084016107ce565b60146110e233610e54565b11156111425760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f7420627579206d6f7265207468616e203230206d65726360448201526868207061737365732160b81b60648201526084016107ce565b600c546111588361115260095490565b90611a2f565b11156111be5760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526e206f66204d6572636820436172647360881b60648201526084016107ce565b600b5434906111cd9084611a95565b111561121b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107ce565b60005b8281101561090457600061123160095490565b9050600c5461123f60095490565b10156112725761124f3382611b14565b336000908152600f60209081526040822080546001810182559083529120018190555b508061127d816127ca565b91505061121e565b6060600280546106d6906126dd565b6001600160a01b0382163314156112ed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ce565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113633383611638565b61137f5760405162461bcd60e51b81526004016107ce90612718565b61138b84848484611b2e565b50505050565b6000546001600160a01b031633146113bb5760405162461bcd60e51b81526004016107ce90612769565b600b55565b6000818152600360205260409020546060906001600160a01b031661143f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ce565b600e61144a83611b61565b60405160200161145b92919061281e565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461149b5760405162461bcd60e51b81526004016107ce90612769565b600d805461ff001916610100179055565b6000546001600160a01b031633146114d65760405162461bcd60e51b81526004016107ce90612769565b6001600160a01b03811661153b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ce565b610b07816119df565b6000546001600160a01b0316331461156e5760405162461bcd60e51b81526004016107ce90612769565b600d805460ff19169055565b60006001600160e01b031982166380ac58cd60e01b14806115ab57506001600160e01b03198216635b5e139f60e01b145b806106c157506301ffc9a760e01b6001600160e01b03198316146106c1565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115ff82610d18565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ce565b60006116bc83610d18565b9050806001600160a01b0316846001600160a01b031614806116f75750836001600160a01b03166116ec84610759565b6001600160a01b0316145b8061172757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b61173a838383611c8a565b6001600160a01b0382166000908152600f6020908152604082208054600181018255908352908220018290555b6001600160a01b0384166000908152600f6020526040902054811161138b578181141561179a576117988483611853565b505b806117a4816127ca565b915050611767565b60006117b782610d18565b90506117c581600084611e35565b6117d06000836115ca565b6001600160a01b03811660009081526004602052604081208054600192906117f99084906128c5565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166000908152600f6020526040902054606090821161197457815b6001600160a01b0384166000908152600f602052604090205461189c906001906128c5565b811015611935576001600160a01b0384166000908152600f602052604090206118c68260016128dc565b815481106118d6576118d661279e565b9060005260206000200154600f6000866001600160a01b03166001600160a01b0316815260200190815260200160002082815481106119175761191761279e565b6000918252602090912001558061192d816127ca565b915050611877565b506001600160a01b0383166000908152600f6020526040902080548061195d5761195d6128f4565b600190038181906000526020600020016000905590555b6001600160a01b0383166000908152600f6020908152604091829020805483518184028101840190945280845290918301828280156119d257602002820191906000526020600020905b8154815260200190600101908083116119be575b5050505050905092915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080611a3c83856128dc565b905083811015611a8e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107ce565b9392505050565b600082611aa4575060006106c1565b6000611ab0838561290a565b905082611abd8583612929565b14611a8e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107ce565b610c44828260405180602001604052806000815250611eed565b611b3984848461172f565b611b4584848484611f20565b61138b5760405162461bcd60e51b81526004016107ce9061294b565b606081611b855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611baf5780611b99816127ca565b9150611ba89050600a83612929565b9150611b89565b60008167ffffffffffffffff811115611bca57611bca6124dd565b6040519080825280601f01601f191660200182016040528015611bf4576020820181803683370190505b509050815b8515611c8157611c0a6001826128c5565b90506000611c19600a88612929565b611c2490600a61290a565b611c2e90886128c5565b611c3990603061299d565b905060008160f81b905080848481518110611c5657611c5661279e565b60200101906001600160f81b031916908160001a905350611c78600a89612929565b97505050611bf9565b50949350505050565b826001600160a01b0316611c9d82610d18565b6001600160a01b031614611d055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ce565b6001600160a01b038216611d675760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ce565b611d72838383611e35565b611d7d6000826115ca565b6001600160a01b0383166000908152600460205260408120805460019290611da69084906128c5565b90915550506001600160a01b0382166000908152600460205260408120805460019290611dd49084906128dc565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038316611e9057611e8b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611eb3565b816001600160a01b0316836001600160a01b031614611eb357611eb3838261202d565b6001600160a01b038216611eca57610904816120ca565b826001600160a01b0316826001600160a01b031614610904576109048282612179565b611ef783836121bd565b611f046000848484611f20565b6109045760405162461bcd60e51b81526004016107ce9061294b565b60006001600160a01b0384163b1561202257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f649033908990889088906004016129c2565b602060405180830381600087803b158015611f7e57600080fd5b505af1925050508015611fae575060408051601f3d908101601f19168201909252611fab918101906129ff565b60015b612008573d808015611fdc576040519150601f19603f3d011682016040523d82523d6000602084013e611fe1565b606091505b5080516120005760405162461bcd60e51b81526004016107ce9061294b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611727565b506001949350505050565b6000600161203a84610e54565b61204491906128c5565b600083815260086020526040902054909150808214612097576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120dc906001906128c5565b6000838152600a6020526040812054600980549394509092849081106121045761210461279e565b9060005260206000200154905080600983815481106121255761212561279e565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061215d5761215d6128f4565b6001900381819060005260206000200160009055905550505050565b600061218483610e54565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166122135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ce565b6000818152600360205260409020546001600160a01b0316156122785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ce565b61228460008383611e35565b6001600160a01b03821660009081526004602052604081208054600192906122ad9084906128dc565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612317906126dd565b90600052602060002090601f016020900481019282612339576000855561237f565b82601f1061235257805160ff191683800117855561237f565b8280016001018555821561237f579182015b8281111561237f578251825591602001919060010190612364565b5061238b92915061238f565b5090565b5b8082111561238b5760008155600101612390565b6001600160e01b031981168114610b0757600080fd5b6000602082840312156123cc57600080fd5b8135611a8e816123a4565b60005b838110156123f25781810151838201526020016123da565b8381111561138b5750506000910152565b6000815180845261241b8160208601602086016123d7565b601f01601f19169290920160200192915050565b602081526000611a8e6020830184612403565b60006020828403121561245457600080fd5b5035919050565b6001600160a01b0381168114610b0757600080fd5b6000806040838503121561248357600080fd5b823561248e8161245b565b946020939093013593505050565b6000806000606084860312156124b157600080fd5b83356124bc8161245b565b925060208401356124cc8161245b565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561250e5761250e6124dd565b604051601f8501601f19908116603f01168101908282118183101715612536576125366124dd565b8160405280935085815286868601111561254f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561257b57600080fd5b813567ffffffffffffffff81111561259257600080fd5b8201601f810184136125a357600080fd5b611727848235602084016124f3565b6000602082840312156125c457600080fd5b8135611a8e8161245b565b600080604083850312156125e257600080fd5b50508035926020909101359150565b6000806040838503121561260457600080fd5b823561260f8161245b565b91506020830135801515811461262457600080fd5b809150509250929050565b6000806000806080858703121561264557600080fd5b84356126508161245b565b935060208501356126608161245b565b925060408501359150606085013567ffffffffffffffff81111561268357600080fd5b8501601f8101871361269457600080fd5b6126a3878235602084016124f3565b91505092959194509250565b600080604083850312156126c257600080fd5b82356126cd8161245b565b915060208301356126248161245b565b600181811c908216806126f157607f821691505b6020821081141561271257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156127de576127de6127b4565b5060010190565b6000602082840312156127f757600080fd5b8151611a8e8161245b565b600081516128148185602086016123d7565b9290920192915050565b600080845481600182811c91508083168061283a57607f831692505b602080841082141561285a57634e487b7160e01b86526022600452602486fd5b81801561286e576001811461287f576128ac565b60ff198616895284890196506128ac565b60008b81526020902060005b868110156128a45781548b82015290850190830161288b565b505084890196505b5050505050506128bc8185612802565b95945050505050565b6000828210156128d7576128d76127b4565b500390565b600082198211156128ef576128ef6127b4565b500190565b634e487b7160e01b600052603160045260246000fd5b6000816000190483118215151615612924576129246127b4565b500290565b60008261294657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060ff821660ff84168060ff038211156129ba576129ba6127b4565b019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f590830184612403565b9695505050505050565b600060208284031215612a1157600080fd5b8151611a8e816123a456fea26469706673582212203174a0fd9c253ff0db32d3e492bc20bd872613aaa900b103fb592e5ce59e74b964736f6c63430008080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000984ac9911c6839a6870a1040a5fb89dd66513bc5
-----Decoded View---------------
Arg [0] : _manateezNFTAddress (address): 0x984AC9911C6839A6870a1040A5Fb89dd66513bC5
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000984ac9911c6839a6870a1040a5fb89dd66513bc5
Deployed Bytecode Sourcemap
54254:4476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44113:224;;;;;;;;;;-1:-1:-1;44113:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44113:224:0;;;;;;;;31052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32611:221::-;;;;;;;;;;-1:-1:-1;32611:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;32611:221:0;1550:203:1;32134:411:0;;;;;;;;;;-1:-1:-1;32134:411:0;;;;;:::i;:::-;;:::i;:::-;;54790:33;;;;;;;;;;-1:-1:-1;54790:33:0;;;;-1:-1:-1;;;;;54790:33:0;;;54673:52;;;;;;;;;;-1:-1:-1;54673:52:0;;;;;:::i;:::-;;:::i;:::-;;;2583:25:1;;;2571:2;2556:18;54673:52:0;2437:177:1;44753:113:0;;;;;;;;;;-1:-1:-1;44841:10:0;:17;44753:113;;33501:339;;;;;;;;;;-1:-1:-1;33501:339:0;;;;;:::i;:::-;;:::i;54985:69::-;;;;;;;;;;;;;:::i;44421:256::-;;;;;;;;;;-1:-1:-1;44421:256:0;;;;;:::i;:::-;;:::i;57951:179::-;;;;;;;;;;;;;:::i;33911:185::-;;;;;;;;;;-1:-1:-1;33911:185:0;;;;;:::i;:::-;;:::i;57560:383::-;;;;;;;;;;-1:-1:-1;57560:383:0;;;;;:::i;:::-;;:::i;44943:233::-;;;;;;;;;;-1:-1:-1;44943:233:0;;;;;:::i;:::-;;:::i;55409:104::-;;;;;;;;;;-1:-1:-1;55409:104:0;;;;;:::i;:::-;;:::i;54435:32::-;;;;;;;;;;;;;;;;30746:239;;;;;;;;;;-1:-1:-1;30746:239:0;;;;;:::i;:::-;;:::i;55223:73::-;;;;;;;;;;;;;:::i;54367:49::-;;;;;;;;;;;;;;;;54596:68;;;;;;;;;;;;;:::i;30476:208::-;;;;;;;;;;-1:-1:-1;30476:208:0;;;;;:::i;:::-;;:::i;10060:94::-;;;;;;;;;;;;;:::i;54543:46::-;;;;;;;;;;;;54587:2;54543:46;;55521:1001;;;;;;:::i;:::-;;:::i;9409:87::-;;;;;;;;;;-1:-1:-1;9455:7:0;9482:6;-1:-1:-1;;;;;9482:6:0;9409:87;;31221:104;;;;;;;;;;;;;:::i;32904:295::-;;;;;;;;;;-1:-1:-1;32904:295:0;;;;;:::i;:::-;;:::i;34167:328::-;;;;;;;;;;-1:-1:-1;34167:328:0;;;;;:::i;:::-;;:::i;54476:26::-;;;;;;;;;;-1:-1:-1;54476:26:0;;;;;;;;54509:27;;;;;;;;;;-1:-1:-1;54509:27:0;;;;;;;;;;;54732:49;;;;;;;;;;-1:-1:-1;54732:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;55304:97;;;;;;;;;;-1:-1:-1;55304:97:0;;;;;:::i;:::-;;:::i;57304:248::-;;;;;;;;;;-1:-1:-1;57304:248:0;;;;;:::i;:::-;;:::i;55142:73::-;;;;;;;;;;;;;:::i;33270:164::-;;;;;;;;;;-1:-1:-1;33270:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33391:25:0;;;33367:4;33391:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33270:164;10309:192;;;;;;;;;;-1:-1:-1;10309:192:0;;;;;:::i;:::-;;:::i;55062:72::-;;;;;;;;;;;;;:::i;44113:224::-;44215:4;-1:-1:-1;;;;;;44239:50:0;;-1:-1:-1;;;44239:50:0;;:90;;;44293:36;44317:11;44293:23;:36::i;:::-;44232:97;44113:224;-1:-1:-1;;44113:224:0:o;31052:100::-;31106:13;31139:5;31132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31052:100;:::o;32611:221::-;32687:7;36094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36094:16:0;32707:73;;;;-1:-1:-1;;;32707:73:0;;7011:2:1;32707:73:0;;;6993:21:1;7050:2;7030:18;;;7023:30;7089:34;7069:18;;;7062:62;-1:-1:-1;;;7140:18:1;;;7133:42;7192:19;;32707:73:0;;;;;;;;;-1:-1:-1;32800:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32800:24:0;;32611:221::o;32134:411::-;32215:13;32231:23;32246:7;32231:14;:23::i;:::-;32215:39;;32279:5;-1:-1:-1;;;;;32273:11:0;:2;-1:-1:-1;;;;;32273:11:0;;;32265:57;;;;-1:-1:-1;;;32265:57:0;;7424:2:1;32265:57:0;;;7406:21:1;7463:2;7443:18;;;7436:30;7502:34;7482:18;;;7475:62;-1:-1:-1;;;7553:18:1;;;7546:31;7594:19;;32265:57:0;7222:397:1;32265:57:0;8298:10;-1:-1:-1;;;;;32357:21:0;;;;:62;;-1:-1:-1;32382:37:0;32399:5;8298:10;33270:164;:::i;32382:37::-;32335:168;;;;-1:-1:-1;;;32335:168:0;;7826:2:1;32335:168:0;;;7808:21:1;7865:2;7845:18;;;7838:30;7904:34;7884:18;;;7877:62;7975:26;7955:18;;;7948:54;8019:19;;32335:168:0;7624:420:1;32335:168:0;32516:21;32525:2;32529:7;32516:8;:21::i;:::-;32204:341;32134:411;;:::o;54673:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33501:339::-;33696:41;8298:10;33729:7;33696:18;:41::i;:::-;33688:103;;;;-1:-1:-1;;;33688:103:0;;;;;;;:::i;:::-;33804:28;33814:4;33820:2;33824:7;33804:9;:28::i;54985:69::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;55033:6:::1;:13:::0;;-1:-1:-1;;55033:13:0::1;55042:4;55033:13;::::0;;54985:69::o;44421:256::-;44518:7;44554:23;44571:5;44554:16;:23::i;:::-;44546:5;:31;44538:87;;;;-1:-1:-1;;;44538:87:0;;9030:2:1;44538:87:0;;;9012:21:1;9069:2;9049:18;;;9042:30;9108:34;9088:18;;;9081:62;-1:-1:-1;;;9159:18:1;;;9152:41;9210:19;;44538:87:0;8828:407:1;44538:87:0;-1:-1:-1;;;;;;44643:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44421:256::o;57951:179::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;58000:12:::1;9482:6:::0;;58017:47:::1;::::0;-1:-1:-1;;;;;9482:6:0;;;;58038:21:::1;::::0;58000:12;58017:47;58000:12;58017:47;58038:21;9482:6;58017:47:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57999:65;;;58083:7;58075:47;;;::::0;-1:-1:-1;;;58075:47:0;;9652:2:1;58075:47:0::1;::::0;::::1;9634:21:1::0;9691:2;9671:18;;;9664:30;9730:29;9710:18;;;9703:57;9777:18;;58075:47:0::1;9450:351:1::0;58075:47:0::1;57988:142;57951:179::o:0;33911:185::-;34049:39;34066:4;34072:2;34076:7;34049:39;;;;;;;;;;;;:16;:39::i;57560:383::-;57619:7;;;;;;;57611:43;;;;-1:-1:-1;;;57611:43:0;;10008:2:1;57611:43:0;;;9990:21:1;10047:2;10027:18;;;10020:30;10086:25;10066:18;;;10059:53;10129:18;;57611:43:0;9806:347:1;57611:43:0;57684:21;57694:10;57684:9;:21::i;:::-;57673:7;:32;;57665:83;;;;-1:-1:-1;;;57665:83:0;;10360:2:1;57665:83:0;;;10342:21:1;10399:2;10379:18;;;10372:30;10438:34;10418:18;;;10411:62;-1:-1:-1;;;10489:18:1;;;10482:36;10535:19;;57665:83:0;10158:402:1;57665:83:0;57766:6;57761:175;57782:7;57778:1;:11;57761:175;;;57845:10;57811:15;57829:27;;;:15;:27;;;;;:30;;57857:1;;57829:30;;;;;;:::i;:::-;;;;;;;;;57811:48;;57874:14;57880:7;57874:5;:14::i;:::-;57903:21;57910:10;57922:1;57903:6;:21::i;:::-;;57796:140;57791:3;;;;;:::i;:::-;;;;57761:175;;;;57560:383;:::o;44943:233::-;45018:7;45054:30;44841:10;:17;;44753:113;45054:30;45046:5;:38;45038:95;;;;-1:-1:-1;;;45038:95:0;;11171:2:1;45038:95:0;;;11153:21:1;11210:2;11190:18;;;11183:30;11249:34;11229:18;;;11222:62;-1:-1:-1;;;11300:18:1;;;11293:42;11352:19;;45038:95:0;10969:408:1;45038:95:0;45151:10;45162:5;45151:17;;;;;;;;:::i;:::-;;;;;;;;;45144:24;;44943:233;;;:::o;55409:104::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;55485:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;30746:239::-:0;30818:7;30854:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30854:16:0;30889:19;30881:73;;;;-1:-1:-1;;;30881:73:0;;11584:2:1;30881:73:0;;;11566:21:1;11623:2;11603:18;;;11596:30;11662:34;11642:18;;;11635:62;-1:-1:-1;;;11713:18:1;;;11706:39;11762:19;;30881:73:0;11382:405:1;55223:73:0;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;55273:7:::1;:15:::0;;-1:-1:-1;;55273:15:0::1;::::0;;55223:73::o;54596:68::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30476:208::-;30548:7;-1:-1:-1;;;;;30576:19:0;;30568:74;;;;-1:-1:-1;;;30568:74:0;;11994:2:1;30568:74:0;;;11976:21:1;12033:2;12013:18;;;12006:30;12072:34;12052:18;;;12045:62;-1:-1:-1;;;12123:18:1;;;12116:40;12173:19;;30568:74:0;11792:406:1;30568:74:0;-1:-1:-1;;;;;;30660:16:0;;;;;:9;:16;;;;;;;30476:208::o;10060:94::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;10125:21:::1;10143:1;10125:9;:21::i;:::-;10060:94::o:0;55521:1001::-;55616:18;;:37;;-1:-1:-1;;;55616:37:0;;;;;2583:25:1;;;55657:10:0;;-1:-1:-1;;;;;55616:18:0;;:26;;2556:18:1;;55616:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55616:51:0;;55608:125;;;;-1:-1:-1;;;55608:125:0;;12661:2:1;55608:125:0;;;12643:21:1;12700:2;12680:18;;;12673:30;12739:34;12719:18;;;12712:62;12810:31;12790:18;;;12783:59;12859:19;;55608:125:0;12459:425:1;55608:125:0;55752:6;;;;55744:70;;;;-1:-1:-1;;;55744:70:0;;13091:2:1;55744:70:0;;;13073:21:1;13130:2;13110:18;;;13103:30;13169:34;13149:18;;;13142:62;-1:-1:-1;;;13220:18:1;;;13213:49;13279:19;;55744:70:0;12889:415:1;55744:70:0;54587:2;55833:14;:38;;55825:89;;;;-1:-1:-1;;;55825:89:0;;13511:2:1;55825:89:0;;;13493:21:1;13550:2;13530:18;;;13523:30;13589:34;13569:18;;;13562:62;-1:-1:-1;;;13640:18:1;;;13633:36;13686:19;;55825:89:0;13309:402:1;55825:89:0;55958:2;55933:21;55943:10;55933:9;:21::i;:::-;:27;;55925:81;;;;-1:-1:-1;;;55925:81:0;;13918:2:1;55925:81:0;;;13900:21:1;13957:2;13937:18;;;13930:30;13996:34;13976:18;;;13969:62;-1:-1:-1;;;14047:18:1;;;14040:39;14096:19;;55925:81:0;13716:405:1;55925:81:0;56062:10;;56025:33;56043:14;56025:13;44841:10;:17;;44753:113;56025:13;:17;;:33::i;:::-;:47;;56017:107;;;;-1:-1:-1;;;56017:107:0;;14328:2:1;56017:107:0;;;14310:21:1;14367:2;14347:18;;;14340:30;14406:34;14386:18;;;14379:62;-1:-1:-1;;;14457:18:1;;;14450:45;14512:19;;56017:107:0;14126:411:1;56017:107:0;56143:14;;56181:9;;56143:34;;56162:14;56143:18;:34::i;:::-;:47;;56135:91;;;;-1:-1:-1;;;56135:91:0;;14744:2:1;56135:91:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:33;14802:18;;;14795:61;14873:18;;56135:91:0;14542:355:1;56135:91:0;56246:6;56241:274;56262:14;56258:1;:18;56241:274;;;56298:14;56315:13;44841:10;:17;;44753:113;56315:13;56298:30;;56363:10;;56347:13;44841:10;:17;;44753:113;56347:13;:26;56343:161;;;56394:32;56404:10;56416:9;56394;:32::i;:::-;56461:10;56445:27;;;;:15;:27;;;;;;;:43;;;;;;;;;;;;;;;;56343:161;-1:-1:-1;56278:3:0;;;;:::i;:::-;;;;56241:274;;31221:104;31277:13;31310:7;31303:14;;;;;:::i;32904:295::-;-1:-1:-1;;;;;33007:24:0;;8298:10;33007:24;;32999:62;;;;-1:-1:-1;;;32999:62:0;;15104:2:1;32999:62:0;;;15086:21:1;15143:2;15123:18;;;15116:30;15182:27;15162:18;;;15155:55;15227:18;;32999:62:0;14902:349:1;32999:62:0;8298:10;33074:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33074:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33074:53:0;;;;;;;;;;33143:48;;540:41:1;;;33074:42:0;;8298:10;33143:48;;513:18:1;33143:48:0;;;;;;;32904:295;;:::o;34167:328::-;34342:41;8298:10;34375:7;34342:18;:41::i;:::-;34334:103;;;;-1:-1:-1;;;34334:103:0;;;;;;;:::i;:::-;34448:39;34462:4;34468:2;34472:7;34481:5;34448:13;:39::i;:::-;34167:328;;;;:::o;55304:97::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;55371:14:::1;:22:::0;55304:97::o;57304:248::-;36070:4;36094:16;;;:7;:16;;;;;;57370:13;;-1:-1:-1;;;;;36094:16:0;57396:77;;;;-1:-1:-1;;;57396:77:0;;15458:2:1;57396:77:0;;;15440:21:1;15497:2;15477:18;;;15470:30;15536:34;15516:18;;;15509:62;-1:-1:-1;;;15587:18:1;;;15580:45;15642:19;;57396:77:0;15256:411:1;57396:77:0;57515:7;57524:18;57533:8;57524;:18::i;:::-;57498:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57484:60;;57304:248;;;:::o;55142:73::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;55193:7:::1;:14:::0;;-1:-1:-1;;55193:14:0::1;;;::::0;;55142:73::o;10309:192::-;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10398:22:0;::::1;10390:73;;;::::0;-1:-1:-1;;;10390:73:0;;17369:2:1;10390:73:0::1;::::0;::::1;17351:21:1::0;17408:2;17388:18;;;17381:30;17447:34;17427:18;;;17420:62;-1:-1:-1;;;17498:18:1;;;17491:36;17544:19;;10390:73:0::1;17167:402:1::0;10390:73:0::1;10474:19;10484:8;10474:9;:19::i;55062:72::-:0;9455:7;9482:6;-1:-1:-1;;;;;9482:6:0;8298:10;9629:23;9621:68;;;;-1:-1:-1;;;9621:68:0;;;;;;;:::i;:::-;55112:6:::1;:14:::0;;-1:-1:-1;;55112:14:0::1;::::0;;55062:72::o;30119:293::-;30221:4;-1:-1:-1;;;;;;30254:40:0;;-1:-1:-1;;;30254:40:0;;:101;;-1:-1:-1;;;;;;;30307:48:0;;-1:-1:-1;;;30307:48:0;30254:101;:150;;;-1:-1:-1;;;;;;;;;;28753:40:0;;;30368:36;28644:157;39987:174;40062:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40062:29:0;-1:-1:-1;;;;;40062:29:0;;;;;;;;:24;;40116:23;40062:24;40116:14;:23::i;:::-;-1:-1:-1;;;;;40107:46:0;;;;;;;;;;;39987:174;;:::o;36299:348::-;36392:4;36094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36094:16:0;36409:73;;;;-1:-1:-1;;;36409:73:0;;17776:2:1;36409:73:0;;;17758:21:1;17815:2;17795:18;;;17788:30;17854:34;17834:18;;;17827:62;-1:-1:-1;;;17905:18:1;;;17898:42;17957:19;;36409:73:0;17574:408:1;36409:73:0;36493:13;36509:23;36524:7;36509:14;:23::i;:::-;36493:39;;36562:5;-1:-1:-1;;;;;36551:16:0;:7;-1:-1:-1;;;;;36551:16:0;;:51;;;;36595:7;-1:-1:-1;;;;;36571:31:0;:20;36583:7;36571:11;:20::i;:::-;-1:-1:-1;;;;;36571:31:0;;36551:51;:87;;;-1:-1:-1;;;;;;33391:25:0;;;33367:4;33391:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36606:32;36543:96;36299:348;-1:-1:-1;;;;36299:348:0:o;56530:354::-;56629:34;56645:4;56651:2;56655:7;56629:15;:34::i;:::-;-1:-1:-1;;;;;56674:19:0;;;;;;:15;:19;;;;;;;:33;;;;;;;;;;;;;;;;;56720:157;-1:-1:-1;;;;;56742:21:0;;;;;;:15;:21;;;;;:28;56737:33;;56720:157;;56801:7;56796:1;:12;56792:74;;;56829:21;56836:4;56842:7;56829:6;:21::i;:::-;;56792:74;56772:3;;;;:::i;:::-;;;;56720:157;;38594:360;38654:13;38670:23;38685:7;38670:14;:23::i;:::-;38654:39;;38706:48;38727:5;38742:1;38746:7;38706:20;:48::i;:::-;38795:29;38812:1;38816:7;38795:8;:29::i;:::-;-1:-1:-1;;;;;38837:16:0;;;;;;:9;:16;;;;;:21;;38857:1;;38837:16;:21;;38857:1;;38837:21;:::i;:::-;;;;-1:-1:-1;;38876:16:0;;;;:7;:16;;;;;;38869:23;;-1:-1:-1;;;;;;38869:23:0;;;38910:36;38884:7;;38876:16;-1:-1:-1;;;;;38910:36:0;;;;;38876:16;;38910:36;38643:311;38594:360;:::o;56892:404::-;-1:-1:-1;;;;;56983:22:0;;;;;;:15;:22;;;;;:29;56953:13;;56983:38;-1:-1:-1;56979:270:0;;57052:5;57038:157;-1:-1:-1;;;;;57063:22:0;;;;;;:15;:22;;;;;:29;:33;;57095:1;;57063:33;:::i;:::-;57059:1;:37;57038:157;;;-1:-1:-1;;;;;57150:22:0;;;;;;:15;:22;;;;;57173:5;:1;57177;57173:5;:::i;:::-;57150:29;;;;;;;;:::i;:::-;;;;;;;;;57122:15;:22;57138:5;-1:-1:-1;;;;;57122:22:0;-1:-1:-1;;;;;57122:22:0;;;;;;;;;;;;57145:1;57122:25;;;;;;;;:::i;:::-;;;;;;;;;;:57;57098:3;;;;:::i;:::-;;;;57038:157;;;-1:-1:-1;;;;;;57209:22:0;;;;;;:15;:22;;;;;:28;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56979:270;-1:-1:-1;;;;;57266:22:0;;;;;;:15;:22;;;;;;;;;57259:29;;;;;;;;;;;;;;;;;57266:22;;57259:29;;57266:22;57259:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56892:404;;;;:::o;10509:173::-;10565:16;10584:6;;-1:-1:-1;;;;;10601:17:0;;;-1:-1:-1;;;;;;10601:17:0;;;;;;10634:40;;10584:6;;;;;;;10634:40;;10565:16;10634:40;10554:128;10509:173;:::o;2890:179::-;2948:7;;2980:5;2984:1;2980;:5;:::i;:::-;2968:17;;3009:1;3004;:6;;2996:46;;;;-1:-1:-1;;;2996:46:0;;18584:2:1;2996:46:0;;;18566:21:1;18623:2;18603:18;;;18596:30;18662:29;18642:18;;;18635:57;18709:18;;2996:46:0;18382:351:1;2996:46:0;3060:1;2890:179;-1:-1:-1;;;2890:179:0:o;3769:220::-;3827:7;3851:6;3847:20;;-1:-1:-1;3866:1:0;3859:8;;3847:20;3878:9;3890:5;3894:1;3890;:5;:::i;:::-;3878:17;-1:-1:-1;3923:1:0;3914:5;3918:1;3878:17;3914:5;:::i;:::-;:10;3906:56;;;;-1:-1:-1;;;3906:56:0;;19335:2:1;3906:56:0;;;19317:21:1;19374:2;19354:18;;;19347:30;19413:34;19393:18;;;19386:62;-1:-1:-1;;;19464:18:1;;;19457:31;19505:19;;3906:56:0;19133:397:1;36989:110:0;37065:26;37075:2;37079:7;37065:26;;;;;;;;;;;;:9;:26::i;35377:315::-;35534:28;35544:4;35550:2;35554:7;35534:9;:28::i;:::-;35581:48;35604:4;35610:2;35614:7;35623:5;35581:22;:48::i;:::-;35573:111;;;;-1:-1:-1;;;35573:111:0;;;;;;;:::i;58138:589::-;58191:27;58235:7;58231:50;;-1:-1:-1;;58259:10:0;;;;;;;;;;;;-1:-1:-1;;;58259:10:0;;;;;58138:589::o;58231:50::-;58303:2;58291:9;58338:69;58345:6;;58338:69;;58368:5;;;;:::i;:::-;;-1:-1:-1;58388:7:0;;-1:-1:-1;58393:2:0;58388:7;;:::i;:::-;;;58338:69;;;58417:17;58447:3;58437:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58437:14:0;-1:-1:-1;58417:34:0;-1:-1:-1;58474:3:0;58488:202;58495:7;;58488:202;;58523:5;58527:1;58523;:5;:::i;:::-;58519:9;-1:-1:-1;58543:10:0;58574:7;58579:2;58574;:7;:::i;:::-;58573:14;;58585:2;58573:14;:::i;:::-;58568:19;;:2;:19;:::i;:::-;58557:31;;:2;:31;:::i;:::-;58543:46;;58604:9;58623:4;58616:12;;58604:24;;58653:2;58643:4;58648:1;58643:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;58643:12:0;;;;;;;;-1:-1:-1;58670:8:0;58676:2;58670:8;;:::i;:::-;;;58504:186;;58488:202;;;-1:-1:-1;58714:4:0;58138:589;-1:-1:-1;;;;58138:589:0:o;39291:578::-;39450:4;-1:-1:-1;;;;;39423:31:0;:23;39438:7;39423:14;:23::i;:::-;-1:-1:-1;;;;;39423:31:0;;39415:85;;;;-1:-1:-1;;;39415:85:0;;20365:2:1;39415:85:0;;;20347:21:1;20404:2;20384:18;;;20377:30;20443:34;20423:18;;;20416:62;-1:-1:-1;;;20494:18:1;;;20487:39;20543:19;;39415:85:0;20163:405:1;39415:85:0;-1:-1:-1;;;;;39519:16:0;;39511:65;;;;-1:-1:-1;;;39511:65:0;;20775:2:1;39511:65:0;;;20757:21:1;20814:2;20794:18;;;20787:30;20853:34;20833:18;;;20826:62;-1:-1:-1;;;20904:18:1;;;20897:34;20948:19;;39511:65:0;20573:400:1;39511:65:0;39589:39;39610:4;39616:2;39620:7;39589:20;:39::i;:::-;39693:29;39710:1;39714:7;39693:8;:29::i;:::-;-1:-1:-1;;;;;39735:15:0;;;;;;:9;:15;;;;;:20;;39754:1;;39735:15;:20;;39754:1;;39735:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39766:13:0;;;;;;:9;:13;;;;;:18;;39783:1;;39766:13;:18;;39783:1;;39766:18;:::i;:::-;;;;-1:-1:-1;;39795:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39795:21:0;-1:-1:-1;;;;;39795:21:0;;;;;;;;;39834:27;;39795:16;;39834:27;;;;;;;39291:578;;;:::o;45789:589::-;-1:-1:-1;;;;;45995:18:0;;45991:187;;46030:40;46062:7;47205:10;:17;;47178:24;;;;:15;:24;;;;;:44;;;47233:24;;;;;;;;;;;;47101:164;46030:40;45991:187;;;46100:2;-1:-1:-1;;;;;46092:10:0;:4;-1:-1:-1;;;;;46092:10:0;;46088:90;;46119:47;46152:4;46158:7;46119:32;:47::i;:::-;-1:-1:-1;;;;;46192:16:0;;46188:183;;46225:45;46262:7;46225:36;:45::i;46188:183::-;46298:4;-1:-1:-1;;;;;46292:10:0;:2;-1:-1:-1;;;;;46292:10:0;;46288:83;;46319:40;46347:2;46351:7;46319:27;:40::i;37326:321::-;37456:18;37462:2;37466:7;37456:5;:18::i;:::-;37507:54;37538:1;37542:2;37546:7;37555:5;37507:22;:54::i;:::-;37485:154;;;;-1:-1:-1;;;37485:154:0;;;;;;;:::i;40726:803::-;40881:4;-1:-1:-1;;;;;40902:13:0;;19024:20;19072:8;40898:624;;40938:72;;-1:-1:-1;;;40938:72:0;;-1:-1:-1;;;;;40938:36:0;;;;;:72;;8298:10;;40989:4;;40995:7;;41004:5;;40938:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40938:72:0;;;;;;;;-1:-1:-1;;40938:72:0;;;;;;;;;;;;:::i;:::-;;;40934:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41184:13:0;;41180:272;;41227:60;;-1:-1:-1;;;41227:60:0;;;;;;;:::i;41180:272::-;41402:6;41396:13;41387:6;41383:2;41379:15;41372:38;40934:533;-1:-1:-1;;;;;;41061:55:0;-1:-1:-1;;;41061:55:0;;-1:-1:-1;41054:62:0;;40898:624;-1:-1:-1;41506:4:0;40726:803;;;;;;:::o;47892:1014::-;48158:22;48208:1;48183:22;48200:4;48183:16;:22::i;:::-;:26;;;;:::i;:::-;48220:18;48241:26;;;:17;:26;;;;;;48158:51;;-1:-1:-1;48374:28:0;;;48370:354;;-1:-1:-1;;;;;48441:18:0;;48419:19;48441:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48492:30;;;;;;:44;;;48622:30;;:17;:30;;;;;:43;;;48370:354;-1:-1:-1;48820:26:0;;;;:17;:26;;;;;;;;48813:33;;;-1:-1:-1;;;;;48864:18:0;;;;;:12;:18;;;;;:34;;;;;;;48857:41;47892:1014::o;49201:1097::-;49479:10;:17;49454:22;;49479:21;;49499:1;;49479:21;:::i;:::-;49511:18;49532:24;;;:15;:24;;;;;;49905:10;:26;;49454:46;;-1:-1:-1;49532:24:0;;49454:46;;49905:26;;;;;;:::i;:::-;;;;;;;;;49883:48;;49969:11;49944:10;49955;49944:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50058:28;;;:15;:28;;;;;;;:41;;;50239:24;;;;;50232:31;50274:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49272:1026;;;49201:1097;:::o;46679:221::-;46764:14;46781:20;46798:2;46781:16;:20::i;:::-;-1:-1:-1;;;;;46812:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46857:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46679:221:0:o;37983:382::-;-1:-1:-1;;;;;38063:16:0;;38055:61;;;;-1:-1:-1;;;38055:61:0;;21939:2:1;38055:61:0;;;21921:21:1;;;21958:18;;;21951:30;22017:34;21997:18;;;21990:62;22069:18;;38055:61:0;21737:356:1;38055:61:0;36070:4;36094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36094:16:0;:30;38127:58;;;;-1:-1:-1;;;38127:58:0;;22300:2:1;38127:58:0;;;22282:21:1;22339:2;22319:18;;;22312:30;22378;22358:18;;;22351:58;22426:18;;38127:58:0;22098:352:1;38127:58:0;38198:45;38227:1;38231:2;38235:7;38198:20;:45::i;:::-;-1:-1:-1;;;;;38256:13:0;;;;;;:9;:13;;;;;:18;;38273:1;;38256:13;:18;;38273:1;;38256:18;:::i;:::-;;;;-1:-1:-1;;38285:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38285:21:0;-1:-1:-1;;;;;38285:21:0;;;;;;;;38324:33;;38285:16;;;38324:33;;38285:16;;38324:33;37983:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2619:456::-;2696:6;2704;2712;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2820:9;2807:23;2839:31;2864:5;2839:31;:::i;:::-;2889:5;-1:-1:-1;2946:2:1;2931:18;;2918:32;2959:33;2918:32;2959:33;:::i;:::-;2619:456;;3011:7;;-1:-1:-1;;;3065:2:1;3050:18;;;;3037:32;;2619:456::o;3080:127::-;3141:10;3136:3;3132:20;3129:1;3122:31;3172:4;3169:1;3162:15;3196:4;3193:1;3186:15;3212:632;3277:5;3307:18;3348:2;3340:6;3337:14;3334:40;;;3354:18;;:::i;:::-;3429:2;3423:9;3397:2;3483:15;;-1:-1:-1;;3479:24:1;;;3505:2;3475:33;3471:42;3459:55;;;3529:18;;;3549:22;;;3526:46;3523:72;;;3575:18;;:::i;:::-;3615:10;3611:2;3604:22;3644:6;3635:15;;3674:6;3666;3659:22;3714:3;3705:6;3700:3;3696:16;3693:25;3690:45;;;3731:1;3728;3721:12;3690:45;3781:6;3776:3;3769:4;3761:6;3757:17;3744:44;3836:1;3829:4;3820:6;3812;3808:19;3804:30;3797:41;;;;3212:632;;;;;:::o;3849:451::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;4027:9;4014:23;4060:18;4052:6;4049:30;4046:50;;;4092:1;4089;4082:12;4046:50;4115:22;;4168:4;4160:13;;4156:27;-1:-1:-1;4146:55:1;;4197:1;4194;4187:12;4146:55;4220:74;4286:7;4281:2;4268:16;4263:2;4259;4255:11;4220:74;:::i;4305:247::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;4557:248::-;4625:6;4633;4686:2;4674:9;4665:7;4661:23;4657:32;4654:52;;;4702:1;4699;4692:12;4654:52;-1:-1:-1;;4725:23:1;;;4795:2;4780:18;;;4767:32;;-1:-1:-1;4557:248:1:o;4810:416::-;4875:6;4883;4936:2;4924:9;4915:7;4911:23;4907:32;4904:52;;;4952:1;4949;4942:12;4904:52;4991:9;4978:23;5010:31;5035:5;5010:31;:::i;:::-;5060:5;-1:-1:-1;5117:2:1;5102:18;;5089:32;5159:15;;5152:23;5140:36;;5130:64;;5190:1;5187;5180:12;5130:64;5213:7;5203:17;;;4810:416;;;;;:::o;5231:795::-;5326:6;5334;5342;5350;5403:3;5391:9;5382:7;5378:23;5374:33;5371:53;;;5420:1;5417;5410:12;5371:53;5459:9;5446:23;5478:31;5503:5;5478:31;:::i;:::-;5528:5;-1:-1:-1;5585:2:1;5570:18;;5557:32;5598:33;5557:32;5598:33;:::i;:::-;5650:7;-1:-1:-1;5704:2:1;5689:18;;5676:32;;-1:-1:-1;5759:2:1;5744:18;;5731:32;5786:18;5775:30;;5772:50;;;5818:1;5815;5808:12;5772:50;5841:22;;5894:4;5886:13;;5882:27;-1:-1:-1;5872:55:1;;5923:1;5920;5913:12;5872:55;5946:74;6012:7;6007:2;5994:16;5989:2;5985;5981:11;5946:74;:::i;:::-;5936:84;;;5231:795;;;;;;;:::o;6031:388::-;6099:6;6107;6160:2;6148:9;6139:7;6135:23;6131:32;6128:52;;;6176:1;6173;6166:12;6128:52;6215:9;6202:23;6234:31;6259:5;6234:31;:::i;:::-;6284:5;-1:-1:-1;6341:2:1;6326:18;;6313:32;6354:33;6313:32;6354:33;:::i;6424:380::-;6503:1;6499:12;;;;6546;;;6567:61;;6621:4;6613:6;6609:17;6599:27;;6567:61;6674:2;6666:6;6663:14;6643:18;6640:38;6637:161;;;6720:10;6715:3;6711:20;6708:1;6701:31;6755:4;6752:1;6745:15;6783:4;6780:1;6773:15;6637:161;;6424:380;;;:::o;8049:413::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:34;8324:2;8309:18;;8302:62;-1:-1:-1;;;8395:2:1;8380:18;;8373:47;8452:3;8437:19;;8049:413::o;8467:356::-;8669:2;8651:21;;;8688:18;;;8681:30;8747:34;8742:2;8727:18;;8720:62;8814:2;8799:18;;8467:356::o;10565:127::-;10626:10;10621:3;10617:20;10614:1;10607:31;10657:4;10654:1;10647:15;10681:4;10678:1;10671:15;10697:127;10758:10;10753:3;10749:20;10746:1;10739:31;10789:4;10786:1;10779:15;10813:4;10810:1;10803:15;10829:135;10868:3;-1:-1:-1;;10889:17:1;;10886:43;;;10909:18;;:::i;:::-;-1:-1:-1;10956:1:1;10945:13;;10829:135::o;12203:251::-;12273:6;12326:2;12314:9;12305:7;12301:23;12297:32;12294:52;;;12342:1;12339;12332:12;12294:52;12374:9;12368:16;12393:31;12418:5;12393:31;:::i;15798:185::-;15840:3;15878:5;15872:12;15893:52;15938:6;15933:3;15926:4;15919:5;15915:16;15893:52;:::i;:::-;15961:16;;;;;15798:185;-1:-1:-1;;15798:185:1:o;15988:1174::-;16164:3;16193:1;16226:6;16220:13;16256:3;16278:1;16306:9;16302:2;16298:18;16288:28;;16366:2;16355:9;16351:18;16388;16378:61;;16432:4;16424:6;16420:17;16410:27;;16378:61;16458:2;16506;16498:6;16495:14;16475:18;16472:38;16469:165;;;-1:-1:-1;;;16533:33:1;;16589:4;16586:1;16579:15;16619:4;16540:3;16607:17;16469:165;16650:18;16677:104;;;;16795:1;16790:320;;;;16643:467;;16677:104;-1:-1:-1;;16710:24:1;;16698:37;;16755:16;;;;-1:-1:-1;16677:104:1;;16790:320;15745:1;15738:14;;;15782:4;15769:18;;16885:1;16899:165;16913:6;16910:1;16907:13;16899:165;;;16991:14;;16978:11;;;16971:35;17034:16;;;;16928:10;;16899:165;;;16903:3;;17093:6;17088:3;17084:16;17077:23;;16643:467;;;;;;;17126:30;17152:3;17144:6;17126:30;:::i;:::-;17119:37;15988:1174;-1:-1:-1;;;;;15988:1174:1:o;17987:125::-;18027:4;18055:1;18052;18049:8;18046:34;;;18060:18;;:::i;:::-;-1:-1:-1;18097:9:1;;17987:125::o;18117:128::-;18157:3;18188:1;18184:6;18181:1;18178:13;18175:39;;;18194:18;;:::i;:::-;-1:-1:-1;18230:9:1;;18117:128::o;18250:127::-;18311:10;18306:3;18302:20;18299:1;18292:31;18342:4;18339:1;18332:15;18366:4;18363:1;18356:15;18738:168;18778:7;18844:1;18840;18836:6;18832:14;18829:1;18826:21;18821:1;18814:9;18807:17;18803:45;18800:71;;;18851:18;;:::i;:::-;-1:-1:-1;18891:9:1;;18738:168::o;18911:217::-;18951:1;18977;18967:132;;19021:10;19016:3;19012:20;19009:1;19002:31;19056:4;19053:1;19046:15;19084:4;19081:1;19074:15;18967:132;-1:-1:-1;19113:9:1;;18911:217::o;19535:414::-;19737:2;19719:21;;;19776:2;19756:18;;;19749:30;19815:34;19810:2;19795:18;;19788:62;-1:-1:-1;;;19881:2:1;19866:18;;19859:48;19939:3;19924:19;;19535:414::o;19954:204::-;19992:3;20028:4;20025:1;20021:12;20060:4;20057:1;20053:12;20095:3;20089:4;20085:14;20080:3;20077:23;20074:49;;;20103:18;;:::i;:::-;20139:13;;19954:204;-1:-1:-1;;;19954:204:1:o;20978:500::-;-1:-1:-1;;;;;21247:15:1;;;21229:34;;21299:15;;21294:2;21279:18;;21272:43;21346:2;21331:18;;21324:34;;;21394:3;21389:2;21374:18;;21367:31;;;21172:4;;21415:57;;21452:19;;21444:6;21415:57;:::i;:::-;21407:65;20978:500;-1:-1:-1;;;;;;20978:500:1:o;21483:249::-;21552:6;21605:2;21593:9;21584:7;21580:23;21576:32;21573:52;;;21621:1;21618;21611:12;21573:52;21653:9;21647:16;21672:30;21696:5;21672:30;:::i
Swarm Source
ipfs://3174a0fd9c253ff0db32d3e492bc20bd872613aaa900b103fb592e5ce59e74b9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $560.11 | 0.05 | $28.01 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.