Transactions
Token Transfers
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
- Contract name:
- PKPHelper
- Optimization enabled
- false
- Compiler version
- v0.8.17+commit.8df45f5f
- Verified at
- 2023-09-10T21:01:37.301346Z
Constructor Arguments
0000000000000000000000009194dc0a9164bfb6e464e3d2a4f0b52143dce2a70000000000000000000000000000000000000000000000000000000000000000
Arg [0] (address) : 0x9194dc0a9164bfb6e464e3d2a4f0b52143dce2a7
Arg [1] (uint8) : 0
contracts/lit-node/PKPHelper.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";import { PKPPermissions } from "./PKPPermissions.sol";import { PKPNFT } from "./PKPNFT.sol";import { PKPNFTMetadata } from "./PKPNFTMetadata.sol";import { Base64 } from "@openzeppelin/contracts/utils/Base64.sol";import { IERC721Receiver } from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";import { PubkeyRouter, IPubkeyRouter } from "./PubkeyRouter.sol";import "@openzeppelin/contracts/access/AccessControl.sol";import "hardhat/console.sol";// TODO: tests for the mintGrantAndBurn function, withdraw function, some of the setters, transfer function, freeMint and freeMintGrantAndBurn/// @title Programmable Keypair NFT////// @dev This is the contract for the PKP NFTs////// Simply put, whomever owns a PKP NFT can ask that PKP to sign a message./// The owner can also grant signing permissions to other eth addresses/// or lit actionscontract PKPHelper is Ownable, IERC721Receiver, AccessControl {/* ========== STATE VARIABLES ========== */ContractResolver public contractResolver;ContractResolver.Env public env;/* ========== CONSTRUCTOR ========== */constructor(address _resolver, ContractResolver.Env _env) {contractResolver = ContractResolver(_resolver);env = _env;}/* ========== VIEWS ========== */function getPkpNftAddress() public view returns (address) {returncontractResolver.getContract(contractResolver.PKP_NFT_CONTRACT(),
@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/structs/BitMaps.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/BitMaps.sol)pragma solidity ^0.8.0;/*** @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.* Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].*/library BitMaps {struct BitMap {mapping(uint256 => uint256) _data;}/*** @dev Returns whether the bit at `index` is set.*/function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {uint256 bucket = index >> 8;uint256 mask = 1 << (index & 0xff);return bitmap._data[bucket] & mask != 0;}/*** @dev Sets the bit at `index` to the boolean `value`.*/function setTo(BitMap storage bitmap, uint256 index, bool value) internal {if (value) {set(bitmap, index);} else {unset(bitmap, index);}}/*** @dev Sets the bit at `index`.*/function set(BitMap storage bitmap, uint256 index) internal {uint256 bucket = index >> 8;uint256 mask = 1 << (index & 0xff);bitmap._data[bucket] |= mask;}
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `to`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address to, uint256 amount) external returns (bool);
@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/Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";import "./math/SignedMath.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;}}/**
@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;}}
solidity-bytes-utils/contracts/BytesLib.sol
// SPDX-License-Identifier: Unlicense/** @title Solidity Bytes Arrays Utils* @author Gonçalo Sá <goncalo.sa@consensys.net>** @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.* The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.*/pragma solidity >=0.8.0 <0.9.0;library BytesLib {function concat(bytes memory _preBytes,bytes memory _postBytes)internalpurereturns (bytes memory){bytes memory tempBytes;assembly {// Get a location of some free memory and store it in tempBytes as// Solidity does for memory variables.tempBytes := mload(0x40)// Store the length of the first bytes array at the beginning of// the memory for tempBytes.let length := mload(_preBytes)mstore(tempBytes, length)// Maintain a memory counter for the current write location in the// temp bytes array by adding the 32 bytes for the array length to// the starting location.let mc := add(tempBytes, 0x20)// Stop copying when the memory counter reaches the length of the// first bytes array.let end := add(mc, length)for {
@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);}
contracts/lit-node/PKPPermissions.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";import { BitMaps } from "@openzeppelin/contracts/utils/structs/BitMaps.sol";import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";import { PubkeyRouter } from "./PubkeyRouter.sol";import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import { PKPNFT } from "./PKPNFT.sol";import "solidity-bytes-utils/contracts/BytesLib.sol";import "hardhat/console.sol";contract PKPPermissions is Ownable {using EnumerableSet for EnumerableSet.AddressSet;using EnumerableSet for EnumerableSet.Bytes32Set;using EnumerableSet for EnumerableSet.UintSet;using BytesLib for bytes;using BitMaps for BitMaps.BitMap;/* ========== STATE VARIABLES ========== */ContractResolver public contractResolver;ContractResolver.Env public env;enum AuthMethodType {NULLMETHOD, // 0ADDRESS, // 1ACTION, // 2WEBAUTHN, // 3DISCORD, // 4GOOGLE, // 5GOOGLE_JWT, // 6OTP, // 7APPLE_JWT, // 8STYTCH_JWT // 9}struct AuthMethod {
@openzeppelin/contracts/access/AccessControl.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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:** ```solidity* 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}:** ```solidity* 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/utils/cryptography/ECDSA.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;import "../Strings.sol";/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS,InvalidSignatureV // Deprecated in v4.8}function _throwError(RecoverError error) private pure {if (error == RecoverError.NoError) {return; // no error: do nothing} else if (error == RecoverError.InvalidSignature) {revert("ECDSA: invalid signature");} else if (error == RecoverError.InvalidSignatureLength) {revert("ECDSA: invalid signature length");} else if (error == RecoverError.InvalidSignatureS) {revert("ECDSA: invalid signature 's' value");}}/*** @dev Returns the address that signed a hashed message (`hash`) with* `signature` or error string. This address can then be used for verification purposes.** The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:* this function rejects them by requiring the `s` value to be in the lower* half order, and the `v` value to be either 27 or 28.
@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.*/function tokenByIndex(uint256 index) external view returns (uint256);}
@openzeppelin/contracts/token/ERC721/IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);/*** @dev Returns the number of tokens in ``owner``'s account.*/function balanceOf(address owner) external view returns (uint256 balance);/*** @dev Returns the owner of the `tokenId` token.** Requirements:** - `tokenId` must exist.*/function ownerOf(uint256 tokenId) external view returns (address owner);/**
@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}
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 STAKING_BALANCES_CONTRACT =keccak256("STAKING_BALANCES"); // 0xaa06d108dbd7bf976b16b7bf5adb29d2d0ef2c385ca8b9d833cc802f33942d72bytes32 public constant MULTI_SENDER_CONTRACT = keccak256("MULTI_SENDER"); // 0xdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da7243bytes32 public constant LIT_TOKEN_CONTRACT = keccak256("LIT_TOKEN");bytes32 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"); // 0x74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bcabytes32 public constant DOMAIN_WALLET_ORACLE =keccak256("DOMAIN_WALLET_ORACLE");bytes32 public constant DOMAIN_WALLET_REGISTRY =keccak256("DOMAIN_WALLET_REGISTRY");bytes32 public constant HD_KEY_DERIVER_CONTRACT =keccak256("HD_KEY_DERIVER");
@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)pragma solidity ^0.8.0;import "../ERC20.sol";import "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys `amount` tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 amount) public virtual {_burn(_msgSender(), amount);}/*** @dev Destroys `amount` tokens from `account`, deducting from the caller's* allowance.** See {ERC20-_burn} and {ERC20-allowance}.** Requirements:** - the caller must have allowance for ``accounts``'s tokens of at least* `amount`.*/function burnFrom(address account, uint256 amount) public virtual {_spendAllowance(account, _msgSender(), amount);_burn(account, amount);}}
@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);}
contracts/lit-node/PKPNFT.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { ERC721 } from "@openzeppelin/contracts/token/ERC721/ERC721.sol";import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol";import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";import { IPubkeyRouter, PubkeyRouter } from "./PubkeyRouter.sol";import { PKPPermissions } from "./PKPPermissions.sol";import { PKPNFTMetadata } from "./PKPNFTMetadata.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";import { ERC721Burnable } from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";import { ERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";import { IERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";import { IERC721Metadata } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";import "hardhat/console.sol";// TODO: tests for the mintGrantAndBurn function, withdraw function, some of the setters, transfer function, freeMint and freeMintGrantAndBurn/// @title Programmable Keypair NFT////// @dev This is the contract for the PKP NFTs////// Simply put, whomever owns a PKP NFT can ask that PKP to sign a message./// The owner can also grant signing permissions to other eth addresses/// or lit actionscontract PKPNFT isERC721("Programmable Keypair", "PKP"),Ownable,ERC721Burnable,ERC721Enumerable{/* ========== STATE VARIABLES ========== */ContractResolver public contractResolver;uint256 public mintCost;address public freeMintSigner;ContractResolver.Env public env;mapping(uint256 => bool) public redeemedFreeMintIds;/* ========== CONSTRUCTOR ========== */
@openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Tree proofs.** The tree and the proofs can be generated using our* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].* You will find a quickstart guide in the readme.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.* OpenZeppelin's JavaScript library generates merkle trees that are safe* against this attack out of the box.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {return processProof(proof, leaf) == root;}/*** @dev Calldata version of {verify}** _Available since v4.7._*/function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {return processProofCalldata(proof, leaf) == root;}/*** @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
contracts/lit-node/PKPNFTMetadata.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { Base64 } from "@openzeppelin/contracts/utils/Base64.sol";import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";import "hardhat/console.sol";import "@openzeppelin/contracts/access/AccessControl.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";/// @title Programmable Keypair NFT Metadata////// @dev This is the contract for the PKP NFTs////// Simply put, whomever owns a PKP NFT can ask that PKP to sign a message./// The owner can also grant signing permissions to other eth addresses/// or lit actionscontract PKPNFTMetadata is AccessControl {using Strings for uint256;address pkpHelperAddress;string constant NULL = "";ContractResolver public contractResolver;ContractResolver.Env public env;// Admin for setting writer roles, defaults to the deployer.bytes32 public constant ADMIN_ROLE = keccak256("ADMIN");// role for allowing writes to metadata stores// will be the `PKPHeler` for now, although migrating ownership lookup to a central store might be helpfulbytes32 public constant WRITER_ROLE = keccak256("WRITER");/* ========== STATE VARIABLES ========== */mapping(uint256 => string) pkpUrls;mapping(uint256 => string) pkpProfileImg;/* ========== CONSTRUCTOR ========== */constructor(address _resolver, ContractResolver.Env _env) {contractResolver = ContractResolver(_resolver);env = _env;}
contracts/lit-node/HDKeyDeriver.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import "./PubkeyRouter.sol";abstract contract IKeyDeriver {function computeHDPubKey(bytes32 derivedKeyId,IPubkeyRouter.RootKey[] memory rootHDKeys,uint256 keyType) public view virtual returns (bool, bytes memory);}contract KeyDeriver is IKeyDeriver {// address for HD public KDFaddress public constant HD_KDF = 0x00000000000000000000000000000000000000F5;// hd kdf ctxstring constant HD_KDF_CTX = "LIT_HD_KEY_ID_K256_XMD:SHA-256_SSWU_RO_NUL_";constructor() {}function computeHDPubKey(bytes32 derivedKeyId,IPubkeyRouter.RootKey[] memory rootHDKeys,uint256 keyType) public view override returns (bool, bytes memory) {bytes memory args = _buildArgs(derivedKeyId, rootHDKeys, keyType);(bool success, bytes memory data) = HD_KDF.staticcall(args);return (success, data);}function _buildArgs(bytes32 derivedKeyId,IPubkeyRouter.RootKey[] memory rootHDKeys,uint256 keyType) internal pure returns (bytes memory) {// empty array for concating pubkeysbytes memory rootPubkeys = new bytes(0);uint32 numRootPubkeys = 0;for (uint256 i = 0; i < rootHDKeys.length; i++) {if (rootHDKeys[i].keyType == keyType) {
@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)pragma solidity ^0.8.0;import "../ERC721.sol";import "./IERC721Enumerable.sol";/*** @dev This implements an optional extension of {ERC721} defined in the EIP that adds* enumerability of all the token ids in the contract as well as all token ids owned by each* account.*/abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {// Mapping from owner to list of owned token IDsmapping(address => mapping(uint256 => uint256)) private _ownedTokens;// Mapping from token ID to index of the owner tokens listmapping(uint256 => uint256) private _ownedTokensIndex;// Array with all token ids, used for enumerationuint256[] private _allTokens;// Mapping from token id to position in the allTokens arraymapping(uint256 => uint256) private _allTokensIndex;/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);}/*** @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.*/function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");return _ownedTokens[owner][index];}
@openzeppelin/contracts/token/ERC721/ERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbolstring private _symbol;// Mapping from token ID to owner addressmapping(uint256 => address) private _owners;// Mapping owner address to token countmapping(address => uint256) private _balances;// Mapping from token ID to approved addressmapping(uint256 => address) private _tokenApprovals;// Mapping from owner to operator approvalsmapping(address => mapping(address => bool)) private _operatorApprovals;/**
hardhat/console.sol
// SPDX-License-Identifier: MITpragma solidity >=0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS =0x000000000000000000636F6e736F6c652e6c6f67;function _sendLogPayloadImplementation(bytes memory payload) internal view {address consoleAddress = CONSOLE_ADDRESS;/// @solidity memory-safe-assemblyassembly {pop(staticcall(gas(),consoleAddress,add(payload, 32),mload(payload),0,0))}}function _castToPure(function(bytes memory) internal view fnIn) internal pure returns (function(bytes memory) pure fnOut) {assembly {fnOut := fnIn}}function _sendLogPayload(bytes memory payload) internal pure {_castToPure(_sendLogPayloadImplementation)(payload);}function log() internal pure {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int256 p0) internal pure {_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
@openzeppelin/contracts/utils/Base64.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)pragma solidity ^0.8.0;/*** @dev Provides a set of functions to operate with Base64 strings.** _Available since v4.5._*/library Base64 {/*** @dev Base64 Encoding/Decoding Table*/string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";/*** @dev Converts a `bytes` to its Bytes64 `string` representation.*/function encode(bytes memory data) internal pure returns (string memory) {/*** Inspired by Brecht Devos (Brechtpd) implementation - MIT licence* https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol*/if (data.length == 0) return "";// Loads the table into memorystring memory table = _TABLE;// Encoding takes 3 bytes chunks of binary data from `bytes` data parameter// and split into 4 numbers of 6 bits.// The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up// - `data.length + 2` -> Round up// - `/ 3` -> Number of 3-bytes chunks// - `4 *` -> 4 characters for each chunkstring memory result = new string(4 * ((data.length + 2) / 3));/// @solidity memory-safe-assemblyassembly {// Prepare the lookup table (skip the first "length" byte)let tablePtr := add(table, 1)
@openzeppelin/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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.*
@openzeppelin/contracts/utils/math/SignedMath.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.*/function average(int256 a, int256 b) internal pure returns (int256) {// Formula from the book "Hacker's Delight"int256 x = (a & b) + ((a ^ b) >> 1);return x + (int256(uint256(x) >> 255) & (a ^ b));}/*** @dev Returns the absolute unsigned value of a signed value.*/function abs(int256 n) internal pure returns (uint256) {unchecked {// must be unchecked in order to support `n = type(int256).min`return uint256(n >= 0 ? n : -n);}
contracts/lit-node/PubkeyRouter.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import { PKPNFT } from "./PKPNFT.sol";import { Staking } from "./Staking.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";import { IKeyDeriver } from "./HDKeyDeriver.sol";import "solidity-bytes-utils/contracts/BytesLib.sol";import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";import "@openzeppelin/contracts/access/AccessControl.sol";import "hardhat/console.sol";// TODO: make the tests send PKPNFT into the constructor// TODO: test interaction between PKPNFT and this contract, like mint a keypair and see if you can access it// TODO: setRoutingData() for a batch of keysinterface IPubkeyRouter {struct RootKey {bytes pubkey;uint256 keyType; // 1 = BLS, 2 = ECDSA. Not doing this in an enum so we can add more keytypes in the future without redeploying.}struct Signature {bytes32 r;bytes32 s;uint8 v;}}contract PubkeyRouter is AccessControl {using EnumerableSet for EnumerableSet.AddressSet;using EnumerableSet for EnumerableSet.Bytes32Set;using EnumerableSet for EnumerableSet.UintSet;using BytesLib for bytes;/* ========== TYPE DEFINITIONS ========== */bytes32 public constant ADMIN_ROLE = keccak256("ADMIN"); // 0xdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42/* ========== STATE VARIABLES ========== */
@openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed** Furthermore, `isContract` will also return true if the target contract within* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,* which only has an effect at the end of a transaction.* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0
contracts/lit-node/Staking.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { ERC20Burnable } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import { StakingBalances } from "./StakingBalances.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";import "hardhat/console.sol";contract Staking is Ownable {using EnumerableSet for EnumerableSet.AddressSet;/* ========== STATE VARIABLES ========== */enum States {Active,NextValidatorSetLocked,ReadyForNextEpoch,Unlocked,Paused}States public state = States.Active;struct Validator {uint32 ip;uint128 ipv6;uint32 port;address nodeAddress;uint256 reward;uint256 senderPubKey;uint256 receiverPubKey;}struct VoteToKickValidatorInNextEpoch {uint256 votes;mapping(address => bool) voted;}
@openzeppelin/contracts/token/ERC20/ERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** The default value of {decimals} is 18. To change this, you should override* this function so it returns a different value.** We have followed general OpenZeppelin Contracts guidelines: functions revert* instead returning `false` on failure. This behavior is nonetheless* conventional and does not conflict with the expectations of ERC20* applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.* This allows applications to reconstruct the allowance for all accounts just* by listening to said events. Other implementations of the EIP may not emit* these events, as it isn't required by the specification.** Finally, the non-standard {decreaseAllowance} and {increaseAllowance}* functions have been added to mitigate the well-known issues around setting* allowances. See {IERC20-approve}.*/contract ERC20 is Context, IERC20, IERC20Metadata {mapping(address => uint256) private _balances;mapping(address => mapping(address => uint256)) private _allowances;
@openzeppelin/contracts/utils/structs/EnumerableSet.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.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.** ```solidity* 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.** [WARNING]* ====* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure* unusable.* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.** In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an* array of EnumerableSet.* ====*/library EnumerableSet {
contracts/lit-node/StakingBalances.sol
//SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import { ERC20Burnable } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import { ContractResolver } from "../lit-core/ContractResolver.sol";import { Staking } from "./Staking.sol";import "hardhat/console.sol";contract StakingBalances is Ownable {using EnumerableSet for EnumerableSet.AddressSet;ContractResolver public contractResolver;mapping(address => uint256) public balances;mapping(address => uint256) public rewards;// allowed stakersmapping(address => bool) public permittedStakers;struct VoteToKickValidatorInNextEpoch {uint256 votes;mapping(address => bool) voted;}// maps alias address to real staker addressmapping(address => address) public aliases;// maps staker address to alias countmapping(address => uint256) public aliasCounts;uint256 public minimumStake;uint256 public maximumStake;uint256 public totalStaked;ContractResolver.Env public env;bool public permittedStakersOn;uint256 public maxAliasCount;
@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/function decimals() external view returns (uint8);}
@openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor() {_transferOwnership(_msgSender());}/*** @dev Throws if called by any account other than the owner.*/modifier onlyOwner() {_checkOwner();_;}/*** @dev Returns the address of the current owner.
@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)pragma solidity ^0.8.0;import "../ERC721.sol";import "../../../utils/Context.sol";/*** @title ERC721 Burnable Token* @dev ERC721 Token that can be burned (destroyed).*/abstract contract ERC721Burnable is Context, ERC721 {/*** @dev Burns `tokenId`. See {ERC721-_burn}.** Requirements:** - The caller must own `tokenId` or be an approved operator.*/function burn(uint256 tokenId) public virtual {//solhint-disable-next-line max-line-lengthrequire(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");_burn(tokenId);}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_resolver","internalType":"address"},{"type":"uint8","name":"_env","internalType":"enum ContractResolver.Env"}]},{"type":"event","name":"ContractResolverAddressSet","inputs":[{"type":"address","name":"newResolverAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"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":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"claimAndMintNextAndAddAuthMethods","inputs":[{"type":"uint256","name":"keyType","internalType":"uint256"},{"type":"bytes32","name":"derivedKeyId","internalType":"bytes32"},{"type":"tuple[]","name":"signatures","internalType":"struct IPubkeyRouter.Signature[]","components":[{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"},{"type":"uint8","name":"v","internalType":"uint8"}]},{"type":"uint256[]","name":"permittedAuthMethodTypes","internalType":"uint256[]"},{"type":"bytes[]","name":"permittedAuthMethodIds","internalType":"bytes[]"},{"type":"bytes[]","name":"permittedAuthMethodPubkeys","internalType":"bytes[]"},{"type":"uint256[][]","name":"permittedAuthMethodScopes","internalType":"uint256[][]"},{"type":"bool","name":"addPkpEthAddressAsPermittedAddress","internalType":"bool"},{"type":"bool","name":"sendPkpToItself","internalType":"bool"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"claimAndMintNextAndAddAuthMethodsWithTypes","inputs":[{"type":"uint256","name":"keyType","internalType":"uint256"},{"type":"bytes32","name":"derivedKeyId","internalType":"bytes32"},{"type":"tuple[]","name":"signatures","internalType":"struct IPubkeyRouter.Signature[]","components":[{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"},{"type":"uint8","name":"v","internalType":"uint8"}]},{"type":"address[]","name":"permittedAddresses","internalType":"address[]"},{"type":"uint256[][]","name":"permittedAddressScopes","internalType":"uint256[][]"},{"type":"uint256[]","name":"permittedAuthMethodTypes","internalType":"uint256[]"},{"type":"bytes[]","name":"permittedAuthMethodIds","internalType":"bytes[]"},{"type":"bytes[]","name":"permittedAuthMethodPubkeys","internalType":"bytes[]"},{"type":"uint256[][]","name":"permittedAuthMethodScopes","internalType":"uint256[][]"},{"type":"bool","name":"addPkpEthAddressAsPermittedAddress","internalType":"bool"},{"type":"bool","name":"sendPkpToItself","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract ContractResolver"}],"name":"contractResolver","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"enum ContractResolver.Env"}],"name":"env","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getDomainWalletRegistry","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getPKPNftMetdataAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getPkpNftAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getPkpPermissionsAddress","inputs":[]},{"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":"payable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintNextAndAddAuthMethods","inputs":[{"type":"uint256","name":"keyType","internalType":"uint256"},{"type":"uint256[]","name":"permittedAuthMethodTypes","internalType":"uint256[]"},{"type":"bytes[]","name":"permittedAuthMethodIds","internalType":"bytes[]"},{"type":"bytes[]","name":"permittedAuthMethodPubkeys","internalType":"bytes[]"},{"type":"uint256[][]","name":"permittedAuthMethodScopes","internalType":"uint256[][]"},{"type":"bool","name":"addPkpEthAddressAsPermittedAddress","internalType":"bool"},{"type":"bool","name":"sendPkpToItself","internalType":"bool"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintNextAndAddAuthMethodsWithTypes","inputs":[{"type":"uint256","name":"keyType","internalType":"uint256"},{"type":"bytes[]","name":"permittedIpfsCIDs","internalType":"bytes[]"},{"type":"uint256[][]","name":"permittedIpfsCIDScopes","internalType":"uint256[][]"},{"type":"address[]","name":"permittedAddresses","internalType":"address[]"},{"type":"uint256[][]","name":"permittedAddressScopes","internalType":"uint256[][]"},{"type":"uint256[]","name":"permittedAuthMethodTypes","internalType":"uint256[]"},{"type":"bytes[]","name":"permittedAuthMethodIds","internalType":"bytes[]"},{"type":"bytes[]","name":"permittedAuthMethodPubkeys","internalType":"bytes[]"},{"type":"uint256[][]","name":"permittedAuthMethodScopes","internalType":"uint256[][]"},{"type":"bool","name":"addPkpEthAddressAsPermittedAddress","internalType":"bool"},{"type":"bool","name":"sendPkpToItself","internalType":"bool"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintNextAndAddDomainWalletMetadata","inputs":[{"type":"uint256","name":"keyType","internalType":"uint256"},{"type":"uint256[]","name":"permittedAuthMethodTypes","internalType":"uint256[]"},{"type":"bytes[]","name":"permittedAuthMethodIds","internalType":"bytes[]"},{"type":"bytes[]","name":"permittedAuthMethodPubkeys","internalType":"bytes[]"},{"type":"uint256[][]","name":"permittedAuthMethodScopes","internalType":"uint256[][]"},{"type":"string[]","name":"nftMetadata","internalType":"string[]"},{"type":"bool","name":"addPkpEthAddressAsPermittedAddress","internalType":"bool"},{"type":"bool","name":"sendPkpToItself","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes4","name":"","internalType":"bytes4"}],"name":"onERC721Received","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"bytes","name":"","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removePkpMetadata","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"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":"setContractResolver","inputs":[{"type":"address","name":"newResolverAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPkpMetadata","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"string[]","name":"nftMetadata","internalType":"string[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b50604051620056823803806200568283398181016040528101906200003791906200022b565b620000576200004b620000cd60201b60201c565b620000d560201b60201c565b81600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260146101000a81548160ff02191690836002811115620000c057620000bf62000272565b5b02179055505050620002a1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001cb826200019e565b9050919050565b620001dd81620001be565b8114620001e957600080fd5b50565b600081519050620001fd81620001d2565b92915050565b600381106200021157600080fd5b50565b600081519050620002258162000203565b92915050565b6000806040838503121562000245576200024462000199565b5b60006200025585828601620001ec565b9250506020620002688582860162000214565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6153d180620002b16000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d15780639fba176b1161008a578063d547741f11610064578063d547741f14610532578063f2fde38b1461055b578063f95d71b114610584578063ffc83325146105ad57610166565b80639fba176b146104ac578063a217fddf146104dc578063caead0c71461050757610166565b8063715018a6146103ae57806373cc4111146103c5578063782e2ea5146103f05780638da5cb5b1461041957806391d14854146104445780639dca00321461048157610166565b80632f2ff15d116101235780632f2ff15d146102ab57806330de3eab146102d45780633276558c1461030457806336568abe1461032f5780635043026c1461035857806350d17b5e1461038357610166565b806301ffc9a71461016b5780630bcdc71e146101a8578063150b7a02146101d85780631f71cb3114610215578063248a9ca3146102455780632b55355114610282575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906131a5565b6105dd565b60405161019f91906131ed565b60405180910390f35b6101c260048036038101906101bd91906137d5565b610657565b6040516101cf919061393a565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190613a0e565b610712565b60405161020c9190613aa5565b60405180910390f35b61022f600480360381019061022a9190613b83565b61079c565b60405161023c919061393a565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613d57565b610e9a565b6040516102799190613d93565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190613dae565b610eba565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190613ddb565b61114a565b005b6102ee60048036038101906102e99190613e1b565b61116b565b6040516102fb919061393a565b60405180910390f35b34801561031057600080fd5b50610319611755565b6040516103269190613fe2565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613ddb565b611899565b005b34801561036457600080fd5b5061036d61191c565b60405161037a9190613fe2565b60405180910390f35b34801561038f57600080fd5b50610398611a60565b6040516103a5919061405c565b60405180910390f35b3480156103ba57600080fd5b506103c3611a86565b005b3480156103d157600080fd5b506103da611a9a565b6040516103e79190613fe2565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906141f9565b611bde565b005b34801561042557600080fd5b5061042e611eb4565b60405161043b9190613fe2565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190613ddb565b611edd565b60405161047891906131ed565b60405180910390f35b34801561048d57600080fd5b50610496611f48565b6040516104a391906142cc565b60405180910390f35b6104c660048036038101906104c191906142e7565b611f5b565b6040516104d3919061393a565b60405180910390f35b3480156104e857600080fd5b506104f16120b0565b6040516104fe9190613d93565b60405180910390f35b34801561051357600080fd5b5061051c6120b7565b6040516105299190613fe2565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613ddb565b6121fb565b005b34801561056757600080fd5b50610582600480360381019061057d91906143f9565b61221c565b005b34801561059057600080fd5b506105ab60048036038101906105a691906143f9565b61229f565b005b6105c760048036038101906105c29190614426565b612322565b6040516105d4919061393a565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610650575061064f82612ac1565b5b9050919050565b60006107038a8a8a600067ffffffffffffffff81111561067a5761067961328a565b5b6040519080825280602002602001820160405280156106a85781602001602082028036833780820191505090505b50600067ffffffffffffffff8111156106c4576106c361328a565b5b6040519080825280602002602001820160405280156106f757816020015b60608152602001906001900390816106e25790505b508c8c8c8c8c8c61116b565b90509998505050505050505050565b600061071c6120b7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610780906145eb565b60405180910390fd5b63150b7a0260e01b905095945050505050565b6000806107a76120b7565b73ffffffffffffffffffffffffffffffffffffffff16635d228b16348f6040518363ffffffff1660e01b81526004016107e0919061393a565b60206040518083038185885af11580156107fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108239190614620565b90508a518c5114610869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610860906146bf565b60405180910390fd5b88518a51146108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490614751565b60405180910390fd5b86518851146108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e8906147e3565b60405180910390fd5b8551885114610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90614875565b60405180910390fd5b8451885114610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090614907565b60405180910390fd5b60008c5114610a4d5760005b8c51811015610a4b57610996611755565b73ffffffffffffffffffffffffffffffffffffffff16638a431578838f84815181106109c5576109c4614927565b5b60200260200101518f85815181106109e0576109df614927565b5b60200260200101516040518463ffffffff1660e01b8152600401610a0693929190614a93565b600060405180830381600087803b158015610a2057600080fd5b505af1158015610a34573d6000803e3d6000fd5b505050508080610a4390614b07565b915050610985565b505b60008a5114610b215760005b8a51811015610b1f57610a6a611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c121838d8481518110610a9957610a98614927565b5b60200260200101518d8581518110610ab457610ab3614927565b5b60200260200101516040518463ffffffff1660e01b8152600401610ada93929190614b4f565b600060405180830381600087803b158015610af457600080fd5b505af1158015610b08573d6000803e3d6000fd5b505050508080610b1790614b07565b915050610a59565b505b6000885114610c435760005b8851811015610c4157610b3e611755565b73ffffffffffffffffffffffffffffffffffffffff16639dd4349b8360405180606001604052808d8681518110610b7857610b77614927565b5b602002602001015181526020018c8681518110610b9857610b97614927565b5b602002602001015181526020018b8681518110610bb857610bb7614927565b5b6020026020010151815250898581518110610bd657610bd5614927565b5b60200260200101516040518463ffffffff1660e01b8152600401610bfc93929190614c2e565b600060405180830381600087803b158015610c1657600080fd5b505af1158015610c2a573d6000803e3d6000fd5b505050508080610c3990614b07565b915050610b2d565b505b6000610c4d611755565b73ffffffffffffffffffffffffffffffffffffffff1663bd4986a0836040518263ffffffff1660e01b8152600401610c85919061393a565b602060405180830381865afa158015610ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc69190614c88565b90508415610d8e57610cd6611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c1218383600067ffffffffffffffff811115610d0e57610d0d61328a565b5b604051908082528060200260200182016040528015610d3c5781602001602082028036833780820191505090505b506040518463ffffffff1660e01b8152600401610d5b93929190614b4f565b600060405180830381600087803b158015610d7557600080fd5b505af1158015610d89573d6000803e3d6000fd5b505050505b8315610e0f57610d9c6120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b8152600401610dd893929190614cb5565b600060405180830381600087803b158015610df257600080fd5b505af1158015610e06573d6000803e3d6000fd5b50505050610e86565b610e176120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033856040518463ffffffff1660e01b8152600401610e5393929190614cb5565b600060405180830381600087803b158015610e6d57600080fd5b505af1158015610e81573d6000803e3d6000fd5b505050505b81925050509b9a5050505050505050505050565b600060016000838152602001908152602001600020600101549050919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f899190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401610fb6929190614d2e565b602060405180830381865afa158015610fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff79190614c88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614def565b60405180910390fd5b600061106e61191c565b90508073ffffffffffffffffffffffffffffffffffffffff1663b63a7677836040518263ffffffff1660e01b81526004016110a9919061393a565b600060405180830381600087803b1580156110c357600080fd5b505af11580156110d7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663519a218e836040518263ffffffff1660e01b8152600401611114919061393a565b600060405180830381600087803b15801561112e57600080fd5b505af1158015611142573d6000803e3d6000fd5b505050505050565b61115382610e9a565b61115c81612b2b565b6111668383612b3f565b505050565b6000806111766120b7565b73ffffffffffffffffffffffffffffffffffffffff1663c70384b8348f8f8f6040518563ffffffff1660e01b81526004016111b393929190614f1e565b60206040518083038185885af11580156111d1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111f69190614620565b905088518a511461123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390614751565b60405180910390fd5b8651885114611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906147e3565b60405180910390fd5b85518851146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614875565b60405180910390fd5b8451885114611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90614907565b60405180910390fd5b60008a51146113dc5760005b8a518110156113da57611325611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c121838d848151811061135457611353614927565b5b60200260200101518d858151811061136f5761136e614927565b5b60200260200101516040518463ffffffff1660e01b815260040161139593929190614b4f565b600060405180830381600087803b1580156113af57600080fd5b505af11580156113c3573d6000803e3d6000fd5b5050505080806113d290614b07565b915050611314565b505b60008851146114fe5760005b88518110156114fc576113f9611755565b73ffffffffffffffffffffffffffffffffffffffff16639dd4349b8360405180606001604052808d868151811061143357611432614927565b5b602002602001015181526020018c868151811061145357611452614927565b5b602002602001015181526020018b868151811061147357611472614927565b5b602002602001015181525089858151811061149157611490614927565b5b60200260200101516040518463ffffffff1660e01b81526004016114b793929190614c2e565b600060405180830381600087803b1580156114d157600080fd5b505af11580156114e5573d6000803e3d6000fd5b5050505080806114f490614b07565b9150506113e8565b505b6000611508611755565b73ffffffffffffffffffffffffffffffffffffffff1663bd4986a0836040518263ffffffff1660e01b8152600401611540919061393a565b602060405180830381865afa15801561155d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115819190614c88565b9050841561164957611591611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c1218383600067ffffffffffffffff8111156115c9576115c861328a565b5b6040519080825280602002602001820160405280156115f75781602001602082028036833780820191505090505b506040518463ffffffff1660e01b815260040161161693929190614b4f565b600060405180830381600087803b15801561163057600080fd5b505af1158015611644573d6000803e3d6000fd5b505050505b83156116ca576116576120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b815260040161169393929190614cb5565b600060405180830381600087803b1580156116ad57600080fd5b505af11580156116c1573d6000803e3d6000fd5b50505050611741565b6116d26120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033856040518463ffffffff1660e01b815260040161170e93929190614cb5565b600060405180830381600087803b15801561172857600080fd5b505af115801561173c573d6000803e3d6000fd5b505050505b81925050509b9a5050505050505050505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639072f8386040518163ffffffff1660e01b8152600401602060405180830381865afa158015611802573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118269190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611853929190614d2e565b602060405180830381865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118949190614c88565b905090565b6118a1612c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614fce565b60405180910390fd5b6119188282612c27565b5050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166316f76bbf6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ed9190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611a1a929190614d2e565b602060405180830381865afa158015611a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5b9190614c88565b905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a8e612d09565b611a986000612d87565b565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6b9190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611b98929190614d2e565b602060405180830381865afa158015611bb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd99190614c88565b905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cad9190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611cda929190614d2e565b602060405180830381865afa158015611cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1b9190614c88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90614def565b60405180910390fd5b6000611d9261191c565b9050600082511115611eaf578073ffffffffffffffffffffffffffffffffffffffff1663855eec228484600081518110611dcf57611dce614927565b5b60200260200101516040518363ffffffff1660e01b8152600401611df4929190615032565b600060405180830381600087803b158015611e0e57600080fd5b505af1158015611e22573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16639000fee18484600181518110611e5757611e56614927565b5b60200260200101516040518363ffffffff1660e01b8152600401611e7c929190615032565b600060405180830381600087803b158015611e9657600080fd5b505af1158015611eaa573d6000803e3d6000fd5b505050505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260149054906101000a900460ff1681565b60006120a388600067ffffffffffffffff811115611f7c57611f7b61328a565b5b604051908082528060200260200182016040528015611faf57816020015b6060815260200190600190039081611f9a5790505b50600067ffffffffffffffff811115611fcb57611fca61328a565b5b604051908082528060200260200182016040528015611ffe57816020015b6060815260200190600190039081611fe95790505b50600067ffffffffffffffff81111561201a5761201961328a565b5b6040519080825280602002602001820160405280156120485781602001602082028036833780820191505090505b50600067ffffffffffffffff8111156120645761206361328a565b5b60405190808252806020026020018201604052801561209757816020015b60608152602001906001900390816120825790505b508c8c8c8c8c8c61079c565b9050979650505050505050565b6000801b81565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632c0b8bf76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121889190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b81526004016121b5929190614d2e565b602060405180830381865afa1580156121d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f69190614c88565b905090565b61220482610e9a565b61220d81612b2b565b6122178383612c27565b505050565b612224612d09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a906150d4565b60405180910390fd5b61229c81612d87565b50565b6122a7612d09565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2760073c7cd8cac531d7f643becbfbb74d8b8156443eacf879622532dbbb3cd5816040516123179190613fe2565b60405180910390a150565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f39190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401612420929190614d2e565b602060405180830381865afa15801561243d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124619190614c88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c590614def565b60405180910390fd5b60006124d86120b7565b73ffffffffffffffffffffffffffffffffffffffff16635d228b16348c6040518363ffffffff1660e01b8152600401612511919061393a565b60206040518083038185885af115801561252f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125549190614620565b9050875189511461259a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612591906147e3565b60405180910390fd5b86518951146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614875565b60405180910390fd5b8551895114612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990614907565b60405180910390fd5b60008951146127445760005b89518110156127425761263f611755565b73ffffffffffffffffffffffffffffffffffffffff16639dd4349b8360405180606001604052808e868151811061267957612678614927565b5b602002602001015181526020018d868151811061269957612698614927565b5b602002602001015181526020018c86815181106126b9576126b8614927565b5b60200260200101518152508a85815181106126d7576126d6614927565b5b60200260200101516040518463ffffffff1660e01b81526004016126fd93929190614c2e565b600060405180830381600087803b15801561271757600080fd5b505af115801561272b573d6000803e3d6000fd5b50505050808061273a90614b07565b91505061262e565b505b600061274e611755565b73ffffffffffffffffffffffffffffffffffffffff1663bd4986a0836040518263ffffffff1660e01b8152600401612786919061393a565b602060405180830381865afa1580156127a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c79190614c88565b9050841561288f576127d7611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c1218383600067ffffffffffffffff81111561280f5761280e61328a565b5b60405190808252806020026020018201604052801561283d5781602001602082028036833780820191505090505b506040518463ffffffff1660e01b815260040161285c93929190614b4f565b600060405180830381600087803b15801561287657600080fd5b505af115801561288a573d6000803e3d6000fd5b505050505b83156129105761289d6120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b81526004016128d993929190614cb5565b600060405180830381600087803b1580156128f357600080fd5b505af1158015612907573d6000803e3d6000fd5b50505050612987565b6129186120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033856040518463ffffffff1660e01b815260040161295493929190614cb5565b600060405180830381600087803b15801561296e57600080fd5b505af1158015612982573d6000803e3d6000fd5b505050505b600086511115612ab05761299961191c565b73ffffffffffffffffffffffffffffffffffffffff1663855eec2283886000815181106129c9576129c8614927565b5b60200260200101516040518363ffffffff1660e01b81526004016129ee929190615032565b600060405180830381600087803b158015612a0857600080fd5b505af1158015612a1c573d6000803e3d6000fd5b50505050612a2861191c565b73ffffffffffffffffffffffffffffffffffffffff16639000fee18388600181518110612a5857612a57614927565b5b60200260200101516040518363ffffffff1660e01b8152600401612a7d929190615032565b600060405180830381600087803b158015612a9757600080fd5b505af1158015612aab573d6000803e3d6000fd5b505050505b819250505098975050505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b3c81612b37612c1f565b612e4b565b50565b612b498282611edd565b612c1b57600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612bc0612c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b612c318282611edd565b15612d055760006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612caa612c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612d11612c1f565b73ffffffffffffffffffffffffffffffffffffffff16612d2f611eb4565b73ffffffffffffffffffffffffffffffffffffffff1614612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c90615140565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e558282611edd565b612ecc57612e6281612ed0565b612e708360001c6020612efd565b604051602001612e81929190615234565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec3919061526e565b60405180910390fd5b5050565b6060612ef68273ffffffffffffffffffffffffffffffffffffffff16601460ff16612efd565b9050919050565b606060006002836002612f109190615290565b612f1a91906152d2565b67ffffffffffffffff811115612f3357612f3261328a565b5b6040519080825280601f01601f191660200182016040528015612f655781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612f9d57612f9c614927565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061300157613000614927565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026130419190615290565b61304b91906152d2565b90505b60018111156130eb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061308d5761308c614927565b5b1a60f81b8282815181106130a4576130a3614927565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806130e490615306565b905061304e565b506000841461312f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131269061537b565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131828161314d565b811461318d57600080fd5b50565b60008135905061319f81613179565b92915050565b6000602082840312156131bb576131ba613143565b5b60006131c984828501613190565b91505092915050565b60008115159050919050565b6131e7816131d2565b82525050565b600060208201905061320260008301846131de565b92915050565b6000819050919050565b61321b81613208565b811461322657600080fd5b50565b60008135905061323881613212565b92915050565b6000819050919050565b6132518161323e565b811461325c57600080fd5b50565b60008135905061326e81613248565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132c282613279565b810181811067ffffffffffffffff821117156132e1576132e061328a565b5b80604052505050565b60006132f4613139565b905061330082826132b9565b919050565b600067ffffffffffffffff8211156133205761331f61328a565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060ff82169050919050565b6133518161333b565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b60006060828403121561338a57613389613336565b5b61339460606132ea565b905060006133a48482850161325f565b60008301525060206133b88482850161325f565b60208301525060406133cc8482850161335f565b60408301525092915050565b60006133eb6133e684613305565b6132ea565b9050808382526020820190506060840283018581111561340e5761340d613331565b5b835b8181101561343757806134238882613374565b845260208401935050606081019050613410565b5050509392505050565b600082601f83011261345657613455613274565b5b81356134668482602086016133d8565b91505092915050565b600067ffffffffffffffff82111561348a5761348961328a565b5b602082029050602081019050919050565b60006134ae6134a98461346f565b6132ea565b905080838252602082019050602084028301858111156134d1576134d0613331565b5b835b818110156134fa57806134e68882613229565b8452602084019350506020810190506134d3565b5050509392505050565b600082601f83011261351957613518613274565b5b813561352984826020860161349b565b91505092915050565b600067ffffffffffffffff82111561354d5761354c61328a565b5b602082029050602081019050919050565b600080fd5b600067ffffffffffffffff82111561357e5761357d61328a565b5b61358782613279565b9050602081019050919050565b82818337600083830152505050565b60006135b66135b184613563565b6132ea565b9050828152602081018484840111156135d2576135d161355e565b5b6135dd848285613594565b509392505050565b600082601f8301126135fa576135f9613274565b5b813561360a8482602086016135a3565b91505092915050565b600061362661362184613532565b6132ea565b9050808382526020820190506020840283018581111561364957613648613331565b5b835b8181101561369057803567ffffffffffffffff81111561366e5761366d613274565b5b80860161367b89826135e5565b8552602085019450505060208101905061364b565b5050509392505050565b600082601f8301126136af576136ae613274565b5b81356136bf848260208601613613565b91505092915050565b600067ffffffffffffffff8211156136e3576136e261328a565b5b602082029050602081019050919050565b6000613707613702846136c8565b6132ea565b9050808382526020820190506020840283018581111561372a57613729613331565b5b835b8181101561377157803567ffffffffffffffff81111561374f5761374e613274565b5b80860161375c8982613504565b8552602085019450505060208101905061372c565b5050509392505050565b600082601f8301126137905761378f613274565b5b81356137a08482602086016136f4565b91505092915050565b6137b2816131d2565b81146137bd57600080fd5b50565b6000813590506137cf816137a9565b92915050565b60008060008060008060008060006101208a8c0312156137f8576137f7613143565b5b60006138068c828d01613229565b99505060206138178c828d0161325f565b98505060408a013567ffffffffffffffff81111561383857613837613148565b5b6138448c828d01613441565b97505060608a013567ffffffffffffffff81111561386557613864613148565b5b6138718c828d01613504565b96505060808a013567ffffffffffffffff81111561389257613891613148565b5b61389e8c828d0161369a565b95505060a08a013567ffffffffffffffff8111156138bf576138be613148565b5b6138cb8c828d0161369a565b94505060c08a013567ffffffffffffffff8111156138ec576138eb613148565b5b6138f88c828d0161377b565b93505060e06139098c828d016137c0565b92505061010061391b8c828d016137c0565b9150509295985092959850929598565b61393481613208565b82525050565b600060208201905061394f600083018461392b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061398082613955565b9050919050565b61399081613975565b811461399b57600080fd5b50565b6000813590506139ad81613987565b92915050565b600080fd5b60008083601f8401126139ce576139cd613274565b5b8235905067ffffffffffffffff8111156139eb576139ea6139b3565b5b602083019150836001820283011115613a0757613a06613331565b5b9250929050565b600080600080600060808688031215613a2a57613a29613143565b5b6000613a388882890161399e565b9550506020613a498882890161399e565b9450506040613a5a88828901613229565b935050606086013567ffffffffffffffff811115613a7b57613a7a613148565b5b613a87888289016139b8565b92509250509295509295909350565b613a9f8161314d565b82525050565b6000602082019050613aba6000830184613a96565b92915050565b600067ffffffffffffffff821115613adb57613ada61328a565b5b602082029050602081019050919050565b6000613aff613afa84613ac0565b6132ea565b90508083825260208201905060208402830185811115613b2257613b21613331565b5b835b81811015613b4b5780613b37888261399e565b845260208401935050602081019050613b24565b5050509392505050565b600082601f830112613b6a57613b69613274565b5b8135613b7a848260208601613aec565b91505092915050565b60008060008060008060008060008060006101608c8e031215613ba957613ba8613143565b5b6000613bb78e828f01613229565b9b505060208c013567ffffffffffffffff811115613bd857613bd7613148565b5b613be48e828f0161369a565b9a505060408c013567ffffffffffffffff811115613c0557613c04613148565b5b613c118e828f0161377b565b99505060608c013567ffffffffffffffff811115613c3257613c31613148565b5b613c3e8e828f01613b55565b98505060808c013567ffffffffffffffff811115613c5f57613c5e613148565b5b613c6b8e828f0161377b565b97505060a08c013567ffffffffffffffff811115613c8c57613c8b613148565b5b613c988e828f01613504565b96505060c08c013567ffffffffffffffff811115613cb957613cb8613148565b5b613cc58e828f0161369a565b95505060e08c013567ffffffffffffffff811115613ce657613ce5613148565b5b613cf28e828f0161369a565b9450506101008c013567ffffffffffffffff811115613d1457613d13613148565b5b613d208e828f0161377b565b935050610120613d328e828f016137c0565b925050610140613d448e828f016137c0565b9150509295989b509295989b9093969950565b600060208284031215613d6d57613d6c613143565b5b6000613d7b8482850161325f565b91505092915050565b613d8d8161323e565b82525050565b6000602082019050613da86000830184613d84565b92915050565b600060208284031215613dc457613dc3613143565b5b6000613dd284828501613229565b91505092915050565b60008060408385031215613df257613df1613143565b5b6000613e008582860161325f565b9250506020613e118582860161399e565b9150509250929050565b60008060008060008060008060008060006101608c8e031215613e4157613e40613143565b5b6000613e4f8e828f01613229565b9b50506020613e608e828f0161325f565b9a505060408c013567ffffffffffffffff811115613e8157613e80613148565b5b613e8d8e828f01613441565b99505060608c013567ffffffffffffffff811115613eae57613ead613148565b5b613eba8e828f01613b55565b98505060808c013567ffffffffffffffff811115613edb57613eda613148565b5b613ee78e828f0161377b565b97505060a08c013567ffffffffffffffff811115613f0857613f07613148565b5b613f148e828f01613504565b96505060c08c013567ffffffffffffffff811115613f3557613f34613148565b5b613f418e828f0161369a565b95505060e08c013567ffffffffffffffff811115613f6257613f61613148565b5b613f6e8e828f0161369a565b9450506101008c013567ffffffffffffffff811115613f9057613f8f613148565b5b613f9c8e828f0161377b565b935050610120613fae8e828f016137c0565b925050610140613fc08e828f016137c0565b9150509295989b509295989b9093969950565b613fdc81613975565b82525050565b6000602082019050613ff76000830184613fd3565b92915050565b6000819050919050565b600061402261401d61401884613955565b613ffd565b613955565b9050919050565b600061403482614007565b9050919050565b600061404682614029565b9050919050565b6140568161403b565b82525050565b6000602082019050614071600083018461404d565b92915050565b600067ffffffffffffffff8211156140925761409161328a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140be576140bd61328a565b5b6140c782613279565b9050602081019050919050565b60006140e76140e2846140a3565b6132ea565b9050828152602081018484840111156141035761410261355e565b5b61410e848285613594565b509392505050565b600082601f83011261412b5761412a613274565b5b813561413b8482602086016140d4565b91505092915050565b600061415761415284614077565b6132ea565b9050808382526020820190506020840283018581111561417a57614179613331565b5b835b818110156141c157803567ffffffffffffffff81111561419f5761419e613274565b5b8086016141ac8982614116565b8552602085019450505060208101905061417c565b5050509392505050565b600082601f8301126141e0576141df613274565b5b81356141f0848260208601614144565b91505092915050565b600080604083850312156142105761420f613143565b5b600061421e85828601613229565b925050602083013567ffffffffffffffff81111561423f5761423e613148565b5b61424b858286016141cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061429557614294614255565b5b50565b60008190506142a682614284565b919050565b60006142b682614298565b9050919050565b6142c6816142ab565b82525050565b60006020820190506142e160008301846142bd565b92915050565b600080600080600080600060e0888a03121561430657614305613143565b5b60006143148a828b01613229565b975050602088013567ffffffffffffffff81111561433557614334613148565b5b6143418a828b01613504565b965050604088013567ffffffffffffffff81111561436257614361613148565b5b61436e8a828b0161369a565b955050606088013567ffffffffffffffff81111561438f5761438e613148565b5b61439b8a828b0161369a565b945050608088013567ffffffffffffffff8111156143bc576143bb613148565b5b6143c88a828b0161377b565b93505060a06143d98a828b016137c0565b92505060c06143ea8a828b016137c0565b91505092959891949750929550565b60006020828403121561440f5761440e613143565b5b600061441d8482850161399e565b91505092915050565b600080600080600080600080610100898b03121561444757614446613143565b5b60006144558b828c01613229565b985050602089013567ffffffffffffffff81111561447657614475613148565b5b6144828b828c01613504565b975050604089013567ffffffffffffffff8111156144a3576144a2613148565b5b6144af8b828c0161369a565b965050606089013567ffffffffffffffff8111156144d0576144cf613148565b5b6144dc8b828c0161369a565b955050608089013567ffffffffffffffff8111156144fd576144fc613148565b5b6145098b828c0161377b565b94505060a089013567ffffffffffffffff81111561452a57614529613148565b5b6145368b828c016141cb565b93505060c06145478b828c016137c0565b92505060e06145588b828c016137c0565b9150509295985092959890939650565b600082825260208201905092915050565b7f504b5048656c7065723a206f6e6c792061636365707473207472616e7366657260008201527f732066726f6d2074686520504b504e465420636f6e7472616374000000000000602082015250565b60006145d5603a83614568565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b60008151905061461a81613212565b92915050565b60006020828403121561463657614635613143565b5b60006146448482850161460b565b91505092915050565b7f504b5048656c7065723a20697066732063696420616e642073636f706520617260008201527f726179206c656e67746873206d757374206d6174636800000000000000000000602082015250565b60006146a9603683614568565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f504b5048656c7065723a206164647265737320616e642073636f70652061727260008201527f6179206c656e67746873206d757374206d617463680000000000000000000000602082015250565b600061473b603583614568565b9150614746826146df565b604082019050919050565b6000602082019050818103600083015261476a8161472e565b9050919050565b7f504b5048656c7065723a2061757468206d6574686f64207479706520616e642060008201527f6964206172726179206c656e67746873206d757374206d617463680000000000602082015250565b60006147cd603b83614568565b91506147d882614771565b604082019050919050565b600060208201905081810360008301526147fc816147c0565b9050919050565b7f504b5048656c7065723a2061757468206d6574686f64207479706520616e642060008201527f7075626b6579206172726179206c656e67746873206d757374206d6174636800602082015250565b600061485f603f83614568565b915061486a82614803565b604082019050919050565b6000602082019050818103600083015261488e81614852565b9050919050565b7f504b5048656c7065723a2061757468206d6574686f64207479706520616e642060008201527f73636f706573206172726179206c656e67746873206d757374206d6174636800602082015250565b60006148f1603f83614568565b91506148fc82614895565b604082019050919050565b60006020820190508181036000830152614920816148e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015614990578082015181840152602081019050614975565b60008484015250505050565b60006149a782614956565b6149b18185614961565b93506149c1818560208601614972565b6149ca81613279565b840191505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a0a81613208565b82525050565b6000614a1c8383614a01565b60208301905092915050565b6000602082019050919050565b6000614a40826149d5565b614a4a81856149e0565b9350614a55836149f1565b8060005b83811015614a86578151614a6d8882614a10565b9750614a7883614a28565b925050600181019050614a59565b5085935050505092915050565b6000606082019050614aa8600083018661392b565b8181036020830152614aba818561499c565b90508181036040830152614ace8184614a35565b9050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b1282613208565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b4457614b43614ad8565b5b600182019050919050565b6000606082019050614b64600083018661392b565b614b716020830185613fd3565b8181036040830152614b838184614a35565b9050949350505050565b600082825260208201905092915050565b6000614ba982614956565b614bb38185614b8d565b9350614bc3818560208601614972565b614bcc81613279565b840191505092915050565b6000606083016000830151614bef6000860182614a01565b5060208301518482036020860152614c078282614b9e565b91505060408301518482036040860152614c218282614b9e565b9150508091505092915050565b6000606082019050614c43600083018661392b565b8181036020830152614c558185614bd7565b90508181036040830152614c698184614a35565b9050949350505050565b600081519050614c8281613987565b92915050565b600060208284031215614c9e57614c9d613143565b5b6000614cac84828501614c73565b91505092915050565b6000606082019050614cca6000830186613fd3565b614cd76020830185613fd3565b614ce4604083018461392b565b949350505050565b600081519050614cfb81613248565b92915050565b600060208284031215614d1757614d16613143565b5b6000614d2584828501614cec565b91505092915050565b6000604082019050614d436000830185613d84565b614d5060208301846142bd565b9392505050565b7f504b5048656c7065723a206f6e6c792074686520446f6d61696e2057616c6c6560008201527f7420726567697374727920697320616c6c6f77656420746f206d696e7420646f60208201527f6d61696e2077616c6c6574732c2077686f2061726520796f753f000000000000604082015250565b6000614dd9605a83614568565b9150614de482614d57565b606082019050919050565b60006020820190508181036000830152614e0881614dcc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e448161323e565b82525050565b614e538161333b565b82525050565b606082016000820151614e6f6000850182614e3b565b506020820151614e826020850182614e3b565b506040820151614e956040850182614e4a565b50505050565b6000614ea78383614e59565b60608301905092915050565b6000602082019050919050565b6000614ecb82614e0f565b614ed58185614e1a565b9350614ee083614e2b565b8060005b83811015614f11578151614ef88882614e9b565b9750614f0383614eb3565b925050600181019050614ee4565b5085935050505092915050565b6000606082019050614f33600083018661392b565b614f406020830185613d84565b8181036040830152614f528184614ec0565b9050949350505050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614fb8602f83614568565b9150614fc382614f5c565b604082019050919050565b60006020820190508181036000830152614fe781614fab565b9050919050565b600081519050919050565b600061500482614fee565b61500e8185614568565b935061501e818560208601614972565b61502781613279565b840191505092915050565b6000604082019050615047600083018561392b565b81810360208301526150598184614ff9565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150be602683614568565b91506150c982615062565b604082019050919050565b600060208201905081810360008301526150ed816150b1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061512a602083614568565b9150615135826150f4565b602082019050919050565b600060208201905081810360008301526151598161511d565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006151a1601783615160565b91506151ac8261516b565b601782019050919050565b60006151c282614fee565b6151cc8185615160565b93506151dc818560208601614972565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061521e601183615160565b9150615229826151e8565b601182019050919050565b600061523f82615194565b915061524b82856151b7565b915061525682615211565b915061526282846151b7565b91508190509392505050565b600060208201905081810360008301526152888184614ff9565b905092915050565b600061529b82613208565b91506152a683613208565b92508282026152b481613208565b915082820484148315176152cb576152ca614ad8565b5b5092915050565b60006152dd82613208565b91506152e883613208565b9250828201905080821115615300576152ff614ad8565b5b92915050565b600061531182613208565b91506000820361532457615323614ad8565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615365602083614568565b91506153708261532f565b602082019050919050565b6000602082019050818103600083015261539481615358565b905091905056fea2646970667358221220597d0e4630106fd6522346c8db67bfe6516b56265d487d9dc91f031ab95d8ecd64736f6c634300081100330000000000000000000000009194dc0a9164bfb6e464e3d2a4f0b52143dce2a70000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x6080604052600436106101665760003560e01c8063715018a6116100d15780639fba176b1161008a578063d547741f11610064578063d547741f14610532578063f2fde38b1461055b578063f95d71b114610584578063ffc83325146105ad57610166565b80639fba176b146104ac578063a217fddf146104dc578063caead0c71461050757610166565b8063715018a6146103ae57806373cc4111146103c5578063782e2ea5146103f05780638da5cb5b1461041957806391d14854146104445780639dca00321461048157610166565b80632f2ff15d116101235780632f2ff15d146102ab57806330de3eab146102d45780633276558c1461030457806336568abe1461032f5780635043026c1461035857806350d17b5e1461038357610166565b806301ffc9a71461016b5780630bcdc71e146101a8578063150b7a02146101d85780631f71cb3114610215578063248a9ca3146102455780632b55355114610282575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906131a5565b6105dd565b60405161019f91906131ed565b60405180910390f35b6101c260048036038101906101bd91906137d5565b610657565b6040516101cf919061393a565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190613a0e565b610712565b60405161020c9190613aa5565b60405180910390f35b61022f600480360381019061022a9190613b83565b61079c565b60405161023c919061393a565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613d57565b610e9a565b6040516102799190613d93565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190613dae565b610eba565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190613ddb565b61114a565b005b6102ee60048036038101906102e99190613e1b565b61116b565b6040516102fb919061393a565b60405180910390f35b34801561031057600080fd5b50610319611755565b6040516103269190613fe2565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613ddb565b611899565b005b34801561036457600080fd5b5061036d61191c565b60405161037a9190613fe2565b60405180910390f35b34801561038f57600080fd5b50610398611a60565b6040516103a5919061405c565b60405180910390f35b3480156103ba57600080fd5b506103c3611a86565b005b3480156103d157600080fd5b506103da611a9a565b6040516103e79190613fe2565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906141f9565b611bde565b005b34801561042557600080fd5b5061042e611eb4565b60405161043b9190613fe2565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190613ddb565b611edd565b60405161047891906131ed565b60405180910390f35b34801561048d57600080fd5b50610496611f48565b6040516104a391906142cc565b60405180910390f35b6104c660048036038101906104c191906142e7565b611f5b565b6040516104d3919061393a565b60405180910390f35b3480156104e857600080fd5b506104f16120b0565b6040516104fe9190613d93565b60405180910390f35b34801561051357600080fd5b5061051c6120b7565b6040516105299190613fe2565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613ddb565b6121fb565b005b34801561056757600080fd5b50610582600480360381019061057d91906143f9565b61221c565b005b34801561059057600080fd5b506105ab60048036038101906105a691906143f9565b61229f565b005b6105c760048036038101906105c29190614426565b612322565b6040516105d4919061393a565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610650575061064f82612ac1565b5b9050919050565b60006107038a8a8a600067ffffffffffffffff81111561067a5761067961328a565b5b6040519080825280602002602001820160405280156106a85781602001602082028036833780820191505090505b50600067ffffffffffffffff8111156106c4576106c361328a565b5b6040519080825280602002602001820160405280156106f757816020015b60608152602001906001900390816106e25790505b508c8c8c8c8c8c61116b565b90509998505050505050505050565b600061071c6120b7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610780906145eb565b60405180910390fd5b63150b7a0260e01b905095945050505050565b6000806107a76120b7565b73ffffffffffffffffffffffffffffffffffffffff16635d228b16348f6040518363ffffffff1660e01b81526004016107e0919061393a565b60206040518083038185885af11580156107fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108239190614620565b90508a518c5114610869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610860906146bf565b60405180910390fd5b88518a51146108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490614751565b60405180910390fd5b86518851146108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e8906147e3565b60405180910390fd5b8551885114610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90614875565b60405180910390fd5b8451885114610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090614907565b60405180910390fd5b60008c5114610a4d5760005b8c51811015610a4b57610996611755565b73ffffffffffffffffffffffffffffffffffffffff16638a431578838f84815181106109c5576109c4614927565b5b60200260200101518f85815181106109e0576109df614927565b5b60200260200101516040518463ffffffff1660e01b8152600401610a0693929190614a93565b600060405180830381600087803b158015610a2057600080fd5b505af1158015610a34573d6000803e3d6000fd5b505050508080610a4390614b07565b915050610985565b505b60008a5114610b215760005b8a51811015610b1f57610a6a611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c121838d8481518110610a9957610a98614927565b5b60200260200101518d8581518110610ab457610ab3614927565b5b60200260200101516040518463ffffffff1660e01b8152600401610ada93929190614b4f565b600060405180830381600087803b158015610af457600080fd5b505af1158015610b08573d6000803e3d6000fd5b505050508080610b1790614b07565b915050610a59565b505b6000885114610c435760005b8851811015610c4157610b3e611755565b73ffffffffffffffffffffffffffffffffffffffff16639dd4349b8360405180606001604052808d8681518110610b7857610b77614927565b5b602002602001015181526020018c8681518110610b9857610b97614927565b5b602002602001015181526020018b8681518110610bb857610bb7614927565b5b6020026020010151815250898581518110610bd657610bd5614927565b5b60200260200101516040518463ffffffff1660e01b8152600401610bfc93929190614c2e565b600060405180830381600087803b158015610c1657600080fd5b505af1158015610c2a573d6000803e3d6000fd5b505050508080610c3990614b07565b915050610b2d565b505b6000610c4d611755565b73ffffffffffffffffffffffffffffffffffffffff1663bd4986a0836040518263ffffffff1660e01b8152600401610c85919061393a565b602060405180830381865afa158015610ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc69190614c88565b90508415610d8e57610cd6611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c1218383600067ffffffffffffffff811115610d0e57610d0d61328a565b5b604051908082528060200260200182016040528015610d3c5781602001602082028036833780820191505090505b506040518463ffffffff1660e01b8152600401610d5b93929190614b4f565b600060405180830381600087803b158015610d7557600080fd5b505af1158015610d89573d6000803e3d6000fd5b505050505b8315610e0f57610d9c6120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b8152600401610dd893929190614cb5565b600060405180830381600087803b158015610df257600080fd5b505af1158015610e06573d6000803e3d6000fd5b50505050610e86565b610e176120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033856040518463ffffffff1660e01b8152600401610e5393929190614cb5565b600060405180830381600087803b158015610e6d57600080fd5b505af1158015610e81573d6000803e3d6000fd5b505050505b81925050509b9a5050505050505050505050565b600060016000838152602001908152602001600020600101549050919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f899190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401610fb6929190614d2e565b602060405180830381865afa158015610fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff79190614c88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614def565b60405180910390fd5b600061106e61191c565b90508073ffffffffffffffffffffffffffffffffffffffff1663b63a7677836040518263ffffffff1660e01b81526004016110a9919061393a565b600060405180830381600087803b1580156110c357600080fd5b505af11580156110d7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663519a218e836040518263ffffffff1660e01b8152600401611114919061393a565b600060405180830381600087803b15801561112e57600080fd5b505af1158015611142573d6000803e3d6000fd5b505050505050565b61115382610e9a565b61115c81612b2b565b6111668383612b3f565b505050565b6000806111766120b7565b73ffffffffffffffffffffffffffffffffffffffff1663c70384b8348f8f8f6040518563ffffffff1660e01b81526004016111b393929190614f1e565b60206040518083038185885af11580156111d1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111f69190614620565b905088518a511461123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390614751565b60405180910390fd5b8651885114611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906147e3565b60405180910390fd5b85518851146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614875565b60405180910390fd5b8451885114611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90614907565b60405180910390fd5b60008a51146113dc5760005b8a518110156113da57611325611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c121838d848151811061135457611353614927565b5b60200260200101518d858151811061136f5761136e614927565b5b60200260200101516040518463ffffffff1660e01b815260040161139593929190614b4f565b600060405180830381600087803b1580156113af57600080fd5b505af11580156113c3573d6000803e3d6000fd5b5050505080806113d290614b07565b915050611314565b505b60008851146114fe5760005b88518110156114fc576113f9611755565b73ffffffffffffffffffffffffffffffffffffffff16639dd4349b8360405180606001604052808d868151811061143357611432614927565b5b602002602001015181526020018c868151811061145357611452614927565b5b602002602001015181526020018b868151811061147357611472614927565b5b602002602001015181525089858151811061149157611490614927565b5b60200260200101516040518463ffffffff1660e01b81526004016114b793929190614c2e565b600060405180830381600087803b1580156114d157600080fd5b505af11580156114e5573d6000803e3d6000fd5b5050505080806114f490614b07565b9150506113e8565b505b6000611508611755565b73ffffffffffffffffffffffffffffffffffffffff1663bd4986a0836040518263ffffffff1660e01b8152600401611540919061393a565b602060405180830381865afa15801561155d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115819190614c88565b9050841561164957611591611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c1218383600067ffffffffffffffff8111156115c9576115c861328a565b5b6040519080825280602002602001820160405280156115f75781602001602082028036833780820191505090505b506040518463ffffffff1660e01b815260040161161693929190614b4f565b600060405180830381600087803b15801561163057600080fd5b505af1158015611644573d6000803e3d6000fd5b505050505b83156116ca576116576120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b815260040161169393929190614cb5565b600060405180830381600087803b1580156116ad57600080fd5b505af11580156116c1573d6000803e3d6000fd5b50505050611741565b6116d26120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033856040518463ffffffff1660e01b815260040161170e93929190614cb5565b600060405180830381600087803b15801561172857600080fd5b505af115801561173c573d6000803e3d6000fd5b505050505b81925050509b9a5050505050505050505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639072f8386040518163ffffffff1660e01b8152600401602060405180830381865afa158015611802573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118269190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611853929190614d2e565b602060405180830381865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118949190614c88565b905090565b6118a1612c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614fce565b60405180910390fd5b6119188282612c27565b5050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166316f76bbf6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ed9190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611a1a929190614d2e565b602060405180830381865afa158015611a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5b9190614c88565b905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a8e612d09565b611a986000612d87565b565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6b9190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611b98929190614d2e565b602060405180830381865afa158015611bb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd99190614c88565b905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cad9190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401611cda929190614d2e565b602060405180830381865afa158015611cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1b9190614c88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90614def565b60405180910390fd5b6000611d9261191c565b9050600082511115611eaf578073ffffffffffffffffffffffffffffffffffffffff1663855eec228484600081518110611dcf57611dce614927565b5b60200260200101516040518363ffffffff1660e01b8152600401611df4929190615032565b600060405180830381600087803b158015611e0e57600080fd5b505af1158015611e22573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16639000fee18484600181518110611e5757611e56614927565b5b60200260200101516040518363ffffffff1660e01b8152600401611e7c929190615032565b600060405180830381600087803b158015611e9657600080fd5b505af1158015611eaa573d6000803e3d6000fd5b505050505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260149054906101000a900460ff1681565b60006120a388600067ffffffffffffffff811115611f7c57611f7b61328a565b5b604051908082528060200260200182016040528015611faf57816020015b6060815260200190600190039081611f9a5790505b50600067ffffffffffffffff811115611fcb57611fca61328a565b5b604051908082528060200260200182016040528015611ffe57816020015b6060815260200190600190039081611fe95790505b50600067ffffffffffffffff81111561201a5761201961328a565b5b6040519080825280602002602001820160405280156120485781602001602082028036833780820191505090505b50600067ffffffffffffffff8111156120645761206361328a565b5b60405190808252806020026020018201604052801561209757816020015b60608152602001906001900390816120825790505b508c8c8c8c8c8c61079c565b9050979650505050505050565b6000801b81565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632c0b8bf76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121889190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b81526004016121b5929190614d2e565b602060405180830381865afa1580156121d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f69190614c88565b905090565b61220482610e9a565b61220d81612b2b565b6122178383612c27565b505050565b612224612d09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a906150d4565b60405180910390fd5b61229c81612d87565b50565b6122a7612d09565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2760073c7cd8cac531d7f643becbfbb74d8b8156443eacf879622532dbbb3cd5816040516123179190613fe2565b60405180910390a150565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e8dfd16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634216e73a6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f39190614d01565b600260149054906101000a900460ff166040518363ffffffff1660e01b8152600401612420929190614d2e565b602060405180830381865afa15801561243d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124619190614c88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c590614def565b60405180910390fd5b60006124d86120b7565b73ffffffffffffffffffffffffffffffffffffffff16635d228b16348c6040518363ffffffff1660e01b8152600401612511919061393a565b60206040518083038185885af115801561252f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125549190614620565b9050875189511461259a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612591906147e3565b60405180910390fd5b86518951146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614875565b60405180910390fd5b8551895114612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990614907565b60405180910390fd5b60008951146127445760005b89518110156127425761263f611755565b73ffffffffffffffffffffffffffffffffffffffff16639dd4349b8360405180606001604052808e868151811061267957612678614927565b5b602002602001015181526020018d868151811061269957612698614927565b5b602002602001015181526020018c86815181106126b9576126b8614927565b5b60200260200101518152508a85815181106126d7576126d6614927565b5b60200260200101516040518463ffffffff1660e01b81526004016126fd93929190614c2e565b600060405180830381600087803b15801561271757600080fd5b505af115801561272b573d6000803e3d6000fd5b50505050808061273a90614b07565b91505061262e565b505b600061274e611755565b73ffffffffffffffffffffffffffffffffffffffff1663bd4986a0836040518263ffffffff1660e01b8152600401612786919061393a565b602060405180830381865afa1580156127a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c79190614c88565b9050841561288f576127d7611755565b73ffffffffffffffffffffffffffffffffffffffff16631663c1218383600067ffffffffffffffff81111561280f5761280e61328a565b5b60405190808252806020026020018201604052801561283d5781602001602082028036833780820191505090505b506040518463ffffffff1660e01b815260040161285c93929190614b4f565b600060405180830381600087803b15801561287657600080fd5b505af115801561288a573d6000803e3d6000fd5b505050505b83156129105761289d6120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b81526004016128d993929190614cb5565b600060405180830381600087803b1580156128f357600080fd5b505af1158015612907573d6000803e3d6000fd5b50505050612987565b6129186120b7565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033856040518463ffffffff1660e01b815260040161295493929190614cb5565b600060405180830381600087803b15801561296e57600080fd5b505af1158015612982573d6000803e3d6000fd5b505050505b600086511115612ab05761299961191c565b73ffffffffffffffffffffffffffffffffffffffff1663855eec2283886000815181106129c9576129c8614927565b5b60200260200101516040518363ffffffff1660e01b81526004016129ee929190615032565b600060405180830381600087803b158015612a0857600080fd5b505af1158015612a1c573d6000803e3d6000fd5b50505050612a2861191c565b73ffffffffffffffffffffffffffffffffffffffff16639000fee18388600181518110612a5857612a57614927565b5b60200260200101516040518363ffffffff1660e01b8152600401612a7d929190615032565b600060405180830381600087803b158015612a9757600080fd5b505af1158015612aab573d6000803e3d6000fd5b505050505b819250505098975050505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b3c81612b37612c1f565b612e4b565b50565b612b498282611edd565b612c1b57600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612bc0612c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b612c318282611edd565b15612d055760006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612caa612c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612d11612c1f565b73ffffffffffffffffffffffffffffffffffffffff16612d2f611eb4565b73ffffffffffffffffffffffffffffffffffffffff1614612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c90615140565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e558282611edd565b612ecc57612e6281612ed0565b612e708360001c6020612efd565b604051602001612e81929190615234565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec3919061526e565b60405180910390fd5b5050565b6060612ef68273ffffffffffffffffffffffffffffffffffffffff16601460ff16612efd565b9050919050565b606060006002836002612f109190615290565b612f1a91906152d2565b67ffffffffffffffff811115612f3357612f3261328a565b5b6040519080825280601f01601f191660200182016040528015612f655781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612f9d57612f9c614927565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061300157613000614927565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026130419190615290565b61304b91906152d2565b90505b60018111156130eb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061308d5761308c614927565b5b1a60f81b8282815181106130a4576130a3614927565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806130e490615306565b905061304e565b506000841461312f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131269061537b565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131828161314d565b811461318d57600080fd5b50565b60008135905061319f81613179565b92915050565b6000602082840312156131bb576131ba613143565b5b60006131c984828501613190565b91505092915050565b60008115159050919050565b6131e7816131d2565b82525050565b600060208201905061320260008301846131de565b92915050565b6000819050919050565b61321b81613208565b811461322657600080fd5b50565b60008135905061323881613212565b92915050565b6000819050919050565b6132518161323e565b811461325c57600080fd5b50565b60008135905061326e81613248565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132c282613279565b810181811067ffffffffffffffff821117156132e1576132e061328a565b5b80604052505050565b60006132f4613139565b905061330082826132b9565b919050565b600067ffffffffffffffff8211156133205761331f61328a565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060ff82169050919050565b6133518161333b565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b60006060828403121561338a57613389613336565b5b61339460606132ea565b905060006133a48482850161325f565b60008301525060206133b88482850161325f565b60208301525060406133cc8482850161335f565b60408301525092915050565b60006133eb6133e684613305565b6132ea565b9050808382526020820190506060840283018581111561340e5761340d613331565b5b835b8181101561343757806134238882613374565b845260208401935050606081019050613410565b5050509392505050565b600082601f83011261345657613455613274565b5b81356134668482602086016133d8565b91505092915050565b600067ffffffffffffffff82111561348a5761348961328a565b5b602082029050602081019050919050565b60006134ae6134a98461346f565b6132ea565b905080838252602082019050602084028301858111156134d1576134d0613331565b5b835b818110156134fa57806134e68882613229565b8452602084019350506020810190506134d3565b5050509392505050565b600082601f83011261351957613518613274565b5b813561352984826020860161349b565b91505092915050565b600067ffffffffffffffff82111561354d5761354c61328a565b5b602082029050602081019050919050565b600080fd5b600067ffffffffffffffff82111561357e5761357d61328a565b5b61358782613279565b9050602081019050919050565b82818337600083830152505050565b60006135b66135b184613563565b6132ea565b9050828152602081018484840111156135d2576135d161355e565b5b6135dd848285613594565b509392505050565b600082601f8301126135fa576135f9613274565b5b813561360a8482602086016135a3565b91505092915050565b600061362661362184613532565b6132ea565b9050808382526020820190506020840283018581111561364957613648613331565b5b835b8181101561369057803567ffffffffffffffff81111561366e5761366d613274565b5b80860161367b89826135e5565b8552602085019450505060208101905061364b565b5050509392505050565b600082601f8301126136af576136ae613274565b5b81356136bf848260208601613613565b91505092915050565b600067ffffffffffffffff8211156136e3576136e261328a565b5b602082029050602081019050919050565b6000613707613702846136c8565b6132ea565b9050808382526020820190506020840283018581111561372a57613729613331565b5b835b8181101561377157803567ffffffffffffffff81111561374f5761374e613274565b5b80860161375c8982613504565b8552602085019450505060208101905061372c565b5050509392505050565b600082601f8301126137905761378f613274565b5b81356137a08482602086016136f4565b91505092915050565b6137b2816131d2565b81146137bd57600080fd5b50565b6000813590506137cf816137a9565b92915050565b60008060008060008060008060006101208a8c0312156137f8576137f7613143565b5b60006138068c828d01613229565b99505060206138178c828d0161325f565b98505060408a013567ffffffffffffffff81111561383857613837613148565b5b6138448c828d01613441565b97505060608a013567ffffffffffffffff81111561386557613864613148565b5b6138718c828d01613504565b96505060808a013567ffffffffffffffff81111561389257613891613148565b5b61389e8c828d0161369a565b95505060a08a013567ffffffffffffffff8111156138bf576138be613148565b5b6138cb8c828d0161369a565b94505060c08a013567ffffffffffffffff8111156138ec576138eb613148565b5b6138f88c828d0161377b565b93505060e06139098c828d016137c0565b92505061010061391b8c828d016137c0565b9150509295985092959850929598565b61393481613208565b82525050565b600060208201905061394f600083018461392b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061398082613955565b9050919050565b61399081613975565b811461399b57600080fd5b50565b6000813590506139ad81613987565b92915050565b600080fd5b60008083601f8401126139ce576139cd613274565b5b8235905067ffffffffffffffff8111156139eb576139ea6139b3565b5b602083019150836001820283011115613a0757613a06613331565b5b9250929050565b600080600080600060808688031215613a2a57613a29613143565b5b6000613a388882890161399e565b9550506020613a498882890161399e565b9450506040613a5a88828901613229565b935050606086013567ffffffffffffffff811115613a7b57613a7a613148565b5b613a87888289016139b8565b92509250509295509295909350565b613a9f8161314d565b82525050565b6000602082019050613aba6000830184613a96565b92915050565b600067ffffffffffffffff821115613adb57613ada61328a565b5b602082029050602081019050919050565b6000613aff613afa84613ac0565b6132ea565b90508083825260208201905060208402830185811115613b2257613b21613331565b5b835b81811015613b4b5780613b37888261399e565b845260208401935050602081019050613b24565b5050509392505050565b600082601f830112613b6a57613b69613274565b5b8135613b7a848260208601613aec565b91505092915050565b60008060008060008060008060008060006101608c8e031215613ba957613ba8613143565b5b6000613bb78e828f01613229565b9b505060208c013567ffffffffffffffff811115613bd857613bd7613148565b5b613be48e828f0161369a565b9a505060408c013567ffffffffffffffff811115613c0557613c04613148565b5b613c118e828f0161377b565b99505060608c013567ffffffffffffffff811115613c3257613c31613148565b5b613c3e8e828f01613b55565b98505060808c013567ffffffffffffffff811115613c5f57613c5e613148565b5b613c6b8e828f0161377b565b97505060a08c013567ffffffffffffffff811115613c8c57613c8b613148565b5b613c988e828f01613504565b96505060c08c013567ffffffffffffffff811115613cb957613cb8613148565b5b613cc58e828f0161369a565b95505060e08c013567ffffffffffffffff811115613ce657613ce5613148565b5b613cf28e828f0161369a565b9450506101008c013567ffffffffffffffff811115613d1457613d13613148565b5b613d208e828f0161377b565b935050610120613d328e828f016137c0565b925050610140613d448e828f016137c0565b9150509295989b509295989b9093969950565b600060208284031215613d6d57613d6c613143565b5b6000613d7b8482850161325f565b91505092915050565b613d8d8161323e565b82525050565b6000602082019050613da86000830184613d84565b92915050565b600060208284031215613dc457613dc3613143565b5b6000613dd284828501613229565b91505092915050565b60008060408385031215613df257613df1613143565b5b6000613e008582860161325f565b9250506020613e118582860161399e565b9150509250929050565b60008060008060008060008060008060006101608c8e031215613e4157613e40613143565b5b6000613e4f8e828f01613229565b9b50506020613e608e828f0161325f565b9a505060408c013567ffffffffffffffff811115613e8157613e80613148565b5b613e8d8e828f01613441565b99505060608c013567ffffffffffffffff811115613eae57613ead613148565b5b613eba8e828f01613b55565b98505060808c013567ffffffffffffffff811115613edb57613eda613148565b5b613ee78e828f0161377b565b97505060a08c013567ffffffffffffffff811115613f0857613f07613148565b5b613f148e828f01613504565b96505060c08c013567ffffffffffffffff811115613f3557613f34613148565b5b613f418e828f0161369a565b95505060e08c013567ffffffffffffffff811115613f6257613f61613148565b5b613f6e8e828f0161369a565b9450506101008c013567ffffffffffffffff811115613f9057613f8f613148565b5b613f9c8e828f0161377b565b935050610120613fae8e828f016137c0565b925050610140613fc08e828f016137c0565b9150509295989b509295989b9093969950565b613fdc81613975565b82525050565b6000602082019050613ff76000830184613fd3565b92915050565b6000819050919050565b600061402261401d61401884613955565b613ffd565b613955565b9050919050565b600061403482614007565b9050919050565b600061404682614029565b9050919050565b6140568161403b565b82525050565b6000602082019050614071600083018461404d565b92915050565b600067ffffffffffffffff8211156140925761409161328a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140be576140bd61328a565b5b6140c782613279565b9050602081019050919050565b60006140e76140e2846140a3565b6132ea565b9050828152602081018484840111156141035761410261355e565b5b61410e848285613594565b509392505050565b600082601f83011261412b5761412a613274565b5b813561413b8482602086016140d4565b91505092915050565b600061415761415284614077565b6132ea565b9050808382526020820190506020840283018581111561417a57614179613331565b5b835b818110156141c157803567ffffffffffffffff81111561419f5761419e613274565b5b8086016141ac8982614116565b8552602085019450505060208101905061417c565b5050509392505050565b600082601f8301126141e0576141df613274565b5b81356141f0848260208601614144565b91505092915050565b600080604083850312156142105761420f613143565b5b600061421e85828601613229565b925050602083013567ffffffffffffffff81111561423f5761423e613148565b5b61424b858286016141cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061429557614294614255565b5b50565b60008190506142a682614284565b919050565b60006142b682614298565b9050919050565b6142c6816142ab565b82525050565b60006020820190506142e160008301846142bd565b92915050565b600080600080600080600060e0888a03121561430657614305613143565b5b60006143148a828b01613229565b975050602088013567ffffffffffffffff81111561433557614334613148565b5b6143418a828b01613504565b965050604088013567ffffffffffffffff81111561436257614361613148565b5b61436e8a828b0161369a565b955050606088013567ffffffffffffffff81111561438f5761438e613148565b5b61439b8a828b0161369a565b945050608088013567ffffffffffffffff8111156143bc576143bb613148565b5b6143c88a828b0161377b565b93505060a06143d98a828b016137c0565b92505060c06143ea8a828b016137c0565b91505092959891949750929550565b60006020828403121561440f5761440e613143565b5b600061441d8482850161399e565b91505092915050565b600080600080600080600080610100898b03121561444757614446613143565b5b60006144558b828c01613229565b985050602089013567ffffffffffffffff81111561447657614475613148565b5b6144828b828c01613504565b975050604089013567ffffffffffffffff8111156144a3576144a2613148565b5b6144af8b828c0161369a565b965050606089013567ffffffffffffffff8111156144d0576144cf613148565b5b6144dc8b828c0161369a565b955050608089013567ffffffffffffffff8111156144fd576144fc613148565b5b6145098b828c0161377b565b94505060a089013567ffffffffffffffff81111561452a57614529613148565b5b6145368b828c016141cb565b93505060c06145478b828c016137c0565b92505060e06145588b828c016137c0565b9150509295985092959890939650565b600082825260208201905092915050565b7f504b5048656c7065723a206f6e6c792061636365707473207472616e7366657260008201527f732066726f6d2074686520504b504e465420636f6e7472616374000000000000602082015250565b60006145d5603a83614568565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b60008151905061461a81613212565b92915050565b60006020828403121561463657614635613143565b5b60006146448482850161460b565b91505092915050565b7f504b5048656c7065723a20697066732063696420616e642073636f706520617260008201527f726179206c656e67746873206d757374206d6174636800000000000000000000602082015250565b60006146a9603683614568565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f504b5048656c7065723a206164647265737320616e642073636f70652061727260008201527f6179206c656e67746873206d757374206d617463680000000000000000000000602082015250565b600061473b603583614568565b9150614746826146df565b604082019050919050565b6000602082019050818103600083015261476a8161472e565b9050919050565b7f504b5048656c7065723a2061757468206d6574686f64207479706520616e642060008201527f6964206172726179206c656e67746873206d757374206d617463680000000000602082015250565b60006147cd603b83614568565b91506147d882614771565b604082019050919050565b600060208201905081810360008301526147fc816147c0565b9050919050565b7f504b5048656c7065723a2061757468206d6574686f64207479706520616e642060008201527f7075626b6579206172726179206c656e67746873206d757374206d6174636800602082015250565b600061485f603f83614568565b915061486a82614803565b604082019050919050565b6000602082019050818103600083015261488e81614852565b9050919050565b7f504b5048656c7065723a2061757468206d6574686f64207479706520616e642060008201527f73636f706573206172726179206c656e67746873206d757374206d6174636800602082015250565b60006148f1603f83614568565b91506148fc82614895565b604082019050919050565b60006020820190508181036000830152614920816148e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015614990578082015181840152602081019050614975565b60008484015250505050565b60006149a782614956565b6149b18185614961565b93506149c1818560208601614972565b6149ca81613279565b840191505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a0a81613208565b82525050565b6000614a1c8383614a01565b60208301905092915050565b6000602082019050919050565b6000614a40826149d5565b614a4a81856149e0565b9350614a55836149f1565b8060005b83811015614a86578151614a6d8882614a10565b9750614a7883614a28565b925050600181019050614a59565b5085935050505092915050565b6000606082019050614aa8600083018661392b565b8181036020830152614aba818561499c565b90508181036040830152614ace8184614a35565b9050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b1282613208565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b4457614b43614ad8565b5b600182019050919050565b6000606082019050614b64600083018661392b565b614b716020830185613fd3565b8181036040830152614b838184614a35565b9050949350505050565b600082825260208201905092915050565b6000614ba982614956565b614bb38185614b8d565b9350614bc3818560208601614972565b614bcc81613279565b840191505092915050565b6000606083016000830151614bef6000860182614a01565b5060208301518482036020860152614c078282614b9e565b91505060408301518482036040860152614c218282614b9e565b9150508091505092915050565b6000606082019050614c43600083018661392b565b8181036020830152614c558185614bd7565b90508181036040830152614c698184614a35565b9050949350505050565b600081519050614c8281613987565b92915050565b600060208284031215614c9e57614c9d613143565b5b6000614cac84828501614c73565b91505092915050565b6000606082019050614cca6000830186613fd3565b614cd76020830185613fd3565b614ce4604083018461392b565b949350505050565b600081519050614cfb81613248565b92915050565b600060208284031215614d1757614d16613143565b5b6000614d2584828501614cec565b91505092915050565b6000604082019050614d436000830185613d84565b614d5060208301846142bd565b9392505050565b7f504b5048656c7065723a206f6e6c792074686520446f6d61696e2057616c6c6560008201527f7420726567697374727920697320616c6c6f77656420746f206d696e7420646f60208201527f6d61696e2077616c6c6574732c2077686f2061726520796f753f000000000000604082015250565b6000614dd9605a83614568565b9150614de482614d57565b606082019050919050565b60006020820190508181036000830152614e0881614dcc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e448161323e565b82525050565b614e538161333b565b82525050565b606082016000820151614e6f6000850182614e3b565b506020820151614e826020850182614e3b565b506040820151614e956040850182614e4a565b50505050565b6000614ea78383614e59565b60608301905092915050565b6000602082019050919050565b6000614ecb82614e0f565b614ed58185614e1a565b9350614ee083614e2b565b8060005b83811015614f11578151614ef88882614e9b565b9750614f0383614eb3565b925050600181019050614ee4565b5085935050505092915050565b6000606082019050614f33600083018661392b565b614f406020830185613d84565b8181036040830152614f528184614ec0565b9050949350505050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614fb8602f83614568565b9150614fc382614f5c565b604082019050919050565b60006020820190508181036000830152614fe781614fab565b9050919050565b600081519050919050565b600061500482614fee565b61500e8185614568565b935061501e818560208601614972565b61502781613279565b840191505092915050565b6000604082019050615047600083018561392b565b81810360208301526150598184614ff9565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150be602683614568565b91506150c982615062565b604082019050919050565b600060208201905081810360008301526150ed816150b1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061512a602083614568565b9150615135826150f4565b602082019050919050565b600060208201905081810360008301526151598161511d565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006151a1601783615160565b91506151ac8261516b565b601782019050919050565b60006151c282614fee565b6151cc8185615160565b93506151dc818560208601614972565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061521e601183615160565b9150615229826151e8565b601182019050919050565b600061523f82615194565b915061524b82856151b7565b915061525682615211565b915061526282846151b7565b91508190509392505050565b600060208201905081810360008301526152888184614ff9565b905092915050565b600061529b82613208565b91506152a683613208565b92508282026152b481613208565b915082820484148315176152cb576152ca614ad8565b5b5092915050565b60006152dd82613208565b91506152e883613208565b9250828201905080821115615300576152ff614ad8565b5b92915050565b600061531182613208565b91506000820361532457615323614ad8565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615365602083614568565b91506153708261532f565b602082019050919050565b6000602082019050818103600083015261539481615358565b905091905056fea2646970667358221220597d0e4630106fd6522346c8db67bfe6516b56265d487d9dc91f031ab95d8ecd64736f6c63430008110033