ERC-1155
Overview
Max Total Supply
681
Holders
677
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:
MIHMetaverseMuseumPass
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) /** * @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; } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) /** * @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. * * NOTE: 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. * * NOTE: 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) /** * @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); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) /** * @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 { _setApprovalForAll(_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 `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, 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 from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); 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: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.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.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; } } // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol) /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ 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]; } } } } // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // .----------------------------------------------------. // | .--------------------------------------------------. | // | | ____ ____ _____ ____ ____ | | // | | |_ \ / _| |_ _| |_ || _| | | // | | | \/ | | | | |__| | | | // | | | |\ /| | | | | __ | | | // | | _| |_\/_| |_ _| |_ _| | | |_ | | // | | |_____||_____| |_____| |____||____| | | // | | | | // | '--------------------------------------------------' | // '----------------------------------------------------' // __ __ _ __ __ _____ // | \/ | | | | \/ | | __ \ // | \ / | ___| |_ __ ___ _____ _ __ ___ ___ | \ / |_ _ ___ ___ _ _ _ __ ___ | |__) |_ _ ___ ___ // | |\/| |/ _ \ __/ _` \ \ / / _ \ '__/ __|/ _ \ | |\/| | | | / __|/ _ \ | | | '_ ` _ \ | ___/ _` / __/ __| // | | | | __/ || (_| |\ V / __/ | \__ \ __/ | | | | |_| \__ \ __/ |_| | | | | | | | | | (_| \__ \__ \ // |_| |_|\___|\__\__,_| \_/ \___|_| |___/\___| |_| |_|\__,_|___/\___|\__,_|_| |_| |_| |_| \__,_|___/___/ contract MIHMetaverseMuseumPass is ERC1155, ERC1155Supply, Ownable, Pausable { bytes32 public whitelistMerkleRoot = 0xba2b009da6c8eb40d494b6f56f5d99318344f3b0d469f368081f4b6b5ef13035; mapping(address => mapping(uint256 => bool)) private tokenClaimedByWallet; // Keep track of claimed tokens by wallet constructor() ERC1155("ipfs://QmZD4yfa7mBnVbxKABMZyAdVm7pt5aw1iKzhruPWGnQSxK/{id}.json") { } function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } function setWhitelistMerkleRoot(bytes32 newRoot) public onlyOwner { whitelistMerkleRoot = newRoot; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function claim(address account, uint256 tokenId, bytes32[] calldata proof) public payable whenNotPaused { require(!tokenClaimedByWallet[account][tokenId], "This account has already claimed a token."); require(MerkleProof.verify(proof, whitelistMerkleRoot, keccak256(abi.encodePacked(tokenId, account))), "This account is not allowed to mint requested token."); require(msg.value == 0.0, "Ether value sent is not correct."); _mint(account, tokenId, 1, ""); tokenClaimedByWallet[account][tokenId] = true; } function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal whenNotPaused override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040527fba2b009da6c8eb40d494b6f56f5d99318344f3b0d469f368081f4b6b5ef130356005553480156200003557600080fd5b506040518060600160405280603f815260200162002220603f91396200005b816200007a565b50620000673362000093565b6004805460ff60a01b19169055620001c8565b80516200008f906002906020840190620000e5565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f3906200018b565b90600052602060002090601f01602090048101928262000117576000855562000162565b82601f106200013257805160ff191683800117855562000162565b8280016001018555821562000162579182015b828111156200016257825182559160200191906001019062000145565b506200017092915062000174565b5090565b5b8082111562000170576000815560010162000175565b600181811c90821680620001a057607f821691505b60208210811415620001c257634e487b7160e01b600052602260045260246000fd5b50919050565b61204880620001d86000396000f3fe60806040526004361061011e5760003560e01c8063715018a6116100a0578063bd32fb6611610064578063bd32fb6614610320578063bd85b03914610340578063e985e9c51461036d578063f242432a146103b6578063f2fde38b146103d657600080fd5b8063715018a6146102985780638456cb59146102ad5780638da5cb5b146102c2578063a22cb465146102ea578063aa98e0c61461030a57600080fd5b80633d13f874116100e75780633d13f874146101f55780633f4ba83a146102085780634e1273f41461021d5780634f558e791461024a5780635c975abb1461027957600080fd5b8062fdd58e1461012357806301ffc9a71461015657806302fe5305146101865780630e89341c146101a85780632eb2c2d6146101d5575b600080fd5b34801561012f57600080fd5b5061014361013e3660046116d7565b6103f6565b6040519081526020015b60405180910390f35b34801561016257600080fd5b50610176610171366004611717565b61048d565b604051901515815260200161014d565b34801561019257600080fd5b506101a66101a13660046117dc565b6104df565b005b3480156101b457600080fd5b506101c86101c336600461182d565b610515565b60405161014d9190611893565b3480156101e157600080fd5b506101a66101f036600461195b565b6105a9565b6101a6610203366004611a05565b610640565b34801561021457600080fd5b506101a6610879565b34801561022957600080fd5b5061023d610238366004611a8f565b6108ad565b60405161014d9190611b95565b34801561025657600080fd5b5061017661026536600461182d565b600090815260036020526040902054151590565b34801561028557600080fd5b50600454600160a01b900460ff16610176565b3480156102a457600080fd5b506101a66109d7565b3480156102b957600080fd5b506101a6610a0b565b3480156102ce57600080fd5b506004546040516001600160a01b03909116815260200161014d565b3480156102f657600080fd5b506101a6610305366004611ba8565b610a3d565b34801561031657600080fd5b5061014360055481565b34801561032c57600080fd5b506101a661033b36600461182d565b610a4c565b34801561034c57600080fd5b5061014361035b36600461182d565b60009081526003602052604090205490565b34801561037957600080fd5b50610176610388366004611be4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156103c257600080fd5b506101a66103d1366004611c17565b610a7b565b3480156103e257600080fd5b506101a66103f1366004611c7c565b610b02565b60006001600160a01b0383166104675760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806104be57506001600160e01b031982166303a24d0760e21b145b806104d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146105095760405162461bcd60e51b815260040161045e90611c97565b61051281610b9a565b50565b60606002805461052490611ccc565b80601f016020809104026020016040519081016040528092919081815260200182805461055090611ccc565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105c557506105c58533610388565b61062c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161045e565b6106398585858585610bad565b5050505050565b600454600160a01b900460ff161561066a5760405162461bcd60e51b815260040161045e90611d07565b6001600160a01b038416600090815260066020908152604080832086845290915290205460ff16156106f05760405162461bcd60e51b815260206004820152602960248201527f54686973206163636f756e742068617320616c726561647920636c61696d65646044820152681030903a37b5b2b71760b91b606482015260840161045e565b6107748282808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060055460405190925061075991508790899060200191825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120610d98565b6107dd5760405162461bcd60e51b815260206004820152603460248201527f54686973206163636f756e74206973206e6f7420616c6c6f77656420746f206d60448201527334b73a103932b8bab2b9ba32b2103a37b5b2b71760611b606482015260840161045e565b341561082b5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161045e565b6108478484600160405180602001604052806000815250610dae565b50506001600160a01b03909116600090815260066020908152604080832093835292905220805460ff19166001179055565b6004546001600160a01b031633146108a35760405162461bcd60e51b815260040161045e90611c97565b6108ab610ebe565b565b606081518351146109125760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161045e565b6000835167ffffffffffffffff81111561092e5761092e61173b565b604051908082528060200260200182016040528015610957578160200160208202803683370190505b50905060005b84518110156109cf576109a285828151811061097b5761097b611d31565b602002602001015185838151811061099557610995611d31565b60200260200101516103f6565b8282815181106109b4576109b4611d31565b60209081029190910101526109c881611d5d565b905061095d565b509392505050565b6004546001600160a01b03163314610a015760405162461bcd60e51b815260040161045e90611c97565b6108ab6000610f5b565b6004546001600160a01b03163314610a355760405162461bcd60e51b815260040161045e90611c97565b6108ab610fad565b610a48338383611012565b5050565b6004546001600160a01b03163314610a765760405162461bcd60e51b815260040161045e90611c97565b600555565b6001600160a01b038516331480610a975750610a978533610388565b610af55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161045e565b61063985858585856110f3565b6004546001600160a01b03163314610b2c5760405162461bcd60e51b815260040161045e90611c97565b6001600160a01b038116610b915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045e565b61051281610f5b565b8051610a48906002906020840190611622565b8151835114610c0f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161045e565b6001600160a01b038416610c355760405162461bcd60e51b815260040161045e90611d78565b33610c44818787878787611210565b60005b8451811015610d2a576000858281518110610c6457610c64611d31565b602002602001015190506000858381518110610c8257610c82611d31565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610cd25760405162461bcd60e51b815260040161045e90611dbd565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d0f908490611e07565b9250508190555050505080610d2390611d5d565b9050610c47565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d7a929190611e1f565b60405180910390a4610d90818787878787611248565b505050505050565b600082610da585846113a4565b14949350505050565b6001600160a01b038416610e0e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161045e565b33610e2e81600087610e1f88611410565b610e2888611410565b87611210565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e5e908490611e07565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46106398160008787878761145b565b600454600160a01b900460ff16610f0e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161045e565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600454600160a01b900460ff1615610fd75760405162461bcd60e51b815260040161045e90611d07565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f3e3390565b816001600160a01b0316836001600160a01b031614156110865760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161045e565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166111195760405162461bcd60e51b815260040161045e90611d78565b33611129818787610e1f88611410565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561116a5760405162461bcd60e51b815260040161045e90611dbd565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906111a7908490611e07565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461120782888888888861145b565b50505050505050565b600454600160a01b900460ff161561123a5760405162461bcd60e51b815260040161045e90611d07565b610d90868686868686611516565b6001600160a01b0384163b15610d905760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061128c9089908990889088908890600401611e4d565b6020604051808303816000875af19250505080156112c7575060408051601f3d908101601f191682019092526112c491810190611eab565b60015b611374576112d3611ec8565b806308c379a0141561130d57506112e8611ee4565b806112f3575061130f565b8060405162461bcd60e51b815260040161045e9190611893565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161045e565b6001600160e01b0319811663bc197c8160e01b146112075760405162461bcd60e51b815260040161045e90611f6e565b600081815b84518110156109cf5760008582815181106113c6576113c6611d31565b602002602001015190508083116113ec57600083815260208290526040902092506113fd565b600081815260208490526040902092505b508061140881611d5d565b9150506113a9565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061144a5761144a611d31565b602090810291909101015292915050565b6001600160a01b0384163b15610d905760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061149f9089908990889088908890600401611fb6565b6020604051808303816000875af19250505080156114da575060408051601f3d908101601f191682019092526114d791810190611eab565b60015b6114e6576112d3611ec8565b6001600160e01b0319811663f23a6e6160e01b146112075760405162461bcd60e51b815260040161045e90611f6e565b6001600160a01b03851661159d5760005b835181101561159b5782818151811061154257611542611d31565b60200260200101516003600086848151811061156057611560611d31565b6020026020010151815260200190815260200160002060008282546115859190611e07565b90915550611594905081611d5d565b9050611527565b505b6001600160a01b038416610d905760005b8351811015611207578281815181106115c9576115c9611d31565b6020026020010151600360008684815181106115e7576115e7611d31565b60200260200101518152602001908152602001600020600082825461160c9190611ffb565b9091555061161b905081611d5d565b90506115ae565b82805461162e90611ccc565b90600052602060002090601f0160209004810192826116505760008555611696565b82601f1061166957805160ff1916838001178555611696565b82800160010185558215611696579182015b8281111561169657825182559160200191906001019061167b565b506116a29291506116a6565b5090565b5b808211156116a257600081556001016116a7565b80356001600160a01b03811681146116d257600080fd5b919050565b600080604083850312156116ea57600080fd5b6116f3836116bb565b946020939093013593505050565b6001600160e01b03198116811461051257600080fd5b60006020828403121561172957600080fd5b813561173481611701565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156117775761177761173b565b6040525050565b600067ffffffffffffffff8311156117985761179861173b565b6040516117af601f8501601f191660200182611751565b8091508381528484840111156117c457600080fd5b83836020830137600060208583010152509392505050565b6000602082840312156117ee57600080fd5b813567ffffffffffffffff81111561180557600080fd5b8201601f8101841361181657600080fd5b6118258482356020840161177e565b949350505050565b60006020828403121561183f57600080fd5b5035919050565b6000815180845260005b8181101561186c57602081850181015186830182015201611850565b8181111561187e576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006117346020830184611846565b600067ffffffffffffffff8211156118c0576118c061173b565b5060051b60200190565b600082601f8301126118db57600080fd5b813560206118e8826118a6565b6040516118f58282611751565b83815260059390931b850182019282810191508684111561191557600080fd5b8286015b848110156119305780358352918301918301611919565b509695505050505050565b600082601f83011261194c57600080fd5b6117348383356020850161177e565b600080600080600060a0868803121561197357600080fd5b61197c866116bb565b945061198a602087016116bb565b9350604086013567ffffffffffffffff808211156119a757600080fd5b6119b389838a016118ca565b945060608801359150808211156119c957600080fd5b6119d589838a016118ca565b935060808801359150808211156119eb57600080fd5b506119f88882890161193b565b9150509295509295909350565b60008060008060608587031215611a1b57600080fd5b611a24856116bb565b935060208501359250604085013567ffffffffffffffff80821115611a4857600080fd5b818701915087601f830112611a5c57600080fd5b813581811115611a6b57600080fd5b8860208260051b8501011115611a8057600080fd5b95989497505060200194505050565b60008060408385031215611aa257600080fd5b823567ffffffffffffffff80821115611aba57600080fd5b818501915085601f830112611ace57600080fd5b81356020611adb826118a6565b604051611ae88282611751565b83815260059390931b8501820192828101915089841115611b0857600080fd5b948201945b83861015611b2d57611b1e866116bb565b82529482019490820190611b0d565b96505086013592505080821115611b4357600080fd5b50611b50858286016118ca565b9150509250929050565b600081518084526020808501945080840160005b83811015611b8a57815187529582019590820190600101611b6e565b509495945050505050565b6020815260006117346020830184611b5a565b60008060408385031215611bbb57600080fd5b611bc4836116bb565b915060208301358015158114611bd957600080fd5b809150509250929050565b60008060408385031215611bf757600080fd5b611c00836116bb565b9150611c0e602084016116bb565b90509250929050565b600080600080600060a08688031215611c2f57600080fd5b611c38866116bb565b9450611c46602087016116bb565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c7057600080fd5b6119f88882890161193b565b600060208284031215611c8e57600080fd5b611734826116bb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ce057607f821691505b60208210811415611d0157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611d7157611d71611d47565b5060010190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611e1a57611e1a611d47565b500190565b604081526000611e326040830185611b5a565b8281036020840152611e448185611b5a565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611e7990830186611b5a565b8281036060840152611e8b8186611b5a565b90508281036080840152611e9f8185611846565b98975050505050505050565b600060208284031215611ebd57600080fd5b815161173481611701565b600060033d1115611ee15760046000803e5060005160e01c5b90565b600060443d1015611ef25790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611f2257505050505090565b8285019150815181811115611f3a5750505050505090565b843d8701016020828501011115611f545750505050505090565b611f6360208286010187611751565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611ff090830184611846565b979650505050505050565b60008282101561200d5761200d611d47565b50039056fea26469706673582212208d2d3a2c54e29f42f90be10840b71bedf2ed6a37cd7f90b9cfa6de998dbd16f764736f6c634300080a0033697066733a2f2f516d5a4434796661376d426e5662784b41424d5a794164566d37707435617731694b7a6872755057476e5153784b2f7b69647d2e6a736f6e
Deployed Bytecode
0x60806040526004361061011e5760003560e01c8063715018a6116100a0578063bd32fb6611610064578063bd32fb6614610320578063bd85b03914610340578063e985e9c51461036d578063f242432a146103b6578063f2fde38b146103d657600080fd5b8063715018a6146102985780638456cb59146102ad5780638da5cb5b146102c2578063a22cb465146102ea578063aa98e0c61461030a57600080fd5b80633d13f874116100e75780633d13f874146101f55780633f4ba83a146102085780634e1273f41461021d5780634f558e791461024a5780635c975abb1461027957600080fd5b8062fdd58e1461012357806301ffc9a71461015657806302fe5305146101865780630e89341c146101a85780632eb2c2d6146101d5575b600080fd5b34801561012f57600080fd5b5061014361013e3660046116d7565b6103f6565b6040519081526020015b60405180910390f35b34801561016257600080fd5b50610176610171366004611717565b61048d565b604051901515815260200161014d565b34801561019257600080fd5b506101a66101a13660046117dc565b6104df565b005b3480156101b457600080fd5b506101c86101c336600461182d565b610515565b60405161014d9190611893565b3480156101e157600080fd5b506101a66101f036600461195b565b6105a9565b6101a6610203366004611a05565b610640565b34801561021457600080fd5b506101a6610879565b34801561022957600080fd5b5061023d610238366004611a8f565b6108ad565b60405161014d9190611b95565b34801561025657600080fd5b5061017661026536600461182d565b600090815260036020526040902054151590565b34801561028557600080fd5b50600454600160a01b900460ff16610176565b3480156102a457600080fd5b506101a66109d7565b3480156102b957600080fd5b506101a6610a0b565b3480156102ce57600080fd5b506004546040516001600160a01b03909116815260200161014d565b3480156102f657600080fd5b506101a6610305366004611ba8565b610a3d565b34801561031657600080fd5b5061014360055481565b34801561032c57600080fd5b506101a661033b36600461182d565b610a4c565b34801561034c57600080fd5b5061014361035b36600461182d565b60009081526003602052604090205490565b34801561037957600080fd5b50610176610388366004611be4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156103c257600080fd5b506101a66103d1366004611c17565b610a7b565b3480156103e257600080fd5b506101a66103f1366004611c7c565b610b02565b60006001600160a01b0383166104675760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806104be57506001600160e01b031982166303a24d0760e21b145b806104d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146105095760405162461bcd60e51b815260040161045e90611c97565b61051281610b9a565b50565b60606002805461052490611ccc565b80601f016020809104026020016040519081016040528092919081815260200182805461055090611ccc565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105c557506105c58533610388565b61062c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161045e565b6106398585858585610bad565b5050505050565b600454600160a01b900460ff161561066a5760405162461bcd60e51b815260040161045e90611d07565b6001600160a01b038416600090815260066020908152604080832086845290915290205460ff16156106f05760405162461bcd60e51b815260206004820152602960248201527f54686973206163636f756e742068617320616c726561647920636c61696d65646044820152681030903a37b5b2b71760b91b606482015260840161045e565b6107748282808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060055460405190925061075991508790899060200191825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120610d98565b6107dd5760405162461bcd60e51b815260206004820152603460248201527f54686973206163636f756e74206973206e6f7420616c6c6f77656420746f206d60448201527334b73a103932b8bab2b9ba32b2103a37b5b2b71760611b606482015260840161045e565b341561082b5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161045e565b6108478484600160405180602001604052806000815250610dae565b50506001600160a01b03909116600090815260066020908152604080832093835292905220805460ff19166001179055565b6004546001600160a01b031633146108a35760405162461bcd60e51b815260040161045e90611c97565b6108ab610ebe565b565b606081518351146109125760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161045e565b6000835167ffffffffffffffff81111561092e5761092e61173b565b604051908082528060200260200182016040528015610957578160200160208202803683370190505b50905060005b84518110156109cf576109a285828151811061097b5761097b611d31565b602002602001015185838151811061099557610995611d31565b60200260200101516103f6565b8282815181106109b4576109b4611d31565b60209081029190910101526109c881611d5d565b905061095d565b509392505050565b6004546001600160a01b03163314610a015760405162461bcd60e51b815260040161045e90611c97565b6108ab6000610f5b565b6004546001600160a01b03163314610a355760405162461bcd60e51b815260040161045e90611c97565b6108ab610fad565b610a48338383611012565b5050565b6004546001600160a01b03163314610a765760405162461bcd60e51b815260040161045e90611c97565b600555565b6001600160a01b038516331480610a975750610a978533610388565b610af55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161045e565b61063985858585856110f3565b6004546001600160a01b03163314610b2c5760405162461bcd60e51b815260040161045e90611c97565b6001600160a01b038116610b915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045e565b61051281610f5b565b8051610a48906002906020840190611622565b8151835114610c0f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161045e565b6001600160a01b038416610c355760405162461bcd60e51b815260040161045e90611d78565b33610c44818787878787611210565b60005b8451811015610d2a576000858281518110610c6457610c64611d31565b602002602001015190506000858381518110610c8257610c82611d31565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610cd25760405162461bcd60e51b815260040161045e90611dbd565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d0f908490611e07565b9250508190555050505080610d2390611d5d565b9050610c47565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d7a929190611e1f565b60405180910390a4610d90818787878787611248565b505050505050565b600082610da585846113a4565b14949350505050565b6001600160a01b038416610e0e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161045e565b33610e2e81600087610e1f88611410565b610e2888611410565b87611210565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e5e908490611e07565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46106398160008787878761145b565b600454600160a01b900460ff16610f0e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161045e565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600454600160a01b900460ff1615610fd75760405162461bcd60e51b815260040161045e90611d07565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f3e3390565b816001600160a01b0316836001600160a01b031614156110865760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161045e565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166111195760405162461bcd60e51b815260040161045e90611d78565b33611129818787610e1f88611410565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561116a5760405162461bcd60e51b815260040161045e90611dbd565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906111a7908490611e07565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461120782888888888861145b565b50505050505050565b600454600160a01b900460ff161561123a5760405162461bcd60e51b815260040161045e90611d07565b610d90868686868686611516565b6001600160a01b0384163b15610d905760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061128c9089908990889088908890600401611e4d565b6020604051808303816000875af19250505080156112c7575060408051601f3d908101601f191682019092526112c491810190611eab565b60015b611374576112d3611ec8565b806308c379a0141561130d57506112e8611ee4565b806112f3575061130f565b8060405162461bcd60e51b815260040161045e9190611893565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161045e565b6001600160e01b0319811663bc197c8160e01b146112075760405162461bcd60e51b815260040161045e90611f6e565b600081815b84518110156109cf5760008582815181106113c6576113c6611d31565b602002602001015190508083116113ec57600083815260208290526040902092506113fd565b600081815260208490526040902092505b508061140881611d5d565b9150506113a9565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061144a5761144a611d31565b602090810291909101015292915050565b6001600160a01b0384163b15610d905760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061149f9089908990889088908890600401611fb6565b6020604051808303816000875af19250505080156114da575060408051601f3d908101601f191682019092526114d791810190611eab565b60015b6114e6576112d3611ec8565b6001600160e01b0319811663f23a6e6160e01b146112075760405162461bcd60e51b815260040161045e90611f6e565b6001600160a01b03851661159d5760005b835181101561159b5782818151811061154257611542611d31565b60200260200101516003600086848151811061156057611560611d31565b6020026020010151815260200190815260200160002060008282546115859190611e07565b90915550611594905081611d5d565b9050611527565b505b6001600160a01b038416610d905760005b8351811015611207578281815181106115c9576115c9611d31565b6020026020010151600360008684815181106115e7576115e7611d31565b60200260200101518152602001908152602001600020600082825461160c9190611ffb565b9091555061161b905081611d5d565b90506115ae565b82805461162e90611ccc565b90600052602060002090601f0160209004810192826116505760008555611696565b82601f1061166957805160ff1916838001178555611696565b82800160010185558215611696579182015b8281111561169657825182559160200191906001019061167b565b506116a29291506116a6565b5090565b5b808211156116a257600081556001016116a7565b80356001600160a01b03811681146116d257600080fd5b919050565b600080604083850312156116ea57600080fd5b6116f3836116bb565b946020939093013593505050565b6001600160e01b03198116811461051257600080fd5b60006020828403121561172957600080fd5b813561173481611701565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156117775761177761173b565b6040525050565b600067ffffffffffffffff8311156117985761179861173b565b6040516117af601f8501601f191660200182611751565b8091508381528484840111156117c457600080fd5b83836020830137600060208583010152509392505050565b6000602082840312156117ee57600080fd5b813567ffffffffffffffff81111561180557600080fd5b8201601f8101841361181657600080fd5b6118258482356020840161177e565b949350505050565b60006020828403121561183f57600080fd5b5035919050565b6000815180845260005b8181101561186c57602081850181015186830182015201611850565b8181111561187e576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006117346020830184611846565b600067ffffffffffffffff8211156118c0576118c061173b565b5060051b60200190565b600082601f8301126118db57600080fd5b813560206118e8826118a6565b6040516118f58282611751565b83815260059390931b850182019282810191508684111561191557600080fd5b8286015b848110156119305780358352918301918301611919565b509695505050505050565b600082601f83011261194c57600080fd5b6117348383356020850161177e565b600080600080600060a0868803121561197357600080fd5b61197c866116bb565b945061198a602087016116bb565b9350604086013567ffffffffffffffff808211156119a757600080fd5b6119b389838a016118ca565b945060608801359150808211156119c957600080fd5b6119d589838a016118ca565b935060808801359150808211156119eb57600080fd5b506119f88882890161193b565b9150509295509295909350565b60008060008060608587031215611a1b57600080fd5b611a24856116bb565b935060208501359250604085013567ffffffffffffffff80821115611a4857600080fd5b818701915087601f830112611a5c57600080fd5b813581811115611a6b57600080fd5b8860208260051b8501011115611a8057600080fd5b95989497505060200194505050565b60008060408385031215611aa257600080fd5b823567ffffffffffffffff80821115611aba57600080fd5b818501915085601f830112611ace57600080fd5b81356020611adb826118a6565b604051611ae88282611751565b83815260059390931b8501820192828101915089841115611b0857600080fd5b948201945b83861015611b2d57611b1e866116bb565b82529482019490820190611b0d565b96505086013592505080821115611b4357600080fd5b50611b50858286016118ca565b9150509250929050565b600081518084526020808501945080840160005b83811015611b8a57815187529582019590820190600101611b6e565b509495945050505050565b6020815260006117346020830184611b5a565b60008060408385031215611bbb57600080fd5b611bc4836116bb565b915060208301358015158114611bd957600080fd5b809150509250929050565b60008060408385031215611bf757600080fd5b611c00836116bb565b9150611c0e602084016116bb565b90509250929050565b600080600080600060a08688031215611c2f57600080fd5b611c38866116bb565b9450611c46602087016116bb565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c7057600080fd5b6119f88882890161193b565b600060208284031215611c8e57600080fd5b611734826116bb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ce057607f821691505b60208210811415611d0157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611d7157611d71611d47565b5060010190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611e1a57611e1a611d47565b500190565b604081526000611e326040830185611b5a565b8281036020840152611e448185611b5a565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611e7990830186611b5a565b8281036060840152611e8b8186611b5a565b90508281036080840152611e9f8185611846565b98975050505050505050565b600060208284031215611ebd57600080fd5b815161173481611701565b600060033d1115611ee15760046000803e5060005160e01c5b90565b600060443d1015611ef25790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611f2257505050505090565b8285019150815181811115611f3a5750505050505090565b843d8701016020828501011115611f545750505050505090565b611f6360208286010187611751565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611ff090830184611846565b979650505050505050565b60008282101561200d5761200d611d47565b50039056fea26469706673582212208d2d3a2c54e29f42f90be10840b71bedf2ed6a37cd7f90b9cfa6de998dbd16f764736f6c634300080a0033
Deployed Bytecode Sourcemap
43863:1677:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20131:231;;;;;;;;;;-1:-1:-1;20131:231:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;20131:231:0;;;;;;;;19154:310;;;;;;;;;;-1:-1:-1;19154:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;19154:310:0;1019:187:1;44299:94:0;;;;;;;;;;-1:-1:-1;44299:94:0;;;;;:::i;:::-;;:::i;:::-;;19875:105;;;;;;;;;;-1:-1:-1;19875:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22070:442::-;;;;;;;;;;-1:-1:-1;22070:442:0;;;;;:::i;:::-;;:::i;44680:561::-;;;;;;:::i;:::-;;:::i;44602:70::-;;;;;;;;;;;;;:::i;20528:524::-;;;;;;;;;;-1:-1:-1;20528:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34460:122::-;;;;;;;;;;-1:-1:-1;34460:122:0;;;;;:::i;:::-;34517:4;34338:16;;;:12;:16;;;;;;-1:-1:-1;;;34460:122:0;41093:86;;;;;;;;;;-1:-1:-1;41164:7:0;;-1:-1:-1;;;41164:7:0;;;;41093:86;;39235:103;;;;;;;;;;;;;:::i;44528:66::-;;;;;;;;;;;;;:::i;38584:87::-;;;;;;;;;;-1:-1:-1;38657:6:0;;38584:87;;-1:-1:-1;;;;;38657:6:0;;;8332:51:1;;8320:2;8305:18;38584:87:0;8186:203:1;21125:155:0;;;;;;;;;;-1:-1:-1;21125:155:0;;;;;:::i;:::-;;:::i;43948:103::-;;;;;;;;;;;;;;;;44401:119;;;;;;;;;;-1:-1:-1;44401:119:0;;;;;:::i;:::-;;:::i;34249:113::-;;;;;;;;;;-1:-1:-1;34249:113:0;;;;;:::i;:::-;34311:7;34338:16;;;:12;:16;;;;;;;34249:113;21352:168;;;;;;;;;;-1:-1:-1;21352:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;21475:27:0;;;21451:4;21475:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21352:168;21592:401;;;;;;;;;;-1:-1:-1;21592:401:0;;;;;:::i;:::-;;:::i;39493:201::-;;;;;;;;;;-1:-1:-1;39493:201:0;;;;;:::i;:::-;;:::i;20131:231::-;20217:7;-1:-1:-1;;;;;20245:21:0;;20237:77;;;;-1:-1:-1;;;20237:77:0;;10382:2:1;20237:77:0;;;10364:21:1;10421:2;10401:18;;;10394:30;10460:34;10440:18;;;10433:62;-1:-1:-1;;;10511:18:1;;;10504:41;10562:19;;20237:77:0;;;;;;;;;-1:-1:-1;20332:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;20332:22:0;;;;;;;;;;;;20131:231::o;19154:310::-;19256:4;-1:-1:-1;;;;;;19293:41:0;;-1:-1:-1;;;19293:41:0;;:110;;-1:-1:-1;;;;;;;19351:52:0;;-1:-1:-1;;;19351:52:0;19293:110;:163;;;-1:-1:-1;;;;;;;;;;18125:40:0;;;19420:36;19273:183;19154:310;-1:-1:-1;;19154:310:0:o;44299:94::-;38657:6;;-1:-1:-1;;;;;38657:6:0;17115:10;38804:23;38796:68;;;;-1:-1:-1;;;38796:68:0;;;;;;;:::i;:::-;44370:15:::1;44378:6;44370:7;:15::i;:::-;44299:94:::0;:::o;19875:105::-;19935:13;19968:4;19961:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19875:105;;;:::o;22070:442::-;-1:-1:-1;;;;;22303:20:0;;17115:10;22303:20;;:60;;-1:-1:-1;22327:36:0;22344:4;17115:10;21352:168;:::i;22327:36::-;22281:160;;;;-1:-1:-1;;;22281:160:0;;11540:2:1;22281:160:0;;;11522:21:1;11579:2;11559:18;;;11552:30;11618:34;11598:18;;;11591:62;-1:-1:-1;;;11669:18:1;;;11662:48;11727:19;;22281:160:0;11338:414:1;22281:160:0;22452:52;22475:4;22481:2;22485:3;22490:7;22499:4;22452:22;:52::i;:::-;22070:442;;;;;:::o;44680:561::-;41164:7;;-1:-1:-1;;;41164:7:0;;;;41418:9;41410:38;;;;-1:-1:-1;;;41410:38:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44809:29:0;::::1;;::::0;;;:20:::1;:29;::::0;;;;;;;:38;;;;;;;;;::::1;;44808:39;44800:93;;;::::0;-1:-1:-1;;;44800:93:0;;12304:2:1;44800:93:0::1;::::0;::::1;12286:21:1::0;12343:2;12323:18;;;12316:30;12382:34;12362:18;;;12355:62;-1:-1:-1;;;12433:18:1;;;12426:39;12482:19;;44800:93:0::1;12102:405:1::0;44800:93:0::1;44912;44931:5;;44912:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;44938:19:0::1;::::0;44969:34:::1;::::0;44938:19;;-1:-1:-1;44969:34:0::1;::::0;-1:-1:-1;44986:7:0;;44995;;44969:34:::1;;12669:19:1::0;;;12726:2;12722:15;-1:-1:-1;;12718:53:1;12713:2;12704:12;;12697:75;12797:2;12788:12;;12512:294;44969:34:0::1;;;;;;;;;;;;;44959:45;;;;;;44912:18;:93::i;:::-;44904:158;;;::::0;-1:-1:-1;;;44904:158:0;;13013:2:1;44904:158:0::1;::::0;::::1;12995:21:1::0;13052:2;13032:18;;;13025:30;13091:34;13071:18;;;13064:62;-1:-1:-1;;;13142:18:1;;;13135:50;13202:19;;44904:158:0::1;12811:416:1::0;44904:158:0::1;45081:9;:16:::0;45073:61:::1;;;::::0;-1:-1:-1;;;45073:61:0;;13434:2:1;45073:61:0::1;::::0;::::1;13416:21:1::0;;;13453:18;;;13446:30;13512:34;13492:18;;;13485:62;13564:18;;45073:61:0::1;13232:356:1::0;45073:61:0::1;45147:30;45153:7;45162;45171:1;45147:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;-1:-1:-1::0;;;;;;;45188:29:0;;::::1;;::::0;;;:20:::1;:29;::::0;;;;;;;:38;;;;;;;:45;;-1:-1:-1;;45188:45:0::1;45229:4;45188:45;::::0;;44680:561::o;44602:70::-;38657:6;;-1:-1:-1;;;;;38657:6:0;17115:10;38804:23;38796:68;;;;-1:-1:-1;;;38796:68:0;;;;;;;:::i;:::-;44654:10:::1;:8;:10::i;:::-;44602:70::o:0;20528:524::-;20684:16;20745:3;:10;20726:8;:15;:29;20718:83;;;;-1:-1:-1;;;20718:83:0;;13795:2:1;20718:83:0;;;13777:21:1;13834:2;13814:18;;;13807:30;13873:34;13853:18;;;13846:62;-1:-1:-1;;;13924:18:1;;;13917:39;13973:19;;20718:83:0;13593:405:1;20718:83:0;20814:30;20861:8;:15;20847:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20847:30:0;;20814:63;;20895:9;20890:122;20914:8;:15;20910:1;:19;20890:122;;;20970:30;20980:8;20989:1;20980:11;;;;;;;;:::i;:::-;;;;;;;20993:3;20997:1;20993:6;;;;;;;;:::i;:::-;;;;;;;20970:9;:30::i;:::-;20951:13;20965:1;20951:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;20931:3;;;:::i;:::-;;;20890:122;;;-1:-1:-1;21031:13:0;20528:524;-1:-1:-1;;;20528:524:0:o;39235:103::-;38657:6;;-1:-1:-1;;;;;38657:6:0;17115:10;38804:23;38796:68;;;;-1:-1:-1;;;38796:68:0;;;;;;;:::i;:::-;39300:30:::1;39327:1;39300:18;:30::i;44528:66::-:0;38657:6;;-1:-1:-1;;;;;38657:6:0;17115:10;38804:23;38796:68;;;;-1:-1:-1;;;38796:68:0;;;;;;;:::i;:::-;44578:8:::1;:6;:8::i;21125:155::-:0;21220:52;17115:10;21253:8;21263;21220:18;:52::i;:::-;21125:155;;:::o;44401:119::-;38657:6;;-1:-1:-1;;;;;38657:6:0;17115:10;38804:23;38796:68;;;;-1:-1:-1;;;38796:68:0;;;;;;;:::i;:::-;44483:19:::1;:29:::0;44401:119::o;21592:401::-;-1:-1:-1;;;;;21800:20:0;;17115:10;21800:20;;:60;;-1:-1:-1;21824:36:0;21841:4;17115:10;21352:168;:::i;21824:36::-;21778:151;;;;-1:-1:-1;;;21778:151:0;;14609:2:1;21778:151:0;;;14591:21:1;14648:2;14628:18;;;14621:30;14687:34;14667:18;;;14660:62;-1:-1:-1;;;14738:18:1;;;14731:39;14787:19;;21778:151:0;14407:405:1;21778:151:0;21940:45;21958:4;21964:2;21968;21972:6;21980:4;21940:17;:45::i;39493:201::-;38657:6;;-1:-1:-1;;;;;38657:6:0;17115:10;38804:23;38796:68;;;;-1:-1:-1;;;38796:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39582:22:0;::::1;39574:73;;;::::0;-1:-1:-1;;;39574:73:0;;15019:2:1;39574:73:0::1;::::0;::::1;15001:21:1::0;15058:2;15038:18;;;15031:30;15097:34;15077:18;;;15070:62;-1:-1:-1;;;15148:18:1;;;15141:36;15194:19;;39574:73:0::1;14817:402:1::0;39574:73:0::1;39658:28;39677:8;39658:18;:28::i;26072:88::-:0;26139:13;;;;:4;;:13;;;;;:::i;24154:1074::-;24381:7;:14;24367:3;:10;:28;24359:81;;;;-1:-1:-1;;;24359:81:0;;15426:2:1;24359:81:0;;;15408:21:1;15465:2;15445:18;;;15438:30;15504:34;15484:18;;;15477:62;-1:-1:-1;;;15555:18:1;;;15548:38;15603:19;;24359:81:0;15224:404:1;24359:81:0;-1:-1:-1;;;;;24459:16:0;;24451:66;;;;-1:-1:-1;;;24451:66:0;;;;;;;:::i;:::-;17115:10;24574:60;17115:10;24605:4;24611:2;24615:3;24620:7;24629:4;24574:20;:60::i;:::-;24652:9;24647:421;24671:3;:10;24667:1;:14;24647:421;;;24703:10;24716:3;24720:1;24716:6;;;;;;;;:::i;:::-;;;;;;;24703:19;;24737:14;24754:7;24762:1;24754:10;;;;;;;;:::i;:::-;;;;;;;;;;;;24781:19;24803:13;;;;;;;;;;-1:-1:-1;;;;;24803:19:0;;;;;;;;;;;;24754:10;;-1:-1:-1;24845:21:0;;;;24837:76;;;;-1:-1:-1;;;24837:76:0;;;;;;;:::i;:::-;24957:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24957:19:0;;;;;;;;;;24979:20;;;24957:42;;25029:17;;;;;;;:27;;24979:20;;24957:9;25029:27;;24979:20;;25029:27;:::i;:::-;;;;;;;;24688:380;;;24683:3;;;;:::i;:::-;;;24647:421;;;;25115:2;-1:-1:-1;;;;;25085:47:0;25109:4;-1:-1:-1;;;;;25085:47:0;25099:8;-1:-1:-1;;;;;25085:47:0;;25119:3;25124:7;25085:47;;;;;;;:::i;:::-;;;;;;;;25145:75;25181:8;25191:4;25197:2;25201:3;25206:7;25215:4;25145:35;:75::i;:::-;24348:880;24154:1074;;;;;:::o;36142:190::-;36267:4;36320;36291:25;36304:5;36311:4;36291:12;:25::i;:::-;:33;;36142:190;-1:-1:-1;;;;36142:190:0:o;26546:569::-;-1:-1:-1;;;;;26699:16:0;;26691:62;;;;-1:-1:-1;;;26691:62:0;;17255:2:1;26691:62:0;;;17237:21:1;17294:2;17274:18;;;17267:30;17333:34;17313:18;;;17306:62;-1:-1:-1;;;17384:18:1;;;17377:31;17425:19;;26691:62:0;17053:397:1;26691:62:0;17115:10;26810:102;17115:10;26766:16;26853:2;26857:21;26875:2;26857:17;:21::i;:::-;26880:25;26898:6;26880:17;:25::i;:::-;26907:4;26810:20;:102::i;:::-;26925:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26925:17:0;;;;;;;;;:27;;26946:6;;26925:9;:27;;26946:6;;26925:27;:::i;:::-;;;;-1:-1:-1;;26968:52:0;;;17629:25:1;;;17685:2;17670:18;;17663:34;;;-1:-1:-1;;;;;26968:52:0;;;;27001:1;;26968:52;;;;;;17602:18:1;26968:52:0;;;;;;;27033:74;27064:8;27082:1;27086:2;27090;27094:6;27102:4;27033:30;:74::i;42152:120::-;41164:7;;-1:-1:-1;;;41164:7:0;;;;41688:41;;;;-1:-1:-1;;;41688:41:0;;17910:2:1;41688:41:0;;;17892:21:1;17949:2;17929:18;;;17922:30;-1:-1:-1;;;17968:18:1;;;17961:50;18028:18;;41688:41:0;17708:344:1;41688:41:0;42211:7:::1;:15:::0;;-1:-1:-1;;;;42211:15:0::1;::::0;;42242:22:::1;17115:10:::0;42251:12:::1;42242:22;::::0;-1:-1:-1;;;;;8350:32:1;;;8332:51;;8320:2;8305:18;42242:22:0::1;;;;;;;42152:120::o:0;39854:191::-;39947:6;;;-1:-1:-1;;;;;39964:17:0;;;-1:-1:-1;;;;;;39964:17:0;;;;;;;39997:40;;39947:6;;;39964:17;39947:6;;39997:40;;39928:16;;39997:40;39917:128;39854:191;:::o;41893:118::-;41164:7;;-1:-1:-1;;;41164:7:0;;;;41418:9;41410:38;;;;-1:-1:-1;;;41410:38:0;;;;;;;:::i;:::-;41953:7:::1;:14:::0;;-1:-1:-1;;;;41953:14:0::1;-1:-1:-1::0;;;41953:14:0::1;::::0;;41983:20:::1;41990:12;17115:10:::0;;17035:98;30340:331;30495:8;-1:-1:-1;;;;;30486:17:0;:5;-1:-1:-1;;;;;30486:17:0;;;30478:71;;;;-1:-1:-1;;;30478:71:0;;18259:2:1;30478:71:0;;;18241:21:1;18298:2;18278:18;;;18271:30;18337:34;18317:18;;;18310:62;-1:-1:-1;;;18388:18:1;;;18381:39;18437:19;;30478:71:0;18057:405:1;30478:71:0;-1:-1:-1;;;;;30560:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30560:46:0;;;;;;;;;;30622:41;;1159::1;;;30622::0;;1132:18:1;30622:41:0;;;;;;;30340:331;;;:::o;22976:820::-;-1:-1:-1;;;;;23164:16:0;;23156:66;;;;-1:-1:-1;;;23156:66:0;;;;;;;:::i;:::-;17115:10;23279:96;17115:10;23310:4;23316:2;23320:21;23338:2;23320:17;:21::i;23279:96::-;23388:19;23410:13;;;;;;;;;;;-1:-1:-1;;;;;23410:19:0;;;;;;;;;;23448:21;;;;23440:76;;;;-1:-1:-1;;;23440:76:0;;;;;;;:::i;:::-;23552:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23552:19:0;;;;;;;;;;23574:20;;;23552:42;;23616:17;;;;;;;:27;;23574:20;;23552:9;23616:27;;23574:20;;23616:27;:::i;:::-;;;;-1:-1:-1;;23661:46:0;;;17629:25:1;;;17685:2;17670:18;;17663:34;;;-1:-1:-1;;;;;23661:46:0;;;;;;;;;;;;;;17602:18:1;23661:46:0;;;;;;;23720:68;23751:8;23761:4;23767:2;23771;23775:6;23783:4;23720:30;:68::i;:::-;23145:651;;22976:820;;;;;:::o;45249:288::-;41164:7;;-1:-1:-1;;;41164:7:0;;;;41418:9;41410:38;;;;-1:-1:-1;;;41410:38:0;;;;;;;:::i;:::-;45462:66:::1;45489:8;45499:4;45505:2;45509:3;45514:7;45523:4;45462:26;:66::i;32608:813::-:0;-1:-1:-1;;;;;32848:13:0;;9464:19;:23;32844:570;;32884:79;;-1:-1:-1;;;32884:79:0;;-1:-1:-1;;;;;32884:43:0;;;;;:79;;32928:8;;32938:4;;32944:3;;32949:7;;32958:4;;32884:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32884:79:0;;;;;;;;-1:-1:-1;;32884:79:0;;;;;;;;;;;;:::i;:::-;;;32880:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33276:6;33269:14;;-1:-1:-1;;;33269:14:0;;;;;;;;:::i;32880:523::-;;;33325:62;;-1:-1:-1;;;33325:62:0;;20615:2:1;33325:62:0;;;20597:21:1;20654:2;20634:18;;;20627:30;20693:34;20673:18;;;20666:62;-1:-1:-1;;;20744:18:1;;;20737:50;20804:19;;33325:62:0;20413:416:1;32880:523:0;-1:-1:-1;;;;;;33045:60:0;;-1:-1:-1;;;33045:60:0;33041:159;;33130:50;;-1:-1:-1;;;33130:50:0;;;;;;;:::i;36694:675::-;36777:7;36820:4;36777:7;36835:497;36859:5;:12;36855:1;:16;36835:497;;;36893:20;36916:5;36922:1;36916:8;;;;;;;;:::i;:::-;;;;;;;36893:31;;36959:12;36943;:28;36939:382;;37445:13;37495:15;;;37531:4;37524:15;;;37578:4;37562:21;;37071:57;;36939:382;;;37445:13;37495:15;;;37531:4;37524:15;;;37578:4;37562:21;;37248:57;;36939:382;-1:-1:-1;36873:3:0;;;;:::i;:::-;;;;36835:497;;33429:198;33549:16;;;33563:1;33549:16;;;;;;;;;33495;;33524:22;;33549:16;;;;;;;;;;;;-1:-1:-1;33549:16:0;33524:41;;33587:7;33576:5;33582:1;33576:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33614:5;33429:198;-1:-1:-1;;33429:198:0:o;31856:744::-;-1:-1:-1;;;;;32071:13:0;;9464:19;:23;32067:526;;32107:72;;-1:-1:-1;;;32107:72:0;;-1:-1:-1;;;;;32107:38:0;;;;;:72;;32146:8;;32156:4;;32162:2;;32166:6;;32174:4;;32107:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32107:72:0;;;;;;;;-1:-1:-1;;32107:72:0;;;;;;;;;;;;:::i;:::-;;;32103:479;;;;:::i;:::-;-1:-1:-1;;;;;;32229:55:0;;-1:-1:-1;;;32229:55:0;32225:154;;32309:50;;-1:-1:-1;;;32309:50:0;;;;;;;:::i;34657:655::-;-1:-1:-1;;;;;34979:18:0;;34975:160;;35019:9;35014:110;35038:3;:10;35034:1;:14;35014:110;;;35098:7;35106:1;35098:10;;;;;;;;:::i;:::-;;;;;;;35074:12;:20;35087:3;35091:1;35087:6;;;;;;;;:::i;:::-;;;;;;;35074:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;35050:3:0;;-1:-1:-1;35050:3:0;;:::i;:::-;;;35014:110;;;;34975:160;-1:-1:-1;;;;;35151:16:0;;35147:158;;35189:9;35184:110;35208:3;:10;35204:1;:14;35184:110;;;35268:7;35276:1;35268:10;;;;;;;;:::i;:::-;;;;;;;35244:12;:20;35257:3;35261:1;35257:6;;;;;;;;:::i;:::-;;;;;;;35244:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;35220:3:0;;-1:-1:-1;35220:3:0;;:::i;:::-;;;35184:110;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:127::-;1272:10;1267:3;1263:20;1260:1;1253:31;1303:4;1300:1;1293:15;1327:4;1324:1;1317:15;1343:249;1453:2;1434:13;;-1:-1:-1;;1430:27:1;1418:40;;1488:18;1473:34;;1509:22;;;1470:62;1467:88;;;1535:18;;:::i;:::-;1571:2;1564:22;-1:-1:-1;;1343:249:1:o;1597:469::-;1662:5;1696:18;1688:6;1685:30;1682:56;;;1718:18;;:::i;:::-;1767:2;1761:9;1779:69;1836:2;1815:15;;-1:-1:-1;;1811:29:1;1842:4;1807:40;1761:9;1779:69;:::i;:::-;1866:6;1857:15;;1896:6;1888;1881:22;1936:3;1927:6;1922:3;1918:16;1915:25;1912:45;;;1953:1;1950;1943:12;1912:45;2003:6;1998:3;1991:4;1983:6;1979:17;1966:44;2058:1;2051:4;2042:6;2034;2030:19;2026:30;2019:41;;1597:469;;;;;:::o;2071:451::-;2140:6;2193:2;2181:9;2172:7;2168:23;2164:32;2161:52;;;2209:1;2206;2199:12;2161:52;2249:9;2236:23;2282:18;2274:6;2271:30;2268:50;;;2314:1;2311;2304:12;2268:50;2337:22;;2390:4;2382:13;;2378:27;-1:-1:-1;2368:55:1;;2419:1;2416;2409:12;2368:55;2442:74;2508:7;2503:2;2490:16;2485:2;2481;2477:11;2442:74;:::i;:::-;2432:84;2071:451;-1:-1:-1;;;;2071:451:1:o;2527:180::-;2586:6;2639:2;2627:9;2618:7;2614:23;2610:32;2607:52;;;2655:1;2652;2645:12;2607:52;-1:-1:-1;2678:23:1;;2527:180;-1:-1:-1;2527:180:1:o;2712:472::-;2754:3;2792:5;2786:12;2819:6;2814:3;2807:19;2844:1;2854:162;2868:6;2865:1;2862:13;2854:162;;;2930:4;2986:13;;;2982:22;;2976:29;2958:11;;;2954:20;;2947:59;2883:12;2854:162;;;3034:6;3031:1;3028:13;3025:87;;;3100:1;3093:4;3084:6;3079:3;3075:16;3071:27;3064:38;3025:87;-1:-1:-1;3166:2:1;3145:15;-1:-1:-1;;3141:29:1;3132:39;;;;3173:4;3128:50;;2712:472;-1:-1:-1;;2712:472:1:o;3189:220::-;3338:2;3327:9;3320:21;3301:4;3358:45;3399:2;3388:9;3384:18;3376:6;3358:45;:::i;3414:183::-;3474:4;3507:18;3499:6;3496:30;3493:56;;;3529:18;;:::i;:::-;-1:-1:-1;3574:1:1;3570:14;3586:4;3566:25;;3414:183::o;3602:724::-;3656:5;3709:3;3702:4;3694:6;3690:17;3686:27;3676:55;;3727:1;3724;3717:12;3676:55;3763:6;3750:20;3789:4;3812:43;3852:2;3812:43;:::i;:::-;3884:2;3878:9;3896:31;3924:2;3916:6;3896:31;:::i;:::-;3962:18;;;4054:1;4050:10;;;;4038:23;;4034:32;;;3996:15;;;;-1:-1:-1;4078:15:1;;;4075:35;;;4106:1;4103;4096:12;4075:35;4142:2;4134:6;4130:15;4154:142;4170:6;4165:3;4162:15;4154:142;;;4236:17;;4224:30;;4274:12;;;;4187;;4154:142;;;-1:-1:-1;4314:6:1;3602:724;-1:-1:-1;;;;;;3602:724:1:o;4331:221::-;4373:5;4426:3;4419:4;4411:6;4407:17;4403:27;4393:55;;4444:1;4441;4434:12;4393:55;4466:80;4542:3;4533:6;4520:20;4513:4;4505:6;4501:17;4466:80;:::i;4557:943::-;4711:6;4719;4727;4735;4743;4796:3;4784:9;4775:7;4771:23;4767:33;4764:53;;;4813:1;4810;4803:12;4764:53;4836:29;4855:9;4836:29;:::i;:::-;4826:39;;4884:38;4918:2;4907:9;4903:18;4884:38;:::i;:::-;4874:48;;4973:2;4962:9;4958:18;4945:32;4996:18;5037:2;5029:6;5026:14;5023:34;;;5053:1;5050;5043:12;5023:34;5076:61;5129:7;5120:6;5109:9;5105:22;5076:61;:::i;:::-;5066:71;;5190:2;5179:9;5175:18;5162:32;5146:48;;5219:2;5209:8;5206:16;5203:36;;;5235:1;5232;5225:12;5203:36;5258:63;5313:7;5302:8;5291:9;5287:24;5258:63;:::i;:::-;5248:73;;5374:3;5363:9;5359:19;5346:33;5330:49;;5404:2;5394:8;5391:16;5388:36;;;5420:1;5417;5410:12;5388:36;;5443:51;5486:7;5475:8;5464:9;5460:24;5443:51;:::i;:::-;5433:61;;;4557:943;;;;;;;;:::o;5505:757::-;5609:6;5617;5625;5633;5686:2;5674:9;5665:7;5661:23;5657:32;5654:52;;;5702:1;5699;5692:12;5654:52;5725:29;5744:9;5725:29;:::i;:::-;5715:39;;5801:2;5790:9;5786:18;5773:32;5763:42;;5856:2;5845:9;5841:18;5828:32;5879:18;5920:2;5912:6;5909:14;5906:34;;;5936:1;5933;5926:12;5906:34;5974:6;5963:9;5959:22;5949:32;;6019:7;6012:4;6008:2;6004:13;6000:27;5990:55;;6041:1;6038;6031:12;5990:55;6081:2;6068:16;6107:2;6099:6;6096:14;6093:34;;;6123:1;6120;6113:12;6093:34;6176:7;6171:2;6161:6;6158:1;6154:14;6150:2;6146:23;6142:32;6139:45;6136:65;;;6197:1;6194;6187:12;6136:65;5505:757;;;;-1:-1:-1;;6228:2:1;6220:11;;-1:-1:-1;;;5505:757:1:o;6267:1208::-;6385:6;6393;6446:2;6434:9;6425:7;6421:23;6417:32;6414:52;;;6462:1;6459;6452:12;6414:52;6502:9;6489:23;6531:18;6572:2;6564:6;6561:14;6558:34;;;6588:1;6585;6578:12;6558:34;6626:6;6615:9;6611:22;6601:32;;6671:7;6664:4;6660:2;6656:13;6652:27;6642:55;;6693:1;6690;6683:12;6642:55;6729:2;6716:16;6751:4;6774:43;6814:2;6774:43;:::i;:::-;6846:2;6840:9;6858:31;6886:2;6878:6;6858:31;:::i;:::-;6924:18;;;7012:1;7008:10;;;;7000:19;;6996:28;;;6958:15;;;;-1:-1:-1;7036:19:1;;;7033:39;;;7068:1;7065;7058:12;7033:39;7092:11;;;;7112:148;7128:6;7123:3;7120:15;7112:148;;;7194:23;7213:3;7194:23;:::i;:::-;7182:36;;7145:12;;;;7238;;;;7112:148;;;7279:6;-1:-1:-1;;7323:18:1;;7310:32;;-1:-1:-1;;7354:16:1;;;7351:36;;;7383:1;7380;7373:12;7351:36;;7406:63;7461:7;7450:8;7439:9;7435:24;7406:63;:::i;:::-;7396:73;;;6267:1208;;;;;:::o;7480:435::-;7533:3;7571:5;7565:12;7598:6;7593:3;7586:19;7624:4;7653:2;7648:3;7644:12;7637:19;;7690:2;7683:5;7679:14;7711:1;7721:169;7735:6;7732:1;7729:13;7721:169;;;7796:13;;7784:26;;7830:12;;;;7865:15;;;;7757:1;7750:9;7721:169;;;-1:-1:-1;7906:3:1;;7480:435;-1:-1:-1;;;;;7480:435:1:o;7920:261::-;8099:2;8088:9;8081:21;8062:4;8119:56;8171:2;8160:9;8156:18;8148:6;8119:56;:::i;8394:347::-;8459:6;8467;8520:2;8508:9;8499:7;8495:23;8491:32;8488:52;;;8536:1;8533;8526:12;8488:52;8559:29;8578:9;8559:29;:::i;:::-;8549:39;;8638:2;8627:9;8623:18;8610:32;8685:5;8678:13;8671:21;8664:5;8661:32;8651:60;;8707:1;8704;8697:12;8651:60;8730:5;8720:15;;;8394:347;;;;;:::o;9113:260::-;9181:6;9189;9242:2;9230:9;9221:7;9217:23;9213:32;9210:52;;;9258:1;9255;9248:12;9210:52;9281:29;9300:9;9281:29;:::i;:::-;9271:39;;9329:38;9363:2;9352:9;9348:18;9329:38;:::i;:::-;9319:48;;9113:260;;;;;:::o;9378:606::-;9482:6;9490;9498;9506;9514;9567:3;9555:9;9546:7;9542:23;9538:33;9535:53;;;9584:1;9581;9574:12;9535:53;9607:29;9626:9;9607:29;:::i;:::-;9597:39;;9655:38;9689:2;9678:9;9674:18;9655:38;:::i;:::-;9645:48;;9740:2;9729:9;9725:18;9712:32;9702:42;;9791:2;9780:9;9776:18;9763:32;9753:42;;9846:3;9835:9;9831:19;9818:33;9874:18;9866:6;9863:30;9860:50;;;9906:1;9903;9896:12;9860:50;9929:49;9970:7;9961:6;9950:9;9946:22;9929:49;:::i;9989:186::-;10048:6;10101:2;10089:9;10080:7;10076:23;10072:32;10069:52;;;10117:1;10114;10107:12;10069:52;10140:29;10159:9;10140:29;:::i;10592:356::-;10794:2;10776:21;;;10813:18;;;10806:30;10872:34;10867:2;10852:18;;10845:62;10939:2;10924:18;;10592:356::o;10953:380::-;11032:1;11028:12;;;;11075;;;11096:61;;11150:4;11142:6;11138:17;11128:27;;11096:61;11203:2;11195:6;11192:14;11172:18;11169:38;11166:161;;;11249:10;11244:3;11240:20;11237:1;11230:31;11284:4;11281:1;11274:15;11312:4;11309:1;11302:15;11166:161;;10953:380;;;:::o;11757:340::-;11959:2;11941:21;;;11998:2;11978:18;;;11971:30;-1:-1:-1;;;12032:2:1;12017:18;;12010:46;12088:2;12073:18;;11757:340::o;14003:127::-;14064:10;14059:3;14055:20;14052:1;14045:31;14095:4;14092:1;14085:15;14119:4;14116:1;14109:15;14135:127;14196:10;14191:3;14187:20;14184:1;14177:31;14227:4;14224:1;14217:15;14251:4;14248:1;14241:15;14267:135;14306:3;-1:-1:-1;;14327:17:1;;14324:43;;;14347:18;;:::i;:::-;-1:-1:-1;14394:1:1;14383:13;;14267:135::o;15633:401::-;15835:2;15817:21;;;15874:2;15854:18;;;15847:30;15913:34;15908:2;15893:18;;15886:62;-1:-1:-1;;;15979:2:1;15964:18;;15957:35;16024:3;16009:19;;15633:401::o;16039:406::-;16241:2;16223:21;;;16280:2;16260:18;;;16253:30;16319:34;16314:2;16299:18;;16292:62;-1:-1:-1;;;16385:2:1;16370:18;;16363:40;16435:3;16420:19;;16039:406::o;16450:128::-;16490:3;16521:1;16517:6;16514:1;16511:13;16508:39;;;16527:18;;:::i;:::-;-1:-1:-1;16563:9:1;;16450:128::o;16583:465::-;16840:2;16829:9;16822:21;16803:4;16866:56;16918:2;16907:9;16903:18;16895:6;16866:56;:::i;:::-;16970:9;16962:6;16958:22;16953:2;16942:9;16938:18;16931:50;16998:44;17035:6;17027;16998:44;:::i;:::-;16990:52;16583:465;-1:-1:-1;;;;;16583:465:1:o;18467:827::-;-1:-1:-1;;;;;18864:15:1;;;18846:34;;18916:15;;18911:2;18896:18;;18889:43;18826:3;18963:2;18948:18;;18941:31;;;18789:4;;18995:57;;19032:19;;19024:6;18995:57;:::i;:::-;19100:9;19092:6;19088:22;19083:2;19072:9;19068:18;19061:50;19134:44;19171:6;19163;19134:44;:::i;:::-;19120:58;;19227:9;19219:6;19215:22;19209:3;19198:9;19194:19;19187:51;19255:33;19281:6;19273;19255:33;:::i;:::-;19247:41;18467:827;-1:-1:-1;;;;;;;;18467:827:1:o;19299:249::-;19368:6;19421:2;19409:9;19400:7;19396:23;19392:32;19389:52;;;19437:1;19434;19427:12;19389:52;19469:9;19463:16;19488:30;19512:5;19488:30;:::i;19553:179::-;19588:3;19630:1;19612:16;19609:23;19606:120;;;19676:1;19673;19670;19655:23;-1:-1:-1;19713:1:1;19707:8;19702:3;19698:18;19606:120;19553:179;:::o;19737:671::-;19776:3;19818:4;19800:16;19797:26;19794:39;;;19737:671;:::o;19794:39::-;19860:2;19854:9;-1:-1:-1;;19925:16:1;19921:25;;19918:1;19854:9;19897:50;19976:4;19970:11;20000:16;20035:18;20106:2;20099:4;20091:6;20087:17;20084:25;20079:2;20071:6;20068:14;20065:45;20062:58;;;20113:5;;;;;19737:671;:::o;20062:58::-;20150:6;20144:4;20140:17;20129:28;;20186:3;20180:10;20213:2;20205:6;20202:14;20199:27;;;20219:5;;;;;;19737:671;:::o;20199:27::-;20303:2;20284:16;20278:4;20274:27;20270:36;20263:4;20254:6;20249:3;20245:16;20241:27;20238:69;20235:82;;;20310:5;;;;;;19737:671;:::o;20235:82::-;20326:57;20377:4;20368:6;20360;20356:19;20352:30;20346:4;20326:57;:::i;:::-;-1:-1:-1;20399:3:1;;19737:671;-1:-1:-1;;;;;19737:671:1:o;20834:404::-;21036:2;21018:21;;;21075:2;21055:18;;;21048:30;21114:34;21109:2;21094:18;;21087:62;-1:-1:-1;;;21180:2:1;21165:18;;21158:38;21228:3;21213:19;;20834:404::o;21243:561::-;-1:-1:-1;;;;;21540:15:1;;;21522:34;;21592:15;;21587:2;21572:18;;21565:43;21639:2;21624:18;;21617:34;;;21682:2;21667:18;;21660:34;;;21502:3;21725;21710:19;;21703:32;;;21465:4;;21752:46;;21778:19;;21770:6;21752:46;:::i;:::-;21744:54;21243:561;-1:-1:-1;;;;;;;21243:561:1:o;21809:125::-;21849:4;21877:1;21874;21871:8;21868:34;;;21882:18;;:::i;:::-;-1:-1:-1;21919:9:1;;21809:125::o
Swarm Source
ipfs://8d2d3a2c54e29f42f90be10840b71bedf2ed6a37cd7f90b9cfa6de998dbd16f7
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.