- Contract name:
- ContractResolver
- Optimization enabled
- false
- Compiler version
- v0.8.17+commit.8df45f5f
- Verified at
- 2023-07-13T20:05:18.309741Z
Constructor Arguments
0000000000000000000000000000000000000000000000000000000000000001
Arg [0] (uint8) : 1
contracts/lit-core/ContractResolver.sol
// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;import "@openzeppelin/contracts/access/AccessControl.sol";import "hardhat/console.sol";contract ContractResolver is AccessControl {/* ========== TYPE DEFINITIONS ========== */// the comments following each one of these are the keccak256 hashes of the string values// this is very useful if you have to manually set any of these, so that you// don't have to calculate the hahes yourself.bytes32 public constant ADMIN_ROLE = keccak256("ADMIN"); // 0xdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42bytes32 public constant RELEASE_REGISTER_CONTRACT =keccak256("RELEASE_REGISTER"); // 0x3a68dbfd8bbb64015c42bc131c388dea7965e28c1004d09b39f59500c3a763ecbytes32 public constant STAKING_CONTRACT = keccak256("STAKING"); // 0x080909c18c958ce5a2d36481697824e477319323d03154ceba3b78f28a61887bbytes32 public constant MULTI_SENDER_CONTRACT = keccak256("MULTI_SENDER"); // 0xdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da7243bytes32 public constant LIT_TOKEN_CONTRACT = keccak256("LIT_TOKEN");bytes32 public constant ACCESS_CONTROL_CONTRACT =keccak256("ACCESS_CONTROL"); // 0x6450fc880933ecbac6591cb5b043b20f0f2a1452c46acdd5919b2bdafc37439cbytes32 public constant PUB_KEY_ROUTER_CONTRACT =keccak256("PUB_KEY_ROUTER"); // 0xb1f79813bc7630a52ae948bc99781397e409d0dd3521953bf7d8d7a2db6147f7bytes32 public constant PKP_NFT_CONTRACT = keccak256("PKP_NFT"); // 0xb7b4fde9944d3c13e9a78835431c33a5084d90a7f0c73def76d7886315fe87b0bytes32 public constant RATE_LIMIT_NFT_CONTRACT =keccak256("RATE_LIMIT_NFT"); // 0xb931b2719aeb2a65a5035fa0a190bfdc4c8622ce8cbff7a3d1ab42531fb1a918bytes32 public constant PKP_HELPER_CONTRACT = keccak256("PKP_HELPER"); // 0x27d764ea2a4a3865434bbf4a391110149644be31448f3479fd15b44388755765bytes32 public constant PKP_PERMISSIONS_CONTRACT =keccak256("PKP_PERMISSIONS"); // 0x54953c23068b8fc4c0736301b50f10027d6b469327de1fd42841a5072b1bcebebytes32 public constant PKP_NFT_METADATA_CONTRACT =keccak256("PKP_NFT_METADATA"); // 0xf14f431dadc82e7dbc5e379f71234e5735c9187e4327a7c6ac014d55d1b7727abytes32 public constant ALLOWLIST_CONTRACT = keccak256("ALLOWLIST"); // 0x74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bcaenum Env {Dev,Staging,Prod}
@openzeppelin/contracts/access/AccessControl.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.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
@openzeppelin/contracts/access/IAccessControl.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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);
@openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
@openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))}while (true) {ptr--;/// @solidity memory-safe-assemblyassembly {mstore8(ptr, byte(mod(value, 10), _SYMBOLS))}value /= 10;if (value == 0) break;}return buffer;}}/*** @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
@openzeppelin/contracts/utils/introspection/ERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {return interfaceId == type(IERC165).interfaceId;}}
@openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
@openzeppelin/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {return a < b ? a : b;}/*** @dev Returns the average of two numbers. The result is rounded towards* zero.*/function average(uint256 a, uint256 b) internal pure returns (uint256) {// (a + b) / 2 can overflow.return (a & b) + (a ^ b) / 2;}/*** @dev Returns the ceiling of the division of two numbers.*
hardhat/console.sol
// SPDX-License-Identifier: MITpragma solidity >= 0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);function _sendLogPayload(bytes memory payload) private view {uint256 payloadLength = payload.length;address consoleAddress = CONSOLE_ADDRESS;assembly {let payloadStart := add(payload, 32)let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)}}function log() internal view {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int256 p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));}function logUint(uint256 p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));}function logString(string memory p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(string)", p0));}function logBool(bool p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));}function logAddress(address p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(address)", p0));}function logBytes(bytes memory p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"error","name":"AdminRoleRequired","inputs":[]},{"type":"event","name":"AllowedEnvAdded","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env","indexed":false}],"anonymous":false},{"type":"event","name":"AllowedEnvRemoved","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env","indexed":false}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetContract","inputs":[{"type":"bytes32","name":"typ","internalType":"bytes32","indexed":false},{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env","indexed":false},{"type":"address","name":"addr","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"ACCESS_CONTROL_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"ALLOWLIST_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"LIT_TOKEN_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"MULTI_SENDER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_HELPER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_NFT_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_NFT_METADATA_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_PERMISSIONS_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PUB_KEY_ROUTER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"RATE_LIMIT_NFT_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"RELEASE_REGISTER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"STAKING_CONTRACT","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAllowedEnv","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getContract","inputs":[{"type":"bytes32","name":"typ","internalType":"bytes32"},{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeAllowedEnv","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAdmin","inputs":[{"type":"address","name":"newAdmin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setContract","inputs":[{"type":"bytes32","name":"typ","internalType":"bytes32"},{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"},{"type":"address","name":"addr","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"typeAddresses","inputs":[{"type":"bytes32","name":"","internalType":"bytes32"},{"type":"uint8","name":"","internalType":"enum ContractResolver.Env"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b5060405162001f8e38038062001f8e833981810160405281019062000037919062000358565b620000697fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42336200013060201b60201c565b6200009b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42806200014660201b60201c565b6001806000836002811115620000b657620000b56200038a565b5b6002811115620000cb57620000ca6200038a565b5b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f839ad2743d4062df579edf3818f642b71ee0688a35d6bc4438ef5314cece8015816040516200012191906200040a565b60405180910390a15062000427565b620001428282620001a960201b60201c565b5050565b600062000159836200029a60201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620001bb8282620002b960201b60201c565b6200029657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200023b6200032360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000806000838152602001908152602001600020600101549050919050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080fd5b600381106200033e57600080fd5b50565b600081519050620003528162000330565b92915050565b6000602082840312156200037157620003706200032b565b5b6000620003818482850162000341565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110620003cd57620003cc6200038a565b5b50565b6000819050620003e082620003b9565b919050565b6000620003f282620003d0565b9050919050565b6200040481620003e5565b82525050565b6000602082019050620004216000830184620003f9565b92915050565b611b5780620004376000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806375b238fc116100de578063977a807011610097578063d547741f11610071578063d547741f14610475578063da19ddfb14610491578063df380693146104af578063f8ae93b4146104cd5761018e565b8063977a80701461041b578063a217fddf14610439578063ad1c8a86146104575761018e565b806375b238fc146103455780637cadf69f146103635780638deb3893146103815780638e8dfd161461039d5780639072f838146103cd57806391d14854146103eb5761018e565b80632f2ff15d1161014b57806350673a5a1161012557806350673a5a146102d357806351ad0a80146102f1578063704b6c021461030d57806374bc8139146103295761018e565b80632f2ff15d1461026b57806336568abe146102875780633ebf7985146102a35761018e565b806301ffc9a71461019357806316f76bbf146101c3578063248a9ca3146101e15780632668f305146102115780632c0b8bf71461022f5780632e4885e81461024d575b600080fd5b6101ad60048036038101906101a89190611308565b6104eb565b6040516101ba9190611350565b60405180910390f35b6101cb610565565b6040516101d89190611384565b60405180910390f35b6101fb60048036038101906101f691906113cb565b610589565b6040516102089190611384565b60405180910390f35b6102196105a8565b6040516102269190611384565b60405180910390f35b6102376105cc565b6040516102449190611384565b60405180910390f35b6102556105f0565b6040516102629190611384565b60405180910390f35b61028560048036038101906102809190611456565b610614565b005b6102a1600480360381019061029c9190611456565b610635565b005b6102bd60048036038101906102b891906114bb565b6106b8565b6040516102ca919061150a565b60405180910390f35b6102db6106fa565b6040516102e89190611384565b60405180910390f35b61030b60048036038101906103069190611525565b61071e565b005b61032760048036038101906103229190611578565b6108d0565b005b610343600480360381019061033e91906115a5565b610987565b005b61034d610a70565b60405161035a9190611384565b60405180910390f35b61036b610a94565b6040516103789190611384565b60405180910390f35b61039b600480360381019061039691906115a5565b610ab8565b005b6103b760048036038101906103b291906114bb565b610b99565b6040516103c4919061150a565b60405180910390f35b6103d5610c0c565b6040516103e29190611384565b60405180910390f35b61040560048036038101906104009190611456565b610c30565b6040516104129190611350565b60405180910390f35b610423610c9a565b6040516104309190611384565b60405180910390f35b610441610cbe565b60405161044e9190611384565b60405180910390f35b61045f610cc5565b60405161046c9190611384565b60405180910390f35b61048f600480360381019061048a9190611456565b610ce9565b005b610499610d0a565b6040516104a69190611384565b60405180910390f35b6104b7610d2e565b6040516104c49190611384565b60405180910390f35b6104d5610d52565b6040516104e29190611384565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055e575061055d82610d76565b5b9050919050565b7ff14f431dadc82e7dbc5e379f71234e5735c9187e4327a7c6ac014d55d1b7727a81565b6000806000838152602001908152602001600020600101549050919050565b7fb1f79813bc7630a52ae948bc99781397e409d0dd3521953bf7d8d7a2db6147f781565b7fb7b4fde9944d3c13e9a78835431c33a5084d90a7f0c73def76d7886315fe87b081565b7fb931b2719aeb2a65a5035fa0a190bfdc4c8622ce8cbff7a3d1ab42531fb1a91881565b61061d82610589565b61062681610de0565b6106308383610df4565b505050565b61063d610ed4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a190611655565b60405180910390fd5b6106b48282610edc565b5050565b60026020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f6450fc880933ecbac6591cb5b043b20f0f2a1452c46acdd5919b2bdafc37439c81565b6107487fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b61077e576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600115156001600084600281111561079957610798611675565b5b60028111156107ab576107aa611675565b5b815260200190815260200160002060009054906101000a900460ff16151514610809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080090611716565b60405180910390fd5b8060026000858152602001908152602001600020600084600281111561083257610831611675565b5b600281111561084457610843611675565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f33f014890f109229bbcf8dd47204c153a2c0ff1c572a61de220d10336530f53d8383836040516108c39392919061177e565b60405180910390a1505050565b6108fa7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b610930576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095a7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4282610df4565b6109847fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610edc565b50565b6109b17fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b6109e7576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018060008360028111156109ff576109fe611675565b5b6002811115610a1157610a10611675565b5b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f839ad2743d4062df579edf3818f642b71ee0688a35d6bc4438ef5314cece801581604051610a6591906117b5565b60405180910390a150565b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b7f74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bca81565b610ae27fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b610b18576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016000826002811115610b2f57610b2e611675565b5b6002811115610b4157610b40611675565b5b815260200190815260200160002060006101000a81549060ff02191690557f3f178f17dae6caf8ca09c4857502baf7744e8597de42d6596476fe9e06b8ad4781604051610b8e91906117b5565b60405180910390a150565b6000600260008481526020019081526020016000206000836002811115610bc357610bc2611675565b5b6002811115610bd557610bd4611675565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b7f54953c23068b8fc4c0736301b50f10027d6b469327de1fd42841a5072b1bcebe81565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f27d764ea2a4a3865434bbf4a391110149644be31448f3479fd15b4438875576581565b6000801b81565b7f3a68dbfd8bbb64015c42bc131c388dea7965e28c1004d09b39f59500c3a763ec81565b610cf282610589565b610cfb81610de0565b610d058383610edc565b505050565b7f080909c18c958ce5a2d36481697824e477319323d03154ceba3b78f28a61887b81565b7fb4bf999b68d8085dbbf7a0ec2f5a2d660873935bdf1ed08eb421ac6dcbc0036281565b7fdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da724381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610df181610dec610ed4565b610fbd565b50565b610dfe8282610c30565b610ed057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e75610ed4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b610ee68282610c30565b15610fb957600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f5e610ed4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b610fc78282610c30565b61103e57610fd481611042565b610fe28360001c602061106f565b604051602001610ff39291906118d9565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611035919061195d565b60405180910390fd5b5050565b60606110688273ffffffffffffffffffffffffffffffffffffffff16601460ff1661106f565b9050919050565b60606000600283600261108291906119b8565b61108c91906119fa565b67ffffffffffffffff8111156110a5576110a4611a2e565b5b6040519080825280601f01601f1916602001820160405280156110d75781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061110f5761110e611a5d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061117357611172611a5d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026111b391906119b8565b6111bd91906119fa565b90505b600181111561125d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106111ff576111fe611a5d565b5b1a60f81b82828151811061121657611215611a5d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061125690611a8c565b90506111c0565b50600084146112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890611b01565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6112e5816112b0565b81146112f057600080fd5b50565b600081359050611302816112dc565b92915050565b60006020828403121561131e5761131d6112ab565b5b600061132c848285016112f3565b91505092915050565b60008115159050919050565b61134a81611335565b82525050565b60006020820190506113656000830184611341565b92915050565b6000819050919050565b61137e8161136b565b82525050565b60006020820190506113996000830184611375565b92915050565b6113a88161136b565b81146113b357600080fd5b50565b6000813590506113c58161139f565b92915050565b6000602082840312156113e1576113e06112ab565b5b60006113ef848285016113b6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611423826113f8565b9050919050565b61143381611418565b811461143e57600080fd5b50565b6000813590506114508161142a565b92915050565b6000806040838503121561146d5761146c6112ab565b5b600061147b858286016113b6565b925050602061148c85828601611441565b9150509250929050565b600381106114a357600080fd5b50565b6000813590506114b581611496565b92915050565b600080604083850312156114d2576114d16112ab565b5b60006114e0858286016113b6565b92505060206114f1858286016114a6565b9150509250929050565b61150481611418565b82525050565b600060208201905061151f60008301846114fb565b92915050565b60008060006060848603121561153e5761153d6112ab565b5b600061154c868287016113b6565b935050602061155d868287016114a6565b925050604061156e86828701611441565b9150509250925092565b60006020828403121561158e5761158d6112ab565b5b600061159c84828501611441565b91505092915050565b6000602082840312156115bb576115ba6112ab565b5b60006115c9848285016114a6565b91505092915050565b600082825260208201905092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600061163f602f836115d2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5468652070726f766964656420456e76206973206e6f742076616c696420666f60008201527f72207468697320636f6e74726163740000000000000000000000000000000000602082015250565b6000611700602f836115d2565b915061170b826116a4565b604082019050919050565b6000602082019050818103600083015261172f816116f3565b9050919050565b6003811061174757611746611675565b5b50565b600081905061175882611736565b919050565b60006117688261174a565b9050919050565b6117788161175d565b82525050565b60006060820190506117936000830186611375565b6117a0602083018561176f565b6117ad60408301846114fb565b949350505050565b60006020820190506117ca600083018461176f565b92915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006118116017836117d0565b915061181c826117db565b601782019050919050565b600081519050919050565b60005b83811015611850578082015181840152602081019050611835565b60008484015250505050565b600061186782611827565b61187181856117d0565b9350611881818560208601611832565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006118c36011836117d0565b91506118ce8261188d565b601182019050919050565b60006118e482611804565b91506118f0828561185c565b91506118fb826118b6565b9150611907828461185c565b91508190509392505050565b6000601f19601f8301169050919050565b600061192f82611827565b61193981856115d2565b9350611949818560208601611832565b61195281611913565b840191505092915050565b600060208201905081810360008301526119778184611924565b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119c38261197f565b91506119ce8361197f565b92508282026119dc8161197f565b915082820484148315176119f3576119f2611989565b5b5092915050565b6000611a058261197f565b9150611a108361197f565b9250828201905080821115611a2857611a27611989565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611a978261197f565b915060008203611aaa57611aa9611989565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000611aeb6020836115d2565b9150611af682611ab5565b602082019050919050565b60006020820190508181036000830152611b1a81611ade565b905091905056fea2646970667358221220f4078b74e892a74005272fbe328c45ebac804d910a818cc06205ffb2f6f6180d64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000001
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806375b238fc116100de578063977a807011610097578063d547741f11610071578063d547741f14610475578063da19ddfb14610491578063df380693146104af578063f8ae93b4146104cd5761018e565b8063977a80701461041b578063a217fddf14610439578063ad1c8a86146104575761018e565b806375b238fc146103455780637cadf69f146103635780638deb3893146103815780638e8dfd161461039d5780639072f838146103cd57806391d14854146103eb5761018e565b80632f2ff15d1161014b57806350673a5a1161012557806350673a5a146102d357806351ad0a80146102f1578063704b6c021461030d57806374bc8139146103295761018e565b80632f2ff15d1461026b57806336568abe146102875780633ebf7985146102a35761018e565b806301ffc9a71461019357806316f76bbf146101c3578063248a9ca3146101e15780632668f305146102115780632c0b8bf71461022f5780632e4885e81461024d575b600080fd5b6101ad60048036038101906101a89190611308565b6104eb565b6040516101ba9190611350565b60405180910390f35b6101cb610565565b6040516101d89190611384565b60405180910390f35b6101fb60048036038101906101f691906113cb565b610589565b6040516102089190611384565b60405180910390f35b6102196105a8565b6040516102269190611384565b60405180910390f35b6102376105cc565b6040516102449190611384565b60405180910390f35b6102556105f0565b6040516102629190611384565b60405180910390f35b61028560048036038101906102809190611456565b610614565b005b6102a1600480360381019061029c9190611456565b610635565b005b6102bd60048036038101906102b891906114bb565b6106b8565b6040516102ca919061150a565b60405180910390f35b6102db6106fa565b6040516102e89190611384565b60405180910390f35b61030b60048036038101906103069190611525565b61071e565b005b61032760048036038101906103229190611578565b6108d0565b005b610343600480360381019061033e91906115a5565b610987565b005b61034d610a70565b60405161035a9190611384565b60405180910390f35b61036b610a94565b6040516103789190611384565b60405180910390f35b61039b600480360381019061039691906115a5565b610ab8565b005b6103b760048036038101906103b291906114bb565b610b99565b6040516103c4919061150a565b60405180910390f35b6103d5610c0c565b6040516103e29190611384565b60405180910390f35b61040560048036038101906104009190611456565b610c30565b6040516104129190611350565b60405180910390f35b610423610c9a565b6040516104309190611384565b60405180910390f35b610441610cbe565b60405161044e9190611384565b60405180910390f35b61045f610cc5565b60405161046c9190611384565b60405180910390f35b61048f600480360381019061048a9190611456565b610ce9565b005b610499610d0a565b6040516104a69190611384565b60405180910390f35b6104b7610d2e565b6040516104c49190611384565b60405180910390f35b6104d5610d52565b6040516104e29190611384565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055e575061055d82610d76565b5b9050919050565b7ff14f431dadc82e7dbc5e379f71234e5735c9187e4327a7c6ac014d55d1b7727a81565b6000806000838152602001908152602001600020600101549050919050565b7fb1f79813bc7630a52ae948bc99781397e409d0dd3521953bf7d8d7a2db6147f781565b7fb7b4fde9944d3c13e9a78835431c33a5084d90a7f0c73def76d7886315fe87b081565b7fb931b2719aeb2a65a5035fa0a190bfdc4c8622ce8cbff7a3d1ab42531fb1a91881565b61061d82610589565b61062681610de0565b6106308383610df4565b505050565b61063d610ed4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a190611655565b60405180910390fd5b6106b48282610edc565b5050565b60026020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f6450fc880933ecbac6591cb5b043b20f0f2a1452c46acdd5919b2bdafc37439c81565b6107487fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b61077e576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600115156001600084600281111561079957610798611675565b5b60028111156107ab576107aa611675565b5b815260200190815260200160002060009054906101000a900460ff16151514610809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080090611716565b60405180910390fd5b8060026000858152602001908152602001600020600084600281111561083257610831611675565b5b600281111561084457610843611675565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f33f014890f109229bbcf8dd47204c153a2c0ff1c572a61de220d10336530f53d8383836040516108c39392919061177e565b60405180910390a1505050565b6108fa7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b610930576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095a7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4282610df4565b6109847fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610edc565b50565b6109b17fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b6109e7576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018060008360028111156109ff576109fe611675565b5b6002811115610a1157610a10611675565b5b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f839ad2743d4062df579edf3818f642b71ee0688a35d6bc4438ef5314cece801581604051610a6591906117b5565b60405180910390a150565b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b7f74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bca81565b610ae27fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610c30565b610b18576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016000826002811115610b2f57610b2e611675565b5b6002811115610b4157610b40611675565b5b815260200190815260200160002060006101000a81549060ff02191690557f3f178f17dae6caf8ca09c4857502baf7744e8597de42d6596476fe9e06b8ad4781604051610b8e91906117b5565b60405180910390a150565b6000600260008481526020019081526020016000206000836002811115610bc357610bc2611675565b5b6002811115610bd557610bd4611675565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b7f54953c23068b8fc4c0736301b50f10027d6b469327de1fd42841a5072b1bcebe81565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f27d764ea2a4a3865434bbf4a391110149644be31448f3479fd15b4438875576581565b6000801b81565b7f3a68dbfd8bbb64015c42bc131c388dea7965e28c1004d09b39f59500c3a763ec81565b610cf282610589565b610cfb81610de0565b610d058383610edc565b505050565b7f080909c18c958ce5a2d36481697824e477319323d03154ceba3b78f28a61887b81565b7fb4bf999b68d8085dbbf7a0ec2f5a2d660873935bdf1ed08eb421ac6dcbc0036281565b7fdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da724381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610df181610dec610ed4565b610fbd565b50565b610dfe8282610c30565b610ed057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e75610ed4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b610ee68282610c30565b15610fb957600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f5e610ed4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b610fc78282610c30565b61103e57610fd481611042565b610fe28360001c602061106f565b604051602001610ff39291906118d9565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611035919061195d565b60405180910390fd5b5050565b60606110688273ffffffffffffffffffffffffffffffffffffffff16601460ff1661106f565b9050919050565b60606000600283600261108291906119b8565b61108c91906119fa565b67ffffffffffffffff8111156110a5576110a4611a2e565b5b6040519080825280601f01601f1916602001820160405280156110d75781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061110f5761110e611a5d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061117357611172611a5d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026111b391906119b8565b6111bd91906119fa565b90505b600181111561125d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106111ff576111fe611a5d565b5b1a60f81b82828151811061121657611215611a5d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061125690611a8c565b90506111c0565b50600084146112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890611b01565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6112e5816112b0565b81146112f057600080fd5b50565b600081359050611302816112dc565b92915050565b60006020828403121561131e5761131d6112ab565b5b600061132c848285016112f3565b91505092915050565b60008115159050919050565b61134a81611335565b82525050565b60006020820190506113656000830184611341565b92915050565b6000819050919050565b61137e8161136b565b82525050565b60006020820190506113996000830184611375565b92915050565b6113a88161136b565b81146113b357600080fd5b50565b6000813590506113c58161139f565b92915050565b6000602082840312156113e1576113e06112ab565b5b60006113ef848285016113b6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611423826113f8565b9050919050565b61143381611418565b811461143e57600080fd5b50565b6000813590506114508161142a565b92915050565b6000806040838503121561146d5761146c6112ab565b5b600061147b858286016113b6565b925050602061148c85828601611441565b9150509250929050565b600381106114a357600080fd5b50565b6000813590506114b581611496565b92915050565b600080604083850312156114d2576114d16112ab565b5b60006114e0858286016113b6565b92505060206114f1858286016114a6565b9150509250929050565b61150481611418565b82525050565b600060208201905061151f60008301846114fb565b92915050565b60008060006060848603121561153e5761153d6112ab565b5b600061154c868287016113b6565b935050602061155d868287016114a6565b925050604061156e86828701611441565b9150509250925092565b60006020828403121561158e5761158d6112ab565b5b600061159c84828501611441565b91505092915050565b6000602082840312156115bb576115ba6112ab565b5b60006115c9848285016114a6565b91505092915050565b600082825260208201905092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600061163f602f836115d2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5468652070726f766964656420456e76206973206e6f742076616c696420666f60008201527f72207468697320636f6e74726163740000000000000000000000000000000000602082015250565b6000611700602f836115d2565b915061170b826116a4565b604082019050919050565b6000602082019050818103600083015261172f816116f3565b9050919050565b6003811061174757611746611675565b5b50565b600081905061175882611736565b919050565b60006117688261174a565b9050919050565b6117788161175d565b82525050565b60006060820190506117936000830186611375565b6117a0602083018561176f565b6117ad60408301846114fb565b949350505050565b60006020820190506117ca600083018461176f565b92915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006118116017836117d0565b915061181c826117db565b601782019050919050565b600081519050919050565b60005b83811015611850578082015181840152602081019050611835565b60008484015250505050565b600061186782611827565b61187181856117d0565b9350611881818560208601611832565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006118c36011836117d0565b91506118ce8261188d565b601182019050919050565b60006118e482611804565b91506118f0828561185c565b91506118fb826118b6565b9150611907828461185c565b91508190509392505050565b6000601f19601f8301169050919050565b600061192f82611827565b61193981856115d2565b9350611949818560208601611832565b61195281611913565b840191505092915050565b600060208201905081810360008301526119778184611924565b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119c38261197f565b91506119ce8361197f565b92508282026119dc8161197f565b915082820484148315176119f3576119f2611989565b5b5092915050565b6000611a058261197f565b9150611a108361197f565b9250828201905080821115611a2857611a27611989565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611a978261197f565b915060008203611aaa57611aa9611989565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000611aeb6020836115d2565b9150611af682611ab5565b602082019050919050565b60006020820190508181036000830152611b1a81611ade565b905091905056fea2646970667358221220f4078b74e892a74005272fbe328c45ebac804d910a818cc06205ffb2f6f6180d64736f6c63430008110033