ERC-1155
Overview
Max Total Supply
12,976
Holders
2,543
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Parts
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: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Parts is ERC1155, Ownable, ERC1155Supply { constructor() ERC1155("") {} function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } mapping(uint256 => uint16) TOKEN_ID_TO_PART_TYPE; uint256 PART_TYPE_0 = 0; uint256 PART_TYPE_1 = 1; uint256 PART_TYPE_2 = 2; uint256 PART_TYPE_3 = 3; uint256 PUBLIC_PARTS_SUPPLY = 12572; uint256 PRIVATE_PARTS_SUPPLY = 400; uint256 PRIVATE_PARTS_MINTED = 0; uint256 PUBLIC_PARTS_MINTED = 0; uint256 MAX_PART_SUPPLY = 3244; uint256[] PART_TYPE_0_IDS = [0]; uint256[] PART_TYPE_1_IDS = [1]; uint256[] PART_TYPE_2_IDS = [2]; uint256[] PART_TYPE_3_IDS = [3]; uint256[] AIRDROP_AMOUNT = [4]; function mint( address account, uint256 id, uint256 amount, bytes memory data ) public onlyOwner { require(totalSupply(id) < MAX_PART_SUPPLY, "Max supply reached"); _mint(account, id, amount, data); } function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public onlyOwner { for (uint256 i = 0; i < ids.length; i++) { require( totalSupply(ids[i]) < MAX_PART_SUPPLY, string( abi.encodePacked( "Max supply reached for id: ", Strings.toString(ids[i]) ) ) ); } _mintBatch(to, ids, amounts, data); } function airdrop( address[] memory _part0Addresses, address[] memory _part1Addresses, address[] memory _part2Addresses, address[] memory _part3Addresses ) public onlyOwner { for (uint256 i = 0; i < _part0Addresses.length; i++) { safeBatchTransferFrom( msg.sender, _part0Addresses[i], PART_TYPE_0_IDS, AIRDROP_AMOUNT, "" ); } for (uint256 i = 0; i < _part1Addresses.length; i++) { safeBatchTransferFrom( msg.sender, _part1Addresses[i], PART_TYPE_1_IDS, AIRDROP_AMOUNT, "" ); } for (uint256 i = 0; i < _part2Addresses.length; i++) { safeBatchTransferFrom( msg.sender, _part2Addresses[i], PART_TYPE_2_IDS, AIRDROP_AMOUNT, "" ); } for (uint256 i = 0; i < _part3Addresses.length; i++) { safeBatchTransferFrom( msg.sender, _part3Addresses[i], PART_TYPE_3_IDS, AIRDROP_AMOUNT, "" ); } } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } }
// 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; } }
// 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.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 (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.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 (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 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_part0Addresses","type":"address[]"},{"internalType":"address[]","name":"_part1Addresses","type":"address[]"},{"internalType":"address[]","name":"_part2Addresses","type":"address[]"},{"internalType":"address[]","name":"_part3Addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600060065560016007556002600855600360095561311c600a55610190600b556000600c556000600d55610cac600e556040518060200160405280600060ff16815250600f906001620000599291906200022b565b506040518060200160405280600160ff1681525060109060016200007f9291906200022b565b506040518060200160405280600260ff168152506011906001620000a59291906200022b565b506040518060200160405280600360ff168152506012906001620000cb9291906200022b565b506040518060200160405280600460ff168152506013906001620000f19291906200022b565b50348015620000ff57600080fd5b506040518060200160405280600081525062000121816200014860201b60201c565b5062000142620001366200015d60201b60201c565b6200016560201b60201c565b62000602565b80600290816200015991906200051b565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200026f579160200282015b828111156200026e578251829060ff169055916020019190600101906200024c565b5b5090506200027e919062000282565b5090565b5b808211156200029d57600081600090555060010162000283565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032357607f821691505b602082108103620003395762000338620002db565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000364565b620003af868362000364565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003fc620003f6620003f084620003c7565b620003d1565b620003c7565b9050919050565b6000819050919050565b6200041883620003db565b62000430620004278262000403565b84845462000371565b825550505050565b600090565b6200044762000438565b620004548184846200040d565b505050565b5b818110156200047c57620004706000826200043d565b6001810190506200045a565b5050565b601f821115620004cb5762000495816200033f565b620004a08462000354565b81016020851015620004b0578190505b620004c8620004bf8562000354565b83018262000459565b50505b505050565b600082821c905092915050565b6000620004f060001984600802620004d0565b1980831691505092915050565b60006200050b8383620004dd565b9150826002028217905092915050565b6200052682620002a1565b67ffffffffffffffff811115620005425762000541620002ac565b5b6200054e82546200030a565b6200055b82828562000480565b600060209050601f8311600181146200059357600084156200057e578287015190505b6200058a8582620004fd565b865550620005fa565b601f198416620005a3866200033f565b60005b82811015620005cd57848901518255600182019150602085019450602081019050620005a6565b86831015620005ed5784890151620005e9601f891682620004dd565b8355505b6001600288020188555050505b505050505050565b613f0080620006126000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c806352504995116100a2578063a22cb46511610071578063a22cb465146102b3578063bd85b039146102cf578063e985e9c5146102ff578063f242432a1461032f578063f2fde38b1461034b5761010a565b80635250499514610253578063715018a61461026f578063731133e9146102795780638da5cb5b146102955761010a565b80631f7fdffa116100de5780631f7fdffa146101bb5780632eb2c2d6146101d75780634e1273f4146101f35780634f558e79146102235761010a565b8062fdd58e1461010f57806301ffc9a71461013f57806302fe53051461016f5780630e89341c1461018b575b600080fd5b610129600480360381019061012491906123f7565b610367565b6040516101369190612446565b60405180910390f35b610159600480360381019061015491906124b9565b61042f565b6040516101669190612501565b60405180910390f35b61018960048036038101906101849190612662565b610511565b005b6101a560048036038101906101a091906126ab565b610525565b6040516101b29190612757565b60405180910390f35b6101d560048036038101906101d091906128e2565b6105b9565b005b6101f160048036038101906101ec919061299d565b61069e565b005b61020d60048036038101906102089190612b2f565b61073f565b60405161021a9190612c65565b60405180910390f35b61023d600480360381019061023891906126ab565b610858565b60405161024a9190612501565b60405180910390f35b61026d60048036038101906102689190612c87565b61086c565b005b610277610c52565b005b610293600480360381019061028e9190612d5e565b610c66565b005b61029d610ccc565b6040516102aa9190612df0565b60405180910390f35b6102cd60048036038101906102c89190612e37565b610cf6565b005b6102e960048036038101906102e491906126ab565b610d0c565b6040516102f69190612446565b60405180910390f35b61031960048036038101906103149190612e77565b610d29565b6040516103269190612501565b60405180910390f35b61034960048036038101906103449190612eb7565b610dbd565b005b61036560048036038101906103609190612f4e565b610e5e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce90612fed565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fa57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050a575061050982610ee1565b5b9050919050565b610519610f4b565b61052281610fc9565b50565b6060600280546105349061303c565b80601f01602080910402602001604051908101604052809291908181526020018280546105609061303c565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b50505050509050919050565b6105c1610f4b565b60005b835181101561068b57600e546105f38583815181106105e6576105e561306d565b5b6020026020010151610d0c565b1061061785838151811061060a5761060961306d565b5b6020026020010151610fdc565b6040516020016106279190613124565b60405160208183030381529060405290610677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066e9190612757565b60405180910390fd5b50808061068390613175565b9150506105c4565b506106988484848461113c565b50505050565b6106a6611368565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106ec57506106eb856106e6611368565b610d29565b5b61072b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107229061322f565b60405180910390fd5b6107388585858585611370565b5050505050565b60608151835114610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906132c1565b60405180910390fd5b6000835167ffffffffffffffff8111156107a2576107a1612537565b5b6040519080825280602002602001820160405280156107d05781602001602082028036833780820191505090505b50905060005b845181101561084d5761081d8582815181106107f5576107f461306d565b5b60200260200101518583815181106108105761080f61306d565b5b6020026020010151610367565b8282815181106108305761082f61306d565b5b6020026020010181815250508061084690613175565b90506107d6565b508091505092915050565b60008061086483610d0c565b119050919050565b610874610f4b565b60005b845181101561096957610956338683815181106108975761089661306d565b5b6020026020010151600f8054806020026020016040519081016040528092919081815260200182805480156108eb57602002820191906000526020600020905b8154815260200190600101908083116108d7575b5050505050601380548060200260200160405190810160405280929190818152602001828054801561093c57602002820191906000526020600020905b815481526020019060010190808311610928575b50505050506040518060200160405280600081525061069e565b808061096190613175565b915050610877565b5060005b8351811015610a5f57610a4c3385838151811061098d5761098c61306d565b5b602002602001015160108054806020026020016040519081016040528092919081815260200182805480156109e157602002820191906000526020600020905b8154815260200190600101908083116109cd575b50505050506013805480602002602001604051908101604052809291908181526020018280548015610a3257602002820191906000526020600020905b815481526020019060010190808311610a1e575b50505050506040518060200160405280600081525061069e565b8080610a5790613175565b91505061096d565b5060005b8251811015610b5557610b4233848381518110610a8357610a8261306d565b5b60200260200101516011805480602002602001604051908101604052809291908181526020018280548015610ad757602002820191906000526020600020905b815481526020019060010190808311610ac3575b50505050506013805480602002602001604051908101604052809291908181526020018280548015610b2857602002820191906000526020600020905b815481526020019060010190808311610b14575b50505050506040518060200160405280600081525061069e565b8080610b4d90613175565b915050610a63565b5060005b8151811015610c4b57610c3833838381518110610b7957610b7861306d565b5b60200260200101516012805480602002602001604051908101604052809291908181526020018280548015610bcd57602002820191906000526020600020905b815481526020019060010190808311610bb9575b50505050506013805480602002602001604051908101604052809291908181526020018280548015610c1e57602002820191906000526020600020905b815481526020019060010190808311610c0a575b50505050506040518060200160405280600081525061069e565b8080610c4390613175565b915050610b59565b5050505050565b610c5a610f4b565b610c646000611691565b565b610c6e610f4b565b600e54610c7a84610d0c565b10610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061332d565b60405180910390fd5b610cc684848484611757565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d08610d01611368565b8383611907565b5050565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dc5611368565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e0b5750610e0a85610e05611368565b610d29565b5b610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e419061322f565b60405180910390fd5b610e578585858585611a73565b5050505050565b610e66610f4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906133bf565b60405180910390fd5b610ede81611691565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610f53611368565b73ffffffffffffffffffffffffffffffffffffffff16610f71610ccc565b73ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe9061342b565b60405180910390fd5b565b8060029081610fd891906135f7565b5050565b606060008203611023576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611137565b600082905060005b6000821461105557808061103e90613175565b915050600a8261104e91906136f8565b915061102b565b60008167ffffffffffffffff81111561107157611070612537565b5b6040519080825280601f01601f1916602001820160405280156110a35781602001600182028036833780820191505090505b5090505b60008514611130576001826110bc9190613729565b9150600a856110cb919061375d565b60306110d7919061378e565b60f81b8183815181106110ed576110ec61306d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561112991906136f8565b94506110a7565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290613834565b60405180910390fd5b81518351146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906138c6565b60405180910390fd5b60006111f9611368565b905061120a81600087878787611d0e565b60005b84518110156112c3578381815181106112295761122861306d565b5b60200260200101516000808784815181106112475761124661306d565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112a9919061378e565b9250508190555080806112bb90613175565b91505061120d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161133b9291906138e6565b60405180910390a461135281600087878787611d24565b61136181600087878787611d2c565b5050505050565b600033905090565b81518351146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906138c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a9061398f565b60405180910390fd5b600061142d611368565b905061143d818787878787611d0e565b60005b84518110156115ee57600085828151811061145e5761145d61306d565b5b60200260200101519050600085838151811061147d5761147c61306d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590613a21565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d3919061378e565b92505081905550505050806115e790613175565b9050611440565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116659291906138e6565b60405180910390a461167b818787878787611d24565b611689818787878787611d2c565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613834565b60405180910390fd5b60006117d0611368565b905060006117dd85611f03565b905060006117ea85611f03565b90506117fb83600089858589611d0e565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185a919061378e565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516118d8929190613a41565b60405180910390a46118ef83600089858589611d24565b6118fe83600089898989611f7d565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613adc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a669190612501565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061398f565b60405180910390fd5b6000611aec611368565b90506000611af985611f03565b90506000611b0685611f03565b9050611b16838989858589611d0e565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba490613a21565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c62919061378e565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611cdf929190613a41565b60405180910390a4611cf5848a8a86868a611d24565b611d03848a8a8a8a8a611f7d565b505050505050505050565b611d1c868686868686612154565b505050505050565b505050505050565b611d4b8473ffffffffffffffffffffffffffffffffffffffff16612324565b15611efb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611d91959493929190613b51565b6020604051808303816000875af1925050508015611dcd57506040513d601f19601f82011682018060405250810190611dca9190613bce565b60015b611e7257611dd9613c08565b806308c379a003611e355750611ded613c2a565b80611df85750611e37565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c9190612757565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613d2c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613dbe565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611f2257611f21612537565b5b604051908082528060200260200182016040528015611f505781602001602082028036833780820191505090505b5090508281600081518110611f6857611f6761306d565b5b60200260200101818152505080915050919050565b611f9c8473ffffffffffffffffffffffffffffffffffffffff16612324565b1561214c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611fe2959493929190613dde565b6020604051808303816000875af192505050801561201e57506040513d601f19601f8201168201806040525081019061201b9190613bce565b60015b6120c35761202a613c08565b806308c379a003612086575061203e613c2a565b806120495750612088565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9190612757565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613d2c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190613dbe565b60405180910390fd5b505b505050505050565b612162868686868686612347565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122135760005b8351811015612211578281815181106121b5576121b461306d565b5b6020026020010151600460008684815181106121d4576121d361306d565b5b6020026020010151815260200190815260200160002060008282546121f9919061378e565b925050819055508061220a90613175565b9050612199565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361231c5760005b835181101561231a5760008482815181106122685761226761306d565b5b6020026020010151905060008483815181106122875761228661306d565b5b60200260200101519050600060046000848152602001908152602001600020549050818110156122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e390613eaa565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061231390613175565b905061224a565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061238e82612363565b9050919050565b61239e81612383565b81146123a957600080fd5b50565b6000813590506123bb81612395565b92915050565b6000819050919050565b6123d4816123c1565b81146123df57600080fd5b50565b6000813590506123f1816123cb565b92915050565b6000806040838503121561240e5761240d612359565b5b600061241c858286016123ac565b925050602061242d858286016123e2565b9150509250929050565b612440816123c1565b82525050565b600060208201905061245b6000830184612437565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61249681612461565b81146124a157600080fd5b50565b6000813590506124b38161248d565b92915050565b6000602082840312156124cf576124ce612359565b5b60006124dd848285016124a4565b91505092915050565b60008115159050919050565b6124fb816124e6565b82525050565b600060208201905061251660008301846124f2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61256f82612526565b810181811067ffffffffffffffff8211171561258e5761258d612537565b5b80604052505050565b60006125a161234f565b90506125ad8282612566565b919050565b600067ffffffffffffffff8211156125cd576125cc612537565b5b6125d682612526565b9050602081019050919050565b82818337600083830152505050565b6000612605612600846125b2565b612597565b90508281526020810184848401111561262157612620612521565b5b61262c8482856125e3565b509392505050565b600082601f8301126126495761264861251c565b5b81356126598482602086016125f2565b91505092915050565b60006020828403121561267857612677612359565b5b600082013567ffffffffffffffff8111156126965761269561235e565b5b6126a284828501612634565b91505092915050565b6000602082840312156126c1576126c0612359565b5b60006126cf848285016123e2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127125780820151818401526020810190506126f7565b60008484015250505050565b6000612729826126d8565b61273381856126e3565b93506127438185602086016126f4565b61274c81612526565b840191505092915050565b60006020820190508181036000830152612771818461271e565b905092915050565b600067ffffffffffffffff82111561279457612793612537565b5b602082029050602081019050919050565b600080fd5b60006127bd6127b884612779565b612597565b905080838252602082019050602084028301858111156127e0576127df6127a5565b5b835b8181101561280957806127f588826123e2565b8452602084019350506020810190506127e2565b5050509392505050565b600082601f8301126128285761282761251c565b5b81356128388482602086016127aa565b91505092915050565b600067ffffffffffffffff82111561285c5761285b612537565b5b61286582612526565b9050602081019050919050565b600061288561288084612841565b612597565b9050828152602081018484840111156128a1576128a0612521565b5b6128ac8482856125e3565b509392505050565b600082601f8301126128c9576128c861251c565b5b81356128d9848260208601612872565b91505092915050565b600080600080608085870312156128fc576128fb612359565b5b600061290a878288016123ac565b945050602085013567ffffffffffffffff81111561292b5761292a61235e565b5b61293787828801612813565b935050604085013567ffffffffffffffff8111156129585761295761235e565b5b61296487828801612813565b925050606085013567ffffffffffffffff8111156129855761298461235e565b5b612991878288016128b4565b91505092959194509250565b600080600080600060a086880312156129b9576129b8612359565b5b60006129c7888289016123ac565b95505060206129d8888289016123ac565b945050604086013567ffffffffffffffff8111156129f9576129f861235e565b5b612a0588828901612813565b935050606086013567ffffffffffffffff811115612a2657612a2561235e565b5b612a3288828901612813565b925050608086013567ffffffffffffffff811115612a5357612a5261235e565b5b612a5f888289016128b4565b9150509295509295909350565b600067ffffffffffffffff821115612a8757612a86612537565b5b602082029050602081019050919050565b6000612aab612aa684612a6c565b612597565b90508083825260208201905060208402830185811115612ace57612acd6127a5565b5b835b81811015612af75780612ae388826123ac565b845260208401935050602081019050612ad0565b5050509392505050565b600082601f830112612b1657612b1561251c565b5b8135612b26848260208601612a98565b91505092915050565b60008060408385031215612b4657612b45612359565b5b600083013567ffffffffffffffff811115612b6457612b6361235e565b5b612b7085828601612b01565b925050602083013567ffffffffffffffff811115612b9157612b9061235e565b5b612b9d85828601612813565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612bdc816123c1565b82525050565b6000612bee8383612bd3565b60208301905092915050565b6000602082019050919050565b6000612c1282612ba7565b612c1c8185612bb2565b9350612c2783612bc3565b8060005b83811015612c58578151612c3f8882612be2565b9750612c4a83612bfa565b925050600181019050612c2b565b5085935050505092915050565b60006020820190508181036000830152612c7f8184612c07565b905092915050565b60008060008060808587031215612ca157612ca0612359565b5b600085013567ffffffffffffffff811115612cbf57612cbe61235e565b5b612ccb87828801612b01565b945050602085013567ffffffffffffffff811115612cec57612ceb61235e565b5b612cf887828801612b01565b935050604085013567ffffffffffffffff811115612d1957612d1861235e565b5b612d2587828801612b01565b925050606085013567ffffffffffffffff811115612d4657612d4561235e565b5b612d5287828801612b01565b91505092959194509250565b60008060008060808587031215612d7857612d77612359565b5b6000612d86878288016123ac565b9450506020612d97878288016123e2565b9350506040612da8878288016123e2565b925050606085013567ffffffffffffffff811115612dc957612dc861235e565b5b612dd5878288016128b4565b91505092959194509250565b612dea81612383565b82525050565b6000602082019050612e056000830184612de1565b92915050565b612e14816124e6565b8114612e1f57600080fd5b50565b600081359050612e3181612e0b565b92915050565b60008060408385031215612e4e57612e4d612359565b5b6000612e5c858286016123ac565b9250506020612e6d85828601612e22565b9150509250929050565b60008060408385031215612e8e57612e8d612359565b5b6000612e9c858286016123ac565b9250506020612ead858286016123ac565b9150509250929050565b600080600080600060a08688031215612ed357612ed2612359565b5b6000612ee1888289016123ac565b9550506020612ef2888289016123ac565b9450506040612f03888289016123e2565b9350506060612f14888289016123e2565b925050608086013567ffffffffffffffff811115612f3557612f3461235e565b5b612f41888289016128b4565b9150509295509295909350565b600060208284031215612f6457612f63612359565b5b6000612f72848285016123ac565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612fd7602a836126e3565b9150612fe282612f7b565b604082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305457607f821691505b6020821081036130675761306661300d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b7f4d617820737570706c79207265616368656420666f722069643a200000000000600082015250565b60006130dd601b8361309c565b91506130e8826130a7565b601b82019050919050565b60006130fe826126d8565b613108818561309c565b93506131188185602086016126f4565b80840191505092915050565b600061312f826130d0565b915061313b82846130f3565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613180826123c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131b2576131b1613146565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000613219602f836126e3565b9150613224826131bd565b604082019050919050565b600060208201905081810360008301526132488161320c565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006132ab6029836126e3565b91506132b68261324f565b604082019050919050565b600060208201905081810360008301526132da8161329e565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006133176012836126e3565b9150613322826132e1565b602082019050919050565b600060208201905081810360008301526133468161330a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133a96026836126e3565b91506133b48261334d565b604082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134156020836126e3565b9150613420826133df565b602082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613470565b6134b78683613470565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134f46134ef6134ea846123c1565b6134cf565b6123c1565b9050919050565b6000819050919050565b61350e836134d9565b61352261351a826134fb565b84845461347d565b825550505050565b600090565b61353761352a565b613542818484613505565b505050565b5b818110156135665761355b60008261352f565b600181019050613548565b5050565b601f8211156135ab5761357c8161344b565b61358584613460565b81016020851015613594578190505b6135a86135a085613460565b830182613547565b50505b505050565b600082821c905092915050565b60006135ce600019846008026135b0565b1980831691505092915050565b60006135e783836135bd565b9150826002028217905092915050565b613600826126d8565b67ffffffffffffffff81111561361957613618612537565b5b613623825461303c565b61362e82828561356a565b600060209050601f831160018114613661576000841561364f578287015190505b61365985826135db565b8655506136c1565b601f19841661366f8661344b565b60005b8281101561369757848901518255600182019150602085019450602081019050613672565b868310156136b457848901516136b0601f8916826135bd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613703826123c1565b915061370e836123c1565b92508261371e5761371d6136c9565b5b828204905092915050565b6000613734826123c1565b915061373f836123c1565b925082820390508181111561375757613756613146565b5b92915050565b6000613768826123c1565b9150613773836123c1565b925082613783576137826136c9565b5b828206905092915050565b6000613799826123c1565b91506137a4836123c1565b92508282019050808211156137bc576137bb613146565b5b92915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061381e6021836126e3565b9150613829826137c2565b604082019050919050565b6000602082019050818103600083015261384d81613811565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006138b06028836126e3565b91506138bb82613854565b604082019050919050565b600060208201905081810360008301526138df816138a3565b9050919050565b600060408201905081810360008301526139008185612c07565b905081810360208301526139148184612c07565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139796025836126e3565b91506139848261391d565b604082019050919050565b600060208201905081810360008301526139a88161396c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613a0b602a836126e3565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b6000604082019050613a566000830185612437565b613a636020830184612437565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613ac66029836126e3565b9150613ad182613a6a565b604082019050919050565b60006020820190508181036000830152613af581613ab9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b2382613afc565b613b2d8185613b07565b9350613b3d8185602086016126f4565b613b4681612526565b840191505092915050565b600060a082019050613b666000830188612de1565b613b736020830187612de1565b8181036040830152613b858186612c07565b90508181036060830152613b998185612c07565b90508181036080830152613bad8184613b18565b90509695505050505050565b600081519050613bc88161248d565b92915050565b600060208284031215613be457613be3612359565b5b6000613bf284828501613bb9565b91505092915050565b60008160e01c9050919050565b600060033d1115613c275760046000803e613c24600051613bfb565b90505b90565b600060443d10613cb757613c3c61234f565b60043d036004823e80513d602482011167ffffffffffffffff82111715613c64575050613cb7565b808201805167ffffffffffffffff811115613c825750505050613cb7565b80602083010160043d038501811115613c9f575050505050613cb7565b613cae82602001850186612566565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613d166034836126e3565b9150613d2182613cba565b604082019050919050565b60006020820190508181036000830152613d4581613d09565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613da86028836126e3565b9150613db382613d4c565b604082019050919050565b60006020820190508181036000830152613dd781613d9b565b9050919050565b600060a082019050613df36000830188612de1565b613e006020830187612de1565b613e0d6040830186612437565b613e1a6060830185612437565b8181036080830152613e2c8184613b18565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000613e946028836126e3565b9150613e9f82613e38565b604082019050919050565b60006020820190508181036000830152613ec381613e87565b905091905056fea26469706673582212203d9197d24693794c98bd33332d2fba7d9f5b3a0e56412bb1e9d55b605949e9b564736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010a5760003560e01c806352504995116100a2578063a22cb46511610071578063a22cb465146102b3578063bd85b039146102cf578063e985e9c5146102ff578063f242432a1461032f578063f2fde38b1461034b5761010a565b80635250499514610253578063715018a61461026f578063731133e9146102795780638da5cb5b146102955761010a565b80631f7fdffa116100de5780631f7fdffa146101bb5780632eb2c2d6146101d75780634e1273f4146101f35780634f558e79146102235761010a565b8062fdd58e1461010f57806301ffc9a71461013f57806302fe53051461016f5780630e89341c1461018b575b600080fd5b610129600480360381019061012491906123f7565b610367565b6040516101369190612446565b60405180910390f35b610159600480360381019061015491906124b9565b61042f565b6040516101669190612501565b60405180910390f35b61018960048036038101906101849190612662565b610511565b005b6101a560048036038101906101a091906126ab565b610525565b6040516101b29190612757565b60405180910390f35b6101d560048036038101906101d091906128e2565b6105b9565b005b6101f160048036038101906101ec919061299d565b61069e565b005b61020d60048036038101906102089190612b2f565b61073f565b60405161021a9190612c65565b60405180910390f35b61023d600480360381019061023891906126ab565b610858565b60405161024a9190612501565b60405180910390f35b61026d60048036038101906102689190612c87565b61086c565b005b610277610c52565b005b610293600480360381019061028e9190612d5e565b610c66565b005b61029d610ccc565b6040516102aa9190612df0565b60405180910390f35b6102cd60048036038101906102c89190612e37565b610cf6565b005b6102e960048036038101906102e491906126ab565b610d0c565b6040516102f69190612446565b60405180910390f35b61031960048036038101906103149190612e77565b610d29565b6040516103269190612501565b60405180910390f35b61034960048036038101906103449190612eb7565b610dbd565b005b61036560048036038101906103609190612f4e565b610e5e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce90612fed565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fa57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050a575061050982610ee1565b5b9050919050565b610519610f4b565b61052281610fc9565b50565b6060600280546105349061303c565b80601f01602080910402602001604051908101604052809291908181526020018280546105609061303c565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b50505050509050919050565b6105c1610f4b565b60005b835181101561068b57600e546105f38583815181106105e6576105e561306d565b5b6020026020010151610d0c565b1061061785838151811061060a5761060961306d565b5b6020026020010151610fdc565b6040516020016106279190613124565b60405160208183030381529060405290610677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066e9190612757565b60405180910390fd5b50808061068390613175565b9150506105c4565b506106988484848461113c565b50505050565b6106a6611368565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106ec57506106eb856106e6611368565b610d29565b5b61072b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107229061322f565b60405180910390fd5b6107388585858585611370565b5050505050565b60608151835114610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906132c1565b60405180910390fd5b6000835167ffffffffffffffff8111156107a2576107a1612537565b5b6040519080825280602002602001820160405280156107d05781602001602082028036833780820191505090505b50905060005b845181101561084d5761081d8582815181106107f5576107f461306d565b5b60200260200101518583815181106108105761080f61306d565b5b6020026020010151610367565b8282815181106108305761082f61306d565b5b6020026020010181815250508061084690613175565b90506107d6565b508091505092915050565b60008061086483610d0c565b119050919050565b610874610f4b565b60005b845181101561096957610956338683815181106108975761089661306d565b5b6020026020010151600f8054806020026020016040519081016040528092919081815260200182805480156108eb57602002820191906000526020600020905b8154815260200190600101908083116108d7575b5050505050601380548060200260200160405190810160405280929190818152602001828054801561093c57602002820191906000526020600020905b815481526020019060010190808311610928575b50505050506040518060200160405280600081525061069e565b808061096190613175565b915050610877565b5060005b8351811015610a5f57610a4c3385838151811061098d5761098c61306d565b5b602002602001015160108054806020026020016040519081016040528092919081815260200182805480156109e157602002820191906000526020600020905b8154815260200190600101908083116109cd575b50505050506013805480602002602001604051908101604052809291908181526020018280548015610a3257602002820191906000526020600020905b815481526020019060010190808311610a1e575b50505050506040518060200160405280600081525061069e565b8080610a5790613175565b91505061096d565b5060005b8251811015610b5557610b4233848381518110610a8357610a8261306d565b5b60200260200101516011805480602002602001604051908101604052809291908181526020018280548015610ad757602002820191906000526020600020905b815481526020019060010190808311610ac3575b50505050506013805480602002602001604051908101604052809291908181526020018280548015610b2857602002820191906000526020600020905b815481526020019060010190808311610b14575b50505050506040518060200160405280600081525061069e565b8080610b4d90613175565b915050610a63565b5060005b8151811015610c4b57610c3833838381518110610b7957610b7861306d565b5b60200260200101516012805480602002602001604051908101604052809291908181526020018280548015610bcd57602002820191906000526020600020905b815481526020019060010190808311610bb9575b50505050506013805480602002602001604051908101604052809291908181526020018280548015610c1e57602002820191906000526020600020905b815481526020019060010190808311610c0a575b50505050506040518060200160405280600081525061069e565b8080610c4390613175565b915050610b59565b5050505050565b610c5a610f4b565b610c646000611691565b565b610c6e610f4b565b600e54610c7a84610d0c565b10610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061332d565b60405180910390fd5b610cc684848484611757565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d08610d01611368565b8383611907565b5050565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dc5611368565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e0b5750610e0a85610e05611368565b610d29565b5b610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e419061322f565b60405180910390fd5b610e578585858585611a73565b5050505050565b610e66610f4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906133bf565b60405180910390fd5b610ede81611691565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610f53611368565b73ffffffffffffffffffffffffffffffffffffffff16610f71610ccc565b73ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe9061342b565b60405180910390fd5b565b8060029081610fd891906135f7565b5050565b606060008203611023576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611137565b600082905060005b6000821461105557808061103e90613175565b915050600a8261104e91906136f8565b915061102b565b60008167ffffffffffffffff81111561107157611070612537565b5b6040519080825280601f01601f1916602001820160405280156110a35781602001600182028036833780820191505090505b5090505b60008514611130576001826110bc9190613729565b9150600a856110cb919061375d565b60306110d7919061378e565b60f81b8183815181106110ed576110ec61306d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561112991906136f8565b94506110a7565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290613834565b60405180910390fd5b81518351146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906138c6565b60405180910390fd5b60006111f9611368565b905061120a81600087878787611d0e565b60005b84518110156112c3578381815181106112295761122861306d565b5b60200260200101516000808784815181106112475761124661306d565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112a9919061378e565b9250508190555080806112bb90613175565b91505061120d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161133b9291906138e6565b60405180910390a461135281600087878787611d24565b61136181600087878787611d2c565b5050505050565b600033905090565b81518351146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906138c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a9061398f565b60405180910390fd5b600061142d611368565b905061143d818787878787611d0e565b60005b84518110156115ee57600085828151811061145e5761145d61306d565b5b60200260200101519050600085838151811061147d5761147c61306d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590613a21565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d3919061378e565b92505081905550505050806115e790613175565b9050611440565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116659291906138e6565b60405180910390a461167b818787878787611d24565b611689818787878787611d2c565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613834565b60405180910390fd5b60006117d0611368565b905060006117dd85611f03565b905060006117ea85611f03565b90506117fb83600089858589611d0e565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185a919061378e565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516118d8929190613a41565b60405180910390a46118ef83600089858589611d24565b6118fe83600089898989611f7d565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613adc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a669190612501565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061398f565b60405180910390fd5b6000611aec611368565b90506000611af985611f03565b90506000611b0685611f03565b9050611b16838989858589611d0e565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba490613a21565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c62919061378e565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611cdf929190613a41565b60405180910390a4611cf5848a8a86868a611d24565b611d03848a8a8a8a8a611f7d565b505050505050505050565b611d1c868686868686612154565b505050505050565b505050505050565b611d4b8473ffffffffffffffffffffffffffffffffffffffff16612324565b15611efb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611d91959493929190613b51565b6020604051808303816000875af1925050508015611dcd57506040513d601f19601f82011682018060405250810190611dca9190613bce565b60015b611e7257611dd9613c08565b806308c379a003611e355750611ded613c2a565b80611df85750611e37565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c9190612757565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613d2c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613dbe565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611f2257611f21612537565b5b604051908082528060200260200182016040528015611f505781602001602082028036833780820191505090505b5090508281600081518110611f6857611f6761306d565b5b60200260200101818152505080915050919050565b611f9c8473ffffffffffffffffffffffffffffffffffffffff16612324565b1561214c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611fe2959493929190613dde565b6020604051808303816000875af192505050801561201e57506040513d601f19601f8201168201806040525081019061201b9190613bce565b60015b6120c35761202a613c08565b806308c379a003612086575061203e613c2a565b806120495750612088565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9190612757565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613d2c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190613dbe565b60405180910390fd5b505b505050505050565b612162868686868686612347565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122135760005b8351811015612211578281815181106121b5576121b461306d565b5b6020026020010151600460008684815181106121d4576121d361306d565b5b6020026020010151815260200190815260200160002060008282546121f9919061378e565b925050819055508061220a90613175565b9050612199565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361231c5760005b835181101561231a5760008482815181106122685761226761306d565b5b6020026020010151905060008483815181106122875761228661306d565b5b60200260200101519050600060046000848152602001908152602001600020549050818110156122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e390613eaa565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061231390613175565b905061224a565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061238e82612363565b9050919050565b61239e81612383565b81146123a957600080fd5b50565b6000813590506123bb81612395565b92915050565b6000819050919050565b6123d4816123c1565b81146123df57600080fd5b50565b6000813590506123f1816123cb565b92915050565b6000806040838503121561240e5761240d612359565b5b600061241c858286016123ac565b925050602061242d858286016123e2565b9150509250929050565b612440816123c1565b82525050565b600060208201905061245b6000830184612437565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61249681612461565b81146124a157600080fd5b50565b6000813590506124b38161248d565b92915050565b6000602082840312156124cf576124ce612359565b5b60006124dd848285016124a4565b91505092915050565b60008115159050919050565b6124fb816124e6565b82525050565b600060208201905061251660008301846124f2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61256f82612526565b810181811067ffffffffffffffff8211171561258e5761258d612537565b5b80604052505050565b60006125a161234f565b90506125ad8282612566565b919050565b600067ffffffffffffffff8211156125cd576125cc612537565b5b6125d682612526565b9050602081019050919050565b82818337600083830152505050565b6000612605612600846125b2565b612597565b90508281526020810184848401111561262157612620612521565b5b61262c8482856125e3565b509392505050565b600082601f8301126126495761264861251c565b5b81356126598482602086016125f2565b91505092915050565b60006020828403121561267857612677612359565b5b600082013567ffffffffffffffff8111156126965761269561235e565b5b6126a284828501612634565b91505092915050565b6000602082840312156126c1576126c0612359565b5b60006126cf848285016123e2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127125780820151818401526020810190506126f7565b60008484015250505050565b6000612729826126d8565b61273381856126e3565b93506127438185602086016126f4565b61274c81612526565b840191505092915050565b60006020820190508181036000830152612771818461271e565b905092915050565b600067ffffffffffffffff82111561279457612793612537565b5b602082029050602081019050919050565b600080fd5b60006127bd6127b884612779565b612597565b905080838252602082019050602084028301858111156127e0576127df6127a5565b5b835b8181101561280957806127f588826123e2565b8452602084019350506020810190506127e2565b5050509392505050565b600082601f8301126128285761282761251c565b5b81356128388482602086016127aa565b91505092915050565b600067ffffffffffffffff82111561285c5761285b612537565b5b61286582612526565b9050602081019050919050565b600061288561288084612841565b612597565b9050828152602081018484840111156128a1576128a0612521565b5b6128ac8482856125e3565b509392505050565b600082601f8301126128c9576128c861251c565b5b81356128d9848260208601612872565b91505092915050565b600080600080608085870312156128fc576128fb612359565b5b600061290a878288016123ac565b945050602085013567ffffffffffffffff81111561292b5761292a61235e565b5b61293787828801612813565b935050604085013567ffffffffffffffff8111156129585761295761235e565b5b61296487828801612813565b925050606085013567ffffffffffffffff8111156129855761298461235e565b5b612991878288016128b4565b91505092959194509250565b600080600080600060a086880312156129b9576129b8612359565b5b60006129c7888289016123ac565b95505060206129d8888289016123ac565b945050604086013567ffffffffffffffff8111156129f9576129f861235e565b5b612a0588828901612813565b935050606086013567ffffffffffffffff811115612a2657612a2561235e565b5b612a3288828901612813565b925050608086013567ffffffffffffffff811115612a5357612a5261235e565b5b612a5f888289016128b4565b9150509295509295909350565b600067ffffffffffffffff821115612a8757612a86612537565b5b602082029050602081019050919050565b6000612aab612aa684612a6c565b612597565b90508083825260208201905060208402830185811115612ace57612acd6127a5565b5b835b81811015612af75780612ae388826123ac565b845260208401935050602081019050612ad0565b5050509392505050565b600082601f830112612b1657612b1561251c565b5b8135612b26848260208601612a98565b91505092915050565b60008060408385031215612b4657612b45612359565b5b600083013567ffffffffffffffff811115612b6457612b6361235e565b5b612b7085828601612b01565b925050602083013567ffffffffffffffff811115612b9157612b9061235e565b5b612b9d85828601612813565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612bdc816123c1565b82525050565b6000612bee8383612bd3565b60208301905092915050565b6000602082019050919050565b6000612c1282612ba7565b612c1c8185612bb2565b9350612c2783612bc3565b8060005b83811015612c58578151612c3f8882612be2565b9750612c4a83612bfa565b925050600181019050612c2b565b5085935050505092915050565b60006020820190508181036000830152612c7f8184612c07565b905092915050565b60008060008060808587031215612ca157612ca0612359565b5b600085013567ffffffffffffffff811115612cbf57612cbe61235e565b5b612ccb87828801612b01565b945050602085013567ffffffffffffffff811115612cec57612ceb61235e565b5b612cf887828801612b01565b935050604085013567ffffffffffffffff811115612d1957612d1861235e565b5b612d2587828801612b01565b925050606085013567ffffffffffffffff811115612d4657612d4561235e565b5b612d5287828801612b01565b91505092959194509250565b60008060008060808587031215612d7857612d77612359565b5b6000612d86878288016123ac565b9450506020612d97878288016123e2565b9350506040612da8878288016123e2565b925050606085013567ffffffffffffffff811115612dc957612dc861235e565b5b612dd5878288016128b4565b91505092959194509250565b612dea81612383565b82525050565b6000602082019050612e056000830184612de1565b92915050565b612e14816124e6565b8114612e1f57600080fd5b50565b600081359050612e3181612e0b565b92915050565b60008060408385031215612e4e57612e4d612359565b5b6000612e5c858286016123ac565b9250506020612e6d85828601612e22565b9150509250929050565b60008060408385031215612e8e57612e8d612359565b5b6000612e9c858286016123ac565b9250506020612ead858286016123ac565b9150509250929050565b600080600080600060a08688031215612ed357612ed2612359565b5b6000612ee1888289016123ac565b9550506020612ef2888289016123ac565b9450506040612f03888289016123e2565b9350506060612f14888289016123e2565b925050608086013567ffffffffffffffff811115612f3557612f3461235e565b5b612f41888289016128b4565b9150509295509295909350565b600060208284031215612f6457612f63612359565b5b6000612f72848285016123ac565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612fd7602a836126e3565b9150612fe282612f7b565b604082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305457607f821691505b6020821081036130675761306661300d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b7f4d617820737570706c79207265616368656420666f722069643a200000000000600082015250565b60006130dd601b8361309c565b91506130e8826130a7565b601b82019050919050565b60006130fe826126d8565b613108818561309c565b93506131188185602086016126f4565b80840191505092915050565b600061312f826130d0565b915061313b82846130f3565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613180826123c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131b2576131b1613146565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000613219602f836126e3565b9150613224826131bd565b604082019050919050565b600060208201905081810360008301526132488161320c565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006132ab6029836126e3565b91506132b68261324f565b604082019050919050565b600060208201905081810360008301526132da8161329e565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006133176012836126e3565b9150613322826132e1565b602082019050919050565b600060208201905081810360008301526133468161330a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133a96026836126e3565b91506133b48261334d565b604082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134156020836126e3565b9150613420826133df565b602082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613470565b6134b78683613470565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134f46134ef6134ea846123c1565b6134cf565b6123c1565b9050919050565b6000819050919050565b61350e836134d9565b61352261351a826134fb565b84845461347d565b825550505050565b600090565b61353761352a565b613542818484613505565b505050565b5b818110156135665761355b60008261352f565b600181019050613548565b5050565b601f8211156135ab5761357c8161344b565b61358584613460565b81016020851015613594578190505b6135a86135a085613460565b830182613547565b50505b505050565b600082821c905092915050565b60006135ce600019846008026135b0565b1980831691505092915050565b60006135e783836135bd565b9150826002028217905092915050565b613600826126d8565b67ffffffffffffffff81111561361957613618612537565b5b613623825461303c565b61362e82828561356a565b600060209050601f831160018114613661576000841561364f578287015190505b61365985826135db565b8655506136c1565b601f19841661366f8661344b565b60005b8281101561369757848901518255600182019150602085019450602081019050613672565b868310156136b457848901516136b0601f8916826135bd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613703826123c1565b915061370e836123c1565b92508261371e5761371d6136c9565b5b828204905092915050565b6000613734826123c1565b915061373f836123c1565b925082820390508181111561375757613756613146565b5b92915050565b6000613768826123c1565b9150613773836123c1565b925082613783576137826136c9565b5b828206905092915050565b6000613799826123c1565b91506137a4836123c1565b92508282019050808211156137bc576137bb613146565b5b92915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061381e6021836126e3565b9150613829826137c2565b604082019050919050565b6000602082019050818103600083015261384d81613811565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006138b06028836126e3565b91506138bb82613854565b604082019050919050565b600060208201905081810360008301526138df816138a3565b9050919050565b600060408201905081810360008301526139008185612c07565b905081810360208301526139148184612c07565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139796025836126e3565b91506139848261391d565b604082019050919050565b600060208201905081810360008301526139a88161396c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613a0b602a836126e3565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b6000604082019050613a566000830185612437565b613a636020830184612437565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613ac66029836126e3565b9150613ad182613a6a565b604082019050919050565b60006020820190508181036000830152613af581613ab9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b2382613afc565b613b2d8185613b07565b9350613b3d8185602086016126f4565b613b4681612526565b840191505092915050565b600060a082019050613b666000830188612de1565b613b736020830187612de1565b8181036040830152613b858186612c07565b90508181036060830152613b998185612c07565b90508181036080830152613bad8184613b18565b90509695505050505050565b600081519050613bc88161248d565b92915050565b600060208284031215613be457613be3612359565b5b6000613bf284828501613bb9565b91505092915050565b60008160e01c9050919050565b600060033d1115613c275760046000803e613c24600051613bfb565b90505b90565b600060443d10613cb757613c3c61234f565b60043d036004823e80513d602482011167ffffffffffffffff82111715613c64575050613cb7565b808201805167ffffffffffffffff811115613c825750505050613cb7565b80602083010160043d038501811115613c9f575050505050613cb7565b613cae82602001850186612566565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613d166034836126e3565b9150613d2182613cba565b604082019050919050565b60006020820190508181036000830152613d4581613d09565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613da86028836126e3565b9150613db382613d4c565b604082019050919050565b60006020820190508181036000830152613dd781613d9b565b9050919050565b600060a082019050613df36000830188612de1565b613e006020830187612de1565b613e0d6040830186612437565b613e1a6060830185612437565b8181036080830152613e2c8184613b18565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000613e946028836126e3565b9150613e9f82613e38565b604082019050919050565b60006020820190508181036000830152613ec381613e87565b905091905056fea26469706673582212203d9197d24693794c98bd33332d2fba7d9f5b3a0e56412bb1e9d55b605949e9b564736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.