Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 8 internal transactions
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xb467784A0d48c2e4AA133502BDcD5EaF2D587546
Contract Name:
StakeV2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-11-27 */ // Sources flattened with hardhat v2.11.2 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] // // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/security/[email protected] // // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/math/[email protected] // // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // // 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); } // File @openzeppelin/contracts/token/ERC721/[email protected] // // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // // 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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File contracts/v2/StakeV2.sol pragma solidity ^0.8.4; contract StakeV2 is ReentrancyGuard, Pausable, Ownable, IERC721Receiver { using SafeMath for uint256; using SafeERC20 for IERC20; /* ========== STATE VARIABLES ========== */ IERC20 immutable public rewardsToken; address[] public collectionAddresses; mapping(address => uint256) public collectionRatio; mapping(address => bool) public isAllowedCollection; mapping(address => uint256) public totalStaked; mapping(address => mapping(address => uint256)) public collectionToUserToBalances; mapping(address => uint256) public rewardPerTokenStored; mapping(address => uint256) public lastUpdateTime; uint256 public periodFinish = 0; uint256 public rewardsDuration = 7 days; uint256 public rewardRate = 0; mapping(address => mapping(address => uint256)) public collectionToUserToRewardPerTokenPaid; mapping(address => uint256) public rewards; mapping(address => mapping(address => uint256)) public collectionToUserToRewards; // fee uint256 public chargeStake = 1 ether; uint256 public chargeWithdraw = 1 ether; uint256 public chargeClaim = 2 ether; address public chargePayee; /* ========== CONSTRUCTOR ========== */ constructor( address _rewardsToken, address[] memory _collections, uint256[] memory _ratios ) public Ownable() { rewardsToken = IERC20(_rewardsToken); collectionAddresses = _collections; chargePayee = msg.sender; for (uint256 i = 0; i < _collections.length; i++) { collectionRatio[_collections[i]] = _ratios[i]; isAllowedCollection[_collections[i]] = true; } } /* ========== VIEWS ========== */ function balanceOf(address collection, address account) external view returns (uint256) { return collectionToUserToBalances[collection][account]; } function lastTimeRewardApplicable() public view returns (uint256) { return block.timestamp < periodFinish ? block.timestamp : periodFinish; } function rewardPerToken(address collection) public view returns (uint256) { if (totalStaked[collection] == 0) { return rewardPerTokenStored[collection]; } return rewardPerTokenStored[collection] .add( lastTimeRewardApplicable() .sub(lastUpdateTime[collection]) .mul(rewardRate) .mul(1e18) .mul(collectionRatio[collection]) .div(100) .div(totalStaked[collection]) ); } function earned(address collection, address account) public view returns (uint256) { return collectionToUserToBalances[collection][account] .mul(rewardPerToken(collection).sub(collectionToUserToRewardPerTokenPaid[collection][account])) .div(1e18) .add(rewards[account]); } function getRewardForDuration() external view returns (uint256) { return rewardRate.mul(rewardsDuration); } /* ========== FEE FUNCTIONS ========== */ function setChargeFee(uint256 _stake, uint256 _withdraw, uint256 _claim) onlyOwner() public { chargeStake = _stake; chargeWithdraw = _withdraw; chargeClaim = _claim; } function setChargePayee(address _payee) onlyOwner() public { chargePayee = _payee; } function claimChargeFee() public { require(chargePayee != address(0), "chargePayee is not set"); require(msg.sender == chargePayee, "only chargePayee can claim fee"); payable(msg.sender).transfer(address(this).balance); } /* ========== MUTATIVE FUNCTIONS ========== */ function stake(address collection, uint256[] memory ids) external payable nonReentrant whenNotPaused updateReward(collection, msg.sender) { require(msg.value == chargeStake * ids.length, "stake fee is not enough"); require(ids.length > 0, "Cannot stake 0 nft"); require(isAllowedCollection[collection], "Collection is not allowed"); totalStaked[collection] = totalStaked[collection].add(ids.length); collectionToUserToBalances[collection][msg.sender] = collectionToUserToBalances[collection][msg.sender].add(ids.length); for (uint256 i = 0; i < ids.length; i++) { IERC721(collection).safeTransferFrom(msg.sender, address(this), ids[i]); } emit Staked(msg.sender, collection, ids.length); } function withdraw(address collection, uint256[] memory ids) public payable nonReentrant updateReward(collection, msg.sender) { require(msg.value == chargeWithdraw * ids.length, "withdraw fee is not enough"); require(ids.length > 0, "Cannot withdraw 0 nft"); totalStaked[collection] = totalStaked[collection].sub(ids.length); collectionToUserToBalances[collection][msg.sender] = collectionToUserToBalances[collection][msg.sender].sub(ids.length); for (uint256 i = 0; i < ids.length; i++) { IERC721(collection).safeTransferFrom(address(this), msg.sender, ids[i]); } emit Withdrawn(msg.sender, collection, ids.length); } function getReward() public payable nonReentrant { require(msg.value == chargeClaim, "claim fee is not enough"); for (uint256 i = 0; i < collectionAddresses.length; i++) { _updateReward(collectionAddresses[i], msg.sender); } uint256 reward = rewards[msg.sender]; if (reward > 0) { rewards[msg.sender] = 0; rewardsToken.safeTransfer(msg.sender, reward); emit RewardPaid(msg.sender, reward); } } /* ========== RESTRICTED FUNCTIONS ========== */ function notifyRewardAmount(uint256 reward) external onlyOwner { for (uint256 i = 0; i < collectionAddresses.length; i++) { _updateReward(collectionAddresses[i], address(0)); } if (block.timestamp >= periodFinish) { rewardRate = reward.div(rewardsDuration); } else { uint256 remaining = periodFinish.sub(block.timestamp); uint256 leftover = remaining.mul(rewardRate); rewardRate = reward.add(leftover).div(rewardsDuration); } uint balance = rewardsToken.balanceOf(address(this)); require(rewardRate <= balance.div(rewardsDuration), "Provided reward too high"); for (uint256 i = 0; i < collectionAddresses.length; i++) { lastUpdateTime[collectionAddresses[i]] = block.timestamp; } periodFinish = block.timestamp.add(rewardsDuration); emit RewardAdded(reward); } // Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner { IERC20(tokenAddress).safeTransfer(owner(), tokenAmount); emit Recovered(tokenAddress, tokenAmount); } function setRewardsDuration(uint256 _rewardsDuration) external onlyOwner { require( block.timestamp > periodFinish, "Previous rewards period must be complete before changing the duration for the new period" ); rewardsDuration = _rewardsDuration; emit RewardsDurationUpdated(rewardsDuration); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } /* ========== MODIFIERS ========== */ modifier updateReward(address collection, address account) { _updateReward(collection, account); _; } function _updateReward(address collection, address account) internal { rewardPerTokenStored[collection] = rewardPerToken(collection); lastUpdateTime[collection] = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(collection, account); collectionToUserToRewardPerTokenPaid[collection][account] = rewardPerTokenStored[collection]; } } function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) external pure returns (bytes4) { return IERC721Receiver.onERC721Received.selector; } /* ========== EVENTS ========== */ event RewardAdded(uint256 reward); event Staked(address indexed user, address indexed collection, uint256 amount); event Withdrawn(address indexed user, address indexed collection, uint256 amount); event RewardPaid(address indexed user, uint256 reward); event RewardsDurationUpdated(uint256 newDuration); event Recovered(address token, uint256 amount); }
[{"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address[]","name":"_collections","type":"address[]"},{"internalType":"uint256[]","name":"_ratios","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"RewardsDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargeClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargePayee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargeStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargeWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimChargeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collectionAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collectionRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"collectionToUserToBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"collectionToUserToRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"collectionToUserToRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAllowedCollection","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"}],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stake","type":"uint256"},{"internalType":"uint256","name":"_withdraw","type":"uint256"},{"internalType":"uint256","name":"_claim","type":"uint256"}],"name":"setChargeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payee","type":"address"}],"name":"setChargePayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"setRewardsDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"stake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a0604052600060095562093a80600a556000600b55670de0b6b3a7640000600f55670de0b6b3a7640000601055671bc16d674ec800006011553480156200004657600080fd5b50604051620042ca380380620042ca83398181016040528101906200006c9190620006d5565b60016000819055506000600160006101000a81548160ff021916908315150217905550620000af620000a36200025d60201b60201c565b6200026560201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508160029080519060200190620000fb92919062000328565b5033601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b8251811015620002535781818151811062000160576200015f6200076f565b5b6020026020010151600360008584815181106200018257620001816200076f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160046000858481518110620001e457620001e36200076f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200024a90620007cd565b91505062000140565b505050506200081a565b600033905090565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620003a4579160200282015b82811115620003a35782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000349565b5b509050620003b39190620003b7565b5090565b5b80821115620003d2576000816000905550600101620003b8565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200041782620003ea565b9050919050565b62000429816200040a565b81146200043557600080fd5b50565b60008151905062000449816200041e565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200049f8262000454565b810181811067ffffffffffffffff82111715620004c157620004c062000465565b5b80604052505050565b6000620004d6620003d6565b9050620004e4828262000494565b919050565b600067ffffffffffffffff82111562000507576200050662000465565b5b602082029050602081019050919050565b600080fd5b6000620005346200052e84620004e9565b620004ca565b905080838252602082019050602084028301858111156200055a576200055962000518565b5b835b8181101562000587578062000572888262000438565b8452602084019350506020810190506200055c565b5050509392505050565b600082601f830112620005a957620005a86200044f565b5b8151620005bb8482602086016200051d565b91505092915050565b600067ffffffffffffffff821115620005e257620005e162000465565b5b602082029050602081019050919050565b6000819050919050565b6200060881620005f3565b81146200061457600080fd5b50565b6000815190506200062881620005fd565b92915050565b6000620006456200063f84620005c4565b620004ca565b905080838252602082019050602084028301858111156200066b576200066a62000518565b5b835b8181101562000698578062000683888262000617565b8452602084019350506020810190506200066d565b5050509392505050565b600082601f830112620006ba57620006b96200044f565b5b8151620006cc8482602086016200062e565b91505092915050565b600080600060608486031215620006f157620006f0620003e0565b5b6000620007018682870162000438565b935050602084015167ffffffffffffffff811115620007255762000724620003e5565b5b620007338682870162000591565b925050604084015167ffffffffffffffff811115620007575762000756620003e5565b5b6200076586828701620006a2565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007da82620005f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200080f576200080e6200079e565b5b600182019050919050565b608051613a866200084460003960008181610c6101528181610fe60152611ab70152613a866000f3fe6080604052600436106102305760003560e01c80638da5cb5b1161012e578063e7e82b80116100ab578063f60a038d1161006f578063f60a038d1461082a578063f7888aec14610853578063f7db8ded14610890578063fc5ba1a4146108cd578063fd41710c146108f857610230565b8063e7e82b8014610745578063ebe2b12b1461075c578063f055cbf514610787578063f1229777146107c4578063f2fde38b1461080157610230565b8063c9a3911e116100f2578063c9a3911e14610681578063cc1a378f1461069d578063d0e63afb146106c6578063d1af0c7d146106f1578063e2c4ea9a1461071c57610230565b80638da5cb5b146105625780639159b4751461058d5780639bfd8d61146105ca5780639ce43f9014610607578063abae977f1461064457610230565b80633d18b912116101bc5780637b0a47ee116101805780637b0a47ee146104b057806380faa57d146104db5780638293744b146105065780638456cb59146105225780638980f11f1461053957610230565b80633d18b912146104225780633f4ba83a1461042c5780633febeb2c146104435780635c975abb1461046e578063715018a61461049957610230565b80631c1f78eb116102035780631c1f78eb14610329578063211dc32d146103545780632ce9aead14610391578063386a9525146103ce5780633c6b16ab146103f957610230565b80630700037d14610235578063134102d614610272578063150b7a02146102af5780631604b58e146102ec575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906128a6565b610923565b60405161026991906128ec565b60405180910390f35b34801561027e57600080fd5b50610299600480360381019061029491906128a6565b61093b565b6040516102a691906128ec565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d19190612a79565b610953565b6040516102e39190612b37565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906128a6565b610967565b6040516103209190612b6d565b60405180910390f35b34801561033557600080fd5b5061033e610987565b60405161034b91906128ec565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612b88565b6109a5565b60405161038891906128ec565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b391906128a6565b610b3f565b6040516103c591906128ec565b60405180910390f35b3480156103da57600080fd5b506103e3610b57565b6040516103f091906128ec565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190612bc8565b610b5d565b005b61042a610e50565b005b34801561043857600080fd5b50610441611084565b005b34801561044f57600080fd5b50610458611096565b60405161046591906128ec565b60405180910390f35b34801561047a57600080fd5b5061048361109c565b6040516104909190612b6d565b60405180910390f35b3480156104a557600080fd5b506104ae6110b3565b005b3480156104bc57600080fd5b506104c56110c7565b6040516104d291906128ec565b60405180910390f35b3480156104e757600080fd5b506104f06110cd565b6040516104fd91906128ec565b60405180910390f35b610520600480360381019061051b9190612cbd565b6110e7565b005b34801561052e57600080fd5b50610537611497565b005b34801561054557600080fd5b50610560600480360381019061055b9190612d19565b6114a9565b005b34801561056e57600080fd5b50610577611520565b6040516105849190612d68565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612b88565b611548565b6040516105c191906128ec565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906128a6565b61156d565b6040516105fe91906128ec565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906128a6565b611585565b60405161063b91906128ec565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612bc8565b61159d565b6040516106789190612d68565b60405180910390f35b61069b60048036038101906106969190612cbd565b6115dc565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612bc8565b611a20565b005b3480156106d257600080fd5b506106db611aaf565b6040516106e891906128ec565b60405180910390f35b3480156106fd57600080fd5b50610706611ab5565b6040516107139190612de2565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612dfd565b611ad9565b005b34801561075157600080fd5b5061075a611afb565b005b34801561076857600080fd5b50610771611c65565b60405161077e91906128ec565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a99190612b88565b611c6b565b6040516107bb91906128ec565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e691906128a6565b611c90565b6040516107f891906128ec565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906128a6565b611eb4565b005b34801561083657600080fd5b50610851600480360381019061084c91906128a6565b611f37565b005b34801561085f57600080fd5b5061087a60048036038101906108759190612b88565b611f83565b60405161088791906128ec565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190612b88565b61200a565b6040516108c491906128ec565b60405180910390f35b3480156108d957600080fd5b506108e261202f565b6040516108ef9190612d68565b60405180910390f35b34801561090457600080fd5b5061090d612055565b60405161091a91906128ec565b60405180910390f35b600d6020528060005260406000206000915090505481565b60036020528060005260406000206000915090505481565b600063150b7a0260e01b9050949350505050565b60046020528060005260406000206000915054906101000a900460ff1681565b60006109a0600a54600b5461205b90919063ffffffff16565b905090565b6000610b37600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b29670de0b6b3a7640000610b1b610a90600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a828a611c90565b61207190919063ffffffff16565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461205b90919063ffffffff16565b61208790919063ffffffff16565b61209d90919063ffffffff16565b905092915050565b60086020528060005260406000206000915090505481565b600a5481565b610b656120b3565b60005b600280549050811015610bd157610bbe60028281548110610b8c57610b8b612e50565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000612131565b8080610bc990612eae565b915050610b68565b506009544210610bfb57610bf0600a548261208790919063ffffffff16565b600b81905550610c5d565b6000610c124260095461207190919063ffffffff16565b90506000610c2b600b548361205b90919063ffffffff16565b9050610c54600a54610c46838661209d90919063ffffffff16565b61208790919063ffffffff16565b600b8190555050505b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cb89190612d68565b602060405180830381865afa158015610cd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf99190612f0b565b9050610d10600a548261208790919063ffffffff16565b600b541115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90612f95565b60405180910390fd5b60005b600280549050811015610df957426008600060028481548110610d7d57610d7c612e50565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610df190612eae565b915050610d57565b50610e0f600a544261209d90919063ffffffff16565b6009819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d82604051610e4491906128ec565b60405180910390a15050565b600260005403610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613001565b60405180910390fd5b60026000819055506011543414610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed89061306d565b60405180910390fd5b60005b600280549050811015610f4c57610f3960028281548110610f0857610f07612e50565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633612131565b8080610f4490612eae565b915050610ee4565b506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611079576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061102a33827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661230e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04868260405161107091906128ec565b60405180910390a25b506001600081905550565b61108c6120b3565b611094612394565b565b60105481565b6000600160009054906101000a900460ff16905090565b6110bb6120b3565b6110c560006123f7565b565b600b5481565b600060095442106110e0576009546110e2565b425b905090565b60026000540361112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613001565b60405180910390fd5b600260008190555081336111408282612131565b825160105461114f919061308d565b3414611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061311b565b60405180910390fd5b60008351116111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613187565b60405180910390fd5b6112278351600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461207190919063ffffffff16565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112fa8351600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461207190919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8351811015611422578473ffffffffffffffffffffffffffffffffffffffff166342842e0e30338785815181106113b7576113b6612e50565b5b60200260200101516040518463ffffffff1660e01b81526004016113dd939291906131a7565b600060405180830381600087803b1580156113f757600080fd5b505af115801561140b573d6000803e3d6000fd5b50505050808061141a90612eae565b91505061137d565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb855160405161148191906128ec565b60405180910390a3505060016000819055505050565b61149f6120b3565b6114a76124ba565b565b6114b16120b3565b6114e36114bc611520565b828473ffffffffffffffffffffffffffffffffffffffff1661230e9092919063ffffffff16565b7f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa2882826040516115149291906131de565b60405180910390a15050565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c602052816000526040600020602052806000526040600020600091509150505481565b60056020528060005260406000206000915090505481565b60076020528060005260406000206000915090505481565b600281815481106115ad57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260005403611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613001565b60405180910390fd5b600260008190555061163161251c565b813361163d8282612131565b8251600f5461164c919061308d565b341461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613253565b60405180910390fd5b60008351116116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c8906132bf565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117549061332b565b60405180910390fd5b6117b08351600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461209d90919063ffffffff16565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118838351600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461209d90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b83518110156119ab578473ffffffffffffffffffffffffffffffffffffffff166342842e0e33308785815181106119405761193f612e50565b5b60200260200101516040518463ffffffff1660e01b8152600401611966939291906131a7565b600060405180830381600087803b15801561198057600080fd5b505af1158015611994573d6000803e3d6000fd5b5050505080806119a390612eae565b915050611906565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd78551604051611a0a91906128ec565b60405180910390a3505060016000819055505050565b611a286120b3565b6009544211611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a63906133e3565b60405180910390fd5b80600a819055507ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d3600a54604051611aa491906128ec565b60405180910390a150565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b611ae16120b3565b82600f819055508160108190555080601181905550505050565b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b839061344f565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c13906134bb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611c62573d6000803e3d6000fd5b50565b60095481565b6006602052816000526040600020602052806000526040600020600091509150505481565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403611d1f57600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611eaf565b611eac611e5e600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e506064611e42600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e34670de0b6b3a7640000611e26600b54611e18600860008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e0a6110cd565b61207190919063ffffffff16565b61205b90919063ffffffff16565b61205b90919063ffffffff16565b61205b90919063ffffffff16565b61208790919063ffffffff16565b61208790919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461209d90919063ffffffff16565b90505b919050565b611ebc6120b3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f229061354d565b60405180910390fd5b611f34816123f7565b50565b611f3f6120b3565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e602052816000526040600020602052806000526040600020600091509150505481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60008183612069919061308d565b905092915050565b6000818361207f919061356d565b905092915050565b6000818361209591906135d0565b905092915050565b600081836120ab9190613601565b905092915050565b6120bb612566565b73ffffffffffffffffffffffffffffffffffffffff166120d9611520565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613681565b60405180910390fd5b565b61213a82611c90565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121856110cd565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461230a5761220682826109a5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b61238f8363a9059cbb60e01b848460405160240161232d9291906131de565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061256e565b505050565b61239c612635565b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6123e0612566565b6040516123ed9190612d68565b60405180910390a1565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124c261251c565b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612505612566565b6040516125129190612d68565b60405180910390a1565b61252461109c565b15612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906136ed565b60405180910390fd5b565b600033905090565b60006125d0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661267e9092919063ffffffff16565b905060008151111561263057808060200190518101906125f09190613739565b61262f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612626906137d8565b60405180910390fd5b5b505050565b61263d61109c565b61267c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267390613844565b60405180910390fd5b565b606061268d8484600085612696565b90509392505050565b6060824710156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906138d6565b60405180910390fd5b6126e4856127aa565b612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a90613942565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161274c91906139d3565b60006040518083038185875af1925050503d8060008114612789576040519150601f19603f3d011682016040523d82523d6000602084013e61278e565b606091505b509150915061279e8282866127cd565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606083156127dd5782905061282d565b6000835111156127f05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128249190613a2e565b60405180910390fd5b9392505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287382612848565b9050919050565b61288381612868565b811461288e57600080fd5b50565b6000813590506128a08161287a565b92915050565b6000602082840312156128bc576128bb61283e565b5b60006128ca84828501612891565b91505092915050565b6000819050919050565b6128e6816128d3565b82525050565b600060208201905061290160008301846128dd565b92915050565b612910816128d3565b811461291b57600080fd5b50565b60008135905061292d81612907565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129868261293d565b810181811067ffffffffffffffff821117156129a5576129a461294e565b5b80604052505050565b60006129b8612834565b90506129c4828261297d565b919050565b600067ffffffffffffffff8211156129e4576129e361294e565b5b6129ed8261293d565b9050602081019050919050565b82818337600083830152505050565b6000612a1c612a17846129c9565b6129ae565b905082815260208101848484011115612a3857612a37612938565b5b612a438482856129fa565b509392505050565b600082601f830112612a6057612a5f612933565b5b8135612a70848260208601612a09565b91505092915050565b60008060008060808587031215612a9357612a9261283e565b5b6000612aa187828801612891565b9450506020612ab287828801612891565b9350506040612ac38782880161291e565b925050606085013567ffffffffffffffff811115612ae457612ae3612843565b5b612af087828801612a4b565b91505092959194509250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3181612afc565b82525050565b6000602082019050612b4c6000830184612b28565b92915050565b60008115159050919050565b612b6781612b52565b82525050565b6000602082019050612b826000830184612b5e565b92915050565b60008060408385031215612b9f57612b9e61283e565b5b6000612bad85828601612891565b9250506020612bbe85828601612891565b9150509250929050565b600060208284031215612bde57612bdd61283e565b5b6000612bec8482850161291e565b91505092915050565b600067ffffffffffffffff821115612c1057612c0f61294e565b5b602082029050602081019050919050565b600080fd5b6000612c39612c3484612bf5565b6129ae565b90508083825260208201905060208402830185811115612c5c57612c5b612c21565b5b835b81811015612c855780612c71888261291e565b845260208401935050602081019050612c5e565b5050509392505050565b600082601f830112612ca457612ca3612933565b5b8135612cb4848260208601612c26565b91505092915050565b60008060408385031215612cd457612cd361283e565b5b6000612ce285828601612891565b925050602083013567ffffffffffffffff811115612d0357612d02612843565b5b612d0f85828601612c8f565b9150509250929050565b60008060408385031215612d3057612d2f61283e565b5b6000612d3e85828601612891565b9250506020612d4f8582860161291e565b9150509250929050565b612d6281612868565b82525050565b6000602082019050612d7d6000830184612d59565b92915050565b6000819050919050565b6000612da8612da3612d9e84612848565b612d83565b612848565b9050919050565b6000612dba82612d8d565b9050919050565b6000612dcc82612daf565b9050919050565b612ddc81612dc1565b82525050565b6000602082019050612df76000830184612dd3565b92915050565b600080600060608486031215612e1657612e1561283e565b5b6000612e248682870161291e565b9350506020612e358682870161291e565b9250506040612e468682870161291e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eb9826128d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eeb57612eea612e7f565b5b600182019050919050565b600081519050612f0581612907565b92915050565b600060208284031215612f2157612f2061283e565b5b6000612f2f84828501612ef6565b91505092915050565b600082825260208201905092915050565b7f50726f76696465642072657761726420746f6f20686967680000000000000000600082015250565b6000612f7f601883612f38565b9150612f8a82612f49565b602082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612feb601f83612f38565b9150612ff682612fb5565b602082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f636c61696d20666565206973206e6f7420656e6f756768000000000000000000600082015250565b6000613057601783612f38565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b6000613098826128d3565b91506130a3836128d3565b92508282026130b1816128d3565b915082820484148315176130c8576130c7612e7f565b5b5092915050565b7f776974686472617720666565206973206e6f7420656e6f756768000000000000600082015250565b6000613105601a83612f38565b9150613110826130cf565b602082019050919050565b60006020820190508181036000830152613134816130f8565b9050919050565b7f43616e6e6f742077697468647261772030206e66740000000000000000000000600082015250565b6000613171601583612f38565b915061317c8261313b565b602082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b60006060820190506131bc6000830186612d59565b6131c96020830185612d59565b6131d660408301846128dd565b949350505050565b60006040820190506131f36000830185612d59565b61320060208301846128dd565b9392505050565b7f7374616b6520666565206973206e6f7420656e6f756768000000000000000000600082015250565b600061323d601783612f38565b915061324882613207565b602082019050919050565b6000602082019050818103600083015261326c81613230565b9050919050565b7f43616e6e6f74207374616b652030206e66740000000000000000000000000000600082015250565b60006132a9601283612f38565b91506132b482613273565b602082019050919050565b600060208201905081810360008301526132d88161329c565b9050919050565b7f436f6c6c656374696f6e206973206e6f7420616c6c6f77656400000000000000600082015250565b6000613315601983612f38565b9150613320826132df565b602082019050919050565b6000602082019050818103600083015261334481613308565b9050919050565b7f50726576696f7573207265776172647320706572696f64206d7573742062652060008201527f636f6d706c657465206265666f7265206368616e67696e67207468652064757260208201527f6174696f6e20666f7220746865206e657720706572696f640000000000000000604082015250565b60006133cd605883612f38565b91506133d88261334b565b606082019050919050565b600060208201905081810360008301526133fc816133c0565b9050919050565b7f6368617267655061796565206973206e6f742073657400000000000000000000600082015250565b6000613439601683612f38565b915061344482613403565b602082019050919050565b600060208201905081810360008301526134688161342c565b9050919050565b7f6f6e6c792063686172676550617965652063616e20636c61696d206665650000600082015250565b60006134a5601e83612f38565b91506134b08261346f565b602082019050919050565b600060208201905081810360008301526134d481613498565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613537602683612f38565b9150613542826134db565b604082019050919050565b600060208201905081810360008301526135668161352a565b9050919050565b6000613578826128d3565b9150613583836128d3565b925082820390508181111561359b5761359a612e7f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135db826128d3565b91506135e6836128d3565b9250826135f6576135f56135a1565b5b828204905092915050565b600061360c826128d3565b9150613617836128d3565b925082820190508082111561362f5761362e612e7f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061366b602083612f38565b915061367682613635565b602082019050919050565b6000602082019050818103600083015261369a8161365e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006136d7601083612f38565b91506136e2826136a1565b602082019050919050565b60006020820190508181036000830152613706816136ca565b9050919050565b61371681612b52565b811461372157600080fd5b50565b6000815190506137338161370d565b92915050565b60006020828403121561374f5761374e61283e565b5b600061375d84828501613724565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006137c2602a83612f38565b91506137cd82613766565b604082019050919050565b600060208201905081810360008301526137f1816137b5565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061382e601483612f38565b9150613839826137f8565b602082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006138c0602683612f38565b91506138cb82613864565b604082019050919050565b600060208201905081810360008301526138ef816138b3565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061392c601d83612f38565b9150613937826138f6565b602082019050919050565b6000602082019050818103600083015261395b8161391f565b9050919050565b600081519050919050565b600081905092915050565b60005b8381101561399657808201518184015260208101905061397b565b60008484015250505050565b60006139ad82613962565b6139b7818561396d565b93506139c7818560208601613978565b80840191505092915050565b60006139df82846139a2565b915081905092915050565b600081519050919050565b6000613a00826139ea565b613a0a8185612f38565b9350613a1a818560208601613978565b613a238161293d565b840191505092915050565b60006020820190508181036000830152613a4881846139f5565b90509291505056fea26469706673582212205b8748a7cca4cfaef61c0180bb72d0e1a9b7d32524eb5b7912a98b71035b25a764736f6c634300081100330000000000000000000000001d509129ffdb34ddab8f07c3d442102464515886000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cbb5d78e3042c7e079342fc0bfe1bc2b04522f11000000000000000000000000083fa144084a1b062157578e58f4ad4bc2154861000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000032
Deployed ByteCode Sourcemap
41487:8895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42369:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41771:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49760:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41828:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44481:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44160:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42091:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42187:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47350:946;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46782:504;;;:::i;:::-;;49068:67;;;;;;;;;;;;;:::i;:::-;;42562:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5387:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2888:103;;;;;;;;;;;;;:::i;:::-;;42233:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43419:155;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46074:700;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48997:63;;;;;;;;;;;;;:::i;:::-;;48411:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2240:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42271:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41886:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42029:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41728:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45285:781;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48629:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42519:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41685;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44657:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44970:253;;;;;;;;;;;;;:::i;:::-;;42149:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41941:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43582:570;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3146:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44864:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43250:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42418:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42651:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42608:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42369:42;;;;;;;;;;;;;;;;;:::o;41771:50::-;;;;;;;;;;;;;;;;;:::o;49760:192::-;49877:6;49903:41;;;49896:48;;49760:192;;;;;;:::o;41828:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;44481:121::-;44536:7;44563:31;44578:15;;44563:10;;:14;;:31;;;;:::i;:::-;44556:38;;44481:121;:::o;44160:313::-;44234:7;44261:204;44448:7;:16;44456:7;44448:16;;;;;;;;;;;;;;;;44261:172;44428:4;44261:152;44323:89;44354:36;:48;44391:10;44354:48;;;;;;;;;;;;;;;:57;44403:7;44354:57;;;;;;;;;;;;;;;;44323:26;44338:10;44323:14;:26::i;:::-;:30;;:89;;;;:::i;:::-;44261:26;:38;44288:10;44261:38;;;;;;;;;;;;;;;:47;44300:7;44261:47;;;;;;;;;;;;;;;;:61;;:152;;;;:::i;:::-;:166;;:172;;;;:::i;:::-;:186;;:204;;;;:::i;:::-;44254:211;;44160:313;;;;:::o;42091:49::-;;;;;;;;;;;;;;;;;:::o;42187:39::-;;;;:::o;47350:946::-;2126:13;:11;:13::i;:::-;47429:9:::1;47424:133;47448:19;:26;;;;47444:1;:30;47424:133;;;47496:49;47510:19;47530:1;47510:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47542:1;47496:13;:49::i;:::-;47476:3;;;;;:::i;:::-;;;;47424:133;;;;47590:12;;47571:15;:31;47567:318;;47632:27;47643:15;;47632:6;:10;;:27;;;;:::i;:::-;47619:10;:40;;;;47567:318;;;47692:17;47712:33;47729:15;47712:12;;:16;;:33;;;;:::i;:::-;47692:53;;47760:16;47779:25;47793:10;;47779:9;:13;;:25;;;;:::i;:::-;47760:44;;47832:41;47857:15;;47832:20;47843:8;47832:6;:10;;:20;;;;:::i;:::-;:24;;:41;;;;:::i;:::-;47819:10;:54;;;;47677:208;;47567:318;47897:12;47912;:22;;;47943:4;47912:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47897:52;;47982:28;47994:15;;47982:7;:11;;:28;;;;:::i;:::-;47968:10;;:42;;47960:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48057:9;48052:140;48076:19;:26;;;;48072:1;:30;48052:140;;;48165:15;48124:14;:38;48139:19;48159:1;48139:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48124:38;;;;;;;;;;;;;;;:56;;;;48104:3;;;;;:::i;:::-;;;;48052:140;;;;48217:36;48237:15;;48217;:19;;:36;;;;:::i;:::-;48202:12;:51;;;;48269:19;48281:6;48269:19;;;;;;:::i;:::-;;;;;;;;47413:883;47350:946:::0;:::o;46782:504::-;8192:1;8790:7;;:19;8782:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8192:1;8923:7;:18;;;;46863:11:::1;;46850:9;:24;46842:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46918:9;46913:133;46937:19;:26;;;;46933:1;:30;46913:133;;;46985:49;46999:19;47019:1;46999:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47023:10;46985:13;:49::i;:::-;46965:3;;;;;:::i;:::-;;;;46913:133;;;;47056:14;47073:7;:19;47081:10;47073:19;;;;;;;;;;;;;;;;47056:36;;47116:1;47107:6;:10;47103:176;;;47156:1;47134:7;:19;47142:10;47134:19;;;;;;;;;;;;;;;:23;;;;47172:45;47198:10;47210:6;47172:12;:25;;;;:45;;;;;:::i;:::-;47248:10;47237:30;;;47260:6;47237:30;;;;;;:::i;:::-;;;;;;;;47103:176;46831:455;8148:1:::0;9102:7;:22;;;;46782:504::o;49068:67::-;2126:13;:11;:13::i;:::-;49117:10:::1;:8;:10::i;:::-;49068:67::o:0;42562:39::-;;;;:::o;5387:86::-;5434:4;5458:7;;;;;;;;;;;5451:14;;5387:86;:::o;2888:103::-;2126:13;:11;:13::i;:::-;2953:30:::1;2980:1;2953:18;:30::i;:::-;2888:103::o:0;42233:29::-;;;;:::o;43419:155::-;43476:7;43521:12;;43503:15;:30;:63;;43554:12;;43503:63;;;43536:15;43503:63;43496:70;;43419:155;:::o;46074:700::-;8192:1;8790:7;;:19;8782:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8192:1;8923:7;:18;;;;46175:10:::1;46187;49258:34;49272:10;49284:7;49258:13;:34::i;:::-;46248:3:::2;:10;46231:14;;:27;;;;:::i;:::-;46218:9;:40;46210:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;46321:1;46308:3;:10;:14;46300:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;46387:39;46415:3;:10;46387:11;:23;46399:10;46387:23;;;;;;;;;;;;;;;;:27;;:39;;;;:::i;:::-;46361:11;:23;46373:10;46361:23;;;;;;;;;;;;;;;:65;;;;46490:66;46545:3;:10;46490:26;:38;46517:10;46490:38;;;;;;;;;;;;;;;:50;46529:10;46490:50;;;;;;;;;;;;;;;;:54;;:66;;;;:::i;:::-;46437:26;:38;46464:10;46437:38;;;;;;;;;;;;;;;:50;46476:10;46437:50;;;;;;;;;;;;;;;:119;;;;46572:9;46567:139;46591:3;:10;46587:1;:14;46567:139;;;46631:10;46623:36;;;46668:4;46675:10;46687:3;46691:1;46687:6;;;;;;;;:::i;:::-;;;;;;;;46623:71;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;46603:3;;;;;:::i;:::-;;;;46567:139;;;;46743:10;46721:45;;46731:10;46721:45;;;46755:3;:10;46721:45;;;;;;:::i;:::-;;;;;;;;8954:1:::1;;8148::::0;9102:7;:22;;;;46074:700;;:::o;48997:63::-;2126:13;:11;:13::i;:::-;49044:8:::1;:6;:8::i;:::-;48997:63::o:0;48411:210::-;2126:13;:11;:13::i;:::-;48506:55:::1;48540:7;:5;:7::i;:::-;48549:11;48513:12;48506:33;;;;:55;;;;;:::i;:::-;48577:36;48587:12;48601:11;48577:36;;;;;;;:::i;:::-;;;;;;;;48411:210:::0;;:::o;2240:87::-;2286:7;2313:6;;;;;;;;;;2306:13;;2240:87;:::o;42271:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41886:46::-;;;;;;;;;;;;;;;;;:::o;42029:55::-;;;;;;;;;;;;;;;;;:::o;41728:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45285:781::-;8192:1;8790:7;;:19;8782:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8192:1;8923:7;:18;;;;4992:19:::1;:17;:19::i;:::-;45399:10:::2;45411;49258:34;49272:10;49284:7;49258:13;:34::i;:::-;45469:3:::3;:10;45455:11;;:24;;;;:::i;:::-;45442:9;:37;45434:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45539:1;45526:3;:10;:14;45518:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;45582:19;:31;45602:10;45582:31;;;;;;;;;;;;;;;;;;;;;;;;;45574:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45682:39;45710:3;:10;45682:11;:23;45694:10;45682:23;;;;;;;;;;;;;;;;:27;;:39;;;;:::i;:::-;45656:11;:23;45668:10;45656:23;;;;;;;;;;;;;;;:65;;;;45785:66;45840:3;:10;45785:26;:38;45812:10;45785:38;;;;;;;;;;;;;;;:50;45824:10;45785:50;;;;;;;;;;;;;;;;:54;;:66;;;;:::i;:::-;45732:26;:38;45759:10;45732:38;;;;;;;;;;;;;;;:50;45771:10;45732:50;;;;;;;;;;;;;;;:119;;;;45867:9;45862:139;45886:3;:10;45882:1;:14;45862:139;;;45926:10;45918:36;;;45955:10;45975:4;45982:3;45986:1;45982:6;;;;;;;;:::i;:::-;;;;;;;;45918:71;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;45898:3;;;;;:::i;:::-;;;;45862:139;;;;46035:10;46016:42;;46023:10;46016:42;;;46047:3;:10;46016:42;;;;;;:::i;:::-;;;;;;;;5022:1:::2;;8148::::0;9102:7;:22;;;;45285:781;;:::o;48629:360::-;2126:13;:11;:13::i;:::-;48753:12:::1;;48735:15;:30;48713:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;48910:16;48892:15;:34;;;;48942:39;48965:15;;48942:39;;;;;;:::i;:::-;;;;;;;;48629:360:::0;:::o;42519:36::-;;;;:::o;41685:::-;;;:::o;44657:199::-;2126:13;:11;:13::i;:::-;44774:6:::1;44760:11;:20;;;;44808:9;44791:14;:26;;;;44842:6;44828:11;:20;;;;44657:199:::0;;;:::o;44970:253::-;45045:1;45022:25;;:11;;;;;;;;;;;:25;;;45014:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;45107:11;;;;;;;;;;;45093:25;;:10;:25;;;45085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45172:10;45164:28;;:51;45193:21;45164:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44970:253::o;42149:31::-;;;;:::o;41941:81::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43582:570::-;43647:7;43698:1;43671:11;:23;43683:10;43671:23;;;;;;;;;;;;;;;;:28;43667:100;;43723:20;:32;43744:10;43723:32;;;;;;;;;;;;;;;;43716:39;;;;43667:100;43797:347;43866:263;44105:11;:23;44117:10;44105:23;;;;;;;;;;;;;;;;43866:216;44078:3;43866:189;44027:15;:27;44043:10;44027:27;;;;;;;;;;;;;;;;43866:138;43999:4;43866:110;43965:10;;43866:76;43915:14;:26;43930:10;43915:26;;;;;;;;;;;;;;;;43866;:24;:26::i;:::-;:48;;:76;;;;:::i;:::-;:98;;:110;;;;:::i;:::-;:132;;:138;;;;:::i;:::-;:160;;:189;;;;:::i;:::-;:211;;:216;;;;:::i;:::-;:238;;:263;;;;:::i;:::-;43797:20;:32;43818:10;43797:32;;;;;;;;;;;;;;;;:50;;:347;;;;:::i;:::-;43777:367;;43582:570;;;;:::o;3146:201::-;2126:13;:11;:13::i;:::-;3255:1:::1;3235:22;;:8;:22;;::::0;3227:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3311:28;3330:8;3311:18;:28::i;:::-;3146:201:::0;:::o;44864:98::-;2126:13;:11;:13::i;:::-;44948:6:::1;44934:11;;:20;;;;;;;;;;;;;;;;;;44864:98:::0;:::o;43250:161::-;43329:7;43356:26;:38;43383:10;43356:38;;;;;;;;;;;;;;;:47;43395:7;43356:47;;;;;;;;;;;;;;;;43349:54;;43250:161;;;;:::o;42418:80::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42651:26::-;;;;;;;;;;;;;:::o;42608:36::-;;;;:::o;12764:98::-;12822:7;12853:1;12849;:5;;;;:::i;:::-;12842:12;;12764:98;;;;:::o;12407:::-;12465:7;12496:1;12492;:5;;;;:::i;:::-;12485:12;;12407:98;;;;:::o;13163:::-;13221:7;13252:1;13248;:5;;;;:::i;:::-;13241:12;;13163:98;;;;:::o;12026:::-;12084:7;12115:1;12111;:5;;;;:::i;:::-;12104:12;;12026:98;;;;:::o;2405:132::-;2480:12;:10;:12::i;:::-;2469:23;;:7;:5;:7::i;:::-;:23;;;2461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2405:132::o;49320:432::-;49435:26;49450:10;49435:14;:26::i;:::-;49400:20;:32;49421:10;49400:32;;;;;;;;;;;;;;;:61;;;;49501:26;:24;:26::i;:::-;49472:14;:26;49487:10;49472:26;;;;;;;;;;;;;;;:55;;;;49561:1;49542:21;;:7;:21;;;49538:207;;49599:27;49606:10;49618:7;49599:6;:27::i;:::-;49580:7;:16;49588:7;49580:16;;;;;;;;;;;;;;;:46;;;;49701:20;:32;49722:10;49701:32;;;;;;;;;;;;;;;;49641:36;:48;49678:10;49641:48;;;;;;;;;;;;;;;:57;49690:7;49641:57;;;;;;;;;;;;;;;:92;;;;49538:207;49320:432;;:::o;37620:211::-;37737:86;37757:5;37787:23;;;37812:2;37816:5;37764:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37737:19;:86::i;:::-;37620:211;;;:::o;6242:120::-;5251:16;:14;:16::i;:::-;6311:5:::1;6301:7;;:15;;;;;;;;;;;;;;;;;;6332:22;6341:12;:10;:12::i;:::-;6332:22;;;;;;:::i;:::-;;;;;;;;6242:120::o:0;3507:191::-;3581:16;3600:6;;;;;;;;;;3581:25;;3626:8;3617:6;;:17;;;;;;;;;;;;;;;;;;3681:8;3650:40;;3671:8;3650:40;;;;;;;;;;;;3570:128;3507:191;:::o;5983:118::-;4992:19;:17;:19::i;:::-;6053:4:::1;6043:7:::0;::::1;:14;;;;;;;;;;;;;;;;;;6073:20;6080:12;:10;:12::i;:::-;6073:20;;;;;;:::i;:::-;;;;;;;;5983:118::o:0;5546:108::-;5617:8;:6;:8::i;:::-;5616:9;5608:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5546:108::o;782:98::-;835:7;862:10;855:17;;782:98;:::o;40687:716::-;41111:23;41137:69;41165:4;41137:69;;;;;;;;;;;;;;;;;41145:5;41137:27;;;;:69;;;;;:::i;:::-;41111:95;;41241:1;41221:10;:17;:21;41217:179;;;41318:10;41307:30;;;;;;;;;;;;:::i;:::-;41299:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41217:179;40757:646;40687:716;;:::o;5731:108::-;5798:8;:6;:8::i;:::-;5790:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5731:108::o;29946:229::-;30083:12;30115:52;30137:6;30145:4;30151:1;30154:12;30115:21;:52::i;:::-;30108:59;;29946:229;;;;;:::o;31066:510::-;31236:12;31294:5;31269:21;:30;;31261:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31361:18;31372:6;31361:10;:18::i;:::-;31353:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;31427:12;31441:23;31468:6;:11;;31487:5;31494:4;31468:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31426:73;;;;31517:51;31534:7;31543:10;31555:12;31517:16;:51::i;:::-;31510:58;;;;31066:510;;;;;;:::o;27201:326::-;27261:4;27518:1;27496:7;:19;;;:23;27489:30;;27201:326;;;:::o;33752:762::-;33902:12;33931:7;33927:580;;;33962:10;33955:17;;;;33927:580;34096:1;34076:10;:17;:21;34072:424;;;34324:10;34318:17;34385:15;34372:10;34368:2;34364:19;34357:44;34072:424;34467:12;34460:20;;;;;;;;;;;:::i;:::-;;;;;;;;33752:762;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:117::-;1993:1;1990;1983:12;2007:117;2116:1;2113;2106:12;2130:102;2171:6;2222:2;2218:7;2213:2;2206:5;2202:14;2198:28;2188:38;;2130:102;;;:::o;2238:180::-;2286:77;2283:1;2276:88;2383:4;2380:1;2373:15;2407:4;2404:1;2397:15;2424:281;2507:27;2529:4;2507:27;:::i;:::-;2499:6;2495:40;2637:6;2625:10;2622:22;2601:18;2589:10;2586:34;2583:62;2580:88;;;2648:18;;:::i;:::-;2580:88;2688:10;2684:2;2677:22;2467:238;2424:281;;:::o;2711:129::-;2745:6;2772:20;;:::i;:::-;2762:30;;2801:33;2829:4;2821:6;2801:33;:::i;:::-;2711:129;;;:::o;2846:307::-;2907:4;2997:18;2989:6;2986:30;2983:56;;;3019:18;;:::i;:::-;2983:56;3057:29;3079:6;3057:29;:::i;:::-;3049:37;;3141:4;3135;3131:15;3123:23;;2846:307;;;:::o;3159:146::-;3256:6;3251:3;3246;3233:30;3297:1;3288:6;3283:3;3279:16;3272:27;3159:146;;;:::o;3311:423::-;3388:5;3413:65;3429:48;3470:6;3429:48;:::i;:::-;3413:65;:::i;:::-;3404:74;;3501:6;3494:5;3487:21;3539:4;3532:5;3528:16;3577:3;3568:6;3563:3;3559:16;3556:25;3553:112;;;3584:79;;:::i;:::-;3553:112;3674:54;3721:6;3716:3;3711;3674:54;:::i;:::-;3394:340;3311:423;;;;;:::o;3753:338::-;3808:5;3857:3;3850:4;3842:6;3838:17;3834:27;3824:122;;3865:79;;:::i;:::-;3824:122;3982:6;3969:20;4007:78;4081:3;4073:6;4066:4;4058:6;4054:17;4007:78;:::i;:::-;3998:87;;3814:277;3753:338;;;;:::o;4097:943::-;4192:6;4200;4208;4216;4265:3;4253:9;4244:7;4240:23;4236:33;4233:120;;;4272:79;;:::i;:::-;4233:120;4392:1;4417:53;4462:7;4453:6;4442:9;4438:22;4417:53;:::i;:::-;4407:63;;4363:117;4519:2;4545:53;4590:7;4581:6;4570:9;4566:22;4545:53;:::i;:::-;4535:63;;4490:118;4647:2;4673:53;4718:7;4709:6;4698:9;4694:22;4673:53;:::i;:::-;4663:63;;4618:118;4803:2;4792:9;4788:18;4775:32;4834:18;4826:6;4823:30;4820:117;;;4856:79;;:::i;:::-;4820:117;4961:62;5015:7;5006:6;4995:9;4991:22;4961:62;:::i;:::-;4951:72;;4746:287;4097:943;;;;;;;:::o;5046:149::-;5082:7;5122:66;5115:5;5111:78;5100:89;;5046:149;;;:::o;5201:115::-;5286:23;5303:5;5286:23;:::i;:::-;5281:3;5274:36;5201:115;;:::o;5322:218::-;5413:4;5451:2;5440:9;5436:18;5428:26;;5464:69;5530:1;5519:9;5515:17;5506:6;5464:69;:::i;:::-;5322:218;;;;:::o;5546:90::-;5580:7;5623:5;5616:13;5609:21;5598:32;;5546:90;;;:::o;5642:109::-;5723:21;5738:5;5723:21;:::i;:::-;5718:3;5711:34;5642:109;;:::o;5757:210::-;5844:4;5882:2;5871:9;5867:18;5859:26;;5895:65;5957:1;5946:9;5942:17;5933:6;5895:65;:::i;:::-;5757:210;;;;:::o;5973:474::-;6041:6;6049;6098:2;6086:9;6077:7;6073:23;6069:32;6066:119;;;6104:79;;:::i;:::-;6066:119;6224:1;6249:53;6294:7;6285:6;6274:9;6270:22;6249:53;:::i;:::-;6239:63;;6195:117;6351:2;6377:53;6422:7;6413:6;6402:9;6398:22;6377:53;:::i;:::-;6367:63;;6322:118;5973:474;;;;;:::o;6453:329::-;6512:6;6561:2;6549:9;6540:7;6536:23;6532:32;6529:119;;;6567:79;;:::i;:::-;6529:119;6687:1;6712:53;6757:7;6748:6;6737:9;6733:22;6712:53;:::i;:::-;6702:63;;6658:117;6453:329;;;;:::o;6788:311::-;6865:4;6955:18;6947:6;6944:30;6941:56;;;6977:18;;:::i;:::-;6941:56;7027:4;7019:6;7015:17;7007:25;;7087:4;7081;7077:15;7069:23;;6788:311;;;:::o;7105:117::-;7214:1;7211;7204:12;7245:710;7341:5;7366:81;7382:64;7439:6;7382:64;:::i;:::-;7366:81;:::i;:::-;7357:90;;7467:5;7496:6;7489:5;7482:21;7530:4;7523:5;7519:16;7512:23;;7583:4;7575:6;7571:17;7563:6;7559:30;7612:3;7604:6;7601:15;7598:122;;;7631:79;;:::i;:::-;7598:122;7746:6;7729:220;7763:6;7758:3;7755:15;7729:220;;;7838:3;7867:37;7900:3;7888:10;7867:37;:::i;:::-;7862:3;7855:50;7934:4;7929:3;7925:14;7918:21;;7805:144;7789:4;7784:3;7780:14;7773:21;;7729:220;;;7733:21;7347:608;;7245:710;;;;;:::o;7978:370::-;8049:5;8098:3;8091:4;8083:6;8079:17;8075:27;8065:122;;8106:79;;:::i;:::-;8065:122;8223:6;8210:20;8248:94;8338:3;8330:6;8323:4;8315:6;8311:17;8248:94;:::i;:::-;8239:103;;8055:293;7978:370;;;;:::o;8354:684::-;8447:6;8455;8504:2;8492:9;8483:7;8479:23;8475:32;8472:119;;;8510:79;;:::i;:::-;8472:119;8630:1;8655:53;8700:7;8691:6;8680:9;8676:22;8655:53;:::i;:::-;8645:63;;8601:117;8785:2;8774:9;8770:18;8757:32;8816:18;8808:6;8805:30;8802:117;;;8838:79;;:::i;:::-;8802:117;8943:78;9013:7;9004:6;8993:9;8989:22;8943:78;:::i;:::-;8933:88;;8728:303;8354:684;;;;;:::o;9044:474::-;9112:6;9120;9169:2;9157:9;9148:7;9144:23;9140:32;9137:119;;;9175:79;;:::i;:::-;9137:119;9295:1;9320:53;9365:7;9356:6;9345:9;9341:22;9320:53;:::i;:::-;9310:63;;9266:117;9422:2;9448:53;9493:7;9484:6;9473:9;9469:22;9448:53;:::i;:::-;9438:63;;9393:118;9044:474;;;;;:::o;9524:118::-;9611:24;9629:5;9611:24;:::i;:::-;9606:3;9599:37;9524:118;;:::o;9648:222::-;9741:4;9779:2;9768:9;9764:18;9756:26;;9792:71;9860:1;9849:9;9845:17;9836:6;9792:71;:::i;:::-;9648:222;;;;:::o;9876:60::-;9904:3;9925:5;9918:12;;9876:60;;;:::o;9942:142::-;9992:9;10025:53;10043:34;10052:24;10070:5;10052:24;:::i;:::-;10043:34;:::i;:::-;10025:53;:::i;:::-;10012:66;;9942:142;;;:::o;10090:126::-;10140:9;10173:37;10204:5;10173:37;:::i;:::-;10160:50;;10090:126;;;:::o;10222:140::-;10286:9;10319:37;10350:5;10319:37;:::i;:::-;10306:50;;10222:140;;;:::o;10368:159::-;10469:51;10514:5;10469:51;:::i;:::-;10464:3;10457:64;10368:159;;:::o;10533:250::-;10640:4;10678:2;10667:9;10663:18;10655:26;;10691:85;10773:1;10762:9;10758:17;10749:6;10691:85;:::i;:::-;10533:250;;;;:::o;10789:619::-;10866:6;10874;10882;10931:2;10919:9;10910:7;10906:23;10902:32;10899:119;;;10937:79;;:::i;:::-;10899:119;11057:1;11082:53;11127:7;11118:6;11107:9;11103:22;11082:53;:::i;:::-;11072:63;;11028:117;11184:2;11210:53;11255:7;11246:6;11235:9;11231:22;11210:53;:::i;:::-;11200:63;;11155:118;11312:2;11338:53;11383:7;11374:6;11363:9;11359:22;11338:53;:::i;:::-;11328:63;;11283:118;10789:619;;;;;:::o;11414:180::-;11462:77;11459:1;11452:88;11559:4;11556:1;11549:15;11583:4;11580:1;11573:15;11600:180;11648:77;11645:1;11638:88;11745:4;11742:1;11735:15;11769:4;11766:1;11759:15;11786:233;11825:3;11848:24;11866:5;11848:24;:::i;:::-;11839:33;;11894:66;11887:5;11884:77;11881:103;;11964:18;;:::i;:::-;11881:103;12011:1;12004:5;12000:13;11993:20;;11786:233;;;:::o;12025:143::-;12082:5;12113:6;12107:13;12098:22;;12129:33;12156:5;12129:33;:::i;:::-;12025:143;;;;:::o;12174:351::-;12244:6;12293:2;12281:9;12272:7;12268:23;12264:32;12261:119;;;12299:79;;:::i;:::-;12261:119;12419:1;12444:64;12500:7;12491:6;12480:9;12476:22;12444:64;:::i;:::-;12434:74;;12390:128;12174:351;;;;:::o;12531:169::-;12615:11;12649:6;12644:3;12637:19;12689:4;12684:3;12680:14;12665:29;;12531:169;;;;:::o;12706:174::-;12846:26;12842:1;12834:6;12830:14;12823:50;12706:174;:::o;12886:366::-;13028:3;13049:67;13113:2;13108:3;13049:67;:::i;:::-;13042:74;;13125:93;13214:3;13125:93;:::i;:::-;13243:2;13238:3;13234:12;13227:19;;12886:366;;;:::o;13258:419::-;13424:4;13462:2;13451:9;13447:18;13439:26;;13511:9;13505:4;13501:20;13497:1;13486:9;13482:17;13475:47;13539:131;13665:4;13539:131;:::i;:::-;13531:139;;13258:419;;;:::o;13683:181::-;13823:33;13819:1;13811:6;13807:14;13800:57;13683:181;:::o;13870:366::-;14012:3;14033:67;14097:2;14092:3;14033:67;:::i;:::-;14026:74;;14109:93;14198:3;14109:93;:::i;:::-;14227:2;14222:3;14218:12;14211:19;;13870:366;;;:::o;14242:419::-;14408:4;14446:2;14435:9;14431:18;14423:26;;14495:9;14489:4;14485:20;14481:1;14470:9;14466:17;14459:47;14523:131;14649:4;14523:131;:::i;:::-;14515:139;;14242:419;;;:::o;14667:173::-;14807:25;14803:1;14795:6;14791:14;14784:49;14667:173;:::o;14846:366::-;14988:3;15009:67;15073:2;15068:3;15009:67;:::i;:::-;15002:74;;15085:93;15174:3;15085:93;:::i;:::-;15203:2;15198:3;15194:12;15187:19;;14846:366;;;:::o;15218:419::-;15384:4;15422:2;15411:9;15407:18;15399:26;;15471:9;15465:4;15461:20;15457:1;15446:9;15442:17;15435:47;15499:131;15625:4;15499:131;:::i;:::-;15491:139;;15218:419;;;:::o;15643:410::-;15683:7;15706:20;15724:1;15706:20;:::i;:::-;15701:25;;15740:20;15758:1;15740:20;:::i;:::-;15735:25;;15795:1;15792;15788:9;15817:30;15835:11;15817:30;:::i;:::-;15806:41;;15996:1;15987:7;15983:15;15980:1;15977:22;15957:1;15950:9;15930:83;15907:139;;16026:18;;:::i;:::-;15907:139;15691:362;15643:410;;;;:::o;16059:176::-;16199:28;16195:1;16187:6;16183:14;16176:52;16059:176;:::o;16241:366::-;16383:3;16404:67;16468:2;16463:3;16404:67;:::i;:::-;16397:74;;16480:93;16569:3;16480:93;:::i;:::-;16598:2;16593:3;16589:12;16582:19;;16241:366;;;:::o;16613:419::-;16779:4;16817:2;16806:9;16802:18;16794:26;;16866:9;16860:4;16856:20;16852:1;16841:9;16837:17;16830:47;16894:131;17020:4;16894:131;:::i;:::-;16886:139;;16613:419;;;:::o;17038:171::-;17178:23;17174:1;17166:6;17162:14;17155:47;17038:171;:::o;17215:366::-;17357:3;17378:67;17442:2;17437:3;17378:67;:::i;:::-;17371:74;;17454:93;17543:3;17454:93;:::i;:::-;17572:2;17567:3;17563:12;17556:19;;17215:366;;;:::o;17587:419::-;17753:4;17791:2;17780:9;17776:18;17768:26;;17840:9;17834:4;17830:20;17826:1;17815:9;17811:17;17804:47;17868:131;17994:4;17868:131;:::i;:::-;17860:139;;17587:419;;;:::o;18012:442::-;18161:4;18199:2;18188:9;18184:18;18176:26;;18212:71;18280:1;18269:9;18265:17;18256:6;18212:71;:::i;:::-;18293:72;18361:2;18350:9;18346:18;18337:6;18293:72;:::i;:::-;18375;18443:2;18432:9;18428:18;18419:6;18375:72;:::i;:::-;18012:442;;;;;;:::o;18460:332::-;18581:4;18619:2;18608:9;18604:18;18596:26;;18632:71;18700:1;18689:9;18685:17;18676:6;18632:71;:::i;:::-;18713:72;18781:2;18770:9;18766:18;18757:6;18713:72;:::i;:::-;18460:332;;;;;:::o;18798:173::-;18938:25;18934:1;18926:6;18922:14;18915:49;18798:173;:::o;18977:366::-;19119:3;19140:67;19204:2;19199:3;19140:67;:::i;:::-;19133:74;;19216:93;19305:3;19216:93;:::i;:::-;19334:2;19329:3;19325:12;19318:19;;18977:366;;;:::o;19349:419::-;19515:4;19553:2;19542:9;19538:18;19530:26;;19602:9;19596:4;19592:20;19588:1;19577:9;19573:17;19566:47;19630:131;19756:4;19630:131;:::i;:::-;19622:139;;19349:419;;;:::o;19774:168::-;19914:20;19910:1;19902:6;19898:14;19891:44;19774:168;:::o;19948:366::-;20090:3;20111:67;20175:2;20170:3;20111:67;:::i;:::-;20104:74;;20187:93;20276:3;20187:93;:::i;:::-;20305:2;20300:3;20296:12;20289:19;;19948:366;;;:::o;20320:419::-;20486:4;20524:2;20513:9;20509:18;20501:26;;20573:9;20567:4;20563:20;20559:1;20548:9;20544:17;20537:47;20601:131;20727:4;20601:131;:::i;:::-;20593:139;;20320:419;;;:::o;20745:175::-;20885:27;20881:1;20873:6;20869:14;20862:51;20745:175;:::o;20926:366::-;21068:3;21089:67;21153:2;21148:3;21089:67;:::i;:::-;21082:74;;21165:93;21254:3;21165:93;:::i;:::-;21283:2;21278:3;21274:12;21267:19;;20926:366;;;:::o;21298:419::-;21464:4;21502:2;21491:9;21487:18;21479:26;;21551:9;21545:4;21541:20;21537:1;21526:9;21522:17;21515:47;21579:131;21705:4;21579:131;:::i;:::-;21571:139;;21298:419;;;:::o;21723:312::-;21863:34;21859:1;21851:6;21847:14;21840:58;21932:34;21927:2;21919:6;21915:15;21908:59;22001:26;21996:2;21988:6;21984:15;21977:51;21723:312;:::o;22041:366::-;22183:3;22204:67;22268:2;22263:3;22204:67;:::i;:::-;22197:74;;22280:93;22369:3;22280:93;:::i;:::-;22398:2;22393:3;22389:12;22382:19;;22041:366;;;:::o;22413:419::-;22579:4;22617:2;22606:9;22602:18;22594:26;;22666:9;22660:4;22656:20;22652:1;22641:9;22637:17;22630:47;22694:131;22820:4;22694:131;:::i;:::-;22686:139;;22413:419;;;:::o;22838:172::-;22978:24;22974:1;22966:6;22962:14;22955:48;22838:172;:::o;23016:366::-;23158:3;23179:67;23243:2;23238:3;23179:67;:::i;:::-;23172:74;;23255:93;23344:3;23255:93;:::i;:::-;23373:2;23368:3;23364:12;23357:19;;23016:366;;;:::o;23388:419::-;23554:4;23592:2;23581:9;23577:18;23569:26;;23641:9;23635:4;23631:20;23627:1;23616:9;23612:17;23605:47;23669:131;23795:4;23669:131;:::i;:::-;23661:139;;23388:419;;;:::o;23813:180::-;23953:32;23949:1;23941:6;23937:14;23930:56;23813:180;:::o;23999:366::-;24141:3;24162:67;24226:2;24221:3;24162:67;:::i;:::-;24155:74;;24238:93;24327:3;24238:93;:::i;:::-;24356:2;24351:3;24347:12;24340:19;;23999:366;;;:::o;24371:419::-;24537:4;24575:2;24564:9;24560:18;24552:26;;24624:9;24618:4;24614:20;24610:1;24599:9;24595:17;24588:47;24652:131;24778:4;24652:131;:::i;:::-;24644:139;;24371:419;;;:::o;24796:225::-;24936:34;24932:1;24924:6;24920:14;24913:58;25005:8;25000:2;24992:6;24988:15;24981:33;24796:225;:::o;25027:366::-;25169:3;25190:67;25254:2;25249:3;25190:67;:::i;:::-;25183:74;;25266:93;25355:3;25266:93;:::i;:::-;25384:2;25379:3;25375:12;25368:19;;25027:366;;;:::o;25399:419::-;25565:4;25603:2;25592:9;25588:18;25580:26;;25652:9;25646:4;25642:20;25638:1;25627:9;25623:17;25616:47;25680:131;25806:4;25680:131;:::i;:::-;25672:139;;25399:419;;;:::o;25824:194::-;25864:4;25884:20;25902:1;25884:20;:::i;:::-;25879:25;;25918:20;25936:1;25918:20;:::i;:::-;25913:25;;25962:1;25959;25955:9;25947:17;;25986:1;25980:4;25977:11;25974:37;;;25991:18;;:::i;:::-;25974:37;25824:194;;;;:::o;26024:180::-;26072:77;26069:1;26062:88;26169:4;26166:1;26159:15;26193:4;26190:1;26183:15;26210:185;26250:1;26267:20;26285:1;26267:20;:::i;:::-;26262:25;;26301:20;26319:1;26301:20;:::i;:::-;26296:25;;26340:1;26330:35;;26345:18;;:::i;:::-;26330:35;26387:1;26384;26380:9;26375:14;;26210:185;;;;:::o;26401:191::-;26441:3;26460:20;26478:1;26460:20;:::i;:::-;26455:25;;26494:20;26512:1;26494:20;:::i;:::-;26489:25;;26537:1;26534;26530:9;26523:16;;26558:3;26555:1;26552:10;26549:36;;;26565:18;;:::i;:::-;26549:36;26401:191;;;;:::o;26598:182::-;26738:34;26734:1;26726:6;26722:14;26715:58;26598:182;:::o;26786:366::-;26928:3;26949:67;27013:2;27008:3;26949:67;:::i;:::-;26942:74;;27025:93;27114:3;27025:93;:::i;:::-;27143:2;27138:3;27134:12;27127:19;;26786:366;;;:::o;27158:419::-;27324:4;27362:2;27351:9;27347:18;27339:26;;27411:9;27405:4;27401:20;27397:1;27386:9;27382:17;27375:47;27439:131;27565:4;27439:131;:::i;:::-;27431:139;;27158:419;;;:::o;27583:166::-;27723:18;27719:1;27711:6;27707:14;27700:42;27583:166;:::o;27755:366::-;27897:3;27918:67;27982:2;27977:3;27918:67;:::i;:::-;27911:74;;27994:93;28083:3;27994:93;:::i;:::-;28112:2;28107:3;28103:12;28096:19;;27755:366;;;:::o;28127:419::-;28293:4;28331:2;28320:9;28316:18;28308:26;;28380:9;28374:4;28370:20;28366:1;28355:9;28351:17;28344:47;28408:131;28534:4;28408:131;:::i;:::-;28400:139;;28127:419;;;:::o;28552:116::-;28622:21;28637:5;28622:21;:::i;:::-;28615:5;28612:32;28602:60;;28658:1;28655;28648:12;28602:60;28552:116;:::o;28674:137::-;28728:5;28759:6;28753:13;28744:22;;28775:30;28799:5;28775:30;:::i;:::-;28674:137;;;;:::o;28817:345::-;28884:6;28933:2;28921:9;28912:7;28908:23;28904:32;28901:119;;;28939:79;;:::i;:::-;28901:119;29059:1;29084:61;29137:7;29128:6;29117:9;29113:22;29084:61;:::i;:::-;29074:71;;29030:125;28817:345;;;;:::o;29168:229::-;29308:34;29304:1;29296:6;29292:14;29285:58;29377:12;29372:2;29364:6;29360:15;29353:37;29168:229;:::o;29403:366::-;29545:3;29566:67;29630:2;29625:3;29566:67;:::i;:::-;29559:74;;29642:93;29731:3;29642:93;:::i;:::-;29760:2;29755:3;29751:12;29744:19;;29403:366;;;:::o;29775:419::-;29941:4;29979:2;29968:9;29964:18;29956:26;;30028:9;30022:4;30018:20;30014:1;30003:9;29999:17;29992:47;30056:131;30182:4;30056:131;:::i;:::-;30048:139;;29775:419;;;:::o;30200:170::-;30340:22;30336:1;30328:6;30324:14;30317:46;30200:170;:::o;30376:366::-;30518:3;30539:67;30603:2;30598:3;30539:67;:::i;:::-;30532:74;;30615:93;30704:3;30615:93;:::i;:::-;30733:2;30728:3;30724:12;30717:19;;30376:366;;;:::o;30748:419::-;30914:4;30952:2;30941:9;30937:18;30929:26;;31001:9;30995:4;30991:20;30987:1;30976:9;30972:17;30965:47;31029:131;31155:4;31029:131;:::i;:::-;31021:139;;30748:419;;;:::o;31173:225::-;31313:34;31309:1;31301:6;31297:14;31290:58;31382:8;31377:2;31369:6;31365:15;31358:33;31173:225;:::o;31404:366::-;31546:3;31567:67;31631:2;31626:3;31567:67;:::i;:::-;31560:74;;31643:93;31732:3;31643:93;:::i;:::-;31761:2;31756:3;31752:12;31745:19;;31404:366;;;:::o;31776:419::-;31942:4;31980:2;31969:9;31965:18;31957:26;;32029:9;32023:4;32019:20;32015:1;32004:9;32000:17;31993:47;32057:131;32183:4;32057:131;:::i;:::-;32049:139;;31776:419;;;:::o;32201:179::-;32341:31;32337:1;32329:6;32325:14;32318:55;32201:179;:::o;32386:366::-;32528:3;32549:67;32613:2;32608:3;32549:67;:::i;:::-;32542:74;;32625:93;32714:3;32625:93;:::i;:::-;32743:2;32738:3;32734:12;32727:19;;32386:366;;;:::o;32758:419::-;32924:4;32962:2;32951:9;32947:18;32939:26;;33011:9;33005:4;33001:20;32997:1;32986:9;32982:17;32975:47;33039:131;33165:4;33039:131;:::i;:::-;33031:139;;32758:419;;;:::o;33183:98::-;33234:6;33268:5;33262:12;33252:22;;33183:98;;;:::o;33287:147::-;33388:11;33425:3;33410:18;;33287:147;;;;:::o;33440:246::-;33521:1;33531:113;33545:6;33542:1;33539:13;33531:113;;;33630:1;33625:3;33621:11;33615:18;33611:1;33606:3;33602:11;33595:39;33567:2;33564:1;33560:10;33555:15;;33531:113;;;33678:1;33669:6;33664:3;33660:16;33653:27;33502:184;33440:246;;;:::o;33692:386::-;33796:3;33824:38;33856:5;33824:38;:::i;:::-;33878:88;33959:6;33954:3;33878:88;:::i;:::-;33871:95;;33975:65;34033:6;34028:3;34021:4;34014:5;34010:16;33975:65;:::i;:::-;34065:6;34060:3;34056:16;34049:23;;33800:278;33692:386;;;;:::o;34084:271::-;34214:3;34236:93;34325:3;34316:6;34236:93;:::i;:::-;34229:100;;34346:3;34339:10;;34084:271;;;;:::o;34361:99::-;34413:6;34447:5;34441:12;34431:22;;34361:99;;;:::o;34466:377::-;34554:3;34582:39;34615:5;34582:39;:::i;:::-;34637:71;34701:6;34696:3;34637:71;:::i;:::-;34630:78;;34717:65;34775:6;34770:3;34763:4;34756:5;34752:16;34717:65;:::i;:::-;34807:29;34829:6;34807:29;:::i;:::-;34802:3;34798:39;34791:46;;34558:285;34466:377;;;;:::o;34849:313::-;34962:4;35000:2;34989:9;34985:18;34977:26;;35049:9;35043:4;35039:20;35035:1;35024:9;35020:17;35013:47;35077:78;35150:4;35141:6;35077:78;:::i;:::-;35069:86;;34849:313;;;;:::o
Swarm Source
ipfs://5b8748a7cca4cfaef61c0180bb72d0e1a9b7d32524eb5b7912a98b71035b25a7
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.