Source Code
Latest 25 from a total of 373 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim Reward | 21036745 | 421 days ago | IN | 0 ETH | 0.00201172 | ||||
| Claim Reward | 21020945 | 423 days ago | IN | 0 ETH | 0.00083422 | ||||
| Claim Reward | 21020940 | 423 days ago | IN | 0 ETH | 0.0011771 | ||||
| Claim Reward | 21020936 | 423 days ago | IN | 0 ETH | 0.00134926 | ||||
| Claim Reward | 21020931 | 423 days ago | IN | 0 ETH | 0.00127091 | ||||
| Claim Reward | 21013362 | 424 days ago | IN | 0 ETH | 0.00094063 | ||||
| Claim Reward | 21013343 | 424 days ago | IN | 0 ETH | 0.00084376 | ||||
| Claim Reward | 21012501 | 425 days ago | IN | 0 ETH | 0.00161604 | ||||
| Claim Reward | 20983219 | 429 days ago | IN | 0 ETH | 0.00109767 | ||||
| Claim Reward | 20952764 | 433 days ago | IN | 0 ETH | 0.00141206 | ||||
| Claim Reward | 20949283 | 433 days ago | IN | 0 ETH | 0.00103976 | ||||
| Claim Reward | 20947064 | 434 days ago | IN | 0 ETH | 0.00079303 | ||||
| Claim Reward | 20941540 | 435 days ago | IN | 0 ETH | 0.00186194 | ||||
| Claim Reward | 20941465 | 435 days ago | IN | 0 ETH | 0.00165308 | ||||
| Claim Reward | 20939205 | 435 days ago | IN | 0 ETH | 0.00311965 | ||||
| Claim Reward | 20935211 | 435 days ago | IN | 0 ETH | 0.00141514 | ||||
| Claim Reward | 20933946 | 436 days ago | IN | 0 ETH | 0.00158665 | ||||
| Claim Reward | 20933941 | 436 days ago | IN | 0 ETH | 0.00168293 | ||||
| Claim Reward | 20933890 | 436 days ago | IN | 0 ETH | 0.00130434 | ||||
| Claim Reward | 20933343 | 436 days ago | IN | 0 ETH | 0.00108215 | ||||
| Claim Reward | 20926167 | 437 days ago | IN | 0 ETH | 0.00115641 | ||||
| Claim Reward | 20920925 | 437 days ago | IN | 0 ETH | 0.00220003 | ||||
| Claim Reward | 20919688 | 438 days ago | IN | 0 ETH | 0.00125528 | ||||
| Claim Reward | 20919145 | 438 days ago | IN | 0 ETH | 0.00149591 | ||||
| Claim Reward | 20912064 | 439 days ago | IN | 0 ETH | 0.00099022 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RewardPool
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable2Step.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
/**
* @title RewardPool
* @dev Contract for managing ETH and ERC20 token rewards with deposit and withdraw functionality, including signature authorization.
* It allows users to deposit ETH or ERC20 tokens into the pool and claim their rewards based on external authorization.
*/
contract RewardPool is Ownable2Step, ReentrancyGuard, Pausable {
using SafeERC20 for IERC20;
using ECDSA for bytes32;
address public authorizedSigner;
address public taxRecipient;
struct RewardInfo {
uint256 amount;
address tokenAddress;
address ownerAddress;
mapping(address => uint256) claimed;
}
mapping(string => RewardInfo) public campaignRewards;
mapping(bytes32 => bool) private usedSignatures;
mapping(address => uint256) public nonces;
event RewardDeposited(
address indexed depositor,
uint256 indexed amount,
string indexed campaignId
);
event RewardClaimed(
address indexed claimant,
uint256 indexed amount,
string indexed campaignId
);
event WithdrawRewardPool(
address indexed withdrawer,
uint256 indexed amount,
string indexed campaignId
);
constructor() Ownable(msg.sender) {
taxRecipient = msg.sender;
}
fallback() external payable {
revert();
}
receive() external payable {
revert();
}
function _verifySignature(
bytes32 messageHash,
bytes memory signature
) private view returns (bool) {
bytes32 ethSignedMessageHash = MessageHashUtils.toEthSignedMessageHash(messageHash);
if (usedSignatures[ethSignedMessageHash]) {
return false;
}
bool isValid = SignatureChecker.isValidSignatureNow(
authorizedSigner,
ethSignedMessageHash,
signature
);
return isValid;
}
function depositReward(
address tokenAddress,
string calldata campaignId,
uint256 campaignAmount,
uint256 feeAmount,
bytes calldata signature
) external nonReentrant whenNotPaused {
uint256 nonce = nonces[msg.sender]++;
bytes32 messageHash = keccak256(
abi.encodePacked(
tokenAddress,
msg.sender,
campaignId,
campaignAmount,
feeAmount,
nonce,
address(this)
)
);
bool isSignatureValid = _verifySignature(messageHash, signature);
require(isSignatureValid, "Invalid signature");
usedSignatures[MessageHashUtils.toEthSignedMessageHash(messageHash)] = true;
uint256 balanceBefore = IERC20(tokenAddress).balanceOf(address(this));
IERC20(tokenAddress).safeTransferFrom(
msg.sender,
taxRecipient,
feeAmount
);
IERC20(tokenAddress).safeTransferFrom(
msg.sender,
address(this),
campaignAmount
);
uint256 actualAmountDeposited = IERC20(tokenAddress).balanceOf(
address(this)
) - balanceBefore;
require(
actualAmountDeposited == campaignAmount,
"Actual deposit does not match expected"
);
RewardInfo storage info = campaignRewards[campaignId];
info.amount += campaignAmount;
info.tokenAddress = tokenAddress;
if (info.ownerAddress == address(0)) {
info.ownerAddress = msg.sender;
}
emit RewardDeposited(msg.sender, campaignAmount, campaignId);
}
function claimReward(
string calldata campaignId,
uint256 amount,
bytes calldata signature
) external nonReentrant whenNotPaused {
uint256 nonce = nonces[msg.sender]++;
bytes32 messageHash = keccak256(
abi.encodePacked(
msg.sender,
campaignId,
amount,
nonce,
address(this)
)
);
require(_verifySignature(messageHash, signature), "Invalid signature");
usedSignatures[MessageHashUtils.toEthSignedMessageHash(messageHash)] = true;
RewardInfo storage info = campaignRewards[campaignId];
require(amount <= info.amount, "Not enough reward in the pool");
require(
info.claimed[msg.sender] + amount <= info.amount,
"Claim amount exceeds allowed balance"
);
info.claimed[msg.sender] += amount;
info.amount -= amount;
uint256 balanceBefore = IERC20(info.tokenAddress).balanceOf(msg.sender);
IERC20(info.tokenAddress).safeTransfer(msg.sender, amount);
uint256 actualAmountTransferred = IERC20(info.tokenAddress).balanceOf(
msg.sender
) - balanceBefore;
require(
actualAmountTransferred == amount,
"Actual transfer does not match expected"
);
emit RewardClaimed(msg.sender, amount, campaignId);
}
function withdrawRewardPool(
string calldata campaignId,
uint256 amount,
bytes calldata signature
) external nonReentrant whenNotPaused {
uint256 nonce = nonces[msg.sender]++;
bytes32 messageHash = keccak256(
abi.encodePacked(
msg.sender,
campaignId,
amount,
nonce,
address(this)
)
);
require(_verifySignature(messageHash, signature), "Invalid signature");
usedSignatures[MessageHashUtils.toEthSignedMessageHash(messageHash)] = true;
RewardInfo storage info = campaignRewards[campaignId];
require(amount <= info.amount, "Not enough reward in the pool");
require(
msg.sender == info.ownerAddress,
"Only campaign creator allowed"
);
info.amount -= amount;
IERC20(info.tokenAddress).safeTransfer(msg.sender, amount);
emit WithdrawRewardPool(msg.sender, amount, campaignId);
}
function getClaimedAmount(
string calldata campaignId,
address claimant
) public view returns (uint256) {
return campaignRewards[campaignId].claimed[claimant];
}
function setTaxRecipient(address newTaxRecipient) external onlyOwner {
require(
newTaxRecipient != address(0),
"Invalid address: cannot be the zero address"
);
taxRecipient = newTaxRecipient;
}
function setAuthorizedSigner(address _signer) external onlyOwner {
require(_signer != address(0), "Invalid signer address");
authorizedSigner = _signer;
}
function pause() external onlyOwner {
_pause();
}
function unpause() external onlyOwner {
_unpause();
}
function signatureTest(
address tokenAddress,
string calldata campaignId,
uint256 campaignAmount,
uint256 nonce,
uint256 feeAmount,
bytes calldata signature
) external view returns (bool) {
bytes32 messageHash = keccak256(
abi.encodePacked(
tokenAddress,
msg.sender,
campaignId,
campaignAmount,
feeAmount,
nonce,
address(this)
)
);
bool isSignatureValid = _verifySignature(messageHash, signature);
return isSignatureValid;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.20;
import {Ownable} from "./Ownable.sol";
/**
* @dev Contract module which provides access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is specified at deployment time in the constructor for `Ownable`. This
* can later be changed with {transferOwnership} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2Step is Ownable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() public virtual {
address sender = _msgSender();
if (pendingOwner() != sender) {
revert OwnableUnauthorizedAccount(sender);
}
_transferOwnership(sender);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1271.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC1271 standard signature validation method for
* contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
*/
interface IERC1271 {
/**
* @dev Should return whether the signature provided is valid for the provided data
* @param hash Hash of the data to be signed
* @param signature Signature byte array associated with _data
*/
function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.20;
/**
* @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.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
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].
*
* CAUTION: See Security Considerations above.
*/
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";
/**
* @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;
/**
* @dev An operation with an ERC20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @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);
if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @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).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// 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 FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.20;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS
}
/**
* @dev The signature derives the `address(0)`.
*/
error ECDSAInvalidSignature();
/**
* @dev The signature has an invalid length.
*/
error ECDSAInvalidSignatureLength(uint256 length);
/**
* @dev The signature has an S value that is in the upper half order.
*/
error ECDSAInvalidSignatureS(bytes32 s);
/**
* @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
* return address(0) without also returning an error description. Errors are documented using an enum (error type)
* and a bytes32 providing additional information about the error.
*
* If no error is returned, then the address can be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
unchecked {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
// We do not check for an overflow here since the shift operation results in 0 or 1.
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError, bytes32) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS, s);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature, bytes32(0));
}
return (signer, RecoverError.NoError, bytes32(0));
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
*/
function _throwError(RecoverError error, bytes32 errorArg) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert ECDSAInvalidSignature();
} else if (error == RecoverError.InvalidSignatureLength) {
revert ECDSAInvalidSignatureLength(uint256(errorArg));
} else if (error == RecoverError.InvalidSignatureS) {
revert ECDSAInvalidSignatureS(errorArg);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)
pragma solidity ^0.8.20;
import {Strings} from "../Strings.sol";
/**
* @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
*
* The library provides methods for generating a hash of a message that conforms to the
* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
* specifications.
*/
library MessageHashUtils {
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing a bytes32 `messageHash` with
* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
* keccak256, although any bytes32 value can be safely used because the final digest will
* be re-hashed.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
}
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing an arbitrary `message` with
* `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
return
keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x00` (data with intended validator).
*
* The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
* `validator` address. Then hashing the result.
*
* See {ECDSA-recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(hex"19_00", validator, data));
}
/**
* @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
*
* The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
* `\x19\x01` and hashing the result. It corresponds to the hash signed by the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
*
* See {ECDSA-recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, hex"19_01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
digest := keccak256(ptr, 0x42)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/SignatureChecker.sol)
pragma solidity ^0.8.20;
import {ECDSA} from "./ECDSA.sol";
import {IERC1271} from "../../interfaces/IERC1271.sol";
/**
* @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
* signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like
* Argent and Safe Wallet (previously Gnosis Safe).
*/
library SignatureChecker {
/**
* @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
* signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.
*
* NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
* change through time. It could return true at block N and false at block N+1 (or the opposite).
*/
function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {
(address recovered, ECDSA.RecoverError error, ) = ECDSA.tryRecover(hash, signature);
return
(error == ECDSA.RecoverError.NoError && recovered == signer) ||
isValidERC1271SignatureNow(signer, hash, signature);
}
/**
* @dev Checks if a signature is valid for a given signer and data hash. The signature is validated
* against the signer smart contract using ERC1271.
*
* NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
* change through time. It could return true at block N and false at block N+1 (or the opposite).
*/
function isValidERC1271SignatureNow(
address signer,
bytes32 hash,
bytes memory signature
) internal view returns (bool) {
(bool success, bytes memory result) = signer.staticcall(
abi.encodeCall(IERC1271.isValidSignature, (hash, signature))
);
return (success &&
result.length >= 32 &&
abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
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.
*/
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.
*/
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.
*/
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.
*/
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 largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @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);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @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 {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)
pragma solidity ^0.8.20;
/**
* @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;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
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() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}{
"evmVersion": "paris",
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimant","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"string","name":"campaignId","type":"string"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"string","name":"campaignId","type":"string"}],"name":"RewardDeposited","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":"withdrawer","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"string","name":"campaignId","type":"string"}],"name":"WithdrawRewardPool","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"authorizedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"campaignRewards","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"ownerAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"campaignId","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"string","name":"campaignId","type":"string"},{"internalType":"uint256","name":"campaignAmount","type":"uint256"},{"internalType":"uint256","name":"feeAmount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"depositReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"campaignId","type":"string"},{"internalType":"address","name":"claimant","type":"address"}],"name":"getClaimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setAuthorizedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxRecipient","type":"address"}],"name":"setTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"string","name":"campaignId","type":"string"},{"internalType":"uint256","name":"campaignAmount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"feeAmount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"signatureTest","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"string","name":"campaignId","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"withdrawRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b5033600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000885760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200007f919062000246565b60405180910390fd5b62000099816200010460201b60201c565b5060016002819055506000600360006101000a81548160ff02191690831515021790555033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000263565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556200013a816200013d60201b60201c565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200022e8262000201565b9050919050565b620002408162000221565b82525050565b60006020820190506200025d600083018462000235565b92915050565b6130b980620002736000396000f3fe6080604052600436106101185760003560e01c80637ecebe00116100a0578063b58f8d6f11610064578063b58f8d6f14610361578063c771909c1461039e578063d279b0ca146103c9578063e30c3978146103f2578063f2fde38b1461041d57610122565b80637ecebe001461027a5780638303c4f4146102b75780638456cb59146102f65780638da5cb5b1461030d578063a52227b31461033857610122565b80635c975abb116100e75780635c975abb146101cd578063715018a6146101f8578063737ea06e1461020f57806378e3079e1461023a57806379ba50971461026357610122565b8063164d57061461012757806328f7a4de146101505780633a8beee21461018d5780633f4ba83a146101b657610122565b3661012257600080fd5b600080fd5b34801561013357600080fd5b5061014e600480360381019061014991906121b8565b610446565b005b34801561015c57600080fd5b50610177600480360381019061017291906122ab565b610779565b604051610184919061231a565b60405180910390f35b34801561019957600080fd5b506101b460048036038101906101af9190612335565b6107e5565b005b3480156101c257600080fd5b506101cb610ca2565b005b3480156101d957600080fd5b506101e2610cb4565b6040516101ef919061240c565b60405180910390f35b34801561020457600080fd5b5061020d610ccb565b005b34801561021b57600080fd5b50610224610cdf565b6040516102319190612436565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612451565b610d05565b005b34801561026f57600080fd5b50610278610dc0565b005b34801561028657600080fd5b506102a1600480360381019061029c9190612451565b610e4f565b6040516102ae919061231a565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d991906125bf565b610e67565b6040516102ed93929190612608565b60405180910390f35b34801561030257600080fd5b5061030b610ee7565b005b34801561031957600080fd5b50610322610ef9565b60405161032f9190612436565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906121b8565b610f22565b005b34801561036d57600080fd5b506103886004803603810190610383919061263f565b611441565b604051610395919061240c565b60405180910390f35b3480156103aa57600080fd5b506103b36114de565b6040516103c09190612436565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612451565b611504565b005b3480156103fe57600080fd5b506104076115bf565b6040516104149190612436565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612451565b6115e9565b005b61044e611696565b6104566116da565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906104a89061273d565b91905055905060003387878785306040516020016104cb9695949392919061281e565b6040516020818303038152906040528051906020012090506105318185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b610570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610567906128d8565b60405180910390fd5b60016006600061057f84611796565b815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600588886040516105b89291906128f8565b90815260200160405180910390209050806000015486111561060f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106069061295d565b60405180910390fd5b8060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906129c9565b60405180910390fd5b858160000160008282546106b591906129e9565b9250508190555061070b33878360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117cc9092919063ffffffff16565b878760405161071b9291906128f8565b6040518091039020863373ffffffffffffffffffffffffffffffffffffffff167feac270b20a58b42c014d329b57819d964f4977021909544788c20f3377c6906560405160405180910390a450505061077261184b565b5050505050565b60006005848460405161078d9291906128f8565b908152602001604051809103902060030160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490509392505050565b6107ed611696565b6107f56116da565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906108479061273d565b9190505590506000883389898989873060405160200161086e989796959493929190612a1d565b60405160208183030381529060405280519060200120905060006108d68286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b905080610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f906128d8565b60405180910390fd5b60016006600061092785611796565b815260200190815260200160002060006101000a81548160ff02191690831515021790555060008a73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109879190612436565b602060405180830381865afa1580156109a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c89190612ab1565b9050610a1933600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16898e73ffffffffffffffffffffffffffffffffffffffff16611855909392919063ffffffff16565b610a4633308a8e73ffffffffffffffffffffffffffffffffffffffff16611855909392919063ffffffff16565b6000818c73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a829190612436565b602060405180830381865afa158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac39190612ab1565b610acd91906129e9565b9050888114610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890612b50565b60405180910390fd5b600060058c8c604051610b259291906128f8565b9081526020016040518091039020905089816000016000828254610b499190612b70565b925050819055508c8160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c2f57338160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8b8b604051610c3f9291906128f8565b60405180910390208a3373ffffffffffffffffffffffffffffffffffffffff167fcc1a84eb17a6b864337cd92d7a63056e0aac020dfc0de17f6813bc6b1867cf5160405160405180910390a4505050505050610c9961184b565b50505050505050565b610caa6118d7565b610cb261195e565b565b6000600360009054906101000a900460ff16905090565b610cd36118d7565b610cdd60006119c1565b565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0d6118d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390612c16565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610dca6119f2565b90508073ffffffffffffffffffffffffffffffffffffffff16610deb6115bf565b73ffffffffffffffffffffffffffffffffffffffff1614610e4357806040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e3a9190612436565b60405180910390fd5b610e4c816119c1565b50565b60076020528060005260406000206000915090505481565b6005818051602081018201805184825260208301602085012081835280955050505050506000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b610eef6118d7565b610ef76119fa565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2a611696565b610f326116da565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f849061273d565b9190505590506000338787878530604051602001610fa79695949392919061281e565b60405160208183030381529060405280519060200120905061100d8185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b61104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906128d8565b60405180910390fd5b60016006600061105b84611796565b815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600588886040516110949291906128f8565b9081526020016040518091039020905080600001548611156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e29061295d565b60405180910390fd5b8060000154868260030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461113d9190612b70565b111561117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612ca8565b60405180910390fd5b858160030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111cf9190612b70565b92505081905550858160000160008282546111ea91906129e9565b9250508190555060008160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112509190612436565b602060405180830381865afa15801561126d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112919190612ab1565b90506112e233888460010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117cc9092919063ffffffff16565b6000818360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113429190612436565b602060405180830381865afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113839190612ab1565b61138d91906129e9565b90508781146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890612d3a565b60405180910390fd5b89896040516113e19291906128f8565b6040518091039020883373ffffffffffffffffffffffffffffffffffffffff167fc7207087d1b9602815027342116944238a53ba3db91a70042ead521a6fcff5c860405160405180910390a4505050505061143a61184b565b5050505050565b60008089338a8a8a898b30604051602001611463989796959493929190612a1d565b60405160208183030381529060405280519060200120905060006114cb8286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b9050809250505098975050505050505050565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61150c6118d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290612da6565b60405180910390fd5b80600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115f16118d7565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611651610ef9565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60028054036116d1576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60028081905550565b6116e2610cb4565b15611719576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008061172784611796565b90506006600082815260200190815260200160002060009054906101000a900460ff1615611759576000915050611790565b6000611788600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168386611a5d565b905080925050505b92915050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b611846838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040516024016117ff929190612dc6565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611aed565b505050565b6001600281905550565b6118d1848573ffffffffffffffffffffffffffffffffffffffff166323b872dd86868660405160240161188a93929190612def565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611aed565b50505050565b6118df6119f2565b73ffffffffffffffffffffffffffffffffffffffff166118fd610ef9565b73ffffffffffffffffffffffffffffffffffffffff161461195c576119206119f2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119539190612436565b60405180910390fd5b565b611966611b84565b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119aa6119f2565b6040516119b79190612436565b60405180910390a1565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556119ef81611bc4565b50565b600033905090565b611a026116da565b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a466119f2565b604051611a539190612436565b60405180910390a1565b6000806000611a6c8585611c88565b509150915060006003811115611a8557611a84612e26565b5b816003811115611a9857611a97612e26565b5b148015611ad057508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611ae25750611ae1868686611ce4565b5b925050509392505050565b6000611b18828473ffffffffffffffffffffffffffffffffffffffff16611e0890919063ffffffff16565b90506000815114158015611b3d575080806020019051810190611b3b9190612e81565b155b15611b7f57826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401611b769190612436565b60405180910390fd5b505050565b611b8c610cb4565b611bc2576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006041845103611ccd5760008060006020870151925060408701519150606087015160001a9050611cbf88828585611e1e565b955095509550505050611cdd565b60006002855160001b9250925092505b9250925092565b60008060008573ffffffffffffffffffffffffffffffffffffffff168585604051602401611d13929190612f46565b604051602081830303815290604052631626ba7e60e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611d659190612fb2565b600060405180830381855afa9150503d8060008114611da0576040519150601f19603f3d011682016040523d82523d6000602084013e611da5565b606091505b5091509150818015611db957506020815110155b8015611dfd5750631626ba7e60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681806020019051810190611dfb9190612ff5565b145b925050509392505050565b6060611e1683836000611f12565b905092915050565b60008060007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08460001c1115611e5e576000600385925092509250611f08565b600060018888888860405160008152602001604052604051611e83949392919061303e565b6020604051602081039080840390855afa158015611ea5573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ef957600060016000801b93509350935050611f08565b8060008060001b935093509350505b9450945094915050565b606081471015611f5957306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611f509190612436565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168486604051611f829190612fb2565b60006040518083038185875af1925050503d8060008114611fbf576040519150601f19603f3d011682016040523d82523d6000602084013e611fc4565b606091505b5091509150611fd4868383611fdf565b925050509392505050565b606082611ff457611fef8261206e565b612066565b6000825114801561201c575060008473ffffffffffffffffffffffffffffffffffffffff163b145b1561205e57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016120559190612436565b60405180910390fd5b819050612067565b5b9392505050565b6000815111156120815780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126120ec576120eb6120c7565b5b8235905067ffffffffffffffff811115612109576121086120cc565b5b602083019150836001820283011115612125576121246120d1565b5b9250929050565b6000819050919050565b61213f8161212c565b811461214a57600080fd5b50565b60008135905061215c81612136565b92915050565b60008083601f840112612178576121776120c7565b5b8235905067ffffffffffffffff811115612195576121946120cc565b5b6020830191508360018202830111156121b1576121b06120d1565b5b9250929050565b6000806000806000606086880312156121d4576121d36120bd565b5b600086013567ffffffffffffffff8111156121f2576121f16120c2565b5b6121fe888289016120d6565b955095505060206122118882890161214d565b935050604086013567ffffffffffffffff811115612232576122316120c2565b5b61223e88828901612162565b92509250509295509295909350565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122788261224d565b9050919050565b6122888161226d565b811461229357600080fd5b50565b6000813590506122a58161227f565b92915050565b6000806000604084860312156122c4576122c36120bd565b5b600084013567ffffffffffffffff8111156122e2576122e16120c2565b5b6122ee868287016120d6565b9350935050602061230186828701612296565b9150509250925092565b6123148161212c565b82525050565b600060208201905061232f600083018461230b565b92915050565b600080600080600080600060a0888a031215612354576123536120bd565b5b60006123628a828b01612296565b975050602088013567ffffffffffffffff811115612383576123826120c2565b5b61238f8a828b016120d6565b965096505060406123a28a828b0161214d565b94505060606123b38a828b0161214d565b935050608088013567ffffffffffffffff8111156123d4576123d36120c2565b5b6123e08a828b01612162565b925092505092959891949750929550565b60008115159050919050565b612406816123f1565b82525050565b600060208201905061242160008301846123fd565b92915050565b6124308161226d565b82525050565b600060208201905061244b6000830184612427565b92915050565b600060208284031215612467576124666120bd565b5b600061247584828501612296565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124cc82612483565b810181811067ffffffffffffffff821117156124eb576124ea612494565b5b80604052505050565b60006124fe6120b3565b905061250a82826124c3565b919050565b600067ffffffffffffffff82111561252a57612529612494565b5b61253382612483565b9050602081019050919050565b82818337600083830152505050565b600061256261255d8461250f565b6124f4565b90508281526020810184848401111561257e5761257d61247e565b5b612589848285612540565b509392505050565b600082601f8301126125a6576125a56120c7565b5b81356125b684826020860161254f565b91505092915050565b6000602082840312156125d5576125d46120bd565b5b600082013567ffffffffffffffff8111156125f3576125f26120c2565b5b6125ff84828501612591565b91505092915050565b600060608201905061261d600083018661230b565b61262a6020830185612427565b6126376040830184612427565b949350505050565b60008060008060008060008060c0898b03121561265f5761265e6120bd565b5b600061266d8b828c01612296565b985050602089013567ffffffffffffffff81111561268e5761268d6120c2565b5b61269a8b828c016120d6565b975097505060406126ad8b828c0161214d565b95505060606126be8b828c0161214d565b94505060806126cf8b828c0161214d565b93505060a089013567ffffffffffffffff8111156126f0576126ef6120c2565b5b6126fc8b828c01612162565b92509250509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127488261212c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361277a5761277961270e565b5b600182019050919050565b60008160601b9050919050565b600061279d82612785565b9050919050565b60006127af82612792565b9050919050565b6127c76127c28261226d565b6127a4565b82525050565b600081905092915050565b60006127e483856127cd565b93506127f1838584612540565b82840190509392505050565b6000819050919050565b6128186128138261212c565b6127fd565b82525050565b600061282a82896127b6565b60148201915061283b8287896127d8565b91506128478286612807565b6020820191506128578285612807565b60208201915061286782846127b6565b601482019150819050979650505050505050565b600082825260208201905092915050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006128c260118361287b565b91506128cd8261288c565b602082019050919050565b600060208201905081810360008301526128f1816128b5565b9050919050565b60006129058284866127d8565b91508190509392505050565b7f4e6f7420656e6f7567682072657761726420696e2074686520706f6f6c000000600082015250565b6000612947601d8361287b565b915061295282612911565b602082019050919050565b600060208201905081810360008301526129768161293a565b9050919050565b7f4f6e6c792063616d706169676e2063726561746f7220616c6c6f776564000000600082015250565b60006129b3601d8361287b565b91506129be8261297d565b602082019050919050565b600060208201905081810360008301526129e2816129a6565b9050919050565b60006129f48261212c565b91506129ff8361212c565b9250828203905081811115612a1757612a1661270e565b5b92915050565b6000612a29828b6127b6565b601482019150612a39828a6127b6565b601482019150612a4a82888a6127d8565b9150612a568287612807565b602082019150612a668286612807565b602082019150612a768285612807565b602082019150612a8682846127b6565b6014820191508190509998505050505050505050565b600081519050612aab81612136565b92915050565b600060208284031215612ac757612ac66120bd565b5b6000612ad584828501612a9c565b91505092915050565b7f41637475616c206465706f73697420646f6573206e6f74206d6174636820657860008201527f7065637465640000000000000000000000000000000000000000000000000000602082015250565b6000612b3a60268361287b565b9150612b4582612ade565b604082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b6000612b7b8261212c565b9150612b868361212c565b9250828201905080821115612b9e57612b9d61270e565b5b92915050565b7f496e76616c696420616464726573733a2063616e6e6f7420626520746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612c00602b8361287b565b9150612c0b82612ba4565b604082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f436c61696d20616d6f756e74206578636565647320616c6c6f7765642062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612c9260248361287b565b9150612c9d82612c36565b604082019050919050565b60006020820190508181036000830152612cc181612c85565b9050919050565b7f41637475616c207472616e7366657220646f6573206e6f74206d61746368206560008201527f7870656374656400000000000000000000000000000000000000000000000000602082015250565b6000612d2460278361287b565b9150612d2f82612cc8565b604082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b7f496e76616c6964207369676e6572206164647265737300000000000000000000600082015250565b6000612d9060168361287b565b9150612d9b82612d5a565b602082019050919050565b60006020820190508181036000830152612dbf81612d83565b9050919050565b6000604082019050612ddb6000830185612427565b612de8602083018461230b565b9392505050565b6000606082019050612e046000830186612427565b612e116020830185612427565b612e1e604083018461230b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b612e5e816123f1565b8114612e6957600080fd5b50565b600081519050612e7b81612e55565b92915050565b600060208284031215612e9757612e966120bd565b5b6000612ea584828501612e6c565b91505092915050565b6000819050919050565b612ec181612eae565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f01578082015181840152602081019050612ee6565b60008484015250505050565b6000612f1882612ec7565b612f228185612ed2565b9350612f32818560208601612ee3565b612f3b81612483565b840191505092915050565b6000604082019050612f5b6000830185612eb8565b8181036020830152612f6d8184612f0d565b90509392505050565b600081905092915050565b6000612f8c82612ec7565b612f968185612f76565b9350612fa6818560208601612ee3565b80840191505092915050565b6000612fbe8284612f81565b915081905092915050565b612fd281612eae565b8114612fdd57600080fd5b50565b600081519050612fef81612fc9565b92915050565b60006020828403121561300b5761300a6120bd565b5b600061301984828501612fe0565b91505092915050565b600060ff82169050919050565b61303881613022565b82525050565b60006080820190506130536000830187612eb8565b613060602083018661302f565b61306d6040830185612eb8565b61307a6060830184612eb8565b9594505050505056fea264697066735822122055920ac88c24ed19262afee48c2e50713b900f048e7c8eddd0e1b8a0afc3699d64736f6c63430008180033
Deployed Bytecode
0x6080604052600436106101185760003560e01c80637ecebe00116100a0578063b58f8d6f11610064578063b58f8d6f14610361578063c771909c1461039e578063d279b0ca146103c9578063e30c3978146103f2578063f2fde38b1461041d57610122565b80637ecebe001461027a5780638303c4f4146102b75780638456cb59146102f65780638da5cb5b1461030d578063a52227b31461033857610122565b80635c975abb116100e75780635c975abb146101cd578063715018a6146101f8578063737ea06e1461020f57806378e3079e1461023a57806379ba50971461026357610122565b8063164d57061461012757806328f7a4de146101505780633a8beee21461018d5780633f4ba83a146101b657610122565b3661012257600080fd5b600080fd5b34801561013357600080fd5b5061014e600480360381019061014991906121b8565b610446565b005b34801561015c57600080fd5b50610177600480360381019061017291906122ab565b610779565b604051610184919061231a565b60405180910390f35b34801561019957600080fd5b506101b460048036038101906101af9190612335565b6107e5565b005b3480156101c257600080fd5b506101cb610ca2565b005b3480156101d957600080fd5b506101e2610cb4565b6040516101ef919061240c565b60405180910390f35b34801561020457600080fd5b5061020d610ccb565b005b34801561021b57600080fd5b50610224610cdf565b6040516102319190612436565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612451565b610d05565b005b34801561026f57600080fd5b50610278610dc0565b005b34801561028657600080fd5b506102a1600480360381019061029c9190612451565b610e4f565b6040516102ae919061231a565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d991906125bf565b610e67565b6040516102ed93929190612608565b60405180910390f35b34801561030257600080fd5b5061030b610ee7565b005b34801561031957600080fd5b50610322610ef9565b60405161032f9190612436565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906121b8565b610f22565b005b34801561036d57600080fd5b506103886004803603810190610383919061263f565b611441565b604051610395919061240c565b60405180910390f35b3480156103aa57600080fd5b506103b36114de565b6040516103c09190612436565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612451565b611504565b005b3480156103fe57600080fd5b506104076115bf565b6040516104149190612436565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612451565b6115e9565b005b61044e611696565b6104566116da565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906104a89061273d565b91905055905060003387878785306040516020016104cb9695949392919061281e565b6040516020818303038152906040528051906020012090506105318185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b610570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610567906128d8565b60405180910390fd5b60016006600061057f84611796565b815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600588886040516105b89291906128f8565b90815260200160405180910390209050806000015486111561060f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106069061295d565b60405180910390fd5b8060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906129c9565b60405180910390fd5b858160000160008282546106b591906129e9565b9250508190555061070b33878360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117cc9092919063ffffffff16565b878760405161071b9291906128f8565b6040518091039020863373ffffffffffffffffffffffffffffffffffffffff167feac270b20a58b42c014d329b57819d964f4977021909544788c20f3377c6906560405160405180910390a450505061077261184b565b5050505050565b60006005848460405161078d9291906128f8565b908152602001604051809103902060030160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490509392505050565b6107ed611696565b6107f56116da565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906108479061273d565b9190505590506000883389898989873060405160200161086e989796959493929190612a1d565b60405160208183030381529060405280519060200120905060006108d68286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b905080610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f906128d8565b60405180910390fd5b60016006600061092785611796565b815260200190815260200160002060006101000a81548160ff02191690831515021790555060008a73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109879190612436565b602060405180830381865afa1580156109a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c89190612ab1565b9050610a1933600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16898e73ffffffffffffffffffffffffffffffffffffffff16611855909392919063ffffffff16565b610a4633308a8e73ffffffffffffffffffffffffffffffffffffffff16611855909392919063ffffffff16565b6000818c73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a829190612436565b602060405180830381865afa158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac39190612ab1565b610acd91906129e9565b9050888114610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890612b50565b60405180910390fd5b600060058c8c604051610b259291906128f8565b9081526020016040518091039020905089816000016000828254610b499190612b70565b925050819055508c8160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c2f57338160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8b8b604051610c3f9291906128f8565b60405180910390208a3373ffffffffffffffffffffffffffffffffffffffff167fcc1a84eb17a6b864337cd92d7a63056e0aac020dfc0de17f6813bc6b1867cf5160405160405180910390a4505050505050610c9961184b565b50505050505050565b610caa6118d7565b610cb261195e565b565b6000600360009054906101000a900460ff16905090565b610cd36118d7565b610cdd60006119c1565b565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0d6118d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390612c16565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610dca6119f2565b90508073ffffffffffffffffffffffffffffffffffffffff16610deb6115bf565b73ffffffffffffffffffffffffffffffffffffffff1614610e4357806040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e3a9190612436565b60405180910390fd5b610e4c816119c1565b50565b60076020528060005260406000206000915090505481565b6005818051602081018201805184825260208301602085012081835280955050505050506000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b610eef6118d7565b610ef76119fa565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2a611696565b610f326116da565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f849061273d565b9190505590506000338787878530604051602001610fa79695949392919061281e565b60405160208183030381529060405280519060200120905061100d8185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b61104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906128d8565b60405180910390fd5b60016006600061105b84611796565b815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600588886040516110949291906128f8565b9081526020016040518091039020905080600001548611156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e29061295d565b60405180910390fd5b8060000154868260030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461113d9190612b70565b111561117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612ca8565b60405180910390fd5b858160030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111cf9190612b70565b92505081905550858160000160008282546111ea91906129e9565b9250508190555060008160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112509190612436565b602060405180830381865afa15801561126d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112919190612ab1565b90506112e233888460010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117cc9092919063ffffffff16565b6000818360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113429190612436565b602060405180830381865afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113839190612ab1565b61138d91906129e9565b90508781146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890612d3a565b60405180910390fd5b89896040516113e19291906128f8565b6040518091039020883373ffffffffffffffffffffffffffffffffffffffff167fc7207087d1b9602815027342116944238a53ba3db91a70042ead521a6fcff5c860405160405180910390a4505050505061143a61184b565b5050505050565b60008089338a8a8a898b30604051602001611463989796959493929190612a1d565b60405160208183030381529060405280519060200120905060006114cb8286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061171b565b9050809250505098975050505050505050565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61150c6118d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290612da6565b60405180910390fd5b80600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115f16118d7565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611651610ef9565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60028054036116d1576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60028081905550565b6116e2610cb4565b15611719576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008061172784611796565b90506006600082815260200190815260200160002060009054906101000a900460ff1615611759576000915050611790565b6000611788600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168386611a5d565b905080925050505b92915050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b611846838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040516024016117ff929190612dc6565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611aed565b505050565b6001600281905550565b6118d1848573ffffffffffffffffffffffffffffffffffffffff166323b872dd86868660405160240161188a93929190612def565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611aed565b50505050565b6118df6119f2565b73ffffffffffffffffffffffffffffffffffffffff166118fd610ef9565b73ffffffffffffffffffffffffffffffffffffffff161461195c576119206119f2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119539190612436565b60405180910390fd5b565b611966611b84565b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119aa6119f2565b6040516119b79190612436565b60405180910390a1565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556119ef81611bc4565b50565b600033905090565b611a026116da565b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a466119f2565b604051611a539190612436565b60405180910390a1565b6000806000611a6c8585611c88565b509150915060006003811115611a8557611a84612e26565b5b816003811115611a9857611a97612e26565b5b148015611ad057508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611ae25750611ae1868686611ce4565b5b925050509392505050565b6000611b18828473ffffffffffffffffffffffffffffffffffffffff16611e0890919063ffffffff16565b90506000815114158015611b3d575080806020019051810190611b3b9190612e81565b155b15611b7f57826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401611b769190612436565b60405180910390fd5b505050565b611b8c610cb4565b611bc2576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006041845103611ccd5760008060006020870151925060408701519150606087015160001a9050611cbf88828585611e1e565b955095509550505050611cdd565b60006002855160001b9250925092505b9250925092565b60008060008573ffffffffffffffffffffffffffffffffffffffff168585604051602401611d13929190612f46565b604051602081830303815290604052631626ba7e60e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611d659190612fb2565b600060405180830381855afa9150503d8060008114611da0576040519150601f19603f3d011682016040523d82523d6000602084013e611da5565b606091505b5091509150818015611db957506020815110155b8015611dfd5750631626ba7e60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681806020019051810190611dfb9190612ff5565b145b925050509392505050565b6060611e1683836000611f12565b905092915050565b60008060007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08460001c1115611e5e576000600385925092509250611f08565b600060018888888860405160008152602001604052604051611e83949392919061303e565b6020604051602081039080840390855afa158015611ea5573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ef957600060016000801b93509350935050611f08565b8060008060001b935093509350505b9450945094915050565b606081471015611f5957306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611f509190612436565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168486604051611f829190612fb2565b60006040518083038185875af1925050503d8060008114611fbf576040519150601f19603f3d011682016040523d82523d6000602084013e611fc4565b606091505b5091509150611fd4868383611fdf565b925050509392505050565b606082611ff457611fef8261206e565b612066565b6000825114801561201c575060008473ffffffffffffffffffffffffffffffffffffffff163b145b1561205e57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016120559190612436565b60405180910390fd5b819050612067565b5b9392505050565b6000815111156120815780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126120ec576120eb6120c7565b5b8235905067ffffffffffffffff811115612109576121086120cc565b5b602083019150836001820283011115612125576121246120d1565b5b9250929050565b6000819050919050565b61213f8161212c565b811461214a57600080fd5b50565b60008135905061215c81612136565b92915050565b60008083601f840112612178576121776120c7565b5b8235905067ffffffffffffffff811115612195576121946120cc565b5b6020830191508360018202830111156121b1576121b06120d1565b5b9250929050565b6000806000806000606086880312156121d4576121d36120bd565b5b600086013567ffffffffffffffff8111156121f2576121f16120c2565b5b6121fe888289016120d6565b955095505060206122118882890161214d565b935050604086013567ffffffffffffffff811115612232576122316120c2565b5b61223e88828901612162565b92509250509295509295909350565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122788261224d565b9050919050565b6122888161226d565b811461229357600080fd5b50565b6000813590506122a58161227f565b92915050565b6000806000604084860312156122c4576122c36120bd565b5b600084013567ffffffffffffffff8111156122e2576122e16120c2565b5b6122ee868287016120d6565b9350935050602061230186828701612296565b9150509250925092565b6123148161212c565b82525050565b600060208201905061232f600083018461230b565b92915050565b600080600080600080600060a0888a031215612354576123536120bd565b5b60006123628a828b01612296565b975050602088013567ffffffffffffffff811115612383576123826120c2565b5b61238f8a828b016120d6565b965096505060406123a28a828b0161214d565b94505060606123b38a828b0161214d565b935050608088013567ffffffffffffffff8111156123d4576123d36120c2565b5b6123e08a828b01612162565b925092505092959891949750929550565b60008115159050919050565b612406816123f1565b82525050565b600060208201905061242160008301846123fd565b92915050565b6124308161226d565b82525050565b600060208201905061244b6000830184612427565b92915050565b600060208284031215612467576124666120bd565b5b600061247584828501612296565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124cc82612483565b810181811067ffffffffffffffff821117156124eb576124ea612494565b5b80604052505050565b60006124fe6120b3565b905061250a82826124c3565b919050565b600067ffffffffffffffff82111561252a57612529612494565b5b61253382612483565b9050602081019050919050565b82818337600083830152505050565b600061256261255d8461250f565b6124f4565b90508281526020810184848401111561257e5761257d61247e565b5b612589848285612540565b509392505050565b600082601f8301126125a6576125a56120c7565b5b81356125b684826020860161254f565b91505092915050565b6000602082840312156125d5576125d46120bd565b5b600082013567ffffffffffffffff8111156125f3576125f26120c2565b5b6125ff84828501612591565b91505092915050565b600060608201905061261d600083018661230b565b61262a6020830185612427565b6126376040830184612427565b949350505050565b60008060008060008060008060c0898b03121561265f5761265e6120bd565b5b600061266d8b828c01612296565b985050602089013567ffffffffffffffff81111561268e5761268d6120c2565b5b61269a8b828c016120d6565b975097505060406126ad8b828c0161214d565b95505060606126be8b828c0161214d565b94505060806126cf8b828c0161214d565b93505060a089013567ffffffffffffffff8111156126f0576126ef6120c2565b5b6126fc8b828c01612162565b92509250509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127488261212c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361277a5761277961270e565b5b600182019050919050565b60008160601b9050919050565b600061279d82612785565b9050919050565b60006127af82612792565b9050919050565b6127c76127c28261226d565b6127a4565b82525050565b600081905092915050565b60006127e483856127cd565b93506127f1838584612540565b82840190509392505050565b6000819050919050565b6128186128138261212c565b6127fd565b82525050565b600061282a82896127b6565b60148201915061283b8287896127d8565b91506128478286612807565b6020820191506128578285612807565b60208201915061286782846127b6565b601482019150819050979650505050505050565b600082825260208201905092915050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006128c260118361287b565b91506128cd8261288c565b602082019050919050565b600060208201905081810360008301526128f1816128b5565b9050919050565b60006129058284866127d8565b91508190509392505050565b7f4e6f7420656e6f7567682072657761726420696e2074686520706f6f6c000000600082015250565b6000612947601d8361287b565b915061295282612911565b602082019050919050565b600060208201905081810360008301526129768161293a565b9050919050565b7f4f6e6c792063616d706169676e2063726561746f7220616c6c6f776564000000600082015250565b60006129b3601d8361287b565b91506129be8261297d565b602082019050919050565b600060208201905081810360008301526129e2816129a6565b9050919050565b60006129f48261212c565b91506129ff8361212c565b9250828203905081811115612a1757612a1661270e565b5b92915050565b6000612a29828b6127b6565b601482019150612a39828a6127b6565b601482019150612a4a82888a6127d8565b9150612a568287612807565b602082019150612a668286612807565b602082019150612a768285612807565b602082019150612a8682846127b6565b6014820191508190509998505050505050505050565b600081519050612aab81612136565b92915050565b600060208284031215612ac757612ac66120bd565b5b6000612ad584828501612a9c565b91505092915050565b7f41637475616c206465706f73697420646f6573206e6f74206d6174636820657860008201527f7065637465640000000000000000000000000000000000000000000000000000602082015250565b6000612b3a60268361287b565b9150612b4582612ade565b604082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b6000612b7b8261212c565b9150612b868361212c565b9250828201905080821115612b9e57612b9d61270e565b5b92915050565b7f496e76616c696420616464726573733a2063616e6e6f7420626520746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612c00602b8361287b565b9150612c0b82612ba4565b604082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f436c61696d20616d6f756e74206578636565647320616c6c6f7765642062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612c9260248361287b565b9150612c9d82612c36565b604082019050919050565b60006020820190508181036000830152612cc181612c85565b9050919050565b7f41637475616c207472616e7366657220646f6573206e6f74206d61746368206560008201527f7870656374656400000000000000000000000000000000000000000000000000602082015250565b6000612d2460278361287b565b9150612d2f82612cc8565b604082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b7f496e76616c6964207369676e6572206164647265737300000000000000000000600082015250565b6000612d9060168361287b565b9150612d9b82612d5a565b602082019050919050565b60006020820190508181036000830152612dbf81612d83565b9050919050565b6000604082019050612ddb6000830185612427565b612de8602083018461230b565b9392505050565b6000606082019050612e046000830186612427565b612e116020830185612427565b612e1e604083018461230b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b612e5e816123f1565b8114612e6957600080fd5b50565b600081519050612e7b81612e55565b92915050565b600060208284031215612e9757612e966120bd565b5b6000612ea584828501612e6c565b91505092915050565b6000819050919050565b612ec181612eae565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f01578082015181840152602081019050612ee6565b60008484015250505050565b6000612f1882612ec7565b612f228185612ed2565b9350612f32818560208601612ee3565b612f3b81612483565b840191505092915050565b6000604082019050612f5b6000830185612eb8565b8181036020830152612f6d8184612f0d565b90509392505050565b600081905092915050565b6000612f8c82612ec7565b612f968185612f76565b9350612fa6818560208601612ee3565b80840191505092915050565b6000612fbe8284612f81565b915081905092915050565b612fd281612eae565b8114612fdd57600080fd5b50565b600081519050612fef81612fc9565b92915050565b60006020828403121561300b5761300a6120bd565b5b600061301984828501612fe0565b91505092915050565b600060ff82169050919050565b61303881613022565b82525050565b60006080820190506130536000830187612eb8565b613060602083018661302f565b61306d6040830185612eb8565b61307a6060830184612eb8565b9594505050505056fea264697066735822122055920ac88c24ed19262afee48c2e50713b900f048e7c8eddd0e1b8a0afc3699d64736f6c63430008180033
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.