Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.03 ETH
Eth Value
$78.06 (@ $2,601.97/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Purchase | 14578051 | 1035 days ago | IN | 0.03 ETH | 0.00393468 | ||||
Register Token F... | 14576680 | 1035 days ago | IN | 0 ETH | 0.0029481 | ||||
Register Token F... | 14576266 | 1035 days ago | IN | 0 ETH | 0.0038964 | ||||
Register Token F... | 14576266 | 1035 days ago | IN | 0 ETH | 0.00389691 | ||||
Register Token F... | 14576257 | 1035 days ago | IN | 0 ETH | 0.00371008 | ||||
Register Token F... | 14576252 | 1035 days ago | IN | 0 ETH | 0.00418957 | ||||
Register Token F... | 14576247 | 1035 days ago | IN | 0 ETH | 0.00386716 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LifeLinerToken
Compiler Version
v0.8.10+commit.fc410830
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.10; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "./ERC2981.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev {ERC1155} token * Visit lifeliner.org for more information * */ contract LifeLinerToken is Context, AccessControl, ERC1155Burnable, ERC1155Pausable, ERC1155Supply, ERC2981 { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); struct TokenSettings { uint256 tokenId; uint256 maxAmount; uint256 price; } // Contract name string public name; // Contract symbol string public symbol; mapping(uint256 => TokenSettings) private _saleRegistry; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that * deploys the contract. */ constructor( string memory uri, string memory _name, string memory _symbol ) ERC1155(uri) { name = _name; symbol = _symbol; _setDefaultRoyalty(msg.sender, 1000); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual { require( hasRole(MINTER_ROLE, _msgSender()), "CharityToken: must have minter role to mint" ); _mint(to, id, amount, data); } function purchase( uint256 id, uint256 amount, bytes memory data ) public payable { TokenSettings memory saleTokenSettings = _saleRegistry[id]; require( saleTokenSettings.maxAmount > 0, "CharityToken: Token is not purchaseable" ); require( saleTokenSettings.maxAmount >= totalSupply(id) + amount, "CharityToken: No tokens left to purchase" ); require( msg.value >= amount * saleTokenSettings.price, "CharityToken: User did not send enough Ether for purchase" ); _mint(msg.sender, id, amount, data); } /** * @dev Withrawal all Funds sent to the contract to Owner * * Requirements: * - `msg.sender` needs to be Owner and payable */ function withdrawalAll() external { require( hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "CharityToken: must have admin role to withdrawal" ); require(payable(msg.sender).send(address(this).balance)); } /** * @dev Withrawal all Funds sent to the contract to Owner * * Requirements: * - `msg.sender` needs to be Owner and payable */ function setBaseURI(string memory _uri) external { require( hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "CharityToken: must have role admin to change baseuri" ); _setURI(_uri); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}. */ function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual { require( hasRole(MINTER_ROLE, _msgSender()), "CharityToken: must have minter role to mint" ); _mintBatch(to, ids, amounts, data); } function registerTokenForSale( uint256 id, uint256 maxAmount, uint256 tokenPrice ) public payable { require( hasRole(MINTER_ROLE, _msgSender()), "CharityToken: must have minter role to register new tokens for sale" ); _saleRegistry[id] = TokenSettings(id, maxAmount, tokenPrice); } /** * @dev Unpauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require( hasRole(PAUSER_ROLE, _msgSender()), "CharityToken: must have pauser role to unpause" ); _unpause(); } /** * @dev Pauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require( hasRole(PAUSER_ROLE, _msgSender()), "CharityToken: must have pauser role to pause" ); _pause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControl, ERC1155, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Pausable, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/common/ERC2981.sol) pragma solidity ^0.8.10; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.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) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Pausable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ 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); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":"to","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"},{"internalType":"uint256","name":"tokenPrice","type":"uint256"}],"name":"registerTokenForSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162006268380380620062688339818101604052810190620000379190620006ea565b8262000049816200015a60201b60201c565b506000600460006101000a81548160ff02191690831515021790555081600890805190602001906200007d9291906200049d565b508060099080519060200190620000969291906200049d565b50620000ab336103e86200017660201b60201c565b620000cf6000801b620000c36200031a60201b60201c565b6200032260201b60201c565b620001107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001046200031a60201b60201c565b6200032260201b60201c565b620001517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001456200031a60201b60201c565b6200032260201b60201c565b50505062000923565b8060039080519060200190620001729291906200049d565b5050565b620001866200033860201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620001e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001de906200082a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200025a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000251906200089c565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600033905090565b6200033482826200034260201b60201c565b5050565b6000612710905090565b6200035482826200043360201b60201c565b6200042f57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003d46200031a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620004ab90620008ed565b90600052602060002090601f016020900481019282620004cf57600085556200051b565b82601f10620004ea57805160ff19168380011785556200051b565b828001600101855582156200051b579182015b828111156200051a578251825591602001919060010190620004fd565b5b5090506200052a91906200052e565b5090565b5b80821115620005495760008160009055506001016200052f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005b6826200056b565b810181811067ffffffffffffffff82111715620005d857620005d76200057c565b5b80604052505050565b6000620005ed6200054d565b9050620005fb8282620005ab565b919050565b600067ffffffffffffffff8211156200061e576200061d6200057c565b5b62000629826200056b565b9050602081019050919050565b60005b838110156200065657808201518184015260208101905062000639565b8381111562000666576000848401525b50505050565b6000620006836200067d8462000600565b620005e1565b905082815260208101848484011115620006a257620006a162000566565b5b620006af84828562000636565b509392505050565b600082601f830112620006cf57620006ce62000561565b5b8151620006e18482602086016200066c565b91505092915050565b60008060006060848603121562000706576200070562000557565b5b600084015167ffffffffffffffff8111156200072757620007266200055c565b5b6200073586828701620006b7565b935050602084015167ffffffffffffffff8111156200075957620007586200055c565b5b6200076786828701620006b7565b925050604084015167ffffffffffffffff8111156200078b576200078a6200055c565b5b6200079986828701620006b7565b9150509250925092565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000812602a83620007a3565b91506200081f82620007b4565b604082019050919050565b60006020820190508181036000830152620008458162000803565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000884601983620007a3565b915062000891826200084c565b602082019050919050565b60006020820190508181036000830152620008b78162000875565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090657607f821691505b602082108114156200091d576200091c620008be565b5b50919050565b61593580620009336000396000f3fe6080604052600436106101e25760003560e01c80636b20c45411610102578063d539139311610095578063e985e9c511610064578063e985e9c5146106e6578063f242432a14610723578063f44b79b31461074c578063f5298aca14610763576101e2565b8063d53913931461064b578063d547741f14610676578063e63ab1e91461069f578063e89e24b0146106ca576101e2565b806395d89b41116100d157806395d89b411461058f578063a217fddf146105ba578063a22cb465146105e5578063bd85b0391461060e576101e2565b80636b20c454146104e9578063731133e9146105125780638456cb591461053b57806391d1485414610552576101e2565b80632f2ff15d1161017a5780634f558e79116101495780634f558e791461043c57806355f804b3146104795780635c975abb146104a25780635df82d65146104cd576101e2565b80632f2ff15d1461039657806336568abe146103bf5780633f4ba83a146103e85780634e1273f4146103ff576101e2565b80631f7fdffa116101b65780631f7fdffa146102c9578063248a9ca3146102f25780632a55205a1461032f5780632eb2c2d61461036d576101e2565b8062fdd58e146101e757806301ffc9a71461022457806306fdde03146102615780630e89341c1461028c575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613684565b61078c565b60405161021b91906136d3565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613746565b610856565b604051610258919061378e565b60405180910390f35b34801561026d57600080fd5b50610276610868565b6040516102839190613842565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190613864565b6108f6565b6040516102c09190613842565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a8e565b61098a565b005b3480156102fe57600080fd5b5061031960048036038101906103149190613b7f565b610a0c565b6040516103269190613bbb565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613bd6565b610a2b565b604051610364929190613c25565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613c4e565b610c16565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613d1d565b610cb7565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613d1d565b610ce0565b005b3480156103f457600080fd5b506103fd610d63565b005b34801561040b57600080fd5b5061042660048036038101906104219190613e20565b610ddd565b6040516104339190613f56565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613864565b610ef6565b604051610470919061378e565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190614019565b610f0a565b005b3480156104ae57600080fd5b506104b7610f69565b6040516104c4919061378e565b60405180910390f35b6104e760048036038101906104e29190614062565b610f80565b005b3480156104f557600080fd5b50610510600480360381019061050b91906140d1565b6110c5565b005b34801561051e57600080fd5b506105396004803603810190610534919061415c565b611162565b005b34801561054757600080fd5b506105506111e4565b005b34801561055e57600080fd5b5061057960048036038101906105749190613d1d565b61125e565b604051610586919061378e565b60405180910390f35b34801561059b57600080fd5b506105a46112c8565b6040516105b19190613842565b60405180910390f35b3480156105c657600080fd5b506105cf611356565b6040516105dc9190613bbb565b60405180910390f35b3480156105f157600080fd5b5061060c6004803603810190610607919061420b565b61135d565b005b34801561061a57600080fd5b5061063560048036038101906106309190613864565b611373565b60405161064291906136d3565b60405180910390f35b34801561065757600080fd5b50610660611390565b60405161066d9190613bbb565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613d1d565b6113b4565b005b3480156106ab57600080fd5b506106b46113dd565b6040516106c19190613bbb565b60405180910390f35b6106e460048036038101906106df919061424b565b611401565b005b3480156106f257600080fd5b5061070d6004803603810190610708919061429e565b6114c5565b60405161071a919061378e565b60405180910390f35b34801561072f57600080fd5b5061074a600480360381019061074591906142de565b611559565b005b34801561075857600080fd5b506107616115fa565b005b34801561076f57600080fd5b5061078a60048036038101906107859190614375565b61168d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f49061443a565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006108618261172a565b9050919050565b6008805461087590614489565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190614489565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b505050505081565b60606003805461090590614489565b80601f016020809104026020016040519081016040528092919081815260200182805461093190614489565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b50505050509050919050565b6109bb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109b66117a4565b61125e565b6109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061452d565b60405180910390fd5b610a06848484846117ac565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610bc15760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610bcb6119cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bf7919061457c565b610c019190614605565b90508160000151819350935050509250929050565b610c1e6117a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c645750610c6385610c5e6117a4565b6114c5565b5b610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906146a8565b60405180910390fd5b610cb085858585856119d5565b5050505050565b610cc082610a0c565b610cd181610ccc6117a4565b611cec565b610cdb8383611d89565b505050565b610ce86117a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c9061473a565b60405180910390fd5b610d5f8282611e69565b5050565b610d947f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d8f6117a4565b61125e565b610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906147cc565b60405180910390fd5b610ddb611f4a565b565b60608151835114610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061485e565b60405180910390fd5b6000835167ffffffffffffffff811115610e4057610e3f613896565b5b604051908082528060200260200182016040528015610e6e5781602001602082028036833780820191505090505b50905060005b8451811015610eeb57610ebb858281518110610e9357610e9261487e565b5b6020026020010151858381518110610eae57610ead61487e565b5b602002602001015161078c565b828281518110610ece57610ecd61487e565b5b60200260200101818152505080610ee4906148ad565b9050610e74565b508091505092915050565b600080610f0283611373565b119050919050565b610f1e6000801b610f196117a4565b61125e565b610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614968565b60405180910390fd5b610f6681611fec565b50565b6000600460009054906101000a900460ff16905090565b6000600a6000858152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000816020015111611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906149fa565b60405180910390fd5b8261101185611373565b61101b9190614a1a565b81602001511015611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614ae2565b60405180910390fd5b806040015183611071919061457c565b3410156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614b74565b60405180910390fd5b6110bf33858585612006565b50505050565b6110cd6117a4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111357506111128361110d6117a4565b6114c5565b5b611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614c06565b60405180910390fd5b61115d83838361219d565b505050565b6111937f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661118e6117a4565b61125e565b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c99061452d565b60405180910390fd5b6111de84848484612006565b50505050565b6112157f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112106117a4565b61125e565b611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90614c98565b60405180910390fd5b61125c612450565b565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600980546112d590614489565b80601f016020809104026020016040519081016040528092919081815260200182805461130190614489565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b505050505081565b6000801b81565b61136f6113686117a4565b83836124f3565b5050565b600060056000838152602001908152602001600020549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6113bd82610a0c565b6113ce816113c96117a4565b611cec565b6113d88383611e69565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6114327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661142d6117a4565b61125e565b611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890614d50565b60405180910390fd5b604051806060016040528084815260200183815260200182815250600a6000858152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115616117a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115a757506115a6856115a16117a4565b6114c5565b5b6115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614c06565b60405180910390fd5b6115f38585858585612660565b5050505050565b61160e6000801b6116096117a4565b61125e565b61164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614de2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061168b57600080fd5b565b6116956117a4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116db57506116da836116d56117a4565b6114c5565b5b61171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190614c06565b60405180910390fd5b6117258383836128e5565b505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061179d575061179c82612b04565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614e74565b60405180910390fd5b8151835114611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790614f06565b60405180910390fd5b600061186a6117a4565b905061187b81600087878787612be6565b60005b84518110156119355783818151811061189a5761189961487e565b5b6020026020010151600160008784815181106118b9576118b861487e565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191b9190614a1a565b92505081905550808061192d906148ad565b91505061187e565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119ad929190614f26565b60405180910390a46119c481600087878787612bfc565b5050505050565b6000612710905090565b8151835114611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090614f06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614fcf565b60405180910390fd5b6000611a936117a4565b9050611aa3818787878787612be6565b60005b8451811015611c57576000858281518110611ac457611ac361487e565b5b602002602001015190506000858381518110611ae357611ae261487e565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90615061565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3c9190614a1a565b9250508190555050505080611c50906148ad565b9050611aa6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611cce929190614f26565b60405180910390a4611ce4818787878787612bfc565b505050505050565b611cf6828261125e565b611d8557611d1b8173ffffffffffffffffffffffffffffffffffffffff166014612dd4565b611d298360001c6020612dd4565b604051602001611d3a929190615155565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c9190613842565b60405180910390fd5b5050565b611d93828261125e565b611e6557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e0a6117a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611e73828261125e565b15611f4657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611eeb6117a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611f52610f69565b611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f88906151db565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fd56117a4565b604051611fe291906151fb565b60405180910390a1565b8060039080519060200190612002929190613539565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614e74565b60405180910390fd5b60006120806117a4565b90506120a18160008761209288613010565b61209b88613010565b87612be6565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121019190614a1a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161217f929190615216565b60405180910390a46121968160008787878761308a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906152b1565b60405180910390fd5b8051825114612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890614f06565b60405180910390fd5b600061225b6117a4565b905061227b81856000868660405180602001604052806000815250612be6565b60005b83518110156123ca57600084828151811061229c5761229b61487e565b5b6020026020010151905060008483815181106122bb576122ba61487e565b5b6020026020010151905060006001600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561235d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235490615343565b60405180910390fd5b8181036001600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806123c2906148ad565b91505061227e565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612442929190614f26565b60405180910390a450505050565b612458610f69565b15612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f906153af565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124dc6117a4565b6040516124e991906151fb565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990615441565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612653919061378e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614fcf565b60405180910390fd5b60006126da6117a4565b90506126fa8187876126eb88613010565b6126f488613010565b87612be6565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278990615061565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128499190614a1a565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128c6929190615216565b60405180910390a46128dc82888888888861308a565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c906152b1565b60405180910390fd5b600061295f6117a4565b905061298f8185600061297187613010565b61297a87613010565b60405180602001604052806000815250612be6565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1e90615343565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612af5929190615216565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bcf57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bdf5750612bde82613262565b5b9050919050565b612bf48686868686866132dc565b505050505050565b612c1b8473ffffffffffffffffffffffffffffffffffffffff16613456565b15612dcc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612c619594939291906154b6565b6020604051808303816000875af1925050508015612c9d57506040513d601f19601f82011682018060405250810190612c9a9190615533565b60015b612d4357612ca961556d565b806308c379a01415612d065750612cbe61558f565b80612cc95750612d08565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd9190613842565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3a90615697565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc190615729565b60405180910390fd5b505b505050505050565b606060006002836002612de7919061457c565b612df19190614a1a565b67ffffffffffffffff811115612e0a57612e09613896565b5b6040519080825280601f01601f191660200182016040528015612e3c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612e7457612e7361487e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612ed857612ed761487e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612f18919061457c565b612f229190614a1a565b90505b6001811115612fc2577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612f6457612f6361487e565b5b1a60f81b828281518110612f7b57612f7a61487e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612fbb90615749565b9050612f25565b5060008414613006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffd906157bf565b60405180910390fd5b8091505092915050565b60606000600167ffffffffffffffff81111561302f5761302e613896565b5b60405190808252806020026020018201604052801561305d5781602001602082028036833780820191505090505b50905082816000815181106130755761307461487e565b5b60200260200101818152505080915050919050565b6130a98473ffffffffffffffffffffffffffffffffffffffff16613456565b1561325a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016130ef9594939291906157df565b6020604051808303816000875af192505050801561312b57506040513d601f19601f820116820180604052508101906131289190615533565b60015b6131d15761313761556d565b806308c379a01415613194575061314c61558f565b806131575750613196565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318b9190613842565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890615697565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324f90615729565b60405180910390fd5b505b505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132d557506132d482613469565b5b9050919050565b6132ea8686868686866134d3565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561339c5760005b835181101561339a5782818151811061333e5761333d61487e565b5b60200260200101516005600086848151811061335d5761335c61487e565b5b6020026020010151815260200190815260200160002060008282546133829190614a1a565b9250508190555080613393906148ad565b9050613322565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561344e5760005b835181101561344c578281815181106133f0576133ef61487e565b5b60200260200101516005600086848151811061340f5761340e61487e565b5b6020026020010151815260200190815260200160002060008282546134349190615839565b9250508190555080613445906148ad565b90506133d4565b505b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134e1868686868686613531565b6134e9610f69565b15613529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613520906158df565b60405180910390fd5b505050505050565b505050505050565b82805461354590614489565b90600052602060002090601f01602090048101928261356757600085556135ae565b82601f1061358057805160ff19168380011785556135ae565b828001600101855582156135ae579182015b828111156135ad578251825591602001919060010190613592565b5b5090506135bb91906135bf565b5090565b5b808211156135d85760008160009055506001016135c0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061361b826135f0565b9050919050565b61362b81613610565b811461363657600080fd5b50565b60008135905061364881613622565b92915050565b6000819050919050565b6136618161364e565b811461366c57600080fd5b50565b60008135905061367e81613658565b92915050565b6000806040838503121561369b5761369a6135e6565b5b60006136a985828601613639565b92505060206136ba8582860161366f565b9150509250929050565b6136cd8161364e565b82525050565b60006020820190506136e860008301846136c4565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613723816136ee565b811461372e57600080fd5b50565b6000813590506137408161371a565b92915050565b60006020828403121561375c5761375b6135e6565b5b600061376a84828501613731565b91505092915050565b60008115159050919050565b61378881613773565b82525050565b60006020820190506137a3600083018461377f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e35780820151818401526020810190506137c8565b838111156137f2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613814826137a9565b61381e81856137b4565b935061382e8185602086016137c5565b613837816137f8565b840191505092915050565b6000602082019050818103600083015261385c8184613809565b905092915050565b60006020828403121561387a576138796135e6565b5b60006138888482850161366f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138ce826137f8565b810181811067ffffffffffffffff821117156138ed576138ec613896565b5b80604052505050565b60006139006135dc565b905061390c82826138c5565b919050565b600067ffffffffffffffff82111561392c5761392b613896565b5b602082029050602081019050919050565b600080fd5b600061395561395084613911565b6138f6565b905080838252602082019050602084028301858111156139785761397761393d565b5b835b818110156139a1578061398d888261366f565b84526020840193505060208101905061397a565b5050509392505050565b600082601f8301126139c0576139bf613891565b5b81356139d0848260208601613942565b91505092915050565b600080fd5b600067ffffffffffffffff8211156139f9576139f8613896565b5b613a02826137f8565b9050602081019050919050565b82818337600083830152505050565b6000613a31613a2c846139de565b6138f6565b905082815260208101848484011115613a4d57613a4c6139d9565b5b613a58848285613a0f565b509392505050565b600082601f830112613a7557613a74613891565b5b8135613a85848260208601613a1e565b91505092915050565b60008060008060808587031215613aa857613aa76135e6565b5b6000613ab687828801613639565b945050602085013567ffffffffffffffff811115613ad757613ad66135eb565b5b613ae3878288016139ab565b935050604085013567ffffffffffffffff811115613b0457613b036135eb565b5b613b10878288016139ab565b925050606085013567ffffffffffffffff811115613b3157613b306135eb565b5b613b3d87828801613a60565b91505092959194509250565b6000819050919050565b613b5c81613b49565b8114613b6757600080fd5b50565b600081359050613b7981613b53565b92915050565b600060208284031215613b9557613b946135e6565b5b6000613ba384828501613b6a565b91505092915050565b613bb581613b49565b82525050565b6000602082019050613bd06000830184613bac565b92915050565b60008060408385031215613bed57613bec6135e6565b5b6000613bfb8582860161366f565b9250506020613c0c8582860161366f565b9150509250929050565b613c1f81613610565b82525050565b6000604082019050613c3a6000830185613c16565b613c4760208301846136c4565b9392505050565b600080600080600060a08688031215613c6a57613c696135e6565b5b6000613c7888828901613639565b9550506020613c8988828901613639565b945050604086013567ffffffffffffffff811115613caa57613ca96135eb565b5b613cb6888289016139ab565b935050606086013567ffffffffffffffff811115613cd757613cd66135eb565b5b613ce3888289016139ab565b925050608086013567ffffffffffffffff811115613d0457613d036135eb565b5b613d1088828901613a60565b9150509295509295909350565b60008060408385031215613d3457613d336135e6565b5b6000613d4285828601613b6a565b9250506020613d5385828601613639565b9150509250929050565b600067ffffffffffffffff821115613d7857613d77613896565b5b602082029050602081019050919050565b6000613d9c613d9784613d5d565b6138f6565b90508083825260208201905060208402830185811115613dbf57613dbe61393d565b5b835b81811015613de85780613dd48882613639565b845260208401935050602081019050613dc1565b5050509392505050565b600082601f830112613e0757613e06613891565b5b8135613e17848260208601613d89565b91505092915050565b60008060408385031215613e3757613e366135e6565b5b600083013567ffffffffffffffff811115613e5557613e546135eb565b5b613e6185828601613df2565b925050602083013567ffffffffffffffff811115613e8257613e816135eb565b5b613e8e858286016139ab565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ecd8161364e565b82525050565b6000613edf8383613ec4565b60208301905092915050565b6000602082019050919050565b6000613f0382613e98565b613f0d8185613ea3565b9350613f1883613eb4565b8060005b83811015613f49578151613f308882613ed3565b9750613f3b83613eeb565b925050600181019050613f1c565b5085935050505092915050565b60006020820190508181036000830152613f708184613ef8565b905092915050565b600067ffffffffffffffff821115613f9357613f92613896565b5b613f9c826137f8565b9050602081019050919050565b6000613fbc613fb784613f78565b6138f6565b905082815260208101848484011115613fd857613fd76139d9565b5b613fe3848285613a0f565b509392505050565b600082601f83011261400057613fff613891565b5b8135614010848260208601613fa9565b91505092915050565b60006020828403121561402f5761402e6135e6565b5b600082013567ffffffffffffffff81111561404d5761404c6135eb565b5b61405984828501613feb565b91505092915050565b60008060006060848603121561407b5761407a6135e6565b5b60006140898682870161366f565b935050602061409a8682870161366f565b925050604084013567ffffffffffffffff8111156140bb576140ba6135eb565b5b6140c786828701613a60565b9150509250925092565b6000806000606084860312156140ea576140e96135e6565b5b60006140f886828701613639565b935050602084013567ffffffffffffffff811115614119576141186135eb565b5b614125868287016139ab565b925050604084013567ffffffffffffffff811115614146576141456135eb565b5b614152868287016139ab565b9150509250925092565b60008060008060808587031215614176576141756135e6565b5b600061418487828801613639565b94505060206141958782880161366f565b93505060406141a68782880161366f565b925050606085013567ffffffffffffffff8111156141c7576141c66135eb565b5b6141d387828801613a60565b91505092959194509250565b6141e881613773565b81146141f357600080fd5b50565b600081359050614205816141df565b92915050565b60008060408385031215614222576142216135e6565b5b600061423085828601613639565b9250506020614241858286016141f6565b9150509250929050565b600080600060608486031215614264576142636135e6565b5b60006142728682870161366f565b93505060206142838682870161366f565b92505060406142948682870161366f565b9150509250925092565b600080604083850312156142b5576142b46135e6565b5b60006142c385828601613639565b92505060206142d485828601613639565b9150509250929050565b600080600080600060a086880312156142fa576142f96135e6565b5b600061430888828901613639565b955050602061431988828901613639565b945050604061432a8882890161366f565b935050606061433b8882890161366f565b925050608086013567ffffffffffffffff81111561435c5761435b6135eb565b5b61436888828901613a60565b9150509295509295909350565b60008060006060848603121561438e5761438d6135e6565b5b600061439c86828701613639565b93505060206143ad8682870161366f565b92505060406143be8682870161366f565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614424602b836137b4565b915061442f826143c8565b604082019050919050565b6000602082019050818103600083015261445381614417565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144a157607f821691505b602082108114156144b5576144b461445a565b5b50919050565b7f43686172697479546f6b656e3a206d7573742068617665206d696e746572207260008201527f6f6c6520746f206d696e74000000000000000000000000000000000000000000602082015250565b6000614517602b836137b4565b9150614522826144bb565b604082019050919050565b600060208201905081810360008301526145468161450a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145878261364e565b91506145928361364e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145cb576145ca61454d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146108261364e565b915061461b8361364e565b92508261462b5761462a6145d6565b5b828204905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146926032836137b4565b915061469d82614636565b604082019050919050565b600060208201905081810360008301526146c181614685565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614724602f836137b4565b915061472f826146c8565b604082019050919050565b6000602082019050818103600083015261475381614717565b9050919050565b7f43686172697479546f6b656e3a206d757374206861766520706175736572207260008201527f6f6c6520746f20756e7061757365000000000000000000000000000000000000602082015250565b60006147b6602e836137b4565b91506147c18261475a565b604082019050919050565b600060208201905081810360008301526147e5816147a9565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006148486029836137b4565b9150614853826147ec565b604082019050919050565b600060208201905081810360008301526148778161483b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006148b88261364e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148eb576148ea61454d565b5b600182019050919050565b7f43686172697479546f6b656e3a206d757374206861766520726f6c652061646d60008201527f696e20746f206368616e67652062617365757269000000000000000000000000602082015250565b60006149526034836137b4565b915061495d826148f6565b604082019050919050565b6000602082019050818103600083015261498181614945565b9050919050565b7f43686172697479546f6b656e3a20546f6b656e206973206e6f7420707572636860008201527f61736561626c6500000000000000000000000000000000000000000000000000602082015250565b60006149e46027836137b4565b91506149ef82614988565b604082019050919050565b60006020820190508181036000830152614a13816149d7565b9050919050565b6000614a258261364e565b9150614a308361364e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a6557614a6461454d565b5b828201905092915050565b7f43686172697479546f6b656e3a204e6f20746f6b656e73206c65667420746f2060008201527f7075726368617365000000000000000000000000000000000000000000000000602082015250565b6000614acc6028836137b4565b9150614ad782614a70565b604082019050919050565b60006020820190508181036000830152614afb81614abf565b9050919050565b7f43686172697479546f6b656e3a205573657220646964206e6f742073656e642060008201527f656e6f75676820457468657220666f7220707572636861736500000000000000602082015250565b6000614b5e6039836137b4565b9150614b6982614b02565b604082019050919050565b60006020820190508181036000830152614b8d81614b51565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614bf06029836137b4565b9150614bfb82614b94565b604082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b7f43686172697479546f6b656e3a206d757374206861766520706175736572207260008201527f6f6c6520746f2070617573650000000000000000000000000000000000000000602082015250565b6000614c82602c836137b4565b9150614c8d82614c26565b604082019050919050565b60006020820190508181036000830152614cb181614c75565b9050919050565b7f43686172697479546f6b656e3a206d7573742068617665206d696e746572207260008201527f6f6c6520746f207265676973746572206e657720746f6b656e7320666f72207360208201527f616c650000000000000000000000000000000000000000000000000000000000604082015250565b6000614d3a6043836137b4565b9150614d4582614cb8565b606082019050919050565b60006020820190508181036000830152614d6981614d2d565b9050919050565b7f43686172697479546f6b656e3a206d75737420686176652061646d696e20726f60008201527f6c6520746f207769746864726177616c00000000000000000000000000000000602082015250565b6000614dcc6030836137b4565b9150614dd782614d70565b604082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e5e6021836137b4565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614ef06028836137b4565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b60006040820190508181036000830152614f408185613ef8565b90508181036020830152614f548184613ef8565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fb96025836137b4565b9150614fc482614f5d565b604082019050919050565b60006020820190508181036000830152614fe881614fac565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061504b602a836137b4565b915061505682614fef565b604082019050919050565b6000602082019050818103600083015261507a8161503e565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006150c2601783615081565b91506150cd8261508c565b601782019050919050565b60006150e3826137a9565b6150ed8185615081565b93506150fd8185602086016137c5565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061513f601183615081565b915061514a82615109565b601182019050919050565b6000615160826150b5565b915061516c82856150d8565b915061517782615132565b915061518382846150d8565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006151c56014836137b4565b91506151d08261518f565b602082019050919050565b600060208201905081810360008301526151f4816151b8565b9050919050565b60006020820190506152106000830184613c16565b92915050565b600060408201905061522b60008301856136c4565b61523860208301846136c4565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061529b6023836137b4565b91506152a68261523f565b604082019050919050565b600060208201905081810360008301526152ca8161528e565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061532d6024836137b4565b9150615338826152d1565b604082019050919050565b6000602082019050818103600083015261535c81615320565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006153996010836137b4565b91506153a482615363565b602082019050919050565b600060208201905081810360008301526153c88161538c565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061542b6029836137b4565b9150615436826153cf565b604082019050919050565b6000602082019050818103600083015261545a8161541e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061548882615461565b615492818561546c565b93506154a28185602086016137c5565b6154ab816137f8565b840191505092915050565b600060a0820190506154cb6000830188613c16565b6154d86020830187613c16565b81810360408301526154ea8186613ef8565b905081810360608301526154fe8185613ef8565b90508181036080830152615512818461547d565b90509695505050505050565b60008151905061552d8161371a565b92915050565b600060208284031215615549576155486135e6565b5b60006155578482850161551e565b91505092915050565b60008160e01c9050919050565b600060033d111561558c5760046000803e615589600051615560565b90505b90565b600060443d101561559f57615622565b6155a76135dc565b60043d036004823e80513d602482011167ffffffffffffffff821117156155cf575050615622565b808201805167ffffffffffffffff8111156155ed5750505050615622565b80602083010160043d03850181111561560a575050505050615622565b615619826020018501866138c5565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006156816034836137b4565b915061568c82615625565b604082019050919050565b600060208201905081810360008301526156b081615674565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006157136028836137b4565b915061571e826156b7565b604082019050919050565b6000602082019050818103600083015261574281615706565b9050919050565b60006157548261364e565b915060008214156157685761576761454d565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006157a96020836137b4565b91506157b482615773565b602082019050919050565b600060208201905081810360008301526157d88161579c565b9050919050565b600060a0820190506157f46000830188613c16565b6158016020830187613c16565b61580e60408301866136c4565b61581b60608301856136c4565b818103608083015261582d818461547d565b90509695505050505050565b60006158448261364e565b915061584f8361364e565b9250828210156158625761586161454d565b5b828203905092915050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b60006158c9602c836137b4565b91506158d48261586d565b604082019050919050565b600060208201905081810360008301526158f8816158bc565b905091905056fea2646970667358221220a7722d7e1a967753bff272b273d9df8bc1e469e3b4ba4f480eab3ad993745b5164736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6c6966656c696e65722e6f72672f746f6b656e732f7b69647d2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4c6966654c696e6572546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c69546f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e25760003560e01c80636b20c45411610102578063d539139311610095578063e985e9c511610064578063e985e9c5146106e6578063f242432a14610723578063f44b79b31461074c578063f5298aca14610763576101e2565b8063d53913931461064b578063d547741f14610676578063e63ab1e91461069f578063e89e24b0146106ca576101e2565b806395d89b41116100d157806395d89b411461058f578063a217fddf146105ba578063a22cb465146105e5578063bd85b0391461060e576101e2565b80636b20c454146104e9578063731133e9146105125780638456cb591461053b57806391d1485414610552576101e2565b80632f2ff15d1161017a5780634f558e79116101495780634f558e791461043c57806355f804b3146104795780635c975abb146104a25780635df82d65146104cd576101e2565b80632f2ff15d1461039657806336568abe146103bf5780633f4ba83a146103e85780634e1273f4146103ff576101e2565b80631f7fdffa116101b65780631f7fdffa146102c9578063248a9ca3146102f25780632a55205a1461032f5780632eb2c2d61461036d576101e2565b8062fdd58e146101e757806301ffc9a71461022457806306fdde03146102615780630e89341c1461028c575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613684565b61078c565b60405161021b91906136d3565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613746565b610856565b604051610258919061378e565b60405180910390f35b34801561026d57600080fd5b50610276610868565b6040516102839190613842565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190613864565b6108f6565b6040516102c09190613842565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a8e565b61098a565b005b3480156102fe57600080fd5b5061031960048036038101906103149190613b7f565b610a0c565b6040516103269190613bbb565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613bd6565b610a2b565b604051610364929190613c25565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613c4e565b610c16565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613d1d565b610cb7565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613d1d565b610ce0565b005b3480156103f457600080fd5b506103fd610d63565b005b34801561040b57600080fd5b5061042660048036038101906104219190613e20565b610ddd565b6040516104339190613f56565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613864565b610ef6565b604051610470919061378e565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190614019565b610f0a565b005b3480156104ae57600080fd5b506104b7610f69565b6040516104c4919061378e565b60405180910390f35b6104e760048036038101906104e29190614062565b610f80565b005b3480156104f557600080fd5b50610510600480360381019061050b91906140d1565b6110c5565b005b34801561051e57600080fd5b506105396004803603810190610534919061415c565b611162565b005b34801561054757600080fd5b506105506111e4565b005b34801561055e57600080fd5b5061057960048036038101906105749190613d1d565b61125e565b604051610586919061378e565b60405180910390f35b34801561059b57600080fd5b506105a46112c8565b6040516105b19190613842565b60405180910390f35b3480156105c657600080fd5b506105cf611356565b6040516105dc9190613bbb565b60405180910390f35b3480156105f157600080fd5b5061060c6004803603810190610607919061420b565b61135d565b005b34801561061a57600080fd5b5061063560048036038101906106309190613864565b611373565b60405161064291906136d3565b60405180910390f35b34801561065757600080fd5b50610660611390565b60405161066d9190613bbb565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613d1d565b6113b4565b005b3480156106ab57600080fd5b506106b46113dd565b6040516106c19190613bbb565b60405180910390f35b6106e460048036038101906106df919061424b565b611401565b005b3480156106f257600080fd5b5061070d6004803603810190610708919061429e565b6114c5565b60405161071a919061378e565b60405180910390f35b34801561072f57600080fd5b5061074a600480360381019061074591906142de565b611559565b005b34801561075857600080fd5b506107616115fa565b005b34801561076f57600080fd5b5061078a60048036038101906107859190614375565b61168d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f49061443a565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006108618261172a565b9050919050565b6008805461087590614489565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190614489565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b505050505081565b60606003805461090590614489565b80601f016020809104026020016040519081016040528092919081815260200182805461093190614489565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b50505050509050919050565b6109bb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109b66117a4565b61125e565b6109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061452d565b60405180910390fd5b610a06848484846117ac565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610bc15760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610bcb6119cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bf7919061457c565b610c019190614605565b90508160000151819350935050509250929050565b610c1e6117a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c645750610c6385610c5e6117a4565b6114c5565b5b610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906146a8565b60405180910390fd5b610cb085858585856119d5565b5050505050565b610cc082610a0c565b610cd181610ccc6117a4565b611cec565b610cdb8383611d89565b505050565b610ce86117a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c9061473a565b60405180910390fd5b610d5f8282611e69565b5050565b610d947f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d8f6117a4565b61125e565b610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906147cc565b60405180910390fd5b610ddb611f4a565b565b60608151835114610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061485e565b60405180910390fd5b6000835167ffffffffffffffff811115610e4057610e3f613896565b5b604051908082528060200260200182016040528015610e6e5781602001602082028036833780820191505090505b50905060005b8451811015610eeb57610ebb858281518110610e9357610e9261487e565b5b6020026020010151858381518110610eae57610ead61487e565b5b602002602001015161078c565b828281518110610ece57610ecd61487e565b5b60200260200101818152505080610ee4906148ad565b9050610e74565b508091505092915050565b600080610f0283611373565b119050919050565b610f1e6000801b610f196117a4565b61125e565b610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614968565b60405180910390fd5b610f6681611fec565b50565b6000600460009054906101000a900460ff16905090565b6000600a6000858152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000816020015111611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906149fa565b60405180910390fd5b8261101185611373565b61101b9190614a1a565b81602001511015611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614ae2565b60405180910390fd5b806040015183611071919061457c565b3410156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614b74565b60405180910390fd5b6110bf33858585612006565b50505050565b6110cd6117a4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111357506111128361110d6117a4565b6114c5565b5b611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614c06565b60405180910390fd5b61115d83838361219d565b505050565b6111937f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661118e6117a4565b61125e565b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c99061452d565b60405180910390fd5b6111de84848484612006565b50505050565b6112157f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112106117a4565b61125e565b611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90614c98565b60405180910390fd5b61125c612450565b565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600980546112d590614489565b80601f016020809104026020016040519081016040528092919081815260200182805461130190614489565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b505050505081565b6000801b81565b61136f6113686117a4565b83836124f3565b5050565b600060056000838152602001908152602001600020549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6113bd82610a0c565b6113ce816113c96117a4565b611cec565b6113d88383611e69565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6114327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661142d6117a4565b61125e565b611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890614d50565b60405180910390fd5b604051806060016040528084815260200183815260200182815250600a6000858152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115616117a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115a757506115a6856115a16117a4565b6114c5565b5b6115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614c06565b60405180910390fd5b6115f38585858585612660565b5050505050565b61160e6000801b6116096117a4565b61125e565b61164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614de2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061168b57600080fd5b565b6116956117a4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116db57506116da836116d56117a4565b6114c5565b5b61171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190614c06565b60405180910390fd5b6117258383836128e5565b505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061179d575061179c82612b04565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614e74565b60405180910390fd5b8151835114611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790614f06565b60405180910390fd5b600061186a6117a4565b905061187b81600087878787612be6565b60005b84518110156119355783818151811061189a5761189961487e565b5b6020026020010151600160008784815181106118b9576118b861487e565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191b9190614a1a565b92505081905550808061192d906148ad565b91505061187e565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119ad929190614f26565b60405180910390a46119c481600087878787612bfc565b5050505050565b6000612710905090565b8151835114611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090614f06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614fcf565b60405180910390fd5b6000611a936117a4565b9050611aa3818787878787612be6565b60005b8451811015611c57576000858281518110611ac457611ac361487e565b5b602002602001015190506000858381518110611ae357611ae261487e565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90615061565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3c9190614a1a565b9250508190555050505080611c50906148ad565b9050611aa6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611cce929190614f26565b60405180910390a4611ce4818787878787612bfc565b505050505050565b611cf6828261125e565b611d8557611d1b8173ffffffffffffffffffffffffffffffffffffffff166014612dd4565b611d298360001c6020612dd4565b604051602001611d3a929190615155565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c9190613842565b60405180910390fd5b5050565b611d93828261125e565b611e6557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e0a6117a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611e73828261125e565b15611f4657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611eeb6117a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611f52610f69565b611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f88906151db565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fd56117a4565b604051611fe291906151fb565b60405180910390a1565b8060039080519060200190612002929190613539565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614e74565b60405180910390fd5b60006120806117a4565b90506120a18160008761209288613010565b61209b88613010565b87612be6565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121019190614a1a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161217f929190615216565b60405180910390a46121968160008787878761308a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906152b1565b60405180910390fd5b8051825114612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890614f06565b60405180910390fd5b600061225b6117a4565b905061227b81856000868660405180602001604052806000815250612be6565b60005b83518110156123ca57600084828151811061229c5761229b61487e565b5b6020026020010151905060008483815181106122bb576122ba61487e565b5b6020026020010151905060006001600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561235d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235490615343565b60405180910390fd5b8181036001600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806123c2906148ad565b91505061227e565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612442929190614f26565b60405180910390a450505050565b612458610f69565b15612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f906153af565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124dc6117a4565b6040516124e991906151fb565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990615441565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612653919061378e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614fcf565b60405180910390fd5b60006126da6117a4565b90506126fa8187876126eb88613010565b6126f488613010565b87612be6565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278990615061565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128499190614a1a565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128c6929190615216565b60405180910390a46128dc82888888888861308a565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c906152b1565b60405180910390fd5b600061295f6117a4565b905061298f8185600061297187613010565b61297a87613010565b60405180602001604052806000815250612be6565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1e90615343565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612af5929190615216565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bcf57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bdf5750612bde82613262565b5b9050919050565b612bf48686868686866132dc565b505050505050565b612c1b8473ffffffffffffffffffffffffffffffffffffffff16613456565b15612dcc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612c619594939291906154b6565b6020604051808303816000875af1925050508015612c9d57506040513d601f19601f82011682018060405250810190612c9a9190615533565b60015b612d4357612ca961556d565b806308c379a01415612d065750612cbe61558f565b80612cc95750612d08565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd9190613842565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3a90615697565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc190615729565b60405180910390fd5b505b505050505050565b606060006002836002612de7919061457c565b612df19190614a1a565b67ffffffffffffffff811115612e0a57612e09613896565b5b6040519080825280601f01601f191660200182016040528015612e3c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612e7457612e7361487e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612ed857612ed761487e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612f18919061457c565b612f229190614a1a565b90505b6001811115612fc2577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612f6457612f6361487e565b5b1a60f81b828281518110612f7b57612f7a61487e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612fbb90615749565b9050612f25565b5060008414613006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffd906157bf565b60405180910390fd5b8091505092915050565b60606000600167ffffffffffffffff81111561302f5761302e613896565b5b60405190808252806020026020018201604052801561305d5781602001602082028036833780820191505090505b50905082816000815181106130755761307461487e565b5b60200260200101818152505080915050919050565b6130a98473ffffffffffffffffffffffffffffffffffffffff16613456565b1561325a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016130ef9594939291906157df565b6020604051808303816000875af192505050801561312b57506040513d601f19601f820116820180604052508101906131289190615533565b60015b6131d15761313761556d565b806308c379a01415613194575061314c61558f565b806131575750613196565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318b9190613842565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890615697565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324f90615729565b60405180910390fd5b505b505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132d557506132d482613469565b5b9050919050565b6132ea8686868686866134d3565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561339c5760005b835181101561339a5782818151811061333e5761333d61487e565b5b60200260200101516005600086848151811061335d5761335c61487e565b5b6020026020010151815260200190815260200160002060008282546133829190614a1a565b9250508190555080613393906148ad565b9050613322565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561344e5760005b835181101561344c578281815181106133f0576133ef61487e565b5b60200260200101516005600086848151811061340f5761340e61487e565b5b6020026020010151815260200190815260200160002060008282546134349190615839565b9250508190555080613445906148ad565b90506133d4565b505b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134e1868686868686613531565b6134e9610f69565b15613529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613520906158df565b60405180910390fd5b505050505050565b505050505050565b82805461354590614489565b90600052602060002090601f01602090048101928261356757600085556135ae565b82601f1061358057805160ff19168380011785556135ae565b828001600101855582156135ae579182015b828111156135ad578251825591602001919060010190613592565b5b5090506135bb91906135bf565b5090565b5b808211156135d85760008160009055506001016135c0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061361b826135f0565b9050919050565b61362b81613610565b811461363657600080fd5b50565b60008135905061364881613622565b92915050565b6000819050919050565b6136618161364e565b811461366c57600080fd5b50565b60008135905061367e81613658565b92915050565b6000806040838503121561369b5761369a6135e6565b5b60006136a985828601613639565b92505060206136ba8582860161366f565b9150509250929050565b6136cd8161364e565b82525050565b60006020820190506136e860008301846136c4565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613723816136ee565b811461372e57600080fd5b50565b6000813590506137408161371a565b92915050565b60006020828403121561375c5761375b6135e6565b5b600061376a84828501613731565b91505092915050565b60008115159050919050565b61378881613773565b82525050565b60006020820190506137a3600083018461377f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e35780820151818401526020810190506137c8565b838111156137f2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613814826137a9565b61381e81856137b4565b935061382e8185602086016137c5565b613837816137f8565b840191505092915050565b6000602082019050818103600083015261385c8184613809565b905092915050565b60006020828403121561387a576138796135e6565b5b60006138888482850161366f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138ce826137f8565b810181811067ffffffffffffffff821117156138ed576138ec613896565b5b80604052505050565b60006139006135dc565b905061390c82826138c5565b919050565b600067ffffffffffffffff82111561392c5761392b613896565b5b602082029050602081019050919050565b600080fd5b600061395561395084613911565b6138f6565b905080838252602082019050602084028301858111156139785761397761393d565b5b835b818110156139a1578061398d888261366f565b84526020840193505060208101905061397a565b5050509392505050565b600082601f8301126139c0576139bf613891565b5b81356139d0848260208601613942565b91505092915050565b600080fd5b600067ffffffffffffffff8211156139f9576139f8613896565b5b613a02826137f8565b9050602081019050919050565b82818337600083830152505050565b6000613a31613a2c846139de565b6138f6565b905082815260208101848484011115613a4d57613a4c6139d9565b5b613a58848285613a0f565b509392505050565b600082601f830112613a7557613a74613891565b5b8135613a85848260208601613a1e565b91505092915050565b60008060008060808587031215613aa857613aa76135e6565b5b6000613ab687828801613639565b945050602085013567ffffffffffffffff811115613ad757613ad66135eb565b5b613ae3878288016139ab565b935050604085013567ffffffffffffffff811115613b0457613b036135eb565b5b613b10878288016139ab565b925050606085013567ffffffffffffffff811115613b3157613b306135eb565b5b613b3d87828801613a60565b91505092959194509250565b6000819050919050565b613b5c81613b49565b8114613b6757600080fd5b50565b600081359050613b7981613b53565b92915050565b600060208284031215613b9557613b946135e6565b5b6000613ba384828501613b6a565b91505092915050565b613bb581613b49565b82525050565b6000602082019050613bd06000830184613bac565b92915050565b60008060408385031215613bed57613bec6135e6565b5b6000613bfb8582860161366f565b9250506020613c0c8582860161366f565b9150509250929050565b613c1f81613610565b82525050565b6000604082019050613c3a6000830185613c16565b613c4760208301846136c4565b9392505050565b600080600080600060a08688031215613c6a57613c696135e6565b5b6000613c7888828901613639565b9550506020613c8988828901613639565b945050604086013567ffffffffffffffff811115613caa57613ca96135eb565b5b613cb6888289016139ab565b935050606086013567ffffffffffffffff811115613cd757613cd66135eb565b5b613ce3888289016139ab565b925050608086013567ffffffffffffffff811115613d0457613d036135eb565b5b613d1088828901613a60565b9150509295509295909350565b60008060408385031215613d3457613d336135e6565b5b6000613d4285828601613b6a565b9250506020613d5385828601613639565b9150509250929050565b600067ffffffffffffffff821115613d7857613d77613896565b5b602082029050602081019050919050565b6000613d9c613d9784613d5d565b6138f6565b90508083825260208201905060208402830185811115613dbf57613dbe61393d565b5b835b81811015613de85780613dd48882613639565b845260208401935050602081019050613dc1565b5050509392505050565b600082601f830112613e0757613e06613891565b5b8135613e17848260208601613d89565b91505092915050565b60008060408385031215613e3757613e366135e6565b5b600083013567ffffffffffffffff811115613e5557613e546135eb565b5b613e6185828601613df2565b925050602083013567ffffffffffffffff811115613e8257613e816135eb565b5b613e8e858286016139ab565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ecd8161364e565b82525050565b6000613edf8383613ec4565b60208301905092915050565b6000602082019050919050565b6000613f0382613e98565b613f0d8185613ea3565b9350613f1883613eb4565b8060005b83811015613f49578151613f308882613ed3565b9750613f3b83613eeb565b925050600181019050613f1c565b5085935050505092915050565b60006020820190508181036000830152613f708184613ef8565b905092915050565b600067ffffffffffffffff821115613f9357613f92613896565b5b613f9c826137f8565b9050602081019050919050565b6000613fbc613fb784613f78565b6138f6565b905082815260208101848484011115613fd857613fd76139d9565b5b613fe3848285613a0f565b509392505050565b600082601f83011261400057613fff613891565b5b8135614010848260208601613fa9565b91505092915050565b60006020828403121561402f5761402e6135e6565b5b600082013567ffffffffffffffff81111561404d5761404c6135eb565b5b61405984828501613feb565b91505092915050565b60008060006060848603121561407b5761407a6135e6565b5b60006140898682870161366f565b935050602061409a8682870161366f565b925050604084013567ffffffffffffffff8111156140bb576140ba6135eb565b5b6140c786828701613a60565b9150509250925092565b6000806000606084860312156140ea576140e96135e6565b5b60006140f886828701613639565b935050602084013567ffffffffffffffff811115614119576141186135eb565b5b614125868287016139ab565b925050604084013567ffffffffffffffff811115614146576141456135eb565b5b614152868287016139ab565b9150509250925092565b60008060008060808587031215614176576141756135e6565b5b600061418487828801613639565b94505060206141958782880161366f565b93505060406141a68782880161366f565b925050606085013567ffffffffffffffff8111156141c7576141c66135eb565b5b6141d387828801613a60565b91505092959194509250565b6141e881613773565b81146141f357600080fd5b50565b600081359050614205816141df565b92915050565b60008060408385031215614222576142216135e6565b5b600061423085828601613639565b9250506020614241858286016141f6565b9150509250929050565b600080600060608486031215614264576142636135e6565b5b60006142728682870161366f565b93505060206142838682870161366f565b92505060406142948682870161366f565b9150509250925092565b600080604083850312156142b5576142b46135e6565b5b60006142c385828601613639565b92505060206142d485828601613639565b9150509250929050565b600080600080600060a086880312156142fa576142f96135e6565b5b600061430888828901613639565b955050602061431988828901613639565b945050604061432a8882890161366f565b935050606061433b8882890161366f565b925050608086013567ffffffffffffffff81111561435c5761435b6135eb565b5b61436888828901613a60565b9150509295509295909350565b60008060006060848603121561438e5761438d6135e6565b5b600061439c86828701613639565b93505060206143ad8682870161366f565b92505060406143be8682870161366f565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614424602b836137b4565b915061442f826143c8565b604082019050919050565b6000602082019050818103600083015261445381614417565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144a157607f821691505b602082108114156144b5576144b461445a565b5b50919050565b7f43686172697479546f6b656e3a206d7573742068617665206d696e746572207260008201527f6f6c6520746f206d696e74000000000000000000000000000000000000000000602082015250565b6000614517602b836137b4565b9150614522826144bb565b604082019050919050565b600060208201905081810360008301526145468161450a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145878261364e565b91506145928361364e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145cb576145ca61454d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146108261364e565b915061461b8361364e565b92508261462b5761462a6145d6565b5b828204905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146926032836137b4565b915061469d82614636565b604082019050919050565b600060208201905081810360008301526146c181614685565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614724602f836137b4565b915061472f826146c8565b604082019050919050565b6000602082019050818103600083015261475381614717565b9050919050565b7f43686172697479546f6b656e3a206d757374206861766520706175736572207260008201527f6f6c6520746f20756e7061757365000000000000000000000000000000000000602082015250565b60006147b6602e836137b4565b91506147c18261475a565b604082019050919050565b600060208201905081810360008301526147e5816147a9565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006148486029836137b4565b9150614853826147ec565b604082019050919050565b600060208201905081810360008301526148778161483b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006148b88261364e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148eb576148ea61454d565b5b600182019050919050565b7f43686172697479546f6b656e3a206d757374206861766520726f6c652061646d60008201527f696e20746f206368616e67652062617365757269000000000000000000000000602082015250565b60006149526034836137b4565b915061495d826148f6565b604082019050919050565b6000602082019050818103600083015261498181614945565b9050919050565b7f43686172697479546f6b656e3a20546f6b656e206973206e6f7420707572636860008201527f61736561626c6500000000000000000000000000000000000000000000000000602082015250565b60006149e46027836137b4565b91506149ef82614988565b604082019050919050565b60006020820190508181036000830152614a13816149d7565b9050919050565b6000614a258261364e565b9150614a308361364e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a6557614a6461454d565b5b828201905092915050565b7f43686172697479546f6b656e3a204e6f20746f6b656e73206c65667420746f2060008201527f7075726368617365000000000000000000000000000000000000000000000000602082015250565b6000614acc6028836137b4565b9150614ad782614a70565b604082019050919050565b60006020820190508181036000830152614afb81614abf565b9050919050565b7f43686172697479546f6b656e3a205573657220646964206e6f742073656e642060008201527f656e6f75676820457468657220666f7220707572636861736500000000000000602082015250565b6000614b5e6039836137b4565b9150614b6982614b02565b604082019050919050565b60006020820190508181036000830152614b8d81614b51565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614bf06029836137b4565b9150614bfb82614b94565b604082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b7f43686172697479546f6b656e3a206d757374206861766520706175736572207260008201527f6f6c6520746f2070617573650000000000000000000000000000000000000000602082015250565b6000614c82602c836137b4565b9150614c8d82614c26565b604082019050919050565b60006020820190508181036000830152614cb181614c75565b9050919050565b7f43686172697479546f6b656e3a206d7573742068617665206d696e746572207260008201527f6f6c6520746f207265676973746572206e657720746f6b656e7320666f72207360208201527f616c650000000000000000000000000000000000000000000000000000000000604082015250565b6000614d3a6043836137b4565b9150614d4582614cb8565b606082019050919050565b60006020820190508181036000830152614d6981614d2d565b9050919050565b7f43686172697479546f6b656e3a206d75737420686176652061646d696e20726f60008201527f6c6520746f207769746864726177616c00000000000000000000000000000000602082015250565b6000614dcc6030836137b4565b9150614dd782614d70565b604082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e5e6021836137b4565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614ef06028836137b4565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b60006040820190508181036000830152614f408185613ef8565b90508181036020830152614f548184613ef8565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fb96025836137b4565b9150614fc482614f5d565b604082019050919050565b60006020820190508181036000830152614fe881614fac565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061504b602a836137b4565b915061505682614fef565b604082019050919050565b6000602082019050818103600083015261507a8161503e565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006150c2601783615081565b91506150cd8261508c565b601782019050919050565b60006150e3826137a9565b6150ed8185615081565b93506150fd8185602086016137c5565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061513f601183615081565b915061514a82615109565b601182019050919050565b6000615160826150b5565b915061516c82856150d8565b915061517782615132565b915061518382846150d8565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006151c56014836137b4565b91506151d08261518f565b602082019050919050565b600060208201905081810360008301526151f4816151b8565b9050919050565b60006020820190506152106000830184613c16565b92915050565b600060408201905061522b60008301856136c4565b61523860208301846136c4565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061529b6023836137b4565b91506152a68261523f565b604082019050919050565b600060208201905081810360008301526152ca8161528e565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061532d6024836137b4565b9150615338826152d1565b604082019050919050565b6000602082019050818103600083015261535c81615320565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006153996010836137b4565b91506153a482615363565b602082019050919050565b600060208201905081810360008301526153c88161538c565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061542b6029836137b4565b9150615436826153cf565b604082019050919050565b6000602082019050818103600083015261545a8161541e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061548882615461565b615492818561546c565b93506154a28185602086016137c5565b6154ab816137f8565b840191505092915050565b600060a0820190506154cb6000830188613c16565b6154d86020830187613c16565b81810360408301526154ea8186613ef8565b905081810360608301526154fe8185613ef8565b90508181036080830152615512818461547d565b90509695505050505050565b60008151905061552d8161371a565b92915050565b600060208284031215615549576155486135e6565b5b60006155578482850161551e565b91505092915050565b60008160e01c9050919050565b600060033d111561558c5760046000803e615589600051615560565b90505b90565b600060443d101561559f57615622565b6155a76135dc565b60043d036004823e80513d602482011167ffffffffffffffff821117156155cf575050615622565b808201805167ffffffffffffffff8111156155ed5750505050615622565b80602083010160043d03850181111561560a575050505050615622565b615619826020018501866138c5565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006156816034836137b4565b915061568c82615625565b604082019050919050565b600060208201905081810360008301526156b081615674565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006157136028836137b4565b915061571e826156b7565b604082019050919050565b6000602082019050818103600083015261574281615706565b9050919050565b60006157548261364e565b915060008214156157685761576761454d565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006157a96020836137b4565b91506157b482615773565b602082019050919050565b600060208201905081810360008301526157d88161579c565b9050919050565b600060a0820190506157f46000830188613c16565b6158016020830187613c16565b61580e60408301866136c4565b61581b60608301856136c4565b818103608083015261582d818461547d565b90509695505050505050565b60006158448261364e565b915061584f8361364e565b9250828210156158625761586161454d565b5b828203905092915050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b60006158c9602c836137b4565b91506158d48261586d565b604082019050919050565b600060208201905081810360008301526158f8816158bc565b905091905056fea2646970667358221220a7722d7e1a967753bff272b273d9df8bc1e469e3b4ba4f480eab3ad993745b5164736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6c6966656c696e65722e6f72672f746f6b656e732f7b69647d2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4c6966654c696e6572546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c69546f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : uri (string): https://lifeliner.org/tokens/{id}.json
Arg [1] : _name (string): LifeLinerToken
Arg [2] : _symbol (string): LiTo
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [4] : 68747470733a2f2f6c6966656c696e65722e6f72672f746f6b656e732f7b6964
Arg [5] : 7d2e6a736f6e0000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 4c6966654c696e6572546f6b656e000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4c69546f00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,601.97 | 0.03 | $78.06 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.