Token
ERC-1155
Overview
Max Total Supply
0
Holders
52,080
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ZCloakPoap
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at moonbase.moonscan.io on 2022-06-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC1155/[email protected] // OpenZeppelin Contracts v4.4.0 (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; } // File @openzeppelin/contracts/token/ERC1155/[email protected] // OpenZeppelin Contracts v4.4.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. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC1155/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (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; } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.0 (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; } } // File @openzeppelin/contracts/token/ERC1155/[email protected] // OpenZeppelin Contracts v4.4.0 (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; } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.0 (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()); } } // File contracts/v0.1.0/interfaces/IRegistry.sol interface IRegistry { function uintOf(bytes32 _propertyName) external view returns (uint256); function uint32Of(bytes32 _propertyName) external view returns (uint32); function stringOf(bytes32 _propertyName) external view returns (string memory); function addressOf(bytes32 _propertyName) external view returns (address); function bytesOf(bytes32 _propertyName) external view returns (bytes memory); function boolOf(bytes32 _propertyName) external view returns (bool); function intOf(bytes32 _propertyName) external view returns (int); } // File contracts/v0.1.0/interfaces/IFactory.sol interface IFactory { function getRequestHash(address _nft) external view returns (bytes32); } // File contracts/v0.1.0/interfaces/IChecker.sol interface IChecker { // return true only if credential is valid and proof has passed the verification, function zkID(address _who, bytes32 _requestHash) external view returns (bool, uint128[] memory calcOutput); } // File contracts/v0.1.0/common/Properties.sol // OK to update contract Properties { /** * Address */ bytes32 public constant CONTRACT_MAIN_KILT = "CONTRACT_MAIN_KILT"; // address of the request management // v0.1.0 - ReadAccessController bytes32 public constant CONTRACT_REQUEST = "CONTRACT_REQUEST"; // address of reputation // v0.1.0 - ReputationV1 bytes32 public constant CONTRACT_REPUTATION = "CONTRACT_REPUTATION"; // address of reward pool // v0.1.0 - ReputationV1 bytes32 public constant CONTRACT_REWARD = "CONTRACT_REWARD"; // address of verifier's aggregated result // v0.1.1 - CRAggregator bytes32 public constant CONTRACT_AGGREGATOR = "CONTRACT_AGGREGATOR"; // address of contract which is in charge of the read access to user's onchain kyc // v0.1.0 - ReadAccessController bytes32 public constant CONTRACT_READ_GATEWAY = "CONTRACT_READ_GATEWAY"; // where to find the nft address // v0.1.0 - PoapFactory bytes32 public constant CONTRACT_POAP_FACTORY = "CONTRACT_POAP_FACTORY"; /** * uint */ // minimum commit submission number bytes32 public constant UINT32_MIN_COMMIT = "UINT32_MIN_COMMIT"; // minimum threshold that could be used to decide the data validity bytes32 public constant UINT32_THRESHOLD = "UINT32_THRESHOLD"; } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (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); } } // File contracts/v0.1.0/ZcloakPoap.sol contract ZCloakPoap is ERC1155, Pausable, Ownable, Properties { using Address for address; IRegistry public registry; // poapId => totalSupply mapping(uint128 => uint128) totalSupply; // poapId => userAddr => balance mapping(uint128 => mapping(address => uint256)) public totalBalanceOf; // mint a class of nft event MintAClass(uint128 identifier, uint256 supply); // mint a poap event MintPoap(uint128 poapId, address who, uint256 nftId); modifier isHuman(address _addr) { require( !_addr.isContract(), "Msg sender must be human being."); _; } // transfer is not allowed for did-based nfts. constructor(string memory _uri, address _registry) ERC1155(_uri) { registry = IRegistry(_registry); _pause(); } // not allowed to be called by contract function claim() public isHuman(_msgSender()) { address who = _msgSender(); // query requestHash that this contract mapping to IFactory factory = IFactory(registry.addressOf(Properties.CONTRACT_POAP_FACTORY)); // get rac address to read user's final credential IChecker rac = IChecker(registry.addressOf(Properties.CONTRACT_READ_GATEWAY)); // get requestHash bytes32 requestHash = IFactory(factory).getRequestHash(address(this)); // get user's zkID (bool isValid, uint128[] memory outputs) = rac.zkID(who, requestHash); require(isValid, "zkCredential must be valid"); // get poapId through outputs uint256 poapId = uint256(keccak256(abi.encode(outputs))); uint128 poapIdentifier = uint128(poapId >> 128); // get the pre-minted nft id uint256 nftId = getNftId(poapIdentifier); // check if the user has owned the poap require(totalBalanceOf[poapIdentifier][who] == 0, "You have already minted"); // mint poap to claimer _mint(who, nftId, 1, ""); // increase totalSupply _mintAClass(poapIdentifier, who); emit MintPoap(poapIdentifier, who, nftId); } function getNftId(uint128 _poapId) public view returns (uint256) { uint256 poapIdU256 = uint256(_poapId) << 128; uint256 index = totalSupply[_poapId]; return poapIdU256 + index; } function _mintAClass(uint128 _poapId, address _who) internal { //todo: use safe Add instead totalSupply[_poapId]++; totalBalanceOf[_poapId][_who]++; emit MintAClass(_poapId, totalSupply[_poapId]); } 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); // mint action do not need to be paused if (_from != address(0)) { require(!paused(), "ERC1155Pausable: token transfer while paused"); } } function pause() public onlyOwner { super._pause(); } function unPause() public onlyOwner { super._unpause(); } }
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_registry","type":"address"}],"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":false,"internalType":"uint128","name":"identifier","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"MintAClass","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint128","name":"poapId","type":"uint128"},{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"nftId","type":"uint256"}],"name":"MintPoap","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":[],"name":"CONTRACT_AGGREGATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_MAIN_KILT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_POAP_FACTORY","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_READ_GATEWAY","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_REPUTATION","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_REQUEST","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_REWARD","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UINT32_MIN_COMMIT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UINT32_THRESHOLD","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_poapId","type":"uint128"}],"name":"getNftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"","type":"uint128"},{"internalType":"address","name":"","type":"address"}],"name":"totalBalanceOf","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002a4938038062002a49833981016040819052620000349162000253565b8162000040816200008c565b506003805460ff191690556200005f62000059620000a5565b620000a9565b600480546001600160a01b0319166001600160a01b0383161790556200008462000103565b5050620003c8565b8051620000a190600290602084019062000190565b5050565b3390565b600380546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200010d62000187565b15620001365760405162461bcd60e51b81526004016200012d906200034b565b60405180910390fd5b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200016e620000a5565b6040516200017d919062000337565b60405180910390a1565b60035460ff1690565b8280546200019e9062000375565b90600052602060002090601f016020900481019282620001c257600085556200020d565b82601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b5b808211156200021b576000815560010162000220565b80516001600160a01b03811681146200024e57600080fd5b919050565b6000806040838503121562000266578182fd5b82516001600160401b03808211156200027d578384fd5b818501915085601f83011262000291578384fd5b815181811115620002a657620002a6620003b2565b6040516020601f8301601f1916820181018481118382101715620002ce57620002ce620003b2565b6040528282528483018101891015620002e5578687fd5b8693505b82841015620003085784840181015182850182015292830192620002e9565b828411156200031957868184840101525b8196506200032981890162000236565b955050505050509250929050565b6001600160a01b0391909116815260200190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6002810460018216806200038a57607f821691505b60208210811415620003ac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61267180620003d86000396000f3fe608060405234801561001057600080fd5b50600436106101b85760003560e01c806387f697e8116100f9578063e219eeff11610097578063f242432a11610071578063f242432a14610324578063f2fde38b14610337578063f7b188a51461034a578063fb3ecf2f14610352576101b8565b8063e219eeff146102f6578063e985e9c5146102fe578063ee21df4d14610311576101b8565b8063a22cb465116100d3578063a22cb465146102c0578063b9aa4ffc146102d3578063cf3008dc146102db578063d4b843ae146102e3576101b8565b806387f697e8146102a857806388cf66d5146102b05780638da5cb5b146102b8576101b8565b8063450c2e26116101665780635c975abb116101405780635c975abb1461027b578063715018a6146102835780637b1039991461028b5780638456cb59146102a0576101b8565b8063450c2e261461024b5780634e1273f4146102535780634e71d92d14610273576101b8565b80630e89341c116101975780630e89341c1461020e5780632eb2c2d61461022e57806336874d3114610243576101b8565b8062fdd58e146101bd57806301ffc9a7146101e6578063071ee77714610206575b600080fd5b6101d06101cb36600461199c565b61035a565b6040516101dd9190611dc4565b60405180910390f35b6101f96101f4366004611b4f565b6103b1565b6040516101dd9190611db9565b6101d0610429565b61022161021c366004611bc0565b61044d565b6040516101dd9190611dcd565b61024161023c36600461185e565b6104e1565b005b6101d061053f565b6101d0610563565b6102666102613660046119c7565b610587565b6040516101dd9190611d78565b6102416106a7565b6101f9610a51565b610241610a5b565b610293610aa6565b6040516101dd9190611c5d565b610241610ab5565b6101d0610afc565b6101d0610b20565b610293610b44565b6102416102ce36600461196f565b610b58565b6101d0610b6e565b6101d0610b92565b6101d06102f1366004611ba3565b610bb6565b6101d0610bd3565b6101f961030c366004611826565b610bf7565b6101d061031f366004611b87565b610c25565b610241610332366004611908565b610c7c565b6102416103453660046117e7565b610cd3565b610241610d44565b6101d0610d8b565b60006001600160a01b03831661038b5760405162461bcd60e51b815260040161038290611ed1565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167fd9b67a2600000000000000000000000000000000000000000000000000000000148061041457506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610423575061042382610daf565b92915050565b7f434f4e54524143545f524557415244000000000000000000000000000000000081565b60606002805461045c90612499565b80601f016020809104026020016040519081016040528092919081815260200182805461048890612499565b80156104d55780601f106104aa576101008083540402835291602001916104d5565b820191906000526020600020905b8154815290600101906020018083116104b857829003601f168201915b50505050509050919050565b6104e9610de1565b6001600160a01b0316856001600160a01b0316148061050f575061050f8561030c610de1565b61052b5760405162461bcd60e51b81526004016103829061217e565b6105388585858585610de5565b5050505050565b7f434f4e54524143545f524541445f47415445574159000000000000000000000081565b7f434f4e54524143545f4d41494e5f4b494c54000000000000000000000000000081565b606081518351146105aa5760405162461bcd60e51b8152600401610382906122ca565b6000835167ffffffffffffffff8111156105d457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156105fd578160200160208202803683370190505b50905060005b845181101561069f5761066485828151811061062f57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061065757634e487b7160e01b600052603260045260246000fd5b602002602001015161035a565b82828151811061068457634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610698816124fb565b9050610603565b509392505050565b6106af610de1565b6106c1816001600160a01b0316610fb6565b156106de5760405162461bcd60e51b81526004016103829061207c565b60006106e8610de1565b60048054604051632ecd14d360e21b81529293506000926001600160a01b039091169163bb34534c9161073d917f434f4e54524143545f504f41505f464143544f525900000000000000000000009101611dc4565b60206040518083038186803b15801561075557600080fd5b505afa158015610769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078d919061180a565b60048054604051632ecd14d360e21b81529293506000926001600160a01b039091169163bb34534c916107e2917f434f4e54524143545f524541445f4741544557415900000000000000000000009101611dc4565b60206040518083038186803b1580156107fa57600080fd5b505afa15801561080e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610832919061180a565b90506000826001600160a01b0316632604c7fe306040518263ffffffff1660e01b81526004016108629190611c5d565b60206040518083038186803b15801561087a57600080fd5b505afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b29190611b37565b9050600080836001600160a01b03166352459e6887856040518363ffffffff1660e01b81526004016108e5929190611d12565b60006040518083038186803b1580156108fd57600080fd5b505afa158015610911573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109399190810190611a87565b915091508161095a5760405162461bcd60e51b8152600401610382906120b3565b60008160405160200161096d9190611d2b565b60408051601f1981840301815291905280516020909101209050608081901c600061099782610c25565b6001600160801b03831660009081526006602090815260408083206001600160a01b038e168452909152902054909150156109e45760405162461bcd60e51b815260040161038290611fe8565b610a008982600160405180602001604052806000815250610fbc565b610a0a828a6110ab565b7f5a2a318cd6208e1e038d7e9060b080d8be16e9a422d6af1ab74eb648b53f189b828a83604051610a3d939291906123e1565b60405180910390a150505050505050505050565b60035460ff165b90565b610a63610de1565b6001600160a01b0316610a74610b44565b6001600160a01b031614610a9a5760405162461bcd60e51b815260040161038290612238565b610aa46000611185565b565b6004546001600160a01b031681565b610abd610de1565b6001600160a01b0316610ace610b44565b6001600160a01b031614610af45760405162461bcd60e51b815260040161038290612238565b610aa46111f6565b7f434f4e54524143545f524551554553540000000000000000000000000000000081565b7f434f4e54524143545f504f41505f464143544f5259000000000000000000000081565b60035461010090046001600160a01b031690565b610b6a610b63610de1565b8383611268565b5050565b7f434f4e54524143545f41474752454741544f520000000000000000000000000081565b7f55494e5433325f5448524553484f4c440000000000000000000000000000000081565b600660209081526000928352604080842090915290825290205481565b7f434f4e54524143545f52455055544154494f4e0000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160801b0380821660009081526005602052604081205490917fffffffffffffffffffffffffffffffff00000000000000000000000000000000608085901b169116610c748183612481565b949350505050565b610c84610de1565b6001600160a01b0316856001600160a01b03161480610caa5750610caa8561030c610de1565b610cc65760405162461bcd60e51b81526004016103829061201f565b610538858585858561130b565b610cdb610de1565b6001600160a01b0316610cec610b44565b6001600160a01b031614610d125760405162461bcd60e51b815260040161038290612238565b6001600160a01b038116610d385760405162461bcd60e51b815260040161038290611f2e565b610d4181611185565b50565b610d4c610de1565b6001600160a01b0316610d5d610b44565b6001600160a01b031614610d835760405162461bcd60e51b815260040161038290612238565b610aa461143f565b7f55494e5433325f4d494e5f434f4d4d495400000000000000000000000000000081565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b8151835114610e065760405162461bcd60e51b815260040161038290612327565b6001600160a01b038416610e2c5760405162461bcd60e51b815260040161038290612121565b6000610e36610de1565b9050610e46818787878787611496565b60005b8451811015610f48576000858281518110610e7457634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610ea057634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ef05760405162461bcd60e51b8152600401610382906121db565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f2d908490612481565b9250508190555050505080610f41906124fb565b9050610e49565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f98929190611d8b565b60405180910390a4610fae8187878787876114d8565b505050505050565b3b151590565b6001600160a01b038416610fe25760405162461bcd60e51b815260040161038290612384565b6000610fec610de1565b905061100d81600087610ffe886115e6565b611007886115e6565b87611496565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061103d908490612481565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611094929190612425565b60405180910390a46105388160008787878761163f565b6001600160801b038083166000908152600560205260408120805490921691906110d4836124d4565b82546101009290920a6001600160801b03818102199093169183160217909155831660009081526006602090815260408083206001600160a01b038616845290915281208054925090611126836124fb565b90915550506001600160801b03808316600090815260056020526040908190205490517f2c3bf5c2df4a0f54ef8f9448383414384591033997887f4c8f6b757c4828fad39261117992869291169061240b565b60405180910390a15050565b600380546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111fe610a51565b1561121b5760405162461bcd60e51b8152600401610382906120ea565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611251610de1565b60405161125e9190611c5d565b60405180910390a1565b816001600160a01b0316836001600160a01b0316141561129a5760405162461bcd60e51b81526004016103829061226d565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906112fe908590611db9565b60405180910390a3505050565b6001600160a01b0384166113315760405162461bcd60e51b815260040161038290612121565b600061133b610de1565b905061134c818787610ffe886115e6565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561138d5760405162461bcd60e51b8152600401610382906121db565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906113ca908490612481565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611420929190612425565b60405180910390a461143682888888888861163f565b50505050505050565b611447610a51565b6114635760405162461bcd60e51b815260040161038290611e9a565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611251610de1565b6114a4868686868686610fae565b6001600160a01b03851615610fae576114bb610a51565b15610fae5760405162461bcd60e51b815260040161038290611f8b565b6114ea846001600160a01b0316610fb6565b15610fae5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115239089908990889088908890600401611c71565b602060405180830381600087803b15801561153d57600080fd5b505af192505050801561156d575060408051601f3d908101601f1916820190925261156a91810190611b6b565b60015b6115b657611579612548565b80611584575061159e565b8060405162461bcd60e51b81526004016103829190611dcd565b60405162461bcd60e51b815260040161038290611de0565b6001600160e01b0319811663bc197c8160e01b146114365760405162461bcd60e51b815260040161038290611e3d565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061162e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611651846001600160a01b0316610fb6565b15610fae5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061168a9089908990889088908890600401611ccf565b602060405180830381600087803b1580156116a457600080fd5b505af19250505080156116d4575060408051601f3d908101601f191682019092526116d191810190611b6b565b60015b6116e057611579612548565b6001600160e01b0319811663f23a6e6160e01b146114365760405162461bcd60e51b815260040161038290611e3d565b600082601f830112611720578081fd5b813560206117356117308361245d565b612433565b8281528181019085830183850287018401881015611751578586fd5b855b8581101561176f57813584529284019290840190600101611753565b5090979650505050505050565b600082601f83011261178c578081fd5b813567ffffffffffffffff8111156117a6576117a661252c565b6117b9601f8201601f1916602001612433565b8181528460208386010111156117cd578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156117f8578081fd5b8135611803816125ed565b9392505050565b60006020828403121561181b578081fd5b8151611803816125ed565b60008060408385031215611838578081fd5b8235611843816125ed565b91506020830135611853816125ed565b809150509250929050565b600080600080600060a08688031215611875578081fd5b8535611880816125ed565b94506020860135611890816125ed565b9350604086013567ffffffffffffffff808211156118ac578283fd5b6118b889838a01611710565b945060608801359150808211156118cd578283fd5b6118d989838a01611710565b935060808801359150808211156118ee578283fd5b506118fb8882890161177c565b9150509295509295909350565b600080600080600060a0868803121561191f578081fd5b853561192a816125ed565b9450602086013561193a816125ed565b93506040860135925060608601359150608086013567ffffffffffffffff811115611963578182fd5b6118fb8882890161177c565b60008060408385031215611981578182fd5b823561198c816125ed565b9150602083013561185381612602565b600080604083850312156119ae578182fd5b82356119b9816125ed565b946020939093013593505050565b600080604083850312156119d9578182fd5b823567ffffffffffffffff808211156119f0578384fd5b818501915085601f830112611a03578384fd5b81356020611a136117308361245d565b82815281810190858301838502870184018b1015611a2f578889fd5b8896505b84871015611a5a578035611a46816125ed565b835260019690960195918301918301611a33565b5096505086013592505080821115611a70578283fd5b50611a7d85828601611710565b9150509250929050565b60008060408385031215611a99578182fd5b8251611aa481612602565b8092505060208084015167ffffffffffffffff811115611ac2578283fd5b8401601f81018613611ad2578283fd5b8051611ae06117308261245d565b81815283810190838501858402850186018a1015611afc578687fd5b8694505b83851015611b27578051611b1381612626565b835260019490940193918501918501611b00565b5080955050505050509250929050565b600060208284031215611b48578081fd5b5051919050565b600060208284031215611b60578081fd5b813561180381612610565b600060208284031215611b7c578081fd5b815161180381612610565b600060208284031215611b98578081fd5b813561180381612626565b60008060408385031215611bb5578182fd5b823561184381612626565b600060208284031215611bd1578081fd5b5035919050565b6000815180845260208085019450808401835b83811015611c0757815187529582019590820190600101611beb565b509495945050505050565b60008151808452815b81811015611c3757602081850181015186830182015201611c1b565b81811115611c485782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808816835280871660208401525060a06040830152611c9d60a0830186611bd8565b8281036060840152611caf8186611bd8565b90508281036080840152611cc38185611c12565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152611d0760a0830184611c12565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015611d6c5783516001600160801b031683529284019291840191600101611d47565b50909695505050505050565b6000602082526118036020830184611bd8565b600060408252611d9e6040830185611bd8565b8281036020840152611db08185611bd8565b95945050505050565b901515815260200190565b90815260200190565b6000602082526118036020830184611c12565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e746572000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e73000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060408201527f7768696c65207061757365640000000000000000000000000000000000000000606082015260800190565b60208082526017908201527f596f75206861766520616c7265616479206d696e746564000000000000000000604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201527f20617070726f7665640000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4d73672073656e646572206d7573742062652068756d616e206265696e672e00604082015260600190565b6020808252601a908201527f7a6b43726564656e7469616c206d7573742062652076616c6964000000000000604082015260600190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201527f72207472616e7366657200000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360408201527f20666f722073656c660000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860408201527f206d69736d617463680000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d61746368000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6001600160801b039390931683526001600160a01b03919091166020830152604082015260600190565b6001600160801b0392831681529116602082015260400190565b918252602082015260400190565b60405181810167ffffffffffffffff811182821017156124555761245561252c565b604052919050565b600067ffffffffffffffff8211156124775761247761252c565b5060209081020190565b6000821982111561249457612494612516565b500190565b6002810460018216806124ad57607f821691505b602082108114156124ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006001600160801b03808316818114156124f1576124f1612516565b6001019392505050565b600060001982141561250f5761250f612516565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561255857610a58565b600481823e6308c379a061256c8251612542565b1461257657610a58565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156125a65750505050610a58565b828401925082519150808211156125c05750505050610a58565b503d830160208284010111156125d857505050610a58565b601f01601f1916810160200160405291505090565b6001600160a01b0381168114610d4157600080fd5b8015158114610d4157600080fd5b6001600160e01b031981168114610d4157600080fd5b6001600160801b0381168114610d4157600080fdfea2646970667358221220c4127480973053334131e5af193d0562cffbcaa538ceb7bead92bf3d3865ebd764736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000f2e7e0eed35e60896cd3fa32050e2094a204f9a800000000000000000000000000000000000000000000000000000000000000047465737400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101b85760003560e01c806387f697e8116100f9578063e219eeff11610097578063f242432a11610071578063f242432a14610324578063f2fde38b14610337578063f7b188a51461034a578063fb3ecf2f14610352576101b8565b8063e219eeff146102f6578063e985e9c5146102fe578063ee21df4d14610311576101b8565b8063a22cb465116100d3578063a22cb465146102c0578063b9aa4ffc146102d3578063cf3008dc146102db578063d4b843ae146102e3576101b8565b806387f697e8146102a857806388cf66d5146102b05780638da5cb5b146102b8576101b8565b8063450c2e26116101665780635c975abb116101405780635c975abb1461027b578063715018a6146102835780637b1039991461028b5780638456cb59146102a0576101b8565b8063450c2e261461024b5780634e1273f4146102535780634e71d92d14610273576101b8565b80630e89341c116101975780630e89341c1461020e5780632eb2c2d61461022e57806336874d3114610243576101b8565b8062fdd58e146101bd57806301ffc9a7146101e6578063071ee77714610206575b600080fd5b6101d06101cb36600461199c565b61035a565b6040516101dd9190611dc4565b60405180910390f35b6101f96101f4366004611b4f565b6103b1565b6040516101dd9190611db9565b6101d0610429565b61022161021c366004611bc0565b61044d565b6040516101dd9190611dcd565b61024161023c36600461185e565b6104e1565b005b6101d061053f565b6101d0610563565b6102666102613660046119c7565b610587565b6040516101dd9190611d78565b6102416106a7565b6101f9610a51565b610241610a5b565b610293610aa6565b6040516101dd9190611c5d565b610241610ab5565b6101d0610afc565b6101d0610b20565b610293610b44565b6102416102ce36600461196f565b610b58565b6101d0610b6e565b6101d0610b92565b6101d06102f1366004611ba3565b610bb6565b6101d0610bd3565b6101f961030c366004611826565b610bf7565b6101d061031f366004611b87565b610c25565b610241610332366004611908565b610c7c565b6102416103453660046117e7565b610cd3565b610241610d44565b6101d0610d8b565b60006001600160a01b03831661038b5760405162461bcd60e51b815260040161038290611ed1565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167fd9b67a2600000000000000000000000000000000000000000000000000000000148061041457506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610423575061042382610daf565b92915050565b7f434f4e54524143545f524557415244000000000000000000000000000000000081565b60606002805461045c90612499565b80601f016020809104026020016040519081016040528092919081815260200182805461048890612499565b80156104d55780601f106104aa576101008083540402835291602001916104d5565b820191906000526020600020905b8154815290600101906020018083116104b857829003601f168201915b50505050509050919050565b6104e9610de1565b6001600160a01b0316856001600160a01b0316148061050f575061050f8561030c610de1565b61052b5760405162461bcd60e51b81526004016103829061217e565b6105388585858585610de5565b5050505050565b7f434f4e54524143545f524541445f47415445574159000000000000000000000081565b7f434f4e54524143545f4d41494e5f4b494c54000000000000000000000000000081565b606081518351146105aa5760405162461bcd60e51b8152600401610382906122ca565b6000835167ffffffffffffffff8111156105d457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156105fd578160200160208202803683370190505b50905060005b845181101561069f5761066485828151811061062f57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061065757634e487b7160e01b600052603260045260246000fd5b602002602001015161035a565b82828151811061068457634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610698816124fb565b9050610603565b509392505050565b6106af610de1565b6106c1816001600160a01b0316610fb6565b156106de5760405162461bcd60e51b81526004016103829061207c565b60006106e8610de1565b60048054604051632ecd14d360e21b81529293506000926001600160a01b039091169163bb34534c9161073d917f434f4e54524143545f504f41505f464143544f525900000000000000000000009101611dc4565b60206040518083038186803b15801561075557600080fd5b505afa158015610769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078d919061180a565b60048054604051632ecd14d360e21b81529293506000926001600160a01b039091169163bb34534c916107e2917f434f4e54524143545f524541445f4741544557415900000000000000000000009101611dc4565b60206040518083038186803b1580156107fa57600080fd5b505afa15801561080e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610832919061180a565b90506000826001600160a01b0316632604c7fe306040518263ffffffff1660e01b81526004016108629190611c5d565b60206040518083038186803b15801561087a57600080fd5b505afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b29190611b37565b9050600080836001600160a01b03166352459e6887856040518363ffffffff1660e01b81526004016108e5929190611d12565b60006040518083038186803b1580156108fd57600080fd5b505afa158015610911573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109399190810190611a87565b915091508161095a5760405162461bcd60e51b8152600401610382906120b3565b60008160405160200161096d9190611d2b565b60408051601f1981840301815291905280516020909101209050608081901c600061099782610c25565b6001600160801b03831660009081526006602090815260408083206001600160a01b038e168452909152902054909150156109e45760405162461bcd60e51b815260040161038290611fe8565b610a008982600160405180602001604052806000815250610fbc565b610a0a828a6110ab565b7f5a2a318cd6208e1e038d7e9060b080d8be16e9a422d6af1ab74eb648b53f189b828a83604051610a3d939291906123e1565b60405180910390a150505050505050505050565b60035460ff165b90565b610a63610de1565b6001600160a01b0316610a74610b44565b6001600160a01b031614610a9a5760405162461bcd60e51b815260040161038290612238565b610aa46000611185565b565b6004546001600160a01b031681565b610abd610de1565b6001600160a01b0316610ace610b44565b6001600160a01b031614610af45760405162461bcd60e51b815260040161038290612238565b610aa46111f6565b7f434f4e54524143545f524551554553540000000000000000000000000000000081565b7f434f4e54524143545f504f41505f464143544f5259000000000000000000000081565b60035461010090046001600160a01b031690565b610b6a610b63610de1565b8383611268565b5050565b7f434f4e54524143545f41474752454741544f520000000000000000000000000081565b7f55494e5433325f5448524553484f4c440000000000000000000000000000000081565b600660209081526000928352604080842090915290825290205481565b7f434f4e54524143545f52455055544154494f4e0000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160801b0380821660009081526005602052604081205490917fffffffffffffffffffffffffffffffff00000000000000000000000000000000608085901b169116610c748183612481565b949350505050565b610c84610de1565b6001600160a01b0316856001600160a01b03161480610caa5750610caa8561030c610de1565b610cc65760405162461bcd60e51b81526004016103829061201f565b610538858585858561130b565b610cdb610de1565b6001600160a01b0316610cec610b44565b6001600160a01b031614610d125760405162461bcd60e51b815260040161038290612238565b6001600160a01b038116610d385760405162461bcd60e51b815260040161038290611f2e565b610d4181611185565b50565b610d4c610de1565b6001600160a01b0316610d5d610b44565b6001600160a01b031614610d835760405162461bcd60e51b815260040161038290612238565b610aa461143f565b7f55494e5433325f4d494e5f434f4d4d495400000000000000000000000000000081565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b8151835114610e065760405162461bcd60e51b815260040161038290612327565b6001600160a01b038416610e2c5760405162461bcd60e51b815260040161038290612121565b6000610e36610de1565b9050610e46818787878787611496565b60005b8451811015610f48576000858281518110610e7457634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610ea057634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ef05760405162461bcd60e51b8152600401610382906121db565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f2d908490612481565b9250508190555050505080610f41906124fb565b9050610e49565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f98929190611d8b565b60405180910390a4610fae8187878787876114d8565b505050505050565b3b151590565b6001600160a01b038416610fe25760405162461bcd60e51b815260040161038290612384565b6000610fec610de1565b905061100d81600087610ffe886115e6565b611007886115e6565b87611496565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061103d908490612481565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611094929190612425565b60405180910390a46105388160008787878761163f565b6001600160801b038083166000908152600560205260408120805490921691906110d4836124d4565b82546101009290920a6001600160801b03818102199093169183160217909155831660009081526006602090815260408083206001600160a01b038616845290915281208054925090611126836124fb565b90915550506001600160801b03808316600090815260056020526040908190205490517f2c3bf5c2df4a0f54ef8f9448383414384591033997887f4c8f6b757c4828fad39261117992869291169061240b565b60405180910390a15050565b600380546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111fe610a51565b1561121b5760405162461bcd60e51b8152600401610382906120ea565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611251610de1565b60405161125e9190611c5d565b60405180910390a1565b816001600160a01b0316836001600160a01b0316141561129a5760405162461bcd60e51b81526004016103829061226d565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906112fe908590611db9565b60405180910390a3505050565b6001600160a01b0384166113315760405162461bcd60e51b815260040161038290612121565b600061133b610de1565b905061134c818787610ffe886115e6565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561138d5760405162461bcd60e51b8152600401610382906121db565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906113ca908490612481565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611420929190612425565b60405180910390a461143682888888888861163f565b50505050505050565b611447610a51565b6114635760405162461bcd60e51b815260040161038290611e9a565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611251610de1565b6114a4868686868686610fae565b6001600160a01b03851615610fae576114bb610a51565b15610fae5760405162461bcd60e51b815260040161038290611f8b565b6114ea846001600160a01b0316610fb6565b15610fae5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115239089908990889088908890600401611c71565b602060405180830381600087803b15801561153d57600080fd5b505af192505050801561156d575060408051601f3d908101601f1916820190925261156a91810190611b6b565b60015b6115b657611579612548565b80611584575061159e565b8060405162461bcd60e51b81526004016103829190611dcd565b60405162461bcd60e51b815260040161038290611de0565b6001600160e01b0319811663bc197c8160e01b146114365760405162461bcd60e51b815260040161038290611e3d565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061162e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611651846001600160a01b0316610fb6565b15610fae5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061168a9089908990889088908890600401611ccf565b602060405180830381600087803b1580156116a457600080fd5b505af19250505080156116d4575060408051601f3d908101601f191682019092526116d191810190611b6b565b60015b6116e057611579612548565b6001600160e01b0319811663f23a6e6160e01b146114365760405162461bcd60e51b815260040161038290611e3d565b600082601f830112611720578081fd5b813560206117356117308361245d565b612433565b8281528181019085830183850287018401881015611751578586fd5b855b8581101561176f57813584529284019290840190600101611753565b5090979650505050505050565b600082601f83011261178c578081fd5b813567ffffffffffffffff8111156117a6576117a661252c565b6117b9601f8201601f1916602001612433565b8181528460208386010111156117cd578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156117f8578081fd5b8135611803816125ed565b9392505050565b60006020828403121561181b578081fd5b8151611803816125ed565b60008060408385031215611838578081fd5b8235611843816125ed565b91506020830135611853816125ed565b809150509250929050565b600080600080600060a08688031215611875578081fd5b8535611880816125ed565b94506020860135611890816125ed565b9350604086013567ffffffffffffffff808211156118ac578283fd5b6118b889838a01611710565b945060608801359150808211156118cd578283fd5b6118d989838a01611710565b935060808801359150808211156118ee578283fd5b506118fb8882890161177c565b9150509295509295909350565b600080600080600060a0868803121561191f578081fd5b853561192a816125ed565b9450602086013561193a816125ed565b93506040860135925060608601359150608086013567ffffffffffffffff811115611963578182fd5b6118fb8882890161177c565b60008060408385031215611981578182fd5b823561198c816125ed565b9150602083013561185381612602565b600080604083850312156119ae578182fd5b82356119b9816125ed565b946020939093013593505050565b600080604083850312156119d9578182fd5b823567ffffffffffffffff808211156119f0578384fd5b818501915085601f830112611a03578384fd5b81356020611a136117308361245d565b82815281810190858301838502870184018b1015611a2f578889fd5b8896505b84871015611a5a578035611a46816125ed565b835260019690960195918301918301611a33565b5096505086013592505080821115611a70578283fd5b50611a7d85828601611710565b9150509250929050565b60008060408385031215611a99578182fd5b8251611aa481612602565b8092505060208084015167ffffffffffffffff811115611ac2578283fd5b8401601f81018613611ad2578283fd5b8051611ae06117308261245d565b81815283810190838501858402850186018a1015611afc578687fd5b8694505b83851015611b27578051611b1381612626565b835260019490940193918501918501611b00565b5080955050505050509250929050565b600060208284031215611b48578081fd5b5051919050565b600060208284031215611b60578081fd5b813561180381612610565b600060208284031215611b7c578081fd5b815161180381612610565b600060208284031215611b98578081fd5b813561180381612626565b60008060408385031215611bb5578182fd5b823561184381612626565b600060208284031215611bd1578081fd5b5035919050565b6000815180845260208085019450808401835b83811015611c0757815187529582019590820190600101611beb565b509495945050505050565b60008151808452815b81811015611c3757602081850181015186830182015201611c1b565b81811115611c485782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808816835280871660208401525060a06040830152611c9d60a0830186611bd8565b8281036060840152611caf8186611bd8565b90508281036080840152611cc38185611c12565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152611d0760a0830184611c12565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015611d6c5783516001600160801b031683529284019291840191600101611d47565b50909695505050505050565b6000602082526118036020830184611bd8565b600060408252611d9e6040830185611bd8565b8281036020840152611db08185611bd8565b95945050505050565b901515815260200190565b90815260200190565b6000602082526118036020830184611c12565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e746572000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e73000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060408201527f7768696c65207061757365640000000000000000000000000000000000000000606082015260800190565b60208082526017908201527f596f75206861766520616c7265616479206d696e746564000000000000000000604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201527f20617070726f7665640000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4d73672073656e646572206d7573742062652068756d616e206265696e672e00604082015260600190565b6020808252601a908201527f7a6b43726564656e7469616c206d7573742062652076616c6964000000000000604082015260600190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201527f72207472616e7366657200000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360408201527f20666f722073656c660000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860408201527f206d69736d617463680000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d61746368000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6001600160801b039390931683526001600160a01b03919091166020830152604082015260600190565b6001600160801b0392831681529116602082015260400190565b918252602082015260400190565b60405181810167ffffffffffffffff811182821017156124555761245561252c565b604052919050565b600067ffffffffffffffff8211156124775761247761252c565b5060209081020190565b6000821982111561249457612494612516565b500190565b6002810460018216806124ad57607f821691505b602082108114156124ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006001600160801b03808316818114156124f1576124f1612516565b6001019392505050565b600060001982141561250f5761250f612516565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561255857610a58565b600481823e6308c379a061256c8251612542565b1461257657610a58565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156125a65750505050610a58565b828401925082519150808211156125c05750505050610a58565b503d830160208284010111156125d857505050610a58565b601f01601f1916810160200160405291505090565b6001600160a01b0381168114610d4157600080fd5b8015158114610d4157600080fd5b6001600160e01b031981168114610d4157600080fd5b6001600160801b0381168114610d4157600080fdfea2646970667358221220c4127480973053334131e5af193d0562cffbcaa538ceb7bead92bf3d3865ebd764736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000f2e7e0eed35e60896cd3fa32050e2094a204f9a800000000000000000000000000000000000000000000000000000000000000047465737400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): test
Arg [1] : _registry (address): 0xF2e7e0EeD35E60896cd3fA32050e2094A204f9a8
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000f2e7e0eed35e60896cd3fa32050e2094a204f9a8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 7465737400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
41132:3309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20226:231;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19249:310;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37700:59::-;;;:::i;19970:105::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22165:442::-;;;;;;:::i;:::-;;:::i;:::-;;38044:71;;;:::i;37282:65::-;;;:::i;20623:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42015:1287::-;;;:::i;34844:86::-;;;:::i;40250:103::-;;;:::i;41235:25::-;;;:::i;:::-;;;;;;;:::i;44292:67::-;;;:::i;37435:61::-;;;:::i;38189:71::-;;;:::i;39599:87::-;;;:::i;21220:155::-;;;;;;:::i;:::-;;:::i;37844:67::-;;;:::i;38485:61::-;;;:::i;41383:69::-;;;;;;:::i;:::-;;:::i;37564:67::-;;;:::i;21447:168::-;;;;;;:::i;:::-;;:::i;43312:213::-;;;;;;:::i;:::-;;:::i;21687:401::-;;;;;;:::i;:::-;;:::i;40508:201::-;;;;;;:::i;:::-;;:::i;44367:71::-;;;:::i;38342:63::-;;;:::i;20226:231::-;20312:7;-1:-1:-1;;;;;20340:21:0;;20332:77;;;;-1:-1:-1;;;20332:77:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;20427:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;20427:22:0;;;;;;;;;;;;20226:231::o;19249:310::-;19351:4;-1:-1:-1;;;;;;19388:41:0;;19403:26;19388:41;;:110;;-1:-1:-1;;;;;;;19446:52:0;;19461:37;19446:52;19388:110;:163;;;;19515:36;19539:11;19515:23;:36::i;:::-;19368:183;19249:310;-1:-1:-1;;19249:310:0:o;37700:59::-;;;:::o;19970:105::-;20030:13;20063:4;20056:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19970:105;;;:::o;22165:442::-;22406:12;:10;:12::i;:::-;-1:-1:-1;;;;;22398:20:0;:4;-1:-1:-1;;;;;22398:20:0;;:60;;;;22422:36;22439:4;22445:12;:10;:12::i;22422:36::-;22376:160;;;;-1:-1:-1;;;22376:160:0;;;;;;;:::i;:::-;22547:52;22570:4;22576:2;22580:3;22585:7;22594:4;22547:22;:52::i;:::-;22165:442;;;;;:::o;38044:71::-;;;:::o;37282:65::-;;;:::o;20623:524::-;20779:16;20840:3;:10;20821:8;:15;:29;20813:83;;;;-1:-1:-1;;;20813:83:0;;;;;;;:::i;:::-;20909:30;20956:8;:15;20942:30;;;;;;-1:-1:-1;;;20942:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20942:30:0;;20909:63;;20990:9;20985:122;21009:8;:15;21005:1;:19;20985:122;;;21065:30;21075:8;21084:1;21075:11;;;;;;-1:-1:-1;;;21075:11:0;;;;;;;;;;;;;;;21088:3;21092:1;21088:6;;;;;;-1:-1:-1;;;21088:6:0;;;;;;;;;;;;;;;21065:9;:30::i;:::-;21046:13;21060:1;21046:16;;;;;;-1:-1:-1;;;21046:16:0;;;;;;;;;;;;;;;;;;:49;21026:3;;;:::i;:::-;;;20985:122;;;-1:-1:-1;21126:13:0;20623:524;-1:-1:-1;;;20623:524:0:o;42015:1287::-;42047:12;:10;:12::i;:::-;41694:18;:5;-1:-1:-1;;;;;41694:16:0;;:18::i;:::-;41693:19;41684:64;;;;-1:-1:-1;;;41684:64:0;;;;;;;:::i;:::-;42072:11:::1;42086:12;:10;:12::i;:::-;42207:8;::::0;;:52:::1;::::0;-1:-1:-1;;;42207:52:0;;42072:26;;-1:-1:-1;42179:16:0::1;::::0;-1:-1:-1;;;;;42207:8:0;;::::1;::::0;:18:::1;::::0;:52:::1;::::0;42226:32:::1;::::0;42207:52:::1;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42357:8;::::0;;:52:::1;::::0;-1:-1:-1;;;42357:52:0;;42179:81;;-1:-1:-1;42333:12:0::1;::::0;-1:-1:-1;;;;;42357:8:0;;::::1;::::0;:18:::1;::::0;:52:::1;::::0;42376:32:::1;::::0;42357:52:::1;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42333:77;;42451:19;42482:7;-1:-1:-1::0;;;;;42473:32:0::1;;42514:4;42473:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42451:69;;42562:12;42576:24:::0;42604:3:::1;-1:-1:-1::0;;;;;42604:8:0::1;;42613:3;42618:11;42604:26;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;42604:26:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;42561:69;;;;42651:7;42643:46;;;;-1:-1:-1::0;;;42643:46:0::1;;;;;;;:::i;:::-;42749:14;42795:7;42784:19;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;42784:19:0;;::::1;::::0;;;;;;42774:30;;42784:19:::1;42774:30:::0;;::::1;::::0;;-1:-1:-1;42859:3:0::1;42849:13:::0;;::::1;42766:39;42930:24;42849:13:::0;42930:8:::1;:24::i;:::-;-1:-1:-1::0;;;;;43024:30:0;::::1;;::::0;;;:14:::1;:30;::::0;;;;;;;-1:-1:-1;;;;;43024:35:0;::::1;::::0;;;;;;;;42914:40;;-1:-1:-1;43024:40:0;43016:76:::1;;;;-1:-1:-1::0;;;43016:76:0::1;;;;;;;:::i;:::-;43138:24;43144:3;43149:5;43156:1;43138:24;;;;;;;;;;;::::0;:5:::1;:24::i;:::-;43208:32;43220:14;43236:3;43208:11;:32::i;:::-;43258:36;43267:14;43283:3;43288:5;43258:36;;;;;;;;:::i;:::-;;;;;;;;41759:1;;;;;;;;;42015:1287:::0;:::o;34844:86::-;34915:7;;;;34844:86;;:::o;40250:103::-;39830:12;:10;:12::i;:::-;-1:-1:-1;;;;;39819:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39819:23:0;;39811:68;;;;-1:-1:-1;;;39811:68:0;;;;;;;:::i;:::-;40315:30:::1;40342:1;40315:18;:30::i;:::-;40250:103::o:0;41235:25::-;;;-1:-1:-1;;;;;41235:25:0;;:::o;44292:67::-;39830:12;:10;:12::i;:::-;-1:-1:-1;;;;;39819:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39819:23:0;;39811:68;;;;-1:-1:-1;;;39811:68:0;;;;;;;:::i;:::-;44337:14:::1;:12;:14::i;37435:61::-:0;;;:::o;38189:71::-;;;:::o;39599:87::-;39672:6;;;;;-1:-1:-1;;;;;39672:6:0;;39599:87::o;21220:155::-;21315:52;21334:12;:10;:12::i;:::-;21348:8;21358;21315:18;:52::i;:::-;21220:155;;:::o;37844:67::-;;;:::o;38485:61::-;;;:::o;41383:69::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;37564:67::-;;;:::o;21447:168::-;-1:-1:-1;;;;;21570:27:0;;;21546:4;21570:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21447:168::o;43312:213::-;-1:-1:-1;;;;;43409:16:0;;;43368:7;43459:20;;;:11;:20;;;;;;43368:7;;43409:23;43429:3;43409:23;;;;;43459:20;43499:18;43459:20;43409:23;43499:18;:::i;:::-;43492:25;43312:213;-1:-1:-1;;;;43312:213:0:o;21687:401::-;21903:12;:10;:12::i;:::-;-1:-1:-1;;;;;21895:20:0;:4;-1:-1:-1;;;;;21895:20:0;;:60;;;;21919:36;21936:4;21942:12;:10;:12::i;21919:36::-;21873:151;;;;-1:-1:-1;;;21873:151:0;;;;;;;:::i;:::-;22035:45;22053:4;22059:2;22063;22067:6;22075:4;22035:17;:45::i;40508:201::-;39830:12;:10;:12::i;:::-;-1:-1:-1;;;;;39819:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39819:23:0;;39811:68;;;;-1:-1:-1;;;39811:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40597:22:0;::::1;40589:73;;;;-1:-1:-1::0;;;40589:73:0::1;;;;;;;:::i;:::-;40673:28;40692:8;40673:18;:28::i;:::-;40508:201:::0;:::o;44367:71::-;39830:12;:10;:12::i;:::-;-1:-1:-1;;;;;39819:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39819:23:0;;39811:68;;;;-1:-1:-1;;;39811:68:0;;;;;;;:::i;:::-;44414:16:::1;:14;:16::i;38342:63::-:0;;;:::o;18025:157::-;-1:-1:-1;;;;;;18134:40:0;;18149:25;18134:40;18025:157;;;:::o;16963:98::-;17043:10;16963:98;:::o;24249:1074::-;24476:7;:14;24462:3;:10;:28;24454:81;;;;-1:-1:-1;;;24454:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24554:16:0;;24546:66;;;;-1:-1:-1;;;24546:66:0;;;;;;;:::i;:::-;24625:16;24644:12;:10;:12::i;:::-;24625:31;;24669:60;24690:8;24700:4;24706:2;24710:3;24715:7;24724:4;24669:20;:60::i;:::-;24747:9;24742:421;24766:3;:10;24762:1;:14;24742:421;;;24798:10;24811:3;24815:1;24811:6;;;;;;-1:-1:-1;;;24811:6:0;;;;;;;;;;;;;;;24798:19;;24832:14;24849:7;24857:1;24849:10;;;;;;-1:-1:-1;;;24849:10:0;;;;;;;;;;;;;;;;;;;;24876:19;24898:13;;;;;;;;;;-1:-1:-1;;;;;24898:19:0;;;;;;;;;;;;24849:10;;-1:-1:-1;24940:21:0;;;;24932:76;;;;-1:-1:-1;;;24932:76:0;;;;;;;:::i;:::-;25052:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25052:19:0;;;;;;;;;;25074:20;;;25052:42;;25124:17;;;;;;;:27;;25074:20;;25052:9;25124:27;;25074:20;;25124:27;:::i;:::-;;;;;;;;24742:421;;;24778:3;;;;:::i;:::-;;;24742:421;;;;25210:2;-1:-1:-1;;;;;25180:47:0;25204:4;-1:-1:-1;;;;;25180:47:0;25194:8;-1:-1:-1;;;;;25180:47:0;;25214:3;25219:7;25180:47;;;;;;;:::i;:::-;;;;;;;;25240:75;25276:8;25286:4;25292:2;25296:3;25301:7;25310:4;25240:35;:75::i;:::-;24249:1074;;;;;;:::o;8968:387::-;9291:20;9339:8;;;8968:387::o;26641:569::-;-1:-1:-1;;;;;26794:16:0;;26786:62;;;;-1:-1:-1;;;26786:62:0;;;;;;;:::i;:::-;26861:16;26880:12;:10;:12::i;:::-;26861:31;;26905:102;26926:8;26944:1;26948:2;26952:21;26970:2;26952:17;:21::i;:::-;26975:25;26993:6;26975:17;:25::i;:::-;27002:4;26905:20;:102::i;:::-;27020:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27020:17:0;;;;;;;;;:27;;27041:6;;27020:9;:27;;27041:6;;27020:27;:::i;:::-;;;;;;;;27100:2;-1:-1:-1;;;;;27063:52:0;27096:1;-1:-1:-1;;;;;27063:52:0;27078:8;-1:-1:-1;;;;;27063:52:0;;27104:2;27108:6;27063:52;;;;;;;:::i;:::-;;;;;;;;27128:74;27159:8;27177:1;27181:2;27185;27189:6;27197:4;27128:30;:74::i;43535:239::-;-1:-1:-1;;;;;43645:20:0;;;;;;;:11;:20;;;;;:22;;;;;;:20;:22;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;43645:22:0;;;;;;;;;;;;;;;43678:23;;-1:-1:-1;43678:23:0;;;:14;:23;;;;;;;;-1:-1:-1;;;;;43678:29:0;;;;;;;;;:31;;;-1:-1:-1;43678:29:0;:31;;;:::i;:::-;;;;-1:-1:-1;;;;;;;43745:20:0;;;;;;;:11;:20;;;;;;;;43725:41;;;;;;43736:7;;43745:20;;;43725:41;:::i;:::-;;;;;;;;43535:239;;:::o;40869:191::-;40962:6;;;-1:-1:-1;;;;;40979:17:0;;;40962:6;40979:17;;;;;;;;;;41012:40;;40962:6;;;;;;;;41012:40;;40943:16;;41012:40;40869:191;;:::o;35644:118::-;35170:8;:6;:8::i;:::-;35169:9;35161:38;;;;-1:-1:-1;;;35161:38:0;;;;;;;:::i;:::-;35704:7:::1;:14:::0;;-1:-1:-1;;35704:14:0::1;35714:4;35704:14;::::0;;35734:20:::1;35741:12;:10;:12::i;:::-;35734:20;;;;;;:::i;:::-;;;;;;;;35644:118::o:0;30435:331::-;30590:8;-1:-1:-1;;;;;30581:17:0;:5;-1:-1:-1;;;;;30581:17:0;;;30573:71;;;;-1:-1:-1;;;30573:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30655:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;30655:46:0;;;;;;;30717:41;;;;;30655:46;;30717:41;:::i;:::-;;;;;;;;30435:331;;;:::o;23071:820::-;-1:-1:-1;;;;;23259:16:0;;23251:66;;;;-1:-1:-1;;;23251:66:0;;;;;;;:::i;:::-;23330:16;23349:12;:10;:12::i;:::-;23330:31;;23374:96;23395:8;23405:4;23411:2;23415:21;23433:2;23415:17;:21::i;23374:96::-;23483:19;23505:13;;;;;;;;;;;-1:-1:-1;;;;;23505:19:0;;;;;;;;;;23543:21;;;;23535:76;;;;-1:-1:-1;;;23535:76:0;;;;;;;:::i;:::-;23647:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23647:19:0;;;;;;;;;;23669:20;;;23647:42;;23711:17;;;;;;;:27;;23669:20;;23647:9;23711:27;;23669:20;;23711:27;:::i;:::-;;;;;;;;23787:2;-1:-1:-1;;;;;23756:46:0;23781:4;-1:-1:-1;;;;;23756:46:0;23771:8;-1:-1:-1;;;;;23756:46:0;;23791:2;23795:6;23756:46;;;;;;;:::i;:::-;;;;;;;;23815:68;23846:8;23856:4;23862:2;23866;23870:6;23878:4;23815:30;:68::i;:::-;23071:820;;;;;;;:::o;35903:120::-;35447:8;:6;:8::i;:::-;35439:41;;;;-1:-1:-1;;;35439:41:0;;;;;;;:::i;:::-;35962:7:::1;:15:::0;;-1:-1:-1;;35962:15:0::1;::::0;;35993:22:::1;36002:12;:10;:12::i;43782:502::-:0;44027:72;44054:9;44065:5;44072:3;44077:4;44083:8;44093:5;44027:26;:72::i;:::-;-1:-1:-1;;;;;44163:19:0;;;44159:118;;44208:8;:6;:8::i;:::-;44207:9;44199:66;;;;-1:-1:-1;;;44199:66:0;;;;;;;:::i;32703:813::-;32943:15;:2;-1:-1:-1;;;;;32943:13:0;;:15::i;:::-;32939:570;;;32979:79;;-1:-1:-1;;;32979:79:0;;-1:-1:-1;;;;;32979:43:0;;;;;:79;;33023:8;;33033:4;;33039:3;;33044:7;;33053:4;;32979:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32979:79:0;;;;;;;;-1:-1:-1;;32979:79:0;;;;;;;;;;;;:::i;:::-;;;32975:523;;;;:::i;:::-;;;;;;;;33371:6;33364:14;;-1:-1:-1;;;33364:14:0;;;;;;;;:::i;32975:523::-;33420:62;;-1:-1:-1;;;33420:62:0;;;;;;;:::i;32975:523::-;-1:-1:-1;;;;;;33140:60:0;;-1:-1:-1;;;33140:60:0;33136:159;;33225:50;;-1:-1:-1;;;33225:50:0;;;;;;;:::i;33524:198::-;33644:16;;;33658:1;33644:16;;;;;;;;;33590;;33619:22;;33644:16;;;;;;;;;;;;-1:-1:-1;33644:16:0;33619:41;;33682:7;33671:5;33677:1;33671:8;;;;;;-1:-1:-1;;;33671:8:0;;;;;;;;;;;;;;;;;;:18;33709:5;33524:198;-1:-1:-1;;33524:198:0:o;31951:744::-;32166:15;:2;-1:-1:-1;;;;;32166:13:0;;:15::i;:::-;32162:526;;;32202:72;;-1:-1:-1;;;32202:72:0;;-1:-1:-1;;;;;32202:38:0;;;;;:72;;32241:8;;32251:4;;32257:2;;32261:6;;32269:4;;32202:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32202:72:0;;;;;;;;-1:-1:-1;;32202:72:0;;;;;;;;;;;;:::i;:::-;;;32198:479;;;;:::i;:::-;-1:-1:-1;;;;;;32324:55:0;;-1:-1:-1;;;32324:55:0;32320:154;;32404:50;;-1:-1:-1;;;32404:50:0;;;;;;;:::i;14:705:1:-;;127:3;120:4;112:6;108:17;104:27;94:2;;149:5;142;135:20;94:2;189:6;176:20;215:4;239:65;254:49;300:2;254:49;:::i;:::-;239:65;:::i;:::-;338:15;;;369:12;;;;401:15;;;447:11;;;435:24;;431:33;;428:42;-1:-1:-1;425:2:1;;;487:5;480;473:20;425:2;513:5;527:163;541:2;538:1;535:9;527:163;;;598:17;;586:30;;636:12;;;;668;;;;559:1;552:9;527:163;;;-1:-1:-1;708:5:1;;84:635;-1:-1:-1;;;;;;;84:635:1:o;724:551::-;;821:3;814:4;806:6;802:17;798:27;788:2;;843:5;836;829:20;788:2;883:6;870:20;909:18;905:2;902:26;899:2;;;931:18;;:::i;:::-;975:54;1017:2;998:13;;-1:-1:-1;;994:27:1;1023:4;990:38;975:54;:::i;:::-;1054:2;1045:7;1038:19;1100:3;1093:4;1088:2;1080:6;1076:15;1072:26;1069:35;1066:2;;;1121:5;1114;1107:20;1066:2;1190;1183:4;1175:6;1171:17;1164:4;1155:7;1151:18;1138:55;1213:16;;;1231:4;1209:27;1202:42;;;;1217:7;778:497;-1:-1:-1;;778:497:1:o;1280:259::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;1457:9;1444:23;1476:33;1503:5;1476:33;:::i;:::-;1528:5;1350:189;-1:-1:-1;;;1350:189:1:o;1544:263::-;;1667:2;1655:9;1646:7;1642:23;1638:32;1635:2;;;1688:6;1680;1673:22;1635:2;1725:9;1719:16;1744:33;1771:5;1744:33;:::i;1812:402::-;;;1941:2;1929:9;1920:7;1916:23;1912:32;1909:2;;;1962:6;1954;1947:22;1909:2;2006:9;1993:23;2025:33;2052:5;2025:33;:::i;:::-;2077:5;-1:-1:-1;2134:2:1;2119:18;;2106:32;2147:35;2106:32;2147:35;:::i;:::-;2201:7;2191:17;;;1899:315;;;;;:::o;2219:1129::-;;;;;;2458:3;2446:9;2437:7;2433:23;2429:33;2426:2;;;2480:6;2472;2465:22;2426:2;2524:9;2511:23;2543:33;2570:5;2543:33;:::i;:::-;2595:5;-1:-1:-1;2652:2:1;2637:18;;2624:32;2665:35;2624:32;2665:35;:::i;:::-;2719:7;-1:-1:-1;2777:2:1;2762:18;;2749:32;2800:18;2830:14;;;2827:2;;;2862:6;2854;2847:22;2827:2;2890:67;2949:7;2940:6;2929:9;2925:22;2890:67;:::i;:::-;2880:77;;3010:2;2999:9;2995:18;2982:32;2966:48;;3039:2;3029:8;3026:16;3023:2;;;3060:6;3052;3045:22;3023:2;3088:69;3149:7;3138:8;3127:9;3123:24;3088:69;:::i;:::-;3078:79;;3210:3;3199:9;3195:19;3182:33;3166:49;;3240:2;3230:8;3227:16;3224:2;;;3261:6;3253;3246:22;3224:2;;3289:53;3334:7;3323:8;3312:9;3308:24;3289:53;:::i;:::-;3279:63;;;2416:932;;;;;;;;:::o;3353:760::-;;;;;;3542:3;3530:9;3521:7;3517:23;3513:33;3510:2;;;3564:6;3556;3549:22;3510:2;3608:9;3595:23;3627:33;3654:5;3627:33;:::i;:::-;3679:5;-1:-1:-1;3736:2:1;3721:18;;3708:32;3749:35;3708:32;3749:35;:::i;:::-;3803:7;-1:-1:-1;3857:2:1;3842:18;;3829:32;;-1:-1:-1;3908:2:1;3893:18;;3880:32;;-1:-1:-1;3963:3:1;3948:19;;3935:33;3991:18;3980:30;;3977:2;;;4028:6;4020;4013:22;3977:2;4056:51;4099:7;4090:6;4079:9;4075:22;4056:51;:::i;4118:396::-;;;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4309:9;4296:23;4328:33;4355:5;4328:33;:::i;:::-;4380:5;-1:-1:-1;4437:2:1;4422:18;;4409:32;4450;4409;4450;:::i;4519:327::-;;;4648:2;4636:9;4627:7;4623:23;4619:32;4616:2;;;4669:6;4661;4654:22;4616:2;4713:9;4700:23;4732:33;4759:5;4732:33;:::i;:::-;4784:5;4836:2;4821:18;;;;4808:32;;-1:-1:-1;;;4606:240:1:o;4851:1295::-;;;5030:2;5018:9;5009:7;5005:23;5001:32;4998:2;;;5051:6;5043;5036:22;4998:2;5096:9;5083:23;5125:18;5166:2;5158:6;5155:14;5152:2;;;5187:6;5179;5172:22;5152:2;5230:6;5219:9;5215:22;5205:32;;5275:7;5268:4;5264:2;5260:13;5256:27;5246:2;;5302:6;5294;5287:22;5246:2;5343;5330:16;5365:4;5389:65;5404:49;5450:2;5404:49;:::i;5389:65::-;5488:15;;;5519:12;;;;5551:11;;;5589;;;5581:20;;5577:29;;5574:42;-1:-1:-1;5571:2:1;;;5634:6;5626;5619:22;5571:2;5661:6;5652:15;;5676:240;5690:2;5687:1;5684:9;5676:240;;;5761:3;5748:17;5778:33;5805:5;5778:33;:::i;:::-;5824:18;;5708:1;5701:9;;;;;5862:12;;;;5894;;5676:240;;;-1:-1:-1;5935:5:1;-1:-1:-1;;5978:18:1;;5965:32;;-1:-1:-1;;6009:16:1;;;6006:2;;;6043:6;6035;6028:22;6006:2;;6071:69;6132:7;6121:8;6110:9;6106:24;6071:69;:::i;:::-;6061:79;;;4988:1158;;;;;:::o;6151:1150::-;;;6313:2;6301:9;6292:7;6288:23;6284:32;6281:2;;;6334:6;6326;6319:22;6281:2;6371:9;6365:16;6390:30;6414:5;6390:30;:::i;:::-;6439:5;6429:15;;;6463:2;6509;6498:9;6494:18;6488:25;6536:18;6528:6;6525:30;6522:2;;;6573:6;6565;6558:22;6522:2;6601:22;;6654:4;6646:13;;6642:27;-1:-1:-1;6632:2:1;;6688:6;6680;6673:22;6632:2;6722;6716:9;6745:65;6760:49;6806:2;6760:49;:::i;6745:65::-;6844:15;;;6875:12;;;;6907:11;;;6945;;;6937:20;;6933:29;;6930:42;-1:-1:-1;6927:2:1;;;6990:6;6982;6975:22;6927:2;7017:6;7008:15;;7032:239;7046:2;7043:1;7040:9;7032:239;;;7112:3;7106:10;7129:35;7156:7;7129:35;:::i;:::-;7177:20;;7064:1;7057:9;;;;;7217:12;;;;7249;;7032:239;;;7036:3;7290:5;7280:15;;;;;;;6271:1030;;;;;:::o;7306:194::-;;7429:2;7417:9;7408:7;7404:23;7400:32;7397:2;;;7450:6;7442;7435:22;7397:2;-1:-1:-1;7478:16:1;;7387:113;-1:-1:-1;7387:113:1:o;7505:257::-;;7616:2;7604:9;7595:7;7591:23;7587:32;7584:2;;;7637:6;7629;7622:22;7584:2;7681:9;7668:23;7700:32;7726:5;7700:32;:::i;7767:261::-;;7889:2;7877:9;7868:7;7864:23;7860:32;7857:2;;;7910:6;7902;7895:22;7857:2;7947:9;7941:16;7966:32;7992:5;7966:32;:::i;8033:259::-;;8145:2;8133:9;8124:7;8120:23;8116:32;8113:2;;;8166:6;8158;8151:22;8113:2;8210:9;8197:23;8229:33;8256:5;8229:33;:::i;8297:402::-;;;8426:2;8414:9;8405:7;8401:23;8397:32;8394:2;;;8447:6;8439;8432:22;8394:2;8491:9;8478:23;8510:33;8537:5;8510:33;:::i;8704:190::-;;8816:2;8804:9;8795:7;8791:23;8787:32;8784:2;;;8837:6;8829;8822:22;8784:2;-1:-1:-1;8865:23:1;;8774:120;-1:-1:-1;8774:120:1:o;8899:443::-;;8996:5;8990:12;9023:6;9018:3;9011:19;9049:4;9078:2;9073:3;9069:12;9062:19;;9115:2;9108:5;9104:14;9136:3;9148:169;9162:6;9159:1;9156:13;9148:169;;;9223:13;;9211:26;;9257:12;;;;9292:15;;;;9184:1;9177:9;9148:169;;;-1:-1:-1;9333:3:1;;8966:376;-1:-1:-1;;;;;8966:376:1:o;9347:477::-;;9428:5;9422:12;9455:6;9450:3;9443:19;9480:3;9492:162;9506:6;9503:1;9500:13;9492:162;;;9568:4;9624:13;;;9620:22;;9614:29;9596:11;;;9592:20;;9585:59;9521:12;9492:162;;;9672:6;9669:1;9666:13;9663:2;;;9738:3;9731:4;9722:6;9717:3;9713:16;9709:27;9702:40;9663:2;-1:-1:-1;9806:2:1;9785:15;-1:-1:-1;;9781:29:1;9772:39;;;;9813:4;9768:50;;9398:426;-1:-1:-1;;9398:426:1:o;9829:226::-;-1:-1:-1;;;;;9993:55:1;;;;9975:74;;9963:2;9948:18;;9930:125::o;10060:863::-;;-1:-1:-1;;;;;10492:2:1;10484:6;10480:15;10469:9;10462:34;10544:2;10536:6;10532:15;10527:2;10516:9;10512:18;10505:43;;10584:3;10579:2;10568:9;10564:18;10557:31;10611:63;10669:3;10658:9;10654:19;10646:6;10611:63;:::i;:::-;10722:9;10714:6;10710:22;10705:2;10694:9;10690:18;10683:50;10756;10799:6;10791;10756:50;:::i;:::-;10742:64;;10855:9;10847:6;10843:22;10837:3;10826:9;10822:19;10815:51;10883:34;10910:6;10902;10883:34;:::i;:::-;10875:42;10391:532;-1:-1:-1;;;;;;;;10391:532:1:o;10928:585::-;;-1:-1:-1;;;;;11260:2:1;11252:6;11248:15;11237:9;11230:34;11312:2;11304:6;11300:15;11295:2;11284:9;11280:18;11273:43;;11352:6;11347:2;11336:9;11332:18;11325:34;11395:6;11390:2;11379:9;11375:18;11368:34;11439:3;11433;11422:9;11418:19;11411:32;11460:47;11502:3;11491:9;11487:19;11479:6;11460:47;:::i;:::-;11452:55;11159:354;-1:-1:-1;;;;;;;11159:354:1:o;11518:297::-;-1:-1:-1;;;;;11710:55:1;;;;11692:74;;11797:2;11782:18;;11775:34;11680:2;11665:18;;11647:168::o;11820:676::-;11991:2;12043:21;;;12113:13;;12016:18;;;12135:22;;;11820:676;;11991:2;12214:15;;;;12188:2;12173:18;;;11820:676;12260:210;12274:6;12271:1;12268:13;12260:210;;;12339:13;;-1:-1:-1;;;;;12335:54:1;12323:67;;12445:15;;;;12410:12;;;;12296:1;12289:9;12260:210;;;-1:-1:-1;12487:3:1;;11971:525;-1:-1:-1;;;;;;11971:525:1:o;12501:267::-;;12680:2;12669:9;12662:21;12700:62;12758:2;12747:9;12743:18;12735:6;12700:62;:::i;12773:477::-;;13030:2;13019:9;13012:21;13056:62;13114:2;13103:9;13099:18;13091:6;13056:62;:::i;:::-;13166:9;13158:6;13154:22;13149:2;13138:9;13134:18;13127:50;13194;13237:6;13229;13194:50;:::i;:::-;13186:58;13002:248;-1:-1:-1;;;;;13002:248:1:o;13255:187::-;13420:14;;13413:22;13395:41;;13383:2;13368:18;;13350:92::o;13447:177::-;13593:25;;;13581:2;13566:18;;13548:76::o;13878:221::-;;14027:2;14016:9;14009:21;14047:46;14089:2;14078:9;14074:18;14066:6;14047:46;:::i;14104:416::-;14306:2;14288:21;;;14345:2;14325:18;;;14318:30;14384:34;14379:2;14364:18;;14357:62;14455:22;14450:2;14435:18;;14428:50;14510:3;14495:19;;14278:242::o;14525:404::-;14727:2;14709:21;;;14766:2;14746:18;;;14739:30;14805:34;14800:2;14785:18;;14778:62;14876:10;14871:2;14856:18;;14849:38;14919:3;14904:19;;14699:230::o;14934:344::-;15136:2;15118:21;;;15175:2;15155:18;;;15148:30;15214:22;15209:2;15194:18;;15187:50;15269:2;15254:18;;15108:170::o;15283:407::-;15485:2;15467:21;;;15524:2;15504:18;;;15497:30;15563:34;15558:2;15543:18;;15536:62;15634:13;15629:2;15614:18;;15607:41;15680:3;15665:19;;15457:233::o;15695:402::-;15897:2;15879:21;;;15936:2;15916:18;;;15909:30;15975:34;15970:2;15955:18;;15948:62;16046:8;16041:2;16026:18;;16019:36;16087:3;16072:19;;15869:228::o;16102:408::-;16304:2;16286:21;;;16343:2;16323:18;;;16316:30;16382:34;16377:2;16362:18;;16355:62;16453:14;16448:2;16433:18;;16426:42;16500:3;16485:19;;16276:234::o;16515:347::-;16717:2;16699:21;;;16756:2;16736:18;;;16729:30;16795:25;16790:2;16775:18;;16768:53;16853:2;16838:18;;16689:173::o;16867:405::-;17069:2;17051:21;;;17108:2;17088:18;;;17081:30;17147:34;17142:2;17127:18;;17120:62;17218:11;17213:2;17198:18;;17191:39;17262:3;17247:19;;17041:231::o;17277:355::-;17479:2;17461:21;;;17518:2;17498:18;;;17491:30;17557:33;17552:2;17537:18;;17530:61;17623:2;17608:18;;17451:181::o;17637:350::-;17839:2;17821:21;;;17878:2;17858:18;;;17851:30;17917:28;17912:2;17897:18;;17890:56;17978:2;17963:18;;17811:176::o;17992:340::-;18194:2;18176:21;;;18233:2;18213:18;;;18206:30;18272:18;18267:2;18252:18;;18245:46;18323:2;18308:18;;18166:166::o;18337:401::-;18539:2;18521:21;;;18578:2;18558:18;;;18551:30;18617:34;18612:2;18597:18;;18590:62;18688:7;18683:2;18668:18;;18661:35;18728:3;18713:19;;18511:227::o;18743:414::-;18945:2;18927:21;;;18984:2;18964:18;;;18957:30;19023:34;19018:2;19003:18;;18996:62;19094:20;19089:2;19074:18;;19067:48;19147:3;19132:19;;18917:240::o;19162:406::-;19364:2;19346:21;;;19403:2;19383:18;;;19376:30;19442:34;19437:2;19422:18;;19415:62;19513:12;19508:2;19493:18;;19486:40;19558:3;19543:19;;19336:232::o;19573:356::-;19775:2;19757:21;;;19794:18;;;19787:30;19853:34;19848:2;19833:18;;19826:62;19920:2;19905:18;;19747:182::o;19934:405::-;20136:2;20118:21;;;20175:2;20155:18;;;20148:30;20214:34;20209:2;20194:18;;20187:62;20285:11;20280:2;20265:18;;20258:39;20329:3;20314:19;;20108:231::o;20344:405::-;20546:2;20528:21;;;20585:2;20565:18;;;20558:30;20624:34;20619:2;20604:18;;20597:62;20695:11;20690:2;20675:18;;20668:39;20739:3;20724:19;;20518:231::o;20754:404::-;20956:2;20938:21;;;20995:2;20975:18;;;20968:30;21034:34;21029:2;21014:18;;21007:62;21105:10;21100:2;21085:18;;21078:38;21148:3;21133:19;;20928:230::o;21163:397::-;21365:2;21347:21;;;21404:2;21384:18;;;21377:30;21443:34;21438:2;21423:18;;21416:62;21514:3;21509:2;21494:18;;21487:31;21550:3;21535:19;;21337:223::o;21565:409::-;-1:-1:-1;;;;;21785:47:1;;;;21767:66;;-1:-1:-1;;;;;21869:55:1;;;;21864:2;21849:18;;21842:83;21956:2;21941:18;;21934:34;21755:2;21740:18;;21722:252::o;21979:319::-;-1:-1:-1;;;;;22224:15:1;;;22206:34;;22276:15;;22271:2;22256:18;;22249:43;22141:2;22126:18;;22108:190::o;22485:248::-;22659:25;;;22715:2;22700:18;;22693:34;22647:2;22632:18;;22614:119::o;22738:251::-;22808:2;22802:9;22838:17;;;22885:18;22870:34;;22906:22;;;22867:62;22864:2;;;22932:18;;:::i;:::-;22968:2;22961:22;22782:207;;-1:-1:-1;22782:207:1:o;22994:192::-;;23093:18;23085:6;23082:30;23079:2;;;23115:18;;:::i;:::-;-1:-1:-1;23175:4:1;23156:17;;;23152:28;;23069:117::o;23191:128::-;;23262:1;23258:6;23255:1;23252:13;23249:2;;;23268:18;;:::i;:::-;-1:-1:-1;23304:9:1;;23239:80::o;23324:437::-;23409:1;23399:12;;23456:1;23446:12;;;23467:2;;23521:4;23513:6;23509:17;23499:27;;23467:2;23574;23566:6;23563:14;23543:18;23540:38;23537:2;;;-1:-1:-1;;;23608:1:1;23601:88;23712:4;23709:1;23702:15;23740:4;23737:1;23730:15;23537:2;;23379:382;;;:::o;23766:226::-;;-1:-1:-1;;;;;23902:2:1;23895:5;23891:14;23929:2;23920:7;23917:15;23914:2;;;23935:18;;:::i;:::-;23984:1;23971:15;;23813:179;-1:-1:-1;;;23813:179:1:o;23997:135::-;;-1:-1:-1;;24057:17:1;;24054:2;;;24077:18;;:::i;:::-;-1:-1:-1;24124:1:1;24113:13;;24044:88::o;24137:184::-;-1:-1:-1;;;24186:1:1;24179:88;24286:4;24283:1;24276:15;24310:4;24307:1;24300:15;24326:184;-1:-1:-1;;;24375:1:1;24368:88;24475:4;24472:1;24465:15;24499:4;24496:1;24489:15;24515:88;24590:3;24586:15;;24572:31::o;24608:764::-;;24689:4;24671:16;24668:26;24665:2;;;24697:5;;24665:2;24738:1;24733:3;24728;24713:27;24800:10;24762:36;24793:3;24787:10;24762:36;:::i;:::-;24759:52;24749:2;;24815:5;;24749:2;24849;24843:9;24889:16;-1:-1:-1;;24885:29:1;24882:1;24843:9;24861:54;24944:4;24938:11;24968:16;25003:18;25074:2;25067:4;25059:6;25055:17;25052:25;25047:2;25039:6;25036:14;25033:45;25030:2;;;25081:5;;;;;;25030:2;25118:6;25112:4;25108:17;25097:28;;25154:3;25148:10;25134:24;;25181:2;25173:6;25170:14;25167:2;;;25187:5;;;;;;25167:2;;25248:16;25242:4;25238:27;25231:4;25222:6;25217:3;25213:16;25209:27;25206:60;25203:2;;;25269:5;;;;;25203:2;25334;25313:15;-1:-1:-1;;25309:29:1;25300:39;;25341:4;25296:50;25292:2;25285:62;25304:3;-1:-1:-1;;24655:717:1;:::o;25377:156::-;-1:-1:-1;;;;;25458:5:1;25454:54;25447:5;25444:65;25434:2;;25523:1;25520;25513:12;25538:120;25626:5;25619:13;25612:21;25605:5;25602:32;25592:2;;25648:1;25645;25638:12;25663:179;-1:-1:-1;;;;;;25743:5:1;25739:78;25732:5;25729:89;25719:2;;25832:1;25829;25822:12;25847:148;-1:-1:-1;;;;;25928:5:1;25924:46;25917:5;25914:57;25904:2;;25985:1;25982;25975:12
Swarm Source
ipfs://c4127480973053334131e5af193d0562cffbcaa538ceb7bead92bf3d3865ebd7
[ 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.