ERC-1155
Overview
Max Total Supply
704 HMxPBOT
Holders
238
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HMxPBOT
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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: IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: IERC1155Receiver.sol pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: IERC1155.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ 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; } // File: IERC1155MetadataURI.sol pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: ERC1155.sol pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `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 memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - 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[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721.sol pragma solidity ^0.8.10; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } 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; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } 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); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } 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); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } 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); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } 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); } 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"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } 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)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } 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" ); } 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); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } 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); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } 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.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; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } } // File: ERC721Enumerable.sol pragma solidity ^0.8.10; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enum: global ioob"); return index; } } pragma solidity ^0.8.9; abstract contract PIZZABOT { function ownerOf(uint256 tokenId) public virtual view returns (address); function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256); function balanceOf(address owner) public virtual view returns (uint256); function tokensOfOwner(address owner) public virtual view returns (uint256[] memory); } contract HMxPBOT is ERC1155, Ownable { using Strings for string; mapping(uint => mapping (uint256 => bool)) public claimTrackerByEdition; mapping(uint => bool) public claimStatusByEdition; PIZZABOT private pizzabot; string public _baseURI; string public _contractURI; string name_; string symbol_; constructor( address PizzaBotContractAddress, string memory _name, string memory _symbol ) ERC1155(_baseURI) { name_ = _name; symbol_ = _symbol; pizzabot = PIZZABOT(PizzaBotContractAddress); } function claim(uint256[] calldata PizzaIds, uint edition) external { require(claimStatusByEdition[edition] == true,"Claim Window For This Edition Is Not live"); require(PizzaIds.length > 0,"You must claim at least 1 token"); for(uint256 x = 0; x < PizzaIds.length; x++) { require(pizzabot.ownerOf(PizzaIds[x]) == msg.sender,"You do not own these Pizzas"); require(claimTrackerByEdition[edition][PizzaIds[x]] == false,"An inputted token was already claimed"); claimTrackerByEdition[edition][PizzaIds[x]] = true; } _mint(msg.sender, edition, PizzaIds.length, ""); } //metadata function setBaseURI(string memory newuri) public onlyOwner { _baseURI = newuri; } function setContractURI(string memory newuri) public onlyOwner { _contractURI = newuri; } function uri(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(_baseURI, uint2str(tokenId))); } function contractURI() public view returns (string memory) { return _contractURI; } 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); } function setEditionLive(uint edition) public onlyOwner { claimStatusByEdition[edition] = true; } //check claim by token function checkClaimedByEdition(uint256 tokenId, uint edition) public view returns (bool) { return claimTrackerByEdition[edition][tokenId]; } function name() public view returns (string memory) { return name_; } function symbol() public view returns (string memory) { return symbol_; } //withdraw any funds function withdrawToOwner() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"PizzaBotContractAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"edition","type":"uint256"}],"name":"checkClaimedByEdition","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"PizzaIds","type":"uint256[]"},{"internalType":"uint256","name":"edition","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimStatusByEdition","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimTrackerByEdition","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"edition","type":"uint256"}],"name":"setEditionLive","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620024f4380380620024f4833981016040819052620000349162000317565b600780546200004390620003a1565b80601f01602080910402602001604051908101604052809291908181526020018280546200007190620003a1565b8015620000c25780601f106200009657610100808354040283529160200191620000c2565b820191906000526020600020905b815481529060010190602001808311620000a457829003601f168201915b5050505050620000d8816200013960201b60201c565b50620000e43362000152565b8151620000f9906009906020850190620001a4565b5080516200010f90600a906020840190620001a4565b5050600680546001600160a01b0319166001600160a01b03939093169290921790915550620003dd565b80516200014e906002906020840190620001a4565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b290620003a1565b90600052602060002090601f016020900481019282620001d6576000855562000221565b82601f10620001f157805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022157825182559160200191906001019062000204565b506200022f92915062000233565b5090565b5b808211156200022f576000815560010162000234565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200027257600080fd5b81516001600160401b03808211156200028f576200028f6200024a565b604051601f8301601f19908116603f01168101908282118183101715620002ba57620002ba6200024a565b81604052838152602092508683858801011115620002d757600080fd5b600091505b83821015620002fb5785820183015181830184015290820190620002dc565b838211156200030d5760008385830101525b9695505050505050565b6000806000606084860312156200032d57600080fd5b83516001600160a01b03811681146200034557600080fd5b60208501519093506001600160401b03808211156200036357600080fd5b620003718783880162000260565b935060408601519150808211156200038857600080fd5b50620003978682870162000260565b9150509250925092565b600181811c90821680620003b657607f821691505b602082108103620003d757634e487b7160e01b600052602260045260246000fd5b50919050565b61210780620003ed6000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c8063743976a0116100c3578063a22cb4651161007c578063a22cb46514610307578063c0e727401461031a578063e8a3d48514610322578063e985e9c51461032a578063f242432a14610366578063f2fde38b1461037957600080fd5b8063743976a0146102895780637cfef2a7146102915780638ba07f01146102be5780638da5cb5b146102d1578063938e3d7b146102ec57806395d89b41146102ff57600080fd5b80632eb2c2d6116101155780632eb2c2d6146102055780633cb40e16146102185780634e1273f41461022057806355f804b31461024057806357a46fdf14610253578063715018a61461028157600080fd5b8062fdd58e1461015c5780630144bc3a1461018257806301ffc9a71461019757806303f55d6e146101ba57806306fdde03146101dd5780630e89341c146101f2575b600080fd5b61016f61016a36600461165a565b61038c565b6040519081526020015b60405180910390f35b610195610190366004611686565b610423565b005b6101aa6101a5366004611717565b6106f0565b6040519015158152602001610179565b6101aa6101c836600461173b565b60056020526000908152604090205460ff1681565b6101e5610742565b60405161017991906117b0565b6101e561020036600461173b565b6107d4565b610195610213366004611919565b610808565b61019561089f565b61023361022e3660046119c7565b6108f8565b6040516101799190611acf565b61019561024e366004611ae2565b610a22565b6101aa610261366004611b33565b600460209081526000928352604080842090915290825290205460ff1681565b610195610a63565b6101e5610a99565b6101aa61029f366004611b33565b6000908152600460209081526040808320938352929052205460ff1690565b6101956102cc36600461173b565b610b27565b6003546040516001600160a01b039091168152602001610179565b6101956102fa366004611ae2565b610b6c565b6101e5610ba9565b610195610315366004611b55565b610bb8565b6101e5610c8e565b6101e5610c9b565b6101aa610338366004611b93565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610195610374366004611bc1565b610caa565b610195610387366004611c2a565b610d31565b60006001600160a01b0383166103fd5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60008181526005602052604090205460ff1615156001146104985760405162461bcd60e51b815260206004820152602960248201527f436c61696d2057696e646f7720466f7220546869732045646974696f6e204973604482015268204e6f74206c69766560b81b60648201526084016103f4565b816104e55760405162461bcd60e51b815260206004820152601f60248201527f596f75206d75737420636c61696d206174206c65617374203120746f6b656e0060448201526064016103f4565b60005b828110156106cc5760065433906001600160a01b0316636352211e86868581811061051557610515611c47565b905060200201356040518263ffffffff1660e01b815260040161053a91815260200190565b602060405180830381865afa158015610557573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057b9190611c5d565b6001600160a01b0316146105d15760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f206e6f74206f776e2074686573652050697a7a6173000000000060448201526064016103f4565b6000828152600460205260408120908585848181106105f2576105f2611c47565b602090810292909201358352508101919091526040016000205460ff161561066a5760405162461bcd60e51b815260206004820152602560248201527f416e20696e70757474656420746f6b656e2077617320616c726561647920636c604482015264185a5b595960da1b60648201526084016103f4565b600082815260046020526040812060019186868581811061068d5761068d611c47565b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106c490611c90565b9150506104e8565b506106eb33828585905060405180602001604052806000815250610dc9565b505050565b60006001600160e01b03198216636cdb3d1360e11b148061072157506001600160e01b031982166303a24d0760e21b145b8061073c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606009805461075190611ca9565b80601f016020809104026020016040519081016040528092919081815260200182805461077d90611ca9565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b5050505050905090565b606060076107e183610ed3565b6040516020016107f2929190611cff565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061082457506108248533610338565b61088b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103f4565b6108988585858585610fff565b5050505050565b6003546001600160a01b031633146108c95760405162461bcd60e51b81526004016103f490611da5565b60405133904780156108fc02916000818181858888f193505050501580156108f5573d6000803e3d6000fd5b50565b6060815183511461095d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103f4565b6000835167ffffffffffffffff811115610979576109796117c3565b6040519080825280602002602001820160405280156109a2578160200160208202803683370190505b50905060005b8451811015610a1a576109ed8582815181106109c6576109c6611c47565b60200260200101518583815181106109e0576109e0611c47565b602002602001015161038c565b8282815181106109ff576109ff611c47565b6020908102919091010152610a1381611c90565b90506109a8565b509392505050565b6003546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016103f490611da5565b8051610a5f9060079060208401906115ac565b5050565b6003546001600160a01b03163314610a8d5760405162461bcd60e51b81526004016103f490611da5565b610a9760006111dc565b565b60078054610aa690611ca9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290611ca9565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b6003546001600160a01b03163314610b515760405162461bcd60e51b81526004016103f490611da5565b6000908152600560205260409020805460ff19166001179055565b6003546001600160a01b03163314610b965760405162461bcd60e51b81526004016103f490611da5565b8051610a5f9060089060208401906115ac565b6060600a805461075190611ca9565b6001600160a01b0382163303610c225760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103f4565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60088054610aa690611ca9565b60606008805461075190611ca9565b6001600160a01b038516331480610cc65750610cc68533610338565b610d245760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016103f4565b610898858585858561122e565b6003546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016103f490611da5565b6001600160a01b038116610dc05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b6108f5816111dc565b6001600160a01b038416610e295760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103f4565b33610e4381600087610e3a8861134b565b6108988861134b565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e73908490611dda565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461089881600087878787611396565b606081600003610efa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f245780610f0e81611c90565b9150610f1d9050600a83611df2565b9150610efe565b60008167ffffffffffffffff811115610f3f57610f3f6117c3565b6040519080825280601f01601f191660200182016040528015610f69576020820181803683370190505b509050815b8515610ff657610f7f600182611e14565b90506000610f8e600a88611df2565b610f9990600a611e2b565b610fa39088611e14565b610fae906030611e4a565b905060008160f81b905080848481518110610fcb57610fcb611c47565b60200101906001600160f81b031916908160001a905350610fed600a89611df2565b97505050610f6e565b50949350505050565b81518351146110615760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103f4565b6001600160a01b0384166110875760405162461bcd60e51b81526004016103f490611e6f565b3360005b845181101561116e5760008582815181106110a8576110a8611c47565b6020026020010151905060008583815181106110c6576110c6611c47565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156111165760405162461bcd60e51b81526004016103f490611eb4565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611153908490611dda565b925050819055505050508061116790611c90565b905061108b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111be929190611efe565b60405180910390a46111d48187878787876114f1565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166112545760405162461bcd60e51b81526004016103f490611e6f565b33611264818787610e3a8861134b565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156112a55760405162461bcd60e51b81526004016103f490611eb4565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906112e2908490611dda565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611342828888888888611396565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061138557611385611c47565b602090810291909101015292915050565b6001600160a01b0384163b156111d45760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113da9089908990889088908890600401611f23565b6020604051808303816000875af1925050508015611415575060408051601f3d908101601f1916820190925261141291810190611f68565b60015b6114c157611421611f85565b806308c379a00361145a5750611435611fa1565b80611440575061145c565b8060405162461bcd60e51b81526004016103f491906117b0565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103f4565b6001600160e01b0319811663f23a6e6160e01b146113425760405162461bcd60e51b81526004016103f49061202b565b6001600160a01b0384163b156111d45760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115359089908990889088908890600401612073565b6020604051808303816000875af1925050508015611570575060408051601f3d908101601f1916820190925261156d91810190611f68565b60015b61157c57611421611f85565b6001600160e01b0319811663bc197c8160e01b146113425760405162461bcd60e51b81526004016103f49061202b565b8280546115b890611ca9565b90600052602060002090601f0160209004810192826115da5760008555611620565b82601f106115f357805160ff1916838001178555611620565b82800160010185558215611620579182015b82811115611620578251825591602001919060010190611605565b5061162c929150611630565b5090565b5b8082111561162c5760008155600101611631565b6001600160a01b03811681146108f557600080fd5b6000806040838503121561166d57600080fd5b823561167881611645565b946020939093013593505050565b60008060006040848603121561169b57600080fd5b833567ffffffffffffffff808211156116b357600080fd5b818601915086601f8301126116c757600080fd5b8135818111156116d657600080fd5b8760208260051b85010111156116eb57600080fd5b6020928301989097509590910135949350505050565b6001600160e01b0319811681146108f557600080fd5b60006020828403121561172957600080fd5b813561173481611701565b9392505050565b60006020828403121561174d57600080fd5b5035919050565b60005b8381101561176f578181015183820152602001611757565b8381111561177e576000848401525b50505050565b6000815180845261179c816020860160208601611754565b601f01601f19169290920160200192915050565b6020815260006117346020830184611784565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156117ff576117ff6117c3565b6040525050565b600067ffffffffffffffff821115611820576118206117c3565b5060051b60200190565b600082601f83011261183b57600080fd5b8135602061184882611806565b60405161185582826117d9565b83815260059390931b850182019282810191508684111561187557600080fd5b8286015b848110156118905780358352918301918301611879565b509695505050505050565b600067ffffffffffffffff8311156118b5576118b56117c3565b6040516118cc601f8501601f1916602001826117d9565b8091508381528484840111156118e157600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261190a57600080fd5b6117348383356020850161189b565b600080600080600060a0868803121561193157600080fd5b853561193c81611645565b9450602086013561194c81611645565b9350604086013567ffffffffffffffff8082111561196957600080fd5b61197589838a0161182a565b9450606088013591508082111561198b57600080fd5b61199789838a0161182a565b935060808801359150808211156119ad57600080fd5b506119ba888289016118f9565b9150509295509295909350565b600080604083850312156119da57600080fd5b823567ffffffffffffffff808211156119f257600080fd5b818501915085601f830112611a0657600080fd5b81356020611a1382611806565b604051611a2082826117d9565b83815260059390931b8501820192828101915089841115611a4057600080fd5b948201945b83861015611a67578535611a5881611645565b82529482019490820190611a45565b96505086013592505080821115611a7d57600080fd5b50611a8a8582860161182a565b9150509250929050565b600081518084526020808501945080840160005b83811015611ac457815187529582019590820190600101611aa8565b509495945050505050565b6020815260006117346020830184611a94565b600060208284031215611af457600080fd5b813567ffffffffffffffff811115611b0b57600080fd5b8201601f81018413611b1c57600080fd5b611b2b8482356020840161189b565b949350505050565b60008060408385031215611b4657600080fd5b50508035926020909101359150565b60008060408385031215611b6857600080fd5b8235611b7381611645565b915060208301358015158114611b8857600080fd5b809150509250929050565b60008060408385031215611ba657600080fd5b8235611bb181611645565b91506020830135611b8881611645565b600080600080600060a08688031215611bd957600080fd5b8535611be481611645565b94506020860135611bf481611645565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c1e57600080fd5b6119ba888289016118f9565b600060208284031215611c3c57600080fd5b813561173481611645565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c6f57600080fd5b815161173481611645565b634e487b7160e01b600052601160045260246000fd5b600060018201611ca257611ca2611c7a565b5060010190565b600181811c90821680611cbd57607f821691505b602082108103611cdd57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611cf5818560208601611754565b9290920192915050565b600080845481600182811c915080831680611d1b57607f831692505b60208084108203611d3a57634e487b7160e01b86526022600452602486fd5b818015611d4e5760018114611d5f57611d8c565b60ff19861689528489019650611d8c565b60008b81526020902060005b86811015611d845781548b820152908501908301611d6b565b505084890196505b505050505050611d9c8185611ce3565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ded57611ded611c7a565b500190565b600082611e0f57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611e2657611e26611c7a565b500390565b6000816000190483118215151615611e4557611e45611c7a565b500290565b600060ff821660ff84168060ff03821115611e6757611e67611c7a565b019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611f116040830185611a94565b8281036020840152611d9c8185611a94565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611f5d90830184611784565b979650505050505050565b600060208284031215611f7a57600080fd5b815161173481611701565b600060033d1115611f9e5760046000803e5060005160e01c5b90565b600060443d1015611faf5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611fdf57505050505090565b8285019150815181811115611ff75750505050505090565b843d87010160208285010111156120115750505050505090565b612020602082860101876117d9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061209f90830186611a94565b82810360608401526120b18186611a94565b905082810360808401526120c58185611784565b9897505050505050505056fea264697066735822122059f42222769d512bbd2515a5f3e5851e33be4b5f79576008ed8d36819fdd552f64736f6c634300080d00330000000000000000000000002074f617c1d6372a3761d9832aa4dbfc96312b2d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000007484d7850424f54000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007484d7850424f5400000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101575760003560e01c8063743976a0116100c3578063a22cb4651161007c578063a22cb46514610307578063c0e727401461031a578063e8a3d48514610322578063e985e9c51461032a578063f242432a14610366578063f2fde38b1461037957600080fd5b8063743976a0146102895780637cfef2a7146102915780638ba07f01146102be5780638da5cb5b146102d1578063938e3d7b146102ec57806395d89b41146102ff57600080fd5b80632eb2c2d6116101155780632eb2c2d6146102055780633cb40e16146102185780634e1273f41461022057806355f804b31461024057806357a46fdf14610253578063715018a61461028157600080fd5b8062fdd58e1461015c5780630144bc3a1461018257806301ffc9a71461019757806303f55d6e146101ba57806306fdde03146101dd5780630e89341c146101f2575b600080fd5b61016f61016a36600461165a565b61038c565b6040519081526020015b60405180910390f35b610195610190366004611686565b610423565b005b6101aa6101a5366004611717565b6106f0565b6040519015158152602001610179565b6101aa6101c836600461173b565b60056020526000908152604090205460ff1681565b6101e5610742565b60405161017991906117b0565b6101e561020036600461173b565b6107d4565b610195610213366004611919565b610808565b61019561089f565b61023361022e3660046119c7565b6108f8565b6040516101799190611acf565b61019561024e366004611ae2565b610a22565b6101aa610261366004611b33565b600460209081526000928352604080842090915290825290205460ff1681565b610195610a63565b6101e5610a99565b6101aa61029f366004611b33565b6000908152600460209081526040808320938352929052205460ff1690565b6101956102cc36600461173b565b610b27565b6003546040516001600160a01b039091168152602001610179565b6101956102fa366004611ae2565b610b6c565b6101e5610ba9565b610195610315366004611b55565b610bb8565b6101e5610c8e565b6101e5610c9b565b6101aa610338366004611b93565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610195610374366004611bc1565b610caa565b610195610387366004611c2a565b610d31565b60006001600160a01b0383166103fd5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60008181526005602052604090205460ff1615156001146104985760405162461bcd60e51b815260206004820152602960248201527f436c61696d2057696e646f7720466f7220546869732045646974696f6e204973604482015268204e6f74206c69766560b81b60648201526084016103f4565b816104e55760405162461bcd60e51b815260206004820152601f60248201527f596f75206d75737420636c61696d206174206c65617374203120746f6b656e0060448201526064016103f4565b60005b828110156106cc5760065433906001600160a01b0316636352211e86868581811061051557610515611c47565b905060200201356040518263ffffffff1660e01b815260040161053a91815260200190565b602060405180830381865afa158015610557573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057b9190611c5d565b6001600160a01b0316146105d15760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f206e6f74206f776e2074686573652050697a7a6173000000000060448201526064016103f4565b6000828152600460205260408120908585848181106105f2576105f2611c47565b602090810292909201358352508101919091526040016000205460ff161561066a5760405162461bcd60e51b815260206004820152602560248201527f416e20696e70757474656420746f6b656e2077617320616c726561647920636c604482015264185a5b595960da1b60648201526084016103f4565b600082815260046020526040812060019186868581811061068d5761068d611c47565b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106c490611c90565b9150506104e8565b506106eb33828585905060405180602001604052806000815250610dc9565b505050565b60006001600160e01b03198216636cdb3d1360e11b148061072157506001600160e01b031982166303a24d0760e21b145b8061073c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606009805461075190611ca9565b80601f016020809104026020016040519081016040528092919081815260200182805461077d90611ca9565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b5050505050905090565b606060076107e183610ed3565b6040516020016107f2929190611cff565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061082457506108248533610338565b61088b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103f4565b6108988585858585610fff565b5050505050565b6003546001600160a01b031633146108c95760405162461bcd60e51b81526004016103f490611da5565b60405133904780156108fc02916000818181858888f193505050501580156108f5573d6000803e3d6000fd5b50565b6060815183511461095d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103f4565b6000835167ffffffffffffffff811115610979576109796117c3565b6040519080825280602002602001820160405280156109a2578160200160208202803683370190505b50905060005b8451811015610a1a576109ed8582815181106109c6576109c6611c47565b60200260200101518583815181106109e0576109e0611c47565b602002602001015161038c565b8282815181106109ff576109ff611c47565b6020908102919091010152610a1381611c90565b90506109a8565b509392505050565b6003546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016103f490611da5565b8051610a5f9060079060208401906115ac565b5050565b6003546001600160a01b03163314610a8d5760405162461bcd60e51b81526004016103f490611da5565b610a9760006111dc565b565b60078054610aa690611ca9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290611ca9565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b6003546001600160a01b03163314610b515760405162461bcd60e51b81526004016103f490611da5565b6000908152600560205260409020805460ff19166001179055565b6003546001600160a01b03163314610b965760405162461bcd60e51b81526004016103f490611da5565b8051610a5f9060089060208401906115ac565b6060600a805461075190611ca9565b6001600160a01b0382163303610c225760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103f4565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60088054610aa690611ca9565b60606008805461075190611ca9565b6001600160a01b038516331480610cc65750610cc68533610338565b610d245760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016103f4565b610898858585858561122e565b6003546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016103f490611da5565b6001600160a01b038116610dc05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b6108f5816111dc565b6001600160a01b038416610e295760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103f4565b33610e4381600087610e3a8861134b565b6108988861134b565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e73908490611dda565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461089881600087878787611396565b606081600003610efa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f245780610f0e81611c90565b9150610f1d9050600a83611df2565b9150610efe565b60008167ffffffffffffffff811115610f3f57610f3f6117c3565b6040519080825280601f01601f191660200182016040528015610f69576020820181803683370190505b509050815b8515610ff657610f7f600182611e14565b90506000610f8e600a88611df2565b610f9990600a611e2b565b610fa39088611e14565b610fae906030611e4a565b905060008160f81b905080848481518110610fcb57610fcb611c47565b60200101906001600160f81b031916908160001a905350610fed600a89611df2565b97505050610f6e565b50949350505050565b81518351146110615760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103f4565b6001600160a01b0384166110875760405162461bcd60e51b81526004016103f490611e6f565b3360005b845181101561116e5760008582815181106110a8576110a8611c47565b6020026020010151905060008583815181106110c6576110c6611c47565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156111165760405162461bcd60e51b81526004016103f490611eb4565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611153908490611dda565b925050819055505050508061116790611c90565b905061108b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111be929190611efe565b60405180910390a46111d48187878787876114f1565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166112545760405162461bcd60e51b81526004016103f490611e6f565b33611264818787610e3a8861134b565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156112a55760405162461bcd60e51b81526004016103f490611eb4565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906112e2908490611dda565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611342828888888888611396565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061138557611385611c47565b602090810291909101015292915050565b6001600160a01b0384163b156111d45760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113da9089908990889088908890600401611f23565b6020604051808303816000875af1925050508015611415575060408051601f3d908101601f1916820190925261141291810190611f68565b60015b6114c157611421611f85565b806308c379a00361145a5750611435611fa1565b80611440575061145c565b8060405162461bcd60e51b81526004016103f491906117b0565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103f4565b6001600160e01b0319811663f23a6e6160e01b146113425760405162461bcd60e51b81526004016103f49061202b565b6001600160a01b0384163b156111d45760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115359089908990889088908890600401612073565b6020604051808303816000875af1925050508015611570575060408051601f3d908101601f1916820190925261156d91810190611f68565b60015b61157c57611421611f85565b6001600160e01b0319811663bc197c8160e01b146113425760405162461bcd60e51b81526004016103f49061202b565b8280546115b890611ca9565b90600052602060002090601f0160209004810192826115da5760008555611620565b82601f106115f357805160ff1916838001178555611620565b82800160010185558215611620579182015b82811115611620578251825591602001919060010190611605565b5061162c929150611630565b5090565b5b8082111561162c5760008155600101611631565b6001600160a01b03811681146108f557600080fd5b6000806040838503121561166d57600080fd5b823561167881611645565b946020939093013593505050565b60008060006040848603121561169b57600080fd5b833567ffffffffffffffff808211156116b357600080fd5b818601915086601f8301126116c757600080fd5b8135818111156116d657600080fd5b8760208260051b85010111156116eb57600080fd5b6020928301989097509590910135949350505050565b6001600160e01b0319811681146108f557600080fd5b60006020828403121561172957600080fd5b813561173481611701565b9392505050565b60006020828403121561174d57600080fd5b5035919050565b60005b8381101561176f578181015183820152602001611757565b8381111561177e576000848401525b50505050565b6000815180845261179c816020860160208601611754565b601f01601f19169290920160200192915050565b6020815260006117346020830184611784565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156117ff576117ff6117c3565b6040525050565b600067ffffffffffffffff821115611820576118206117c3565b5060051b60200190565b600082601f83011261183b57600080fd5b8135602061184882611806565b60405161185582826117d9565b83815260059390931b850182019282810191508684111561187557600080fd5b8286015b848110156118905780358352918301918301611879565b509695505050505050565b600067ffffffffffffffff8311156118b5576118b56117c3565b6040516118cc601f8501601f1916602001826117d9565b8091508381528484840111156118e157600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261190a57600080fd5b6117348383356020850161189b565b600080600080600060a0868803121561193157600080fd5b853561193c81611645565b9450602086013561194c81611645565b9350604086013567ffffffffffffffff8082111561196957600080fd5b61197589838a0161182a565b9450606088013591508082111561198b57600080fd5b61199789838a0161182a565b935060808801359150808211156119ad57600080fd5b506119ba888289016118f9565b9150509295509295909350565b600080604083850312156119da57600080fd5b823567ffffffffffffffff808211156119f257600080fd5b818501915085601f830112611a0657600080fd5b81356020611a1382611806565b604051611a2082826117d9565b83815260059390931b8501820192828101915089841115611a4057600080fd5b948201945b83861015611a67578535611a5881611645565b82529482019490820190611a45565b96505086013592505080821115611a7d57600080fd5b50611a8a8582860161182a565b9150509250929050565b600081518084526020808501945080840160005b83811015611ac457815187529582019590820190600101611aa8565b509495945050505050565b6020815260006117346020830184611a94565b600060208284031215611af457600080fd5b813567ffffffffffffffff811115611b0b57600080fd5b8201601f81018413611b1c57600080fd5b611b2b8482356020840161189b565b949350505050565b60008060408385031215611b4657600080fd5b50508035926020909101359150565b60008060408385031215611b6857600080fd5b8235611b7381611645565b915060208301358015158114611b8857600080fd5b809150509250929050565b60008060408385031215611ba657600080fd5b8235611bb181611645565b91506020830135611b8881611645565b600080600080600060a08688031215611bd957600080fd5b8535611be481611645565b94506020860135611bf481611645565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c1e57600080fd5b6119ba888289016118f9565b600060208284031215611c3c57600080fd5b813561173481611645565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c6f57600080fd5b815161173481611645565b634e487b7160e01b600052601160045260246000fd5b600060018201611ca257611ca2611c7a565b5060010190565b600181811c90821680611cbd57607f821691505b602082108103611cdd57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611cf5818560208601611754565b9290920192915050565b600080845481600182811c915080831680611d1b57607f831692505b60208084108203611d3a57634e487b7160e01b86526022600452602486fd5b818015611d4e5760018114611d5f57611d8c565b60ff19861689528489019650611d8c565b60008b81526020902060005b86811015611d845781548b820152908501908301611d6b565b505084890196505b505050505050611d9c8185611ce3565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ded57611ded611c7a565b500190565b600082611e0f57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611e2657611e26611c7a565b500390565b6000816000190483118215151615611e4557611e45611c7a565b500290565b600060ff821660ff84168060ff03821115611e6757611e67611c7a565b019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611f116040830185611a94565b8281036020840152611d9c8185611a94565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611f5d90830184611784565b979650505050505050565b600060208284031215611f7a57600080fd5b815161173481611701565b600060033d1115611f9e5760046000803e5060005160e01c5b90565b600060443d1015611faf5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611fdf57505050505090565b8285019150815181811115611ff75750505050505090565b843d87010160208285010111156120115750505050505090565b612020602082860101876117d9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061209f90830186611a94565b82810360608401526120b18186611a94565b905082810360808401526120c58185611784565b9897505050505050505056fea264697066735822122059f42222769d512bbd2515a5f3e5851e33be4b5f79576008ed8d36819fdd552f64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002074f617c1d6372a3761d9832aa4dbfc96312b2d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000007484d7850424f54000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007484d7850424f5400000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : PizzaBotContractAddress (address): 0x2074f617c1d6372a3761D9832aa4dbFC96312b2D
Arg [1] : _name (string): HMxPBOT
Arg [2] : _symbol (string): HMxPBOT
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000002074f617c1d6372a3761d9832aa4dbfc96312b2d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 484d7850424f5400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 484d7850424f5400000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
54859:2688:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24592:231;;;;;;:::i;:::-;;:::i;:::-;;;616:25:1;;;604:2;589:18;24592:231:0;;;;;;;;55454:594;;;;;;:::i;:::-;;:::i;:::-;;23615:310;;;;;;:::i;:::-;;:::i;:::-;;;1897:14:1;;1890:22;1872:41;;1860:2;1845:18;23615:310:0;1732:187:1;55005:49:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;57218:83;;;:::i;:::-;;;;;;;:::i;56256:145::-;;;;;;:::i;:::-;;:::i;26687:442::-;;;;;;:::i;:::-;;:::i;57431:107::-;;;:::i;24989:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56066:86::-;;;;;;:::i;:::-;;:::i;54930:71::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;4467:94;;;:::i;55089:22::-;;;:::i;57065:145::-;;;;;;:::i;:::-;57148:4;57166:30;;;:21;:30;;;;;;;;:39;;;;;;;;;;;57065:145;56934:101;;;;;;:::i;:::-;;:::i;3816:87::-;3889:6;;3816:87;;-1:-1:-1;;;;;3889:6:0;;;8801:51:1;;8789:2;8774:18;3816:87:0;8655:203:1;56157:94:0;;;;;;:::i;:::-;;:::i;57309:87::-;;;:::i;25586:311::-;;;;;;:::i;:::-;;:::i;55115:26::-;;;:::i;56406:88::-;;;:::i;25969:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26092:27:0;;;26068:4;26092:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25969:168;26209:401;;;;;;:::i;:::-;;:::i;4716:192::-;;;;;;:::i;:::-;;:::i;24592:231::-;24678:7;-1:-1:-1;;;;;24706:21:0;;24698:77;;;;-1:-1:-1;;;24698:77:0;;10870:2:1;24698:77:0;;;10852:21:1;10909:2;10889:18;;;10882:30;10948:34;10928:18;;;10921:62;-1:-1:-1;;;10999:18:1;;;10992:41;11050:19;;24698:77:0;;;;;;;;;-1:-1:-1;24793:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24793:22:0;;;;;;;;;;;;24592:231::o;55454:594::-;55535:29;;;;:20;:29;;;;;;;;:37;;:29;:37;55527:90;;;;-1:-1:-1;;;55527:90:0;;11282:2:1;55527:90:0;;;11264:21:1;11321:2;11301:18;;;11294:30;11360:34;11340:18;;;11333:62;-1:-1:-1;;;11411:18:1;;;11404:39;11460:19;;55527:90:0;11080:405:1;55527:90:0;55630:19;55622:62;;;;-1:-1:-1;;;55622:62:0;;11692:2:1;55622:62:0;;;11674:21:1;11731:2;11711:18;;;11704:30;11770:33;11750:18;;;11743:61;11821:18;;55622:62:0;11490:355:1;55622:62:0;55693:9;55689:302;55708:19;;;55689:302;;;55748:8;;55781:10;;-1:-1:-1;;;;;55748:8:0;:16;55765:8;;55774:1;55765:11;;;;;;;:::i;:::-;;;;;;;55748:29;;;;;;;;;;;;;616:25:1;;604:2;589:18;;470:177;55748:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55748:43:0;;55740:82;;;;-1:-1:-1;;;55740:82:0;;12440:2:1;55740:82:0;;;12422:21:1;12479:2;12459:18;;;12452:30;12518:29;12498:18;;;12491:57;12565:18;;55740:82:0;12238:351:1;55740:82:0;55836:30;;;;:21;:30;;;;;;55867:8;;55876:1;55867:11;;;;;;;:::i;:::-;;;;;;;;;;55836:43;;-1:-1:-1;55836:43:0;;;;;;;;-1:-1:-1;55836:43:0;;;;:52;55828:101;;;;-1:-1:-1;;;55828:101:0;;12796:2:1;55828:101:0;;;12778:21:1;12835:2;12815:18;;;12808:30;12874:34;12854:18;;;12847:62;-1:-1:-1;;;12925:18:1;;;12918:35;12970:19;;55828:101:0;12594:401:1;55828:101:0;55935:30;;;;:21;:30;;;;;55981:4;;55966:8;;55975:1;55966:11;;;;;;;:::i;:::-;;;;;;;55935:43;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;55729:3;;;;;:::i;:::-;;;;55689:302;;;;55996:47;56002:10;56014:7;56023:8;;:15;;55996:47;;;;;;;;;;;;:5;:47::i;:::-;55454:594;;;:::o;23615:310::-;23717:4;-1:-1:-1;;;;;;23754:41:0;;-1:-1:-1;;;23754:41:0;;:110;;-1:-1:-1;;;;;;;23812:52:0;;-1:-1:-1;;;23812:52:0;23754:110;:163;;;-1:-1:-1;;;;;;;;;;22585:40:0;;;23881:36;23734:183;23615:310;-1:-1:-1;;23615:310:0:o;57218:83::-;57255:13;57288:5;57281:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57218:83;:::o;56256:145::-;56316:13;56367:8;56377:17;56386:7;56377:8;:17::i;:::-;56350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56336:60;;56256:145;;;:::o;26687:442::-;-1:-1:-1;;;;;26920:20:0;;2717:10;26920:20;;:60;;-1:-1:-1;26944:36:0;26961:4;2717:10;25969:168;:::i;26944:36::-;26898:160;;;;-1:-1:-1;;;26898:160:0;;15354:2:1;26898:160:0;;;15336:21:1;15393:2;15373:18;;;15366:30;15432:34;15412:18;;;15405:62;-1:-1:-1;;;15483:18:1;;;15476:48;15541:19;;26898:160:0;15152:414:1;26898:160:0;27069:52;27092:4;27098:2;27102:3;27107:7;27116:4;27069:22;:52::i;:::-;26687:442;;;;;:::o;57431:107::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;57482:51:::1;::::0;57490:10:::1;::::0;57511:21:::1;57482:51:::0;::::1;;;::::0;::::1;::::0;;;57511:21;57490:10;57482:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57431:107::o:0;24989:524::-;25145:16;25206:3;:10;25187:8;:15;:29;25179:83;;;;-1:-1:-1;;;25179:83:0;;16134:2:1;25179:83:0;;;16116:21:1;16173:2;16153:18;;;16146:30;16212:34;16192:18;;;16185:62;-1:-1:-1;;;16263:18:1;;;16256:39;16312:19;;25179:83:0;15932:405:1;25179:83:0;25275:30;25322:8;:15;25308:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25308:30:0;;25275:63;;25356:9;25351:122;25375:8;:15;25371:1;:19;25351:122;;;25431:30;25441:8;25450:1;25441:11;;;;;;;;:::i;:::-;;;;;;;25454:3;25458:1;25454:6;;;;;;;;:::i;:::-;;;;;;;25431:9;:30::i;:::-;25412:13;25426:1;25412:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25392:3;;;:::i;:::-;;;25351:122;;;-1:-1:-1;25492:13:0;24989:524;-1:-1:-1;;;24989:524:0:o;56066:86::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;56130:17;;::::1;::::0;:8:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56066:86:::0;:::o;4467:94::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;4532:21:::1;4550:1;4532:9;:21::i;:::-;4467:94::o:0;55089:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56934:101::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;56994:29:::1;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;56994:36:0::1;57026:4;56994:36;::::0;;56934:101::o;56157:94::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;56225:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;57309:87::-:0;57348:13;57381:7;57374:14;;;;;:::i;25586:311::-;-1:-1:-1;;;;;25689:24:0;;2717:10;25689:24;25681:78;;;;-1:-1:-1;;;25681:78:0;;16544:2:1;25681:78:0;;;16526:21:1;16583:2;16563:18;;;16556:30;16622:34;16602:18;;;16595:62;-1:-1:-1;;;16673:18:1;;;16666:39;16722:19;;25681:78:0;16342:405:1;25681:78:0;2717:10;25772:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25772:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25772:53:0;;;;;;;;;;25841:48;;1872:41:1;;;25772:42:0;;2717:10;25841:48;;1845:18:1;25841:48:0;;;;;;;25586:311;;:::o;55115:26::-;;;;;;;:::i;56406:88::-;56450:13;56477:12;56470:19;;;;;:::i;26209:401::-;-1:-1:-1;;;;;26417:20:0;;2717:10;26417:20;;:60;;-1:-1:-1;26441:36:0;26458:4;2717:10;25969:168;:::i;26441:36::-;26395:151;;;;-1:-1:-1;;;26395:151:0;;16954:2:1;26395:151:0;;;16936:21:1;16993:2;16973:18;;;16966:30;17032:34;17012:18;;;17005:62;-1:-1:-1;;;17083:18:1;;;17076:39;17132:19;;26395:151:0;16752:405:1;26395:151:0;26557:45;26575:4;26581:2;26585;26589:6;26597:4;26557:17;:45::i;4716:192::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4805:22:0;::::1;4797:73;;;::::0;-1:-1:-1;;;4797:73:0;;17364:2:1;4797:73:0::1;::::0;::::1;17346:21:1::0;17403:2;17383:18;;;17376:30;17442:34;17422:18;;;17415:62;-1:-1:-1;;;17493:18:1;;;17486:36;17539:19;;4797:73:0::1;17162:402:1::0;4797:73:0::1;4881:19;4891:8;4881:9;:19::i;31178:599::-:0;-1:-1:-1;;;;;31336:21:0;;31328:67;;;;-1:-1:-1;;;31328:67:0;;17771:2:1;31328:67:0;;;17753:21:1;17810:2;17790:18;;;17783:30;17849:34;17829:18;;;17822:62;-1:-1:-1;;;17900:18:1;;;17893:31;17941:19;;31328:67:0;17569:397:1;31328:67:0;2717:10;31452:107;2717:10;31408:16;31495:7;31504:21;31522:2;31504:17;:21::i;:::-;31527:25;31545:6;31527:17;:25::i;31452:107::-;31572:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31572:22:0;;;;;;;;;:32;;31598:6;;31572:9;:32;;31598:6;;31572:32;:::i;:::-;;;;-1:-1:-1;;31620:57:0;;;18278:25:1;;;18334:2;18319:18;;18312:34;;;-1:-1:-1;;;;;31620:57:0;;;;31653:1;;31620:57;;;;;;18251:18:1;31620:57:0;;;;;;;31690:79;31721:8;31739:1;31743:7;31752:2;31756:6;31764:4;31690:30;:79::i;56499:430::-;56552:27;56590:2;56596:1;56590:7;56586:26;;-1:-1:-1;;56600:10:0;;;;;;;;;;;;-1:-1:-1;;;56600:10:0;;;;;56499:430::o;56586:26::-;56629:2;56617:9;56653:32;56660:6;;56653:32;;56669:5;;;;:::i;:::-;;-1:-1:-1;56676:7:0;;-1:-1:-1;56681:2:0;56676:7;;:::i;:::-;;;56653:32;;;56690:17;56720:3;56710:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56710:14:0;-1:-1:-1;56690:34:0;-1:-1:-1;56742:3:0;56750:151;56757:7;;56750:151;;56776:5;56780:1;56776;:5;:::i;:::-;56772:9;-1:-1:-1;56787:10:0;56818:7;56823:2;56818;:7;:::i;:::-;56817:14;;56829:2;56817:14;:::i;:::-;56812:19;;:2;:19;:::i;:::-;56801:31;;:2;:31;:::i;:::-;56787:46;;56839:9;56858:4;56851:12;;56839:24;;56879:2;56869:4;56874:1;56869:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;56869:12:0;;;;;;;;-1:-1:-1;56887:8:0;56893:2;56887:8;;:::i;:::-;;;56766:135;;56750:151;;;-1:-1:-1;56919:4:0;56499:430;-1:-1:-1;;;;56499:430:0:o;28771:1074::-;28998:7;:14;28984:3;:10;:28;28976:81;;;;-1:-1:-1;;;28976:81:0;;19293:2:1;28976:81:0;;;19275:21:1;19332:2;19312:18;;;19305:30;19371:34;19351:18;;;19344:62;-1:-1:-1;;;19422:18:1;;;19415:38;19470:19;;28976:81:0;19091:404:1;28976:81:0;-1:-1:-1;;;;;29076:16:0;;29068:66;;;;-1:-1:-1;;;29068:66:0;;;;;;;:::i;:::-;2717:10;29147:16;29264:421;29288:3;:10;29284:1;:14;29264:421;;;29320:10;29333:3;29337:1;29333:6;;;;;;;;:::i;:::-;;;;;;;29320:19;;29354:14;29371:7;29379:1;29371:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29398:19;29420:13;;;;;;;;;;-1:-1:-1;;;;;29420:19:0;;;;;;;;;;;;29371:10;;-1:-1:-1;29462:21:0;;;;29454:76;;;;-1:-1:-1;;;29454:76:0;;;;;;;:::i;:::-;29574:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29574:19:0;;;;;;;;;;29596:20;;;29574:42;;29646:17;;;;;;;:27;;29596:20;;29574:9;29646:27;;29596:20;;29646:27;:::i;:::-;;;;;;;;29305:380;;;29300:3;;;;:::i;:::-;;;29264:421;;;;29732:2;-1:-1:-1;;;;;29702:47:0;29726:4;-1:-1:-1;;;;;29702:47:0;29716:8;-1:-1:-1;;;;;29702:47:0;;29736:3;29741:7;29702:47;;;;;;;:::i;:::-;;;;;;;;29762:75;29798:8;29808:4;29814:2;29818:3;29823:7;29832:4;29762:35;:75::i;:::-;28965:880;28771:1074;;;;;:::o;4916:173::-;4991:6;;;-1:-1:-1;;;;;5008:17:0;;;-1:-1:-1;;;;;;5008:17:0;;;;;;;5041:40;;4991:6;;;5008:17;4991:6;;5041:40;;4972:16;;5041:40;4961:128;4916:173;:::o;27593:820::-;-1:-1:-1;;;;;27781:16:0;;27773:66;;;;-1:-1:-1;;;27773:66:0;;;;;;;:::i;:::-;2717:10;27896:96;2717:10;27927:4;27933:2;27937:21;27955:2;27937:17;:21::i;27896:96::-;28005:19;28027:13;;;;;;;;;;;-1:-1:-1;;;;;28027:19:0;;;;;;;;;;28065:21;;;;28057:76;;;;-1:-1:-1;;;28057:76:0;;;;;;;:::i;:::-;28169:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28169:19:0;;;;;;;;;;28191:20;;;28169:42;;28233:17;;;;;;;:27;;28191:20;;28169:9;28233:27;;28191:20;;28233:27;:::i;:::-;;;;-1:-1:-1;;28278:46:0;;;18278:25:1;;;18334:2;18319:18;;18312:34;;;-1:-1:-1;;;;;28278:46:0;;;;;;;;;;;;;;18251:18:1;28278:46:0;;;;;;;28337:68;28368:8;28378:4;28384:2;28388;28392:6;28400:4;28337:30;:68::i;:::-;27762:651;;27593:820;;;;;:::o;37689:198::-;37809:16;;;37823:1;37809:16;;;;;;;;;37755;;37784:22;;37809:16;;;;;;;;;;;;-1:-1:-1;37809:16:0;37784:41;;37847:7;37836:5;37842:1;37836:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;37874:5;37689:198;-1:-1:-1;;37689:198:0:o;36108:748::-;-1:-1:-1;;;;;36323:13:0;;6153:20;6201:8;36319:530;;36359:72;;-1:-1:-1;;;36359:72:0;;-1:-1:-1;;;;;36359:38:0;;;;;:72;;36398:8;;36408:4;;36414:2;;36418:6;;36426:4;;36359:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36359:72:0;;;;;;;;-1:-1:-1;;36359:72:0;;;;;;;;;;;;:::i;:::-;;;36355:483;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36711:6;36704:14;;-1:-1:-1;;;36704:14:0;;;;;;;;:::i;36355:483::-;;;36760:62;;-1:-1:-1;;;36760:62:0;;22680:2:1;36760:62:0;;;22662:21:1;22719:2;22699:18;;;22692:30;22758:34;22738:18;;;22731:62;-1:-1:-1;;;22809:18:1;;;22802:50;22869:19;;36760:62:0;22478:416:1;36355:483:0;-1:-1:-1;;;;;;36481:59:0;;-1:-1:-1;;;36481:59:0;36477:158;;36565:50;;-1:-1:-1;;;36565:50:0;;;;;;;:::i;36864:817::-;-1:-1:-1;;;;;37104:13:0;;6153:20;6201:8;37100:574;;37140:79;;-1:-1:-1;;;37140:79:0;;-1:-1:-1;;;;;37140:43:0;;;;;:79;;37184:8;;37194:4;;37200:3;;37205:7;;37214:4;;37140:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37140:79:0;;;;;;;;-1:-1:-1;;37140:79:0;;;;;;;;;;;;:::i;:::-;;;37136:527;;;;:::i;:::-;-1:-1:-1;;;;;;37301:64:0;;-1:-1:-1;;;37301:64:0;37297:163;;37390:50;;-1:-1:-1;;;37390:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;652:689::-;747:6;755;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;872:9;859:23;901:18;942:2;934:6;931:14;928:34;;;958:1;955;948:12;928:34;996:6;985:9;981:22;971:32;;1041:7;1034:4;1030:2;1026:13;1022:27;1012:55;;1063:1;1060;1053:12;1012:55;1103:2;1090:16;1129:2;1121:6;1118:14;1115:34;;;1145:1;1142;1135:12;1115:34;1200:7;1193:4;1183:6;1180:1;1176:14;1172:2;1168:23;1164:34;1161:47;1158:67;;;1221:1;1218;1211:12;1158:67;1252:4;1244:13;;;;1276:6;;-1:-1:-1;1314:20:1;;;;1301:34;;652:689;-1:-1:-1;;;;652:689:1:o;1346:131::-;-1:-1:-1;;;;;;1420:32:1;;1410:43;;1400:71;;1467:1;1464;1457:12;1482:245;1540:6;1593:2;1581:9;1572:7;1568:23;1564:32;1561:52;;;1609:1;1606;1599:12;1561:52;1648:9;1635:23;1667:30;1691:5;1667:30;:::i;:::-;1716:5;1482:245;-1:-1:-1;;;1482:245:1:o;1924:180::-;1983:6;2036:2;2024:9;2015:7;2011:23;2007:32;2004:52;;;2052:1;2049;2042:12;2004:52;-1:-1:-1;2075:23:1;;1924:180;-1:-1:-1;1924:180:1:o;2109:258::-;2181:1;2191:113;2205:6;2202:1;2199:13;2191:113;;;2281:11;;;2275:18;2262:11;;;2255:39;2227:2;2220:10;2191:113;;;2322:6;2319:1;2316:13;2313:48;;;2357:1;2348:6;2343:3;2339:16;2332:27;2313:48;;2109:258;;;:::o;2372:269::-;2425:3;2463:5;2457:12;2490:6;2485:3;2478:19;2506:63;2562:6;2555:4;2550:3;2546:14;2539:4;2532:5;2528:16;2506:63;:::i;:::-;2623:2;2602:15;-1:-1:-1;;2598:29:1;2589:39;;;;2630:4;2585:50;;2372:269;-1:-1:-1;;2372:269:1:o;2646:231::-;2795:2;2784:9;2777:21;2758:4;2815:56;2867:2;2856:9;2852:18;2844:6;2815:56;:::i;2882:127::-;2943:10;2938:3;2934:20;2931:1;2924:31;2974:4;2971:1;2964:15;2998:4;2995:1;2988:15;3014:249;3124:2;3105:13;;-1:-1:-1;;3101:27:1;3089:40;;3159:18;3144:34;;3180:22;;;3141:62;3138:88;;;3206:18;;:::i;:::-;3242:2;3235:22;-1:-1:-1;;3014:249:1:o;3268:183::-;3328:4;3361:18;3353:6;3350:30;3347:56;;;3383:18;;:::i;:::-;-1:-1:-1;3428:1:1;3424:14;3440:4;3420:25;;3268:183::o;3456:724::-;3510:5;3563:3;3556:4;3548:6;3544:17;3540:27;3530:55;;3581:1;3578;3571:12;3530:55;3617:6;3604:20;3643:4;3666:43;3706:2;3666:43;:::i;:::-;3738:2;3732:9;3750:31;3778:2;3770:6;3750:31;:::i;:::-;3816:18;;;3908:1;3904:10;;;;3892:23;;3888:32;;;3850:15;;;;-1:-1:-1;3932:15:1;;;3929:35;;;3960:1;3957;3950:12;3929:35;3996:2;3988:6;3984:15;4008:142;4024:6;4019:3;4016:15;4008:142;;;4090:17;;4078:30;;4128:12;;;;4041;;4008:142;;;-1:-1:-1;4168:6:1;3456:724;-1:-1:-1;;;;;;3456:724:1:o;4185:468::-;4249:5;4283:18;4275:6;4272:30;4269:56;;;4305:18;;:::i;:::-;4354:2;4348:9;4366:69;4423:2;4402:15;;-1:-1:-1;;4398:29:1;4429:4;4394:40;4348:9;4366:69;:::i;:::-;4453:6;4444:15;;4483:6;4475;4468:22;4523:3;4514:6;4509:3;4505:16;4502:25;4499:45;;;4540:1;4537;4530:12;4499:45;4590:6;4585:3;4578:4;4570:6;4566:17;4553:44;4645:1;4638:4;4629:6;4621;4617:19;4613:30;4606:41;;4185:468;;;;;:::o;4658:220::-;4700:5;4753:3;4746:4;4738:6;4734:17;4730:27;4720:55;;4771:1;4768;4761:12;4720:55;4793:79;4868:3;4859:6;4846:20;4839:4;4831:6;4827:17;4793:79;:::i;4883:1071::-;5037:6;5045;5053;5061;5069;5122:3;5110:9;5101:7;5097:23;5093:33;5090:53;;;5139:1;5136;5129:12;5090:53;5178:9;5165:23;5197:31;5222:5;5197:31;:::i;:::-;5247:5;-1:-1:-1;5304:2:1;5289:18;;5276:32;5317:33;5276:32;5317:33;:::i;:::-;5369:7;-1:-1:-1;5427:2:1;5412:18;;5399:32;5450:18;5480:14;;;5477:34;;;5507:1;5504;5497:12;5477:34;5530:61;5583:7;5574:6;5563:9;5559:22;5530:61;:::i;:::-;5520:71;;5644:2;5633:9;5629:18;5616:32;5600:48;;5673:2;5663:8;5660:16;5657:36;;;5689:1;5686;5679:12;5657:36;5712:63;5767:7;5756:8;5745:9;5741:24;5712:63;:::i;:::-;5702:73;;5828:3;5817:9;5813:19;5800:33;5784:49;;5858:2;5848:8;5845:16;5842:36;;;5874:1;5871;5864:12;5842:36;;5897:51;5940:7;5929:8;5918:9;5914:24;5897:51;:::i;:::-;5887:61;;;4883:1071;;;;;;;;:::o;5959:1277::-;6077:6;6085;6138:2;6126:9;6117:7;6113:23;6109:32;6106:52;;;6154:1;6151;6144:12;6106:52;6194:9;6181:23;6223:18;6264:2;6256:6;6253:14;6250:34;;;6280:1;6277;6270:12;6250:34;6318:6;6307:9;6303:22;6293:32;;6363:7;6356:4;6352:2;6348:13;6344:27;6334:55;;6385:1;6382;6375:12;6334:55;6421:2;6408:16;6443:4;6466:43;6506:2;6466:43;:::i;:::-;6538:2;6532:9;6550:31;6578:2;6570:6;6550:31;:::i;:::-;6616:18;;;6704:1;6700:10;;;;6692:19;;6688:28;;;6650:15;;;;-1:-1:-1;6728:19:1;;;6725:39;;;6760:1;6757;6750:12;6725:39;6784:11;;;;6804:217;6820:6;6815:3;6812:15;6804:217;;;6900:3;6887:17;6917:31;6942:5;6917:31;:::i;:::-;6961:18;;6837:12;;;;6999;;;;6804:217;;;7040:6;-1:-1:-1;;7084:18:1;;7071:32;;-1:-1:-1;;7115:16:1;;;7112:36;;;7144:1;7141;7134:12;7112:36;;7167:63;7222:7;7211:8;7200:9;7196:24;7167:63;:::i;:::-;7157:73;;;5959:1277;;;;;:::o;7241:435::-;7294:3;7332:5;7326:12;7359:6;7354:3;7347:19;7385:4;7414:2;7409:3;7405:12;7398:19;;7451:2;7444:5;7440:14;7472:1;7482:169;7496:6;7493:1;7490:13;7482:169;;;7557:13;;7545:26;;7591:12;;;;7626:15;;;;7518:1;7511:9;7482:169;;;-1:-1:-1;7667:3:1;;7241:435;-1:-1:-1;;;;;7241:435:1:o;7681:261::-;7860:2;7849:9;7842:21;7823:4;7880:56;7932:2;7921:9;7917:18;7909:6;7880:56;:::i;7947:450::-;8016:6;8069:2;8057:9;8048:7;8044:23;8040:32;8037:52;;;8085:1;8082;8075:12;8037:52;8125:9;8112:23;8158:18;8150:6;8147:30;8144:50;;;8190:1;8187;8180:12;8144:50;8213:22;;8266:4;8258:13;;8254:27;-1:-1:-1;8244:55:1;;8295:1;8292;8285:12;8244:55;8318:73;8383:7;8378:2;8365:16;8360:2;8356;8352:11;8318:73;:::i;:::-;8308:83;7947:450;-1:-1:-1;;;;7947:450:1:o;8402:248::-;8470:6;8478;8531:2;8519:9;8510:7;8506:23;8502:32;8499:52;;;8547:1;8544;8537:12;8499:52;-1:-1:-1;;8570:23:1;;;8640:2;8625:18;;;8612:32;;-1:-1:-1;8402:248:1:o;8863:416::-;8928:6;8936;8989:2;8977:9;8968:7;8964:23;8960:32;8957:52;;;9005:1;9002;8995:12;8957:52;9044:9;9031:23;9063:31;9088:5;9063:31;:::i;:::-;9113:5;-1:-1:-1;9170:2:1;9155:18;;9142:32;9212:15;;9205:23;9193:36;;9183:64;;9243:1;9240;9233:12;9183:64;9266:7;9256:17;;;8863:416;;;;;:::o;9284:388::-;9352:6;9360;9413:2;9401:9;9392:7;9388:23;9384:32;9381:52;;;9429:1;9426;9419:12;9381:52;9468:9;9455:23;9487:31;9512:5;9487:31;:::i;:::-;9537:5;-1:-1:-1;9594:2:1;9579:18;;9566:32;9607:33;9566:32;9607:33;:::i;9677:734::-;9781:6;9789;9797;9805;9813;9866:3;9854:9;9845:7;9841:23;9837:33;9834:53;;;9883:1;9880;9873:12;9834:53;9922:9;9909:23;9941:31;9966:5;9941:31;:::i;:::-;9991:5;-1:-1:-1;10048:2:1;10033:18;;10020:32;10061:33;10020:32;10061:33;:::i;:::-;10113:7;-1:-1:-1;10167:2:1;10152:18;;10139:32;;-1:-1:-1;10218:2:1;10203:18;;10190:32;;-1:-1:-1;10273:3:1;10258:19;;10245:33;10301:18;10290:30;;10287:50;;;10333:1;10330;10323:12;10287:50;10356:49;10397:7;10388:6;10377:9;10373:22;10356:49;:::i;10416:247::-;10475:6;10528:2;10516:9;10507:7;10503:23;10499:32;10496:52;;;10544:1;10541;10534:12;10496:52;10583:9;10570:23;10602:31;10627:5;10602:31;:::i;11850:127::-;11911:10;11906:3;11902:20;11899:1;11892:31;11942:4;11939:1;11932:15;11966:4;11963:1;11956:15;11982:251;12052:6;12105:2;12093:9;12084:7;12080:23;12076:32;12073:52;;;12121:1;12118;12111:12;12073:52;12153:9;12147:16;12172:31;12197:5;12172:31;:::i;13000:127::-;13061:10;13056:3;13052:20;13049:1;13042:31;13092:4;13089:1;13082:15;13116:4;13113:1;13106:15;13132:135;13171:3;13192:17;;;13189:43;;13212:18;;:::i;:::-;-1:-1:-1;13259:1:1;13248:13;;13132:135::o;13272:380::-;13351:1;13347:12;;;;13394;;;13415:61;;13469:4;13461:6;13457:17;13447:27;;13415:61;13522:2;13514:6;13511:14;13491:18;13488:38;13485:161;;13568:10;13563:3;13559:20;13556:1;13549:31;13603:4;13600:1;13593:15;13631:4;13628:1;13621:15;13485:161;;13272:380;;;:::o;13783:185::-;13825:3;13863:5;13857:12;13878:52;13923:6;13918:3;13911:4;13904:5;13900:16;13878:52;:::i;:::-;13946:16;;;;;13783:185;-1:-1:-1;;13783:185:1:o;13973:1174::-;14149:3;14178:1;14211:6;14205:13;14241:3;14263:1;14291:9;14287:2;14283:18;14273:28;;14351:2;14340:9;14336:18;14373;14363:61;;14417:4;14409:6;14405:17;14395:27;;14363:61;14443:2;14491;14483:6;14480:14;14460:18;14457:38;14454:165;;-1:-1:-1;;;14518:33:1;;14574:4;14571:1;14564:15;14604:4;14525:3;14592:17;14454:165;14635:18;14662:104;;;;14780:1;14775:320;;;;14628:467;;14662:104;-1:-1:-1;;14695:24:1;;14683:37;;14740:16;;;;-1:-1:-1;14662:104:1;;14775:320;13730:1;13723:14;;;13767:4;13754:18;;14870:1;14884:165;14898:6;14895:1;14892:13;14884:165;;;14976:14;;14963:11;;;14956:35;15019:16;;;;14913:10;;14884:165;;;14888:3;;15078:6;15073:3;15069:16;15062:23;;14628:467;;;;;;;15111:30;15137:3;15129:6;15111:30;:::i;:::-;15104:37;13973:1174;-1:-1:-1;;;;;13973:1174:1:o;15571:356::-;15773:2;15755:21;;;15792:18;;;15785:30;15851:34;15846:2;15831:18;;15824:62;15918:2;15903:18;;15571:356::o;17971:128::-;18011:3;18042:1;18038:6;18035:1;18032:13;18029:39;;;18048:18;;:::i;:::-;-1:-1:-1;18084:9:1;;17971:128::o;18357:217::-;18397:1;18423;18413:132;;18467:10;18462:3;18458:20;18455:1;18448:31;18502:4;18499:1;18492:15;18530:4;18527:1;18520:15;18413:132;-1:-1:-1;18559:9:1;;18357:217::o;18579:125::-;18619:4;18647:1;18644;18641:8;18638:34;;;18652:18;;:::i;:::-;-1:-1:-1;18689:9:1;;18579:125::o;18709:168::-;18749:7;18815:1;18811;18807:6;18803:14;18800:1;18797:21;18792:1;18785:9;18778:17;18774:45;18771:71;;;18822:18;;:::i;:::-;-1:-1:-1;18862:9:1;;18709:168::o;18882:204::-;18920:3;18956:4;18953:1;18949:12;18988:4;18985:1;18981:12;19023:3;19017:4;19013:14;19008:3;19005:23;19002:49;;;19031:18;;:::i;:::-;19067:13;;18882:204;-1:-1:-1;;;18882:204:1:o;19500:401::-;19702:2;19684:21;;;19741:2;19721:18;;;19714:30;19780:34;19775:2;19760:18;;19753:62;-1:-1:-1;;;19846:2:1;19831:18;;19824:35;19891:3;19876:19;;19500:401::o;19906:406::-;20108:2;20090:21;;;20147:2;20127:18;;;20120:30;20186:34;20181:2;20166:18;;20159:62;-1:-1:-1;;;20252:2:1;20237:18;;20230:40;20302:3;20287:19;;19906:406::o;20317:465::-;20574:2;20563:9;20556:21;20537:4;20600:56;20652:2;20641:9;20637:18;20629:6;20600:56;:::i;:::-;20704:9;20696:6;20692:22;20687:2;20676:9;20672:18;20665:50;20732:44;20769:6;20761;20732:44;:::i;20787:572::-;-1:-1:-1;;;;;21084:15:1;;;21066:34;;21136:15;;21131:2;21116:18;;21109:43;21183:2;21168:18;;21161:34;;;21226:2;21211:18;;21204:34;;;21046:3;21269;21254:19;;21247:32;;;21009:4;;21296:57;;21333:19;;21325:6;21296:57;:::i;:::-;21288:65;20787:572;-1:-1:-1;;;;;;;20787:572:1:o;21364:249::-;21433:6;21486:2;21474:9;21465:7;21461:23;21457:32;21454:52;;;21502:1;21499;21492:12;21454:52;21534:9;21528:16;21553:30;21577:5;21553:30;:::i;21618:179::-;21653:3;21695:1;21677:16;21674:23;21671:120;;;21741:1;21738;21735;21720:23;-1:-1:-1;21778:1:1;21772:8;21767:3;21763:18;21671:120;21618:179;:::o;21802:671::-;21841:3;21883:4;21865:16;21862:26;21859:39;;;21802:671;:::o;21859:39::-;21925:2;21919:9;-1:-1:-1;;21990:16:1;21986:25;;21983:1;21919:9;21962:50;22041:4;22035:11;22065:16;22100:18;22171:2;22164:4;22156:6;22152:17;22149:25;22144:2;22136:6;22133:14;22130:45;22127:58;;;22178:5;;;;;21802:671;:::o;22127:58::-;22215:6;22209:4;22205:17;22194:28;;22251:3;22245:10;22278:2;22270:6;22267:14;22264:27;;;22284:5;;;;;;21802:671;:::o;22264:27::-;22368:2;22349:16;22343:4;22339:27;22335:36;22328:4;22319:6;22314:3;22310:16;22306:27;22303:69;22300:82;;;22375:5;;;;;;21802:671;:::o;22300:82::-;22391:57;22442:4;22433:6;22425;22421:19;22417:30;22411:4;22391:57;:::i;:::-;-1:-1:-1;22464:3:1;;21802:671;-1:-1:-1;;;;;21802:671:1:o;22899:404::-;23101:2;23083:21;;;23140:2;23120:18;;;23113:30;23179:34;23174:2;23159:18;;23152:62;-1:-1:-1;;;23245:2:1;23230:18;;23223:38;23293:3;23278:19;;22899:404::o;23308:838::-;-1:-1:-1;;;;;23705:15:1;;;23687:34;;23757:15;;23752:2;23737:18;;23730:43;23667:3;23804:2;23789:18;;23782:31;;;23630:4;;23836:57;;23873:19;;23865:6;23836:57;:::i;:::-;23941:9;23933:6;23929:22;23924:2;23913:9;23909:18;23902:50;23975:44;24012:6;24004;23975:44;:::i;:::-;23961:58;;24068:9;24060:6;24056:22;24050:3;24039:9;24035:19;24028:51;24096:44;24133:6;24125;24096:44;:::i;:::-;24088:52;23308:838;-1:-1:-1;;;;;;;;23308:838:1:o
Swarm Source
ipfs://59f42222769d512bbd2515a5f3e5851e33be4b5f79576008ed8d36819fdd552f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.