Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multi Chain
Multichain Addresses
N/ALatest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 7701139 | 359 days 15 hrs ago | IN | Create: ERC5679Ext1155RefImpl | 0 ETH | 0.00032151 |
Loading...
Loading
Contract Name:
ERC5679Ext1155RefImpl
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 // Author: Zainan Victor Zhou <[email protected]> // Open source repo: http://zzn.li/ercref pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "./ERC5679.sol"; contract ERC5679Ext1155RefImpl is ERC5679Ext1155, ERC1155 { event ErcRefImplDeploy(uint256 version, string name, string url); constructor(uint256 _version) ERC1155("") { emit ErcRefImplDeploy(_version, "ERC5679Ext1155RefImpl", "http://zzn.li/ercref"); } function safeMint( address _to, uint256 _id, uint256 _amount, bytes calldata _data ) external override { _mint(_to, _id, _amount, _data); } function safeMintBatch( address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external override { _mintBatch(to, ids, amounts, data); } function burn( address _from, uint256 _id, uint256 _amount, bytes[] calldata // _data (unused) ) external override { _burn(_from, _id, _amount); } function burnBatch( address _from, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata // _data (unused) ) external override { _burnBatch(_from, ids, amounts); } function supportsInterface(bytes4 interfaceId) public view override(ERC1155, ERC5679Ext1155) returns (bool) {} }
// SPDX-License-Identifier: Apache-2.0 // Author: Zainan Victor Zhou <[email protected]> pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "./IERC5679.sol"; abstract contract ERC5679Ext20 is IERC5679Ext20, ERC165 { function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5679Ext20).interfaceId || super.supportsInterface(interfaceId); } } abstract contract ERC5679Ext721 is IERC5679Ext721, ERC165 { function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5679Ext721).interfaceId || super.supportsInterface(interfaceId); } } abstract contract ERC5679Ext1155 is IERC5679Ext1155, ERC165 { function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5679Ext1155).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.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: address zero is not a valid owner"); 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 token 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: caller is not token 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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, 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); _afterTokenTransfer(operator, from, to, ids, amounts, data); _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); _afterTokenTransfer(operator, from, to, ids, amounts, data); _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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _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); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * 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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); 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); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * 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); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {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 `ids` and `amounts` 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 {} /** * @dev Hook that is called after 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 _afterTokenTransfer( 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; } }
// SPDX-License-Identifier: Apache-2.0 // Author: Zainan Victor Zhou <[email protected]> import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; pragma solidity ^0.8.9; interface IERC5679Ext20 { function mint(address _to, uint256 _amount, bytes calldata _data) external; function burn(address _from, uint256 _amount, bytes calldata _data) external; } interface IERC5679Ext721 { function safeMint(address _to, uint256 _id, bytes calldata _data) external; function burn(address _from, uint256 _id, bytes calldata _data) external; } interface IERC5679Ext1155 { function safeMint(address _to, uint256 _id, uint256 _amount, bytes calldata _data) external; function safeMintBatch(address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; function burn(address _from, uint256 _id, uint256 _amount, bytes[] calldata _data) external; function burnBatch(address _from, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata _data) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.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 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"uint256","name":"_version","type":"uint256"}],"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":"uint256","name":"version","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"url","type":"string"}],"name":"ErcRefImplDeploy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes[]","name":"","type":"bytes[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","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":[{"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":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"safeMintBatch","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":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200393e3803806200393e8339818101604052810190620000379190620000ee565b6040518060200160405280600081525062000058816200009960201b60201c565b507ffb5c37dd7c9ac630435f7dd4758617b3ee83e25aaf927852f52543bc84b612e2816040516200008a9190620001e2565b60405180910390a15062000580565b8060029081620000aa919062000499565b5050565b600080fd5b6000819050919050565b620000c881620000b3565b8114620000d457600080fd5b50565b600081519050620000e881620000bd565b92915050565b600060208284031215620001075762000106620000ae565b5b60006200011784828501620000d7565b91505092915050565b6200012b81620000b3565b82525050565b600082825260208201905092915050565b7f4552433536373945787431313535526566496d706c0000000000000000000000600082015250565b60006200017a60158362000131565b9150620001878262000142565b602082019050919050565b7f687474703a2f2f7a7a6e2e6c692f657263726566000000000000000000000000600082015250565b6000620001ca60148362000131565b9150620001d78262000192565b602082019050919050565b6000606082019050620001f9600083018462000120565b81810360208301526200020c816200016b565b905081810360408301526200022181620001bb565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ab57607f821691505b602082108103620002c157620002c062000263565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200032b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ec565b620003378683620002ec565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200037a620003746200036e84620000b3565b6200034f565b620000b3565b9050919050565b6000819050919050565b620003968362000359565b620003ae620003a58262000381565b848454620002f9565b825550505050565b600090565b620003c5620003b6565b620003d28184846200038b565b505050565b5b81811015620003fa57620003ee600082620003bb565b600181019050620003d8565b5050565b601f82111562000449576200041381620002c7565b6200041e84620002dc565b810160208510156200042e578190505b620004466200043d85620002dc565b830182620003d7565b50505b505050565b600082821c905092915050565b60006200046e600019846008026200044e565b1980831691505092915050565b60006200048983836200045b565b9150826002028217905092915050565b620004a48262000229565b67ffffffffffffffff811115620004c057620004bf62000234565b5b620004cc825462000292565b620004d9828285620003fe565b600060209050601f831160018114620005115760008415620004fc578287015190505b6200050885826200047b565b86555062000578565b601f1984166200052186620002c7565b60005b828110156200054b5784890151825560018201915060208501945060208101905062000524565b868310156200056b578489015162000567601f8916826200045b565b8355505b6001600288020188555050505b505050505050565b6133ae80620005906000396000f3fe608060405234801561001057600080fd5b50600436106100b35760003560e01c80635473422e116100715780635473422e146101b05780635cfa9297146101cc578063a22cb465146101e8578063c39dfed814610204578063e985e9c514610220578063f242432a14610250576100b3565b8062fdd58e146100b857806301ffc9a7146100e85780630e89341c146101185780632eb2c2d6146101485780633fdaf33b146101645780634e1273f414610180575b600080fd5b6100d260048036038101906100cd9190611dd1565b61026c565b6040516100df9190611e20565b60405180910390f35b61010260048036038101906100fd9190611e93565b610334565b60405161010f9190611edb565b60405180910390f35b610132600480360381019061012d9190611ef6565b61033b565b60405161013f9190611fb3565b60405180910390f35b610162600480360381019061015d91906121d2565b6103cf565b005b61017e600480360381019061017991906122fc565b610470565b005b61019a60048036038101906101959190612447565b610482565b6040516101a7919061257d565b60405180910390f35b6101ca60048036038101906101c5919061264b565b61059b565b005b6101e660048036038101906101e19190612714565b610631565b005b61020260048036038101906101fd91906127c8565b610688565b005b61021e6004803603810190610219919061264b565b61069e565b005b61023a60048036038101906102359190612808565b610779565b6040516102479190611edb565b60405180910390f35b61026a60048036038101906102659190612848565b61080d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d390612951565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000919050565b60606002805461034a906129a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610376906129a0565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b50505050509050919050565b6103d76108ae565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061041d575061041c856104176108ae565b610779565b5b61045c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045390612a43565b60405180910390fd5b61046985858585856108b6565b5050505050565b61047b858585610bd7565b5050505050565b606081518351146104c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bf90612ad5565b60405180910390fd5b6000835167ffffffffffffffff8111156104e5576104e4611fda565b5b6040519080825280602002602001820160405280156105135781602001602082028036833780820191505090505b50905060005b84518110156105905761056085828151811061053857610537612af5565b5b602002602001015185838151811061055357610552612af5565b5b602002602001015161026c565b82828151811061057357610572612af5565b5b6020026020010181815250508061058990612b53565b9050610519565b508091505092915050565b61062887878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610e1d565b50505050505050565b61068185858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506110eb565b5050505050565b61069a6106936108ae565b838361129b565b5050565b61077087878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611407565b50505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6108156108ae565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061085b575061085a856108556108ae565b610779565b5b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190612a43565b60405180910390fd5b6108a78585858585611633565b5050505050565b600033905090565b81518351146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090612c9f565b60405180910390fd5b60006109736108ae565b90506109838187878787876118ce565b60005b8451811015610b345760008582815181106109a4576109a3612af5565b5b6020026020010151905060008583815181106109c3576109c2612af5565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612d31565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b199190612d51565b9250508190555050505080610b2d90612b53565b9050610986565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610bab929190612d85565b60405180910390a4610bc18187878787876118d6565b610bcf8187878787876118de565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90612e2e565b60405180910390fd5b6000610c506108ae565b90506000610c5d84611ab5565b90506000610c6a84611ab5565b9050610c8a838760008585604051806020016040528060008152506118ce565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890612ec0565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610dee929190612ee0565b60405180910390a4610e14848860008686604051806020016040528060008152506118d6565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612e2e565b60405180910390fd5b8051825114610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790612c0d565b60405180910390fd5b6000610eda6108ae565b9050610efa818560008686604051806020016040528060008152506118ce565b60005b8351811015611047576000848281518110610f1b57610f1a612af5565b5b602002602001015190506000848381518110610f3a57610f39612af5565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290612ec0565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061103f90612b53565b915050610efd565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516110bf929190612d85565b60405180910390a46110e5818560008686604051806020016040528060008152506118d6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612f7b565b60405180910390fd5b60006111646108ae565b9050600061117185611ab5565b9050600061117e85611ab5565b905061118f836000898585896118ce565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ee9190612d51565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161126c929190612ee0565b60405180910390a4611283836000898585896118d6565b61129283600089898989611b2f565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113009061300d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190611edb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90612f7b565b60405180910390fd5b81518351146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190612c0d565b60405180910390fd5b60006114c46108ae565b90506114d5816000878787876118ce565b60005b845181101561158e578381815181106114f4576114f3612af5565b5b602002602001015160008087848151811061151257611511612af5565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115749190612d51565b92505081905550808061158690612b53565b9150506114d8565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611606929190612d85565b60405180910390a461161d816000878787876118d6565b61162c816000878787876118de565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990612c9f565b60405180910390fd5b60006116ac6108ae565b905060006116b985611ab5565b905060006116c685611ab5565b90506116d68389898585896118ce565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490612d31565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118229190612d51565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161189f929190612ee0565b60405180910390a46118b5848a8a86868a6118d6565b6118c3848a8a8a8a8a611b2f565b505050505050505050565b505050505050565b505050505050565b6118fd8473ffffffffffffffffffffffffffffffffffffffff16611d06565b15611aad578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611943959493929190613091565b6020604051808303816000875af192505050801561197f57506040513d601f19601f8201168201806040525081019061197c919061310e565b60015b611a245761198b613148565b806308c379a0036119e7575061199f61316a565b806119aa57506119e9565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9190611fb3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b9061326c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa2906132fe565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611ad457611ad3611fda565b5b604051908082528060200260200182016040528015611b025781602001602082028036833780820191505090505b5090508281600081518110611b1a57611b19612af5565b5b60200260200101818152505080915050919050565b611b4e8473ffffffffffffffffffffffffffffffffffffffff16611d06565b15611cfe578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611b9495949392919061331e565b6020604051808303816000875af1925050508015611bd057506040513d601f19601f82011682018060405250810190611bcd919061310e565b60015b611c7557611bdc613148565b806308c379a003611c385750611bf061316a565b80611bfb5750611c3a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f9190611fb3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c9061326c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906132fe565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d6882611d3d565b9050919050565b611d7881611d5d565b8114611d8357600080fd5b50565b600081359050611d9581611d6f565b92915050565b6000819050919050565b611dae81611d9b565b8114611db957600080fd5b50565b600081359050611dcb81611da5565b92915050565b60008060408385031215611de857611de7611d33565b5b6000611df685828601611d86565b9250506020611e0785828601611dbc565b9150509250929050565b611e1a81611d9b565b82525050565b6000602082019050611e356000830184611e11565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e7081611e3b565b8114611e7b57600080fd5b50565b600081359050611e8d81611e67565b92915050565b600060208284031215611ea957611ea8611d33565b5b6000611eb784828501611e7e565b91505092915050565b60008115159050919050565b611ed581611ec0565b82525050565b6000602082019050611ef06000830184611ecc565b92915050565b600060208284031215611f0c57611f0b611d33565b5b6000611f1a84828501611dbc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f5d578082015181840152602081019050611f42565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f8582611f23565b611f8f8185611f2e565b9350611f9f818560208601611f3f565b611fa881611f69565b840191505092915050565b60006020820190508181036000830152611fcd8184611f7a565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61201282611f69565b810181811067ffffffffffffffff8211171561203157612030611fda565b5b80604052505050565b6000612044611d29565b90506120508282612009565b919050565b600067ffffffffffffffff8211156120705761206f611fda565b5b602082029050602081019050919050565b600080fd5b600061209961209484612055565b61203a565b905080838252602082019050602084028301858111156120bc576120bb612081565b5b835b818110156120e557806120d18882611dbc565b8452602084019350506020810190506120be565b5050509392505050565b600082601f83011261210457612103611fd5565b5b8135612114848260208601612086565b91505092915050565b600080fd5b600067ffffffffffffffff82111561213d5761213c611fda565b5b61214682611f69565b9050602081019050919050565b82818337600083830152505050565b600061217561217084612122565b61203a565b9050828152602081018484840111156121915761219061211d565b5b61219c848285612153565b509392505050565b600082601f8301126121b9576121b8611fd5565b5b81356121c9848260208601612162565b91505092915050565b600080600080600060a086880312156121ee576121ed611d33565b5b60006121fc88828901611d86565b955050602061220d88828901611d86565b945050604086013567ffffffffffffffff81111561222e5761222d611d38565b5b61223a888289016120ef565b935050606086013567ffffffffffffffff81111561225b5761225a611d38565b5b612267888289016120ef565b925050608086013567ffffffffffffffff81111561228857612287611d38565b5b612294888289016121a4565b9150509295509295909350565b600080fd5b60008083601f8401126122bc576122bb611fd5565b5b8235905067ffffffffffffffff8111156122d9576122d86122a1565b5b6020830191508360208202830111156122f5576122f4612081565b5b9250929050565b60008060008060006080868803121561231857612317611d33565b5b600061232688828901611d86565b955050602061233788828901611dbc565b945050604061234888828901611dbc565b935050606086013567ffffffffffffffff81111561236957612368611d38565b5b612375888289016122a6565b92509250509295509295909350565b600067ffffffffffffffff82111561239f5761239e611fda565b5b602082029050602081019050919050565b60006123c36123be84612384565b61203a565b905080838252602082019050602084028301858111156123e6576123e5612081565b5b835b8181101561240f57806123fb8882611d86565b8452602084019350506020810190506123e8565b5050509392505050565b600082601f83011261242e5761242d611fd5565b5b813561243e8482602086016123b0565b91505092915050565b6000806040838503121561245e5761245d611d33565b5b600083013567ffffffffffffffff81111561247c5761247b611d38565b5b61248885828601612419565b925050602083013567ffffffffffffffff8111156124a9576124a8611d38565b5b6124b5858286016120ef565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6124f481611d9b565b82525050565b600061250683836124eb565b60208301905092915050565b6000602082019050919050565b600061252a826124bf565b61253481856124ca565b935061253f836124db565b8060005b8381101561257057815161255788826124fa565b975061256283612512565b925050600181019050612543565b5085935050505092915050565b60006020820190508181036000830152612597818461251f565b905092915050565b60008083601f8401126125b5576125b4611fd5565b5b8235905067ffffffffffffffff8111156125d2576125d16122a1565b5b6020830191508360208202830111156125ee576125ed612081565b5b9250929050565b60008083601f84011261260b5761260a611fd5565b5b8235905067ffffffffffffffff811115612628576126276122a1565b5b60208301915083600182028301111561264457612643612081565b5b9250929050565b60008060008060008060006080888a03121561266a57612669611d33565b5b60006126788a828b01611d86565b975050602088013567ffffffffffffffff81111561269957612698611d38565b5b6126a58a828b0161259f565b9650965050604088013567ffffffffffffffff8111156126c8576126c7611d38565b5b6126d48a828b0161259f565b9450945050606088013567ffffffffffffffff8111156126f7576126f6611d38565b5b6127038a828b016125f5565b925092505092959891949750929550565b6000806000806000608086880312156127305761272f611d33565b5b600061273e88828901611d86565b955050602061274f88828901611dbc565b945050604061276088828901611dbc565b935050606086013567ffffffffffffffff81111561278157612780611d38565b5b61278d888289016125f5565b92509250509295509295909350565b6127a581611ec0565b81146127b057600080fd5b50565b6000813590506127c28161279c565b92915050565b600080604083850312156127df576127de611d33565b5b60006127ed85828601611d86565b92505060206127fe858286016127b3565b9150509250929050565b6000806040838503121561281f5761281e611d33565b5b600061282d85828601611d86565b925050602061283e85828601611d86565b9150509250929050565b600080600080600060a0868803121561286457612863611d33565b5b600061287288828901611d86565b955050602061288388828901611d86565b945050604061289488828901611dbc565b93505060606128a588828901611dbc565b925050608086013567ffffffffffffffff8111156128c6576128c5611d38565b5b6128d2888289016121a4565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061293b602a83611f2e565b9150612946826128df565b604082019050919050565b6000602082019050818103600083015261296a8161292e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129b857607f821691505b6020821081036129cb576129ca612971565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000612a2d602f83611f2e565b9150612a38826129d1565b604082019050919050565b60006020820190508181036000830152612a5c81612a20565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612abf602983611f2e565b9150612aca82612a63565b604082019050919050565b60006020820190508181036000830152612aee81612ab2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b5e82611d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b9057612b8f612b24565b5b600182019050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612bf7602883611f2e565b9150612c0282612b9b565b604082019050919050565b60006020820190508181036000830152612c2681612bea565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c89602583611f2e565b9150612c9482612c2d565b604082019050919050565b60006020820190508181036000830152612cb881612c7c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612d1b602a83611f2e565b9150612d2682612cbf565b604082019050919050565b60006020820190508181036000830152612d4a81612d0e565b9050919050565b6000612d5c82611d9b565b9150612d6783611d9b565b9250828201905080821115612d7f57612d7e612b24565b5b92915050565b60006040820190508181036000830152612d9f818561251f565b90508181036020830152612db3818461251f565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e18602383611f2e565b9150612e2382612dbc565b604082019050919050565b60006020820190508181036000830152612e4781612e0b565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612eaa602483611f2e565b9150612eb582612e4e565b604082019050919050565b60006020820190508181036000830152612ed981612e9d565b9050919050565b6000604082019050612ef56000830185611e11565b612f026020830184611e11565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f65602183611f2e565b9150612f7082612f09565b604082019050919050565b60006020820190508181036000830152612f9481612f58565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612ff7602983611f2e565b915061300282612f9b565b604082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b61303681611d5d565b82525050565b600081519050919050565b600082825260208201905092915050565b60006130638261303c565b61306d8185613047565b935061307d818560208601611f3f565b61308681611f69565b840191505092915050565b600060a0820190506130a6600083018861302d565b6130b3602083018761302d565b81810360408301526130c5818661251f565b905081810360608301526130d9818561251f565b905081810360808301526130ed8184613058565b90509695505050505050565b60008151905061310881611e67565b92915050565b60006020828403121561312457613123611d33565b5b6000613132848285016130f9565b91505092915050565b60008160e01c9050919050565b600060033d11156131675760046000803e61316460005161313b565b90505b90565b600060443d106131f75761317c611d29565b60043d036004823e80513d602482011167ffffffffffffffff821117156131a45750506131f7565b808201805167ffffffffffffffff8111156131c257505050506131f7565b80602083010160043d0385018111156131df5750505050506131f7565b6131ee82602001850186612009565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613256603483611f2e565b9150613261826131fa565b604082019050919050565b6000602082019050818103600083015261328581613249565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006132e8602883611f2e565b91506132f38261328c565b604082019050919050565b60006020820190508181036000830152613317816132db565b9050919050565b600060a082019050613333600083018861302d565b613340602083018761302d565b61334d6040830186611e11565b61335a6060830185611e11565b818103608083015261336c8184613058565b9050969550505050505056fea2646970667358221220ea861dbbcbd7ebb69e07f0a110171d71cc5ed230e9864e310961541aa7d4b0fc64736f6c634300081100330000000000000000000000000000000000000000000000000000000000001002
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b35760003560e01c80635473422e116100715780635473422e146101b05780635cfa9297146101cc578063a22cb465146101e8578063c39dfed814610204578063e985e9c514610220578063f242432a14610250576100b3565b8062fdd58e146100b857806301ffc9a7146100e85780630e89341c146101185780632eb2c2d6146101485780633fdaf33b146101645780634e1273f414610180575b600080fd5b6100d260048036038101906100cd9190611dd1565b61026c565b6040516100df9190611e20565b60405180910390f35b61010260048036038101906100fd9190611e93565b610334565b60405161010f9190611edb565b60405180910390f35b610132600480360381019061012d9190611ef6565b61033b565b60405161013f9190611fb3565b60405180910390f35b610162600480360381019061015d91906121d2565b6103cf565b005b61017e600480360381019061017991906122fc565b610470565b005b61019a60048036038101906101959190612447565b610482565b6040516101a7919061257d565b60405180910390f35b6101ca60048036038101906101c5919061264b565b61059b565b005b6101e660048036038101906101e19190612714565b610631565b005b61020260048036038101906101fd91906127c8565b610688565b005b61021e6004803603810190610219919061264b565b61069e565b005b61023a60048036038101906102359190612808565b610779565b6040516102479190611edb565b60405180910390f35b61026a60048036038101906102659190612848565b61080d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d390612951565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000919050565b60606002805461034a906129a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610376906129a0565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b50505050509050919050565b6103d76108ae565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061041d575061041c856104176108ae565b610779565b5b61045c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045390612a43565b60405180910390fd5b61046985858585856108b6565b5050505050565b61047b858585610bd7565b5050505050565b606081518351146104c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bf90612ad5565b60405180910390fd5b6000835167ffffffffffffffff8111156104e5576104e4611fda565b5b6040519080825280602002602001820160405280156105135781602001602082028036833780820191505090505b50905060005b84518110156105905761056085828151811061053857610537612af5565b5b602002602001015185838151811061055357610552612af5565b5b602002602001015161026c565b82828151811061057357610572612af5565b5b6020026020010181815250508061058990612b53565b9050610519565b508091505092915050565b61062887878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610e1d565b50505050505050565b61068185858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506110eb565b5050505050565b61069a6106936108ae565b838361129b565b5050565b61077087878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611407565b50505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6108156108ae565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061085b575061085a856108556108ae565b610779565b5b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190612a43565b60405180910390fd5b6108a78585858585611633565b5050505050565b600033905090565b81518351146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090612c9f565b60405180910390fd5b60006109736108ae565b90506109838187878787876118ce565b60005b8451811015610b345760008582815181106109a4576109a3612af5565b5b6020026020010151905060008583815181106109c3576109c2612af5565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612d31565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b199190612d51565b9250508190555050505080610b2d90612b53565b9050610986565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610bab929190612d85565b60405180910390a4610bc18187878787876118d6565b610bcf8187878787876118de565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90612e2e565b60405180910390fd5b6000610c506108ae565b90506000610c5d84611ab5565b90506000610c6a84611ab5565b9050610c8a838760008585604051806020016040528060008152506118ce565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890612ec0565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610dee929190612ee0565b60405180910390a4610e14848860008686604051806020016040528060008152506118d6565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612e2e565b60405180910390fd5b8051825114610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790612c0d565b60405180910390fd5b6000610eda6108ae565b9050610efa818560008686604051806020016040528060008152506118ce565b60005b8351811015611047576000848281518110610f1b57610f1a612af5565b5b602002602001015190506000848381518110610f3a57610f39612af5565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290612ec0565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061103f90612b53565b915050610efd565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516110bf929190612d85565b60405180910390a46110e5818560008686604051806020016040528060008152506118d6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612f7b565b60405180910390fd5b60006111646108ae565b9050600061117185611ab5565b9050600061117e85611ab5565b905061118f836000898585896118ce565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ee9190612d51565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161126c929190612ee0565b60405180910390a4611283836000898585896118d6565b61129283600089898989611b2f565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113009061300d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190611edb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90612f7b565b60405180910390fd5b81518351146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190612c0d565b60405180910390fd5b60006114c46108ae565b90506114d5816000878787876118ce565b60005b845181101561158e578381815181106114f4576114f3612af5565b5b602002602001015160008087848151811061151257611511612af5565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115749190612d51565b92505081905550808061158690612b53565b9150506114d8565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611606929190612d85565b60405180910390a461161d816000878787876118d6565b61162c816000878787876118de565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990612c9f565b60405180910390fd5b60006116ac6108ae565b905060006116b985611ab5565b905060006116c685611ab5565b90506116d68389898585896118ce565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490612d31565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118229190612d51565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161189f929190612ee0565b60405180910390a46118b5848a8a86868a6118d6565b6118c3848a8a8a8a8a611b2f565b505050505050505050565b505050505050565b505050505050565b6118fd8473ffffffffffffffffffffffffffffffffffffffff16611d06565b15611aad578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611943959493929190613091565b6020604051808303816000875af192505050801561197f57506040513d601f19601f8201168201806040525081019061197c919061310e565b60015b611a245761198b613148565b806308c379a0036119e7575061199f61316a565b806119aa57506119e9565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9190611fb3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b9061326c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa2906132fe565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611ad457611ad3611fda565b5b604051908082528060200260200182016040528015611b025781602001602082028036833780820191505090505b5090508281600081518110611b1a57611b19612af5565b5b60200260200101818152505080915050919050565b611b4e8473ffffffffffffffffffffffffffffffffffffffff16611d06565b15611cfe578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611b9495949392919061331e565b6020604051808303816000875af1925050508015611bd057506040513d601f19601f82011682018060405250810190611bcd919061310e565b60015b611c7557611bdc613148565b806308c379a003611c385750611bf061316a565b80611bfb5750611c3a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f9190611fb3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c9061326c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906132fe565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d6882611d3d565b9050919050565b611d7881611d5d565b8114611d8357600080fd5b50565b600081359050611d9581611d6f565b92915050565b6000819050919050565b611dae81611d9b565b8114611db957600080fd5b50565b600081359050611dcb81611da5565b92915050565b60008060408385031215611de857611de7611d33565b5b6000611df685828601611d86565b9250506020611e0785828601611dbc565b9150509250929050565b611e1a81611d9b565b82525050565b6000602082019050611e356000830184611e11565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e7081611e3b565b8114611e7b57600080fd5b50565b600081359050611e8d81611e67565b92915050565b600060208284031215611ea957611ea8611d33565b5b6000611eb784828501611e7e565b91505092915050565b60008115159050919050565b611ed581611ec0565b82525050565b6000602082019050611ef06000830184611ecc565b92915050565b600060208284031215611f0c57611f0b611d33565b5b6000611f1a84828501611dbc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f5d578082015181840152602081019050611f42565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f8582611f23565b611f8f8185611f2e565b9350611f9f818560208601611f3f565b611fa881611f69565b840191505092915050565b60006020820190508181036000830152611fcd8184611f7a565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61201282611f69565b810181811067ffffffffffffffff8211171561203157612030611fda565b5b80604052505050565b6000612044611d29565b90506120508282612009565b919050565b600067ffffffffffffffff8211156120705761206f611fda565b5b602082029050602081019050919050565b600080fd5b600061209961209484612055565b61203a565b905080838252602082019050602084028301858111156120bc576120bb612081565b5b835b818110156120e557806120d18882611dbc565b8452602084019350506020810190506120be565b5050509392505050565b600082601f83011261210457612103611fd5565b5b8135612114848260208601612086565b91505092915050565b600080fd5b600067ffffffffffffffff82111561213d5761213c611fda565b5b61214682611f69565b9050602081019050919050565b82818337600083830152505050565b600061217561217084612122565b61203a565b9050828152602081018484840111156121915761219061211d565b5b61219c848285612153565b509392505050565b600082601f8301126121b9576121b8611fd5565b5b81356121c9848260208601612162565b91505092915050565b600080600080600060a086880312156121ee576121ed611d33565b5b60006121fc88828901611d86565b955050602061220d88828901611d86565b945050604086013567ffffffffffffffff81111561222e5761222d611d38565b5b61223a888289016120ef565b935050606086013567ffffffffffffffff81111561225b5761225a611d38565b5b612267888289016120ef565b925050608086013567ffffffffffffffff81111561228857612287611d38565b5b612294888289016121a4565b9150509295509295909350565b600080fd5b60008083601f8401126122bc576122bb611fd5565b5b8235905067ffffffffffffffff8111156122d9576122d86122a1565b5b6020830191508360208202830111156122f5576122f4612081565b5b9250929050565b60008060008060006080868803121561231857612317611d33565b5b600061232688828901611d86565b955050602061233788828901611dbc565b945050604061234888828901611dbc565b935050606086013567ffffffffffffffff81111561236957612368611d38565b5b612375888289016122a6565b92509250509295509295909350565b600067ffffffffffffffff82111561239f5761239e611fda565b5b602082029050602081019050919050565b60006123c36123be84612384565b61203a565b905080838252602082019050602084028301858111156123e6576123e5612081565b5b835b8181101561240f57806123fb8882611d86565b8452602084019350506020810190506123e8565b5050509392505050565b600082601f83011261242e5761242d611fd5565b5b813561243e8482602086016123b0565b91505092915050565b6000806040838503121561245e5761245d611d33565b5b600083013567ffffffffffffffff81111561247c5761247b611d38565b5b61248885828601612419565b925050602083013567ffffffffffffffff8111156124a9576124a8611d38565b5b6124b5858286016120ef565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6124f481611d9b565b82525050565b600061250683836124eb565b60208301905092915050565b6000602082019050919050565b600061252a826124bf565b61253481856124ca565b935061253f836124db565b8060005b8381101561257057815161255788826124fa565b975061256283612512565b925050600181019050612543565b5085935050505092915050565b60006020820190508181036000830152612597818461251f565b905092915050565b60008083601f8401126125b5576125b4611fd5565b5b8235905067ffffffffffffffff8111156125d2576125d16122a1565b5b6020830191508360208202830111156125ee576125ed612081565b5b9250929050565b60008083601f84011261260b5761260a611fd5565b5b8235905067ffffffffffffffff811115612628576126276122a1565b5b60208301915083600182028301111561264457612643612081565b5b9250929050565b60008060008060008060006080888a03121561266a57612669611d33565b5b60006126788a828b01611d86565b975050602088013567ffffffffffffffff81111561269957612698611d38565b5b6126a58a828b0161259f565b9650965050604088013567ffffffffffffffff8111156126c8576126c7611d38565b5b6126d48a828b0161259f565b9450945050606088013567ffffffffffffffff8111156126f7576126f6611d38565b5b6127038a828b016125f5565b925092505092959891949750929550565b6000806000806000608086880312156127305761272f611d33565b5b600061273e88828901611d86565b955050602061274f88828901611dbc565b945050604061276088828901611dbc565b935050606086013567ffffffffffffffff81111561278157612780611d38565b5b61278d888289016125f5565b92509250509295509295909350565b6127a581611ec0565b81146127b057600080fd5b50565b6000813590506127c28161279c565b92915050565b600080604083850312156127df576127de611d33565b5b60006127ed85828601611d86565b92505060206127fe858286016127b3565b9150509250929050565b6000806040838503121561281f5761281e611d33565b5b600061282d85828601611d86565b925050602061283e85828601611d86565b9150509250929050565b600080600080600060a0868803121561286457612863611d33565b5b600061287288828901611d86565b955050602061288388828901611d86565b945050604061289488828901611dbc565b93505060606128a588828901611dbc565b925050608086013567ffffffffffffffff8111156128c6576128c5611d38565b5b6128d2888289016121a4565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061293b602a83611f2e565b9150612946826128df565b604082019050919050565b6000602082019050818103600083015261296a8161292e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129b857607f821691505b6020821081036129cb576129ca612971565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000612a2d602f83611f2e565b9150612a38826129d1565b604082019050919050565b60006020820190508181036000830152612a5c81612a20565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612abf602983611f2e565b9150612aca82612a63565b604082019050919050565b60006020820190508181036000830152612aee81612ab2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b5e82611d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b9057612b8f612b24565b5b600182019050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612bf7602883611f2e565b9150612c0282612b9b565b604082019050919050565b60006020820190508181036000830152612c2681612bea565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c89602583611f2e565b9150612c9482612c2d565b604082019050919050565b60006020820190508181036000830152612cb881612c7c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612d1b602a83611f2e565b9150612d2682612cbf565b604082019050919050565b60006020820190508181036000830152612d4a81612d0e565b9050919050565b6000612d5c82611d9b565b9150612d6783611d9b565b9250828201905080821115612d7f57612d7e612b24565b5b92915050565b60006040820190508181036000830152612d9f818561251f565b90508181036020830152612db3818461251f565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e18602383611f2e565b9150612e2382612dbc565b604082019050919050565b60006020820190508181036000830152612e4781612e0b565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612eaa602483611f2e565b9150612eb582612e4e565b604082019050919050565b60006020820190508181036000830152612ed981612e9d565b9050919050565b6000604082019050612ef56000830185611e11565b612f026020830184611e11565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f65602183611f2e565b9150612f7082612f09565b604082019050919050565b60006020820190508181036000830152612f9481612f58565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612ff7602983611f2e565b915061300282612f9b565b604082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b61303681611d5d565b82525050565b600081519050919050565b600082825260208201905092915050565b60006130638261303c565b61306d8185613047565b935061307d818560208601611f3f565b61308681611f69565b840191505092915050565b600060a0820190506130a6600083018861302d565b6130b3602083018761302d565b81810360408301526130c5818661251f565b905081810360608301526130d9818561251f565b905081810360808301526130ed8184613058565b90509695505050505050565b60008151905061310881611e67565b92915050565b60006020828403121561312457613123611d33565b5b6000613132848285016130f9565b91505092915050565b60008160e01c9050919050565b600060033d11156131675760046000803e61316460005161313b565b90505b90565b600060443d106131f75761317c611d29565b60043d036004823e80513d602482011167ffffffffffffffff821117156131a45750506131f7565b808201805167ffffffffffffffff8111156131c257505050506131f7565b80602083010160043d0385018111156131df5750505050506131f7565b6131ee82602001850186612009565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613256603483611f2e565b9150613261826131fa565b604082019050919050565b6000602082019050818103600083015261328581613249565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006132e8602883611f2e565b91506132f38261328c565b604082019050919050565b60006020820190508181036000830152613317816132db565b9050919050565b600060a082019050613333600083018861302d565b613340602083018761302d565b61334d6040830186611e11565b61335a6060830185611e11565b818103608083015261336c8184613058565b9050969550505050505056fea2646970667358221220ea861dbbcbd7ebb69e07f0a110171d71cc5ed230e9864e310961541aa7d4b0fc64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000001002
-----Decoded View---------------
Arg [0] : _version (uint256): 4098
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001002
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.