Source Code
Latest 25 from a total of 136 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 22620251 | 276 days ago | IN | 0.0001 ETH | 0.00004354 | ||||
| Withdraw | 19994820 | 643 days ago | IN | 0 ETH | 0.00041787 | ||||
| Withdraw | 19994812 | 643 days ago | IN | 0 ETH | 0.00043301 | ||||
| Withdraw | 19907803 | 655 days ago | IN | 0 ETH | 0.0002194 | ||||
| Withdraw | 19907801 | 655 days ago | IN | 0 ETH | 0.00021768 | ||||
| Withdraw | 19800600 | 670 days ago | IN | 0 ETH | 0.00028561 | ||||
| Withdraw | 19800592 | 670 days ago | IN | 0 ETH | 0.00032995 | ||||
| Withdraw | 19699462 | 684 days ago | IN | 0 ETH | 0.00045234 | ||||
| Withdraw | 19631030 | 694 days ago | IN | 0 ETH | 0.00109892 | ||||
| Withdraw | 19631021 | 694 days ago | IN | 0 ETH | 0.00120112 | ||||
| Withdraw | 19576034 | 701 days ago | IN | 0 ETH | 0.00411494 | ||||
| Withdraw | 19575869 | 701 days ago | IN | 0 ETH | 0.00336684 | ||||
| Withdraw | 19575837 | 701 days ago | IN | 0 ETH | 0.00360793 | ||||
| Withdraw | 19575805 | 701 days ago | IN | 0 ETH | 0.00395306 | ||||
| Withdraw | 19575793 | 701 days ago | IN | 0 ETH | 0.00431834 | ||||
| Withdraw | 19575633 | 701 days ago | IN | 0 ETH | 0.00315018 | ||||
| Withdraw | 19573983 | 702 days ago | IN | 0 ETH | 0.00166522 | ||||
| Withdraw | 19573967 | 702 days ago | IN | 0 ETH | 0.00169961 | ||||
| Withdraw | 19563401 | 703 days ago | IN | 0 ETH | 0.0015909 | ||||
| Withdraw | 19562252 | 703 days ago | IN | 0 ETH | 0.00228769 | ||||
| Withdraw | 19562247 | 703 days ago | IN | 0 ETH | 0.002204 | ||||
| Withdraw | 19562241 | 703 days ago | IN | 0 ETH | 0.00239566 | ||||
| Withdraw | 19562235 | 703 days ago | IN | 0 ETH | 0.00231181 | ||||
| Withdraw | 19554329 | 704 days ago | IN | 0 ETH | 0.00168342 | ||||
| Withdraw | 19546909 | 705 days ago | IN | 0 ETH | 0.00143053 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 19994820 | 643 days ago | 0.000199 ETH | ||||
| Transfer | 19994812 | 643 days ago | 0.00002 ETH | ||||
| Transfer | 19907803 | 655 days ago | 0.00109931 ETH | ||||
| Transfer | 19907801 | 655 days ago | 0.0003298 ETH | ||||
| Transfer | 19800600 | 670 days ago | 0.0011 ETH | ||||
| Transfer | 19800592 | 670 days ago | 0.00011 ETH | ||||
| Transfer | 19699462 | 684 days ago | 0.001347 ETH | ||||
| Transfer | 19631030 | 694 days ago | 0.00854644 ETH | ||||
| Transfer | 19631021 | 694 days ago | 0.00229914 ETH | ||||
| Transfer | 19576034 | 701 days ago | 0.07879663 ETH | ||||
| Transfer | 19575869 | 701 days ago | 0.07879663 ETH | ||||
| Transfer | 19575837 | 701 days ago | 0.07879663 ETH | ||||
| Transfer | 19575805 | 701 days ago | 0.07879663 ETH | ||||
| Transfer | 19575793 | 701 days ago | 0.07879663 ETH | ||||
| Transfer | 19575633 | 701 days ago | 0.00548877 ETH | ||||
| Transfer | 19573983 | 702 days ago | 0.02793049 ETH | ||||
| Transfer | 19573967 | 702 days ago | 0.11932773 ETH | ||||
| Transfer | 19563401 | 703 days ago | 0.0221515 ETH | ||||
| Transfer | 19562252 | 703 days ago | 0.02170653 ETH | ||||
| Transfer | 19562247 | 703 days ago | 0.02360271 ETH | ||||
| Transfer | 19562241 | 703 days ago | 0.02360271 ETH | ||||
| Transfer | 19562235 | 703 days ago | 0.02170653 ETH | ||||
| Transfer | 19554329 | 704 days ago | 0.07122 ETH | ||||
| Transfer | 19546909 | 705 days ago | 0.00379252 ETH | ||||
| Transfer | 19543421 | 706 days ago | 0.00135 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
YunGouDividend
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract YunGouDividend is Pausable, Ownable, ReentrancyGuard {
event Deposit(address indexed account, uint256 indexed amount);
event Withdraw(
uint256 indexed orderId,
address indexed coinAddress,
address indexed account,
uint256 amount
);
// 0x0000000000000000000000000000000000000000
address constant ZERO_ADDRESS = address(0);
bytes4 constant ERC20_TRANSFER_SELECTOR = 0xa9059cbb;
address private withdrawSigner;
mapping(uint256 => bool) private orderIsInvalid;
constructor(address _withdrawSigner) {
withdrawSigner = _withdrawSigner;
}
function setPause() external onlyOwner {
if (!paused()) {
_pause();
} else {
_unpause();
}
}
function setWithdrawSigner(address _withdrawSigner) external onlyOwner {
withdrawSigner = _withdrawSigner;
}
function withdrawETHOnlyOwner(address account) external onlyOwner {
payable(account).transfer(address(this).balance);
}
function getWithdrawSigner() external view onlyOwner returns (address) {
return withdrawSigner;
}
function getOrderIdState(uint256 orderId) external view returns (bool) {
return orderIsInvalid[orderId];
}
function getETHBalance() external view returns (uint256) {
return address(this).balance;
}
function getERC20Balance(
address coinAddress
) external view returns (uint256) {
return IERC20(coinAddress).balanceOf(address(this));
}
function deposit() external payable returns (uint256 amount) {
amount = msg.value;
emit Deposit(msg.sender, amount);
return amount;
}
function withdraw(
bytes calldata data,
bytes calldata signature
) external whenNotPaused nonReentrant returns (bool) {
require(data.length > 0 && signature.length > 0, "Invalid data");
(
uint256 orderId,
address coinAddress,
address account,
uint256 amount,
uint256 endTime
) = abi.decode(data, (uint256, address, address, uint256, uint256));
require(block.timestamp < endTime, "Signature expired");
require(!orderIsInvalid[orderId], "Invalid orderId");
require(account == _msgSender(), "Invalid account");
bytes32 hash = keccak256(data);
_verifySignature(hash, signature);
orderIsInvalid[orderId] = true;
if (coinAddress == ZERO_ADDRESS) {
// withdraw ETH
require(address(this).balance >= amount, "ETH Insufficient");
payable(account).transfer(amount);
} else {
// withdraw ERC20
require(
IERC20(coinAddress).balanceOf(address(this)) >= amount,
"ERC20 Insufficient"
);
_transferLowCall(coinAddress, account, amount);
}
emit Withdraw(orderId, coinAddress, account, amount);
return true;
}
function _verifySignature(
bytes32 hash,
bytes calldata signature
) internal view {
hash = _toEthSignedMessageHash(hash);
address signer = _recover(hash, signature);
require(signer == withdrawSigner, "Invalid signature");
}
function _toEthSignedMessageHash(
bytes32 hash
) internal pure returns (bytes32) {
return
keccak256(
abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
);
}
function _recover(
bytes32 hash,
bytes memory signature
) internal pure returns (address signer) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
signer = ecrecover(hash, v, r, s);
} else {
revert("Incorrect Signature Length");
}
}
function _transferLowCall(
address target,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = target.call(
abi.encodeWithSelector(ERC20_TRANSFER_SELECTOR, to, value)
);
require(
success && (data.length == 0 || abi.decode(data, (bool))),
"Low-level call failed"
);
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// 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 v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_withdrawSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"orderId","type":"uint256"},{"indexed":true,"internalType":"address","name":"coinAddress","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"deposit","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"coinAddress","type":"address"}],"name":"getERC20Balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"orderId","type":"uint256"}],"name":"getOrderIdState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawSigner","type":"address"}],"name":"setWithdrawSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawETHOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001e6138038062001e618339818101604052810190620000379190620001f7565b60008060006101000a81548160ff0219169083151502179055506200007162000065620000c060201b60201c565b620000c860201b60201c565b6001808190555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000229565b600033905090565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001bf8262000192565b9050919050565b620001d181620001b2565b8114620001dd57600080fd5b50565b600081519050620001f181620001c6565b92915050565b60006020828403121562000210576200020f6200018d565b5b60006200022084828501620001e0565b91505092915050565b611c2880620002396000396000f3fe6080604052600436106100c65760003560e01c80637d0c1cf91161007f578063b588d22511610059578063b588d22514610261578063d0e30db01461029e578063d431b1ac146102bc578063f2fde38b146102d3576100cd565b80637d0c1cf9146101d05780637d7d62bb1461020d5780638da5cb5b14610236576100cd565b806350fbe2d9146100d25780635c975abb1461010f5780636232d83f1461013a5780636e94729814610165578063715018a6146101905780637ccbfe7c146101a7576100cd565b366100cd57005b600080fd5b3480156100de57600080fd5b506100f960048036038101906100f49190611070565b6102fc565b604051610106919061110c565b60405180910390f35b34801561011b57600080fd5b506101246106fa565b604051610131919061110c565b60405180910390f35b34801561014657600080fd5b5061014f610710565b60405161015c9190611168565b60405180910390f35b34801561017157600080fd5b5061017a610742565b604051610187919061119c565b60405180910390f35b34801561019c57600080fd5b506101a561074a565b005b3480156101b357600080fd5b506101ce60048036038101906101c991906111e3565b61075e565b005b3480156101dc57600080fd5b506101f760048036038101906101f2919061123c565b6107aa565b604051610204919061110c565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f91906111e3565b6107d4565b005b34801561024257600080fd5b5061024b610826565b6040516102589190611168565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906111e3565b61084f565b604051610295919061119c565b60405180910390f35b6102a66108d2565b6040516102b3919061119c565b60405180910390f35b3480156102c857600080fd5b506102d161091e565b005b3480156102df57600080fd5b506102fa60048036038101906102f591906111e3565b61094a565b005b60006103066109cd565b61030e610a17565b6000858590501180156103245750600083839050115b610363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035a906112c6565b60405180910390fd5b6000806000806000898981019061037a9190611324565b945094509450945094508042106103c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bd906113eb565b60405180910390fd5b6003600086815260200190815260200160002060009054906101000a900460ff1615610427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041e90611457565b60405180910390fd5b61042f610a66565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461049c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610493906114c3565b60405180910390fd5b60008a8a6040516104ae929190611522565b604051809103902090506104c3818a8a610a6e565b60016003600088815260200190815260200160002060006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036105b25782471015610566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055d90611587565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156105ac573d6000803e3d6000fd5b5061067a565b828573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105ec9190611168565b602060405180830381865afa158015610609573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062d91906115bc565b101561066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066590611635565b60405180910390fd5b610679858585610b61565b5b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16877ffeb2000dca3e617cd6f3a8bbb63014bb54a124aac6ccbf73ee7229b4cd01f120866040516106d8919061119c565b60405180910390a4600196505050505050506106f2610cb6565b949350505050565b60008060009054906101000a900460ff16905090565b600061071a610cbf565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600047905090565b610752610cbf565b61075c6000610d3d565b565b610766610cbf565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006003600083815260200190815260200160002060009054906101000a900460ff169050919050565b6107dc610cbf565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610822573d6000803e3d6000fd5b5050565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161088a9190611168565b602060405180830381865afa1580156108a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cb91906115bc565b9050919050565b6000349050803373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c60405160405180910390a390565b610926610cbf565b61092e6106fa565b61093f5761093a610e02565b610948565b610947610e64565b5b565b610952610cbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906116c7565b60405180910390fd5b6109ca81610d3d565b50565b6109d56106fa565b15610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90611733565b60405180910390fd5b565b600260015403610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a539061179f565b60405180910390fd5b6002600181905550565b600033905090565b610a7783610ec6565b92506000610ac98484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610ef6565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b529061180b565b60405180910390fd5b50505050565b6000808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401610b9692919061182b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610c0091906118ba565b6000604051808303816000865af19150503d8060008114610c3d576040519150601f19603f3d011682016040523d82523d6000602084013e610c42565b606091505b5091509150818015610c705750600081511480610c6f575080806020019051810190610c6e91906118fd565b5b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611976565b60405180910390fd5b5050505050565b60018081905550565b610cc7610a66565b73ffffffffffffffffffffffffffffffffffffffff16610ce5610826565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906119e2565b60405180910390fd5b565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e0a6109cd565b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e4d610a66565b604051610e5a9190611168565b60405180910390a1565b610e6c610fb8565b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610eaf610a66565b604051610ebc9190611168565b60405180910390a1565b600081604051602001610ed99190611a84565b604051602081830303815290604052805190602001209050919050565b60006041825103610f775760008060006020850151925060408501519150606085015160001a905060018682858560405160008152602001604052604051610f419493929190611ad5565b6020604051602081039080840390855afa158015610f63573d6000803e3d6000fd5b505050602060405103519350505050610fb2565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611b66565b60405180910390fd5b92915050565b610fc06106fa565b610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611bd2565b60405180910390fd5b565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126110305761102f61100b565b5b8235905067ffffffffffffffff81111561104d5761104c611010565b5b60208301915083600182028301111561106957611068611015565b5b9250929050565b6000806000806040858703121561108a57611089611001565b5b600085013567ffffffffffffffff8111156110a8576110a7611006565b5b6110b48782880161101a565b9450945050602085013567ffffffffffffffff8111156110d7576110d6611006565b5b6110e38782880161101a565b925092505092959194509250565b60008115159050919050565b611106816110f1565b82525050565b600060208201905061112160008301846110fd565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061115282611127565b9050919050565b61116281611147565b82525050565b600060208201905061117d6000830184611159565b92915050565b6000819050919050565b61119681611183565b82525050565b60006020820190506111b1600083018461118d565b92915050565b6111c081611147565b81146111cb57600080fd5b50565b6000813590506111dd816111b7565b92915050565b6000602082840312156111f9576111f8611001565b5b6000611207848285016111ce565b91505092915050565b61121981611183565b811461122457600080fd5b50565b60008135905061123681611210565b92915050565b60006020828403121561125257611251611001565b5b600061126084828501611227565b91505092915050565b600082825260208201905092915050565b7f496e76616c696420646174610000000000000000000000000000000000000000600082015250565b60006112b0600c83611269565b91506112bb8261127a565b602082019050919050565b600060208201905081810360008301526112df816112a3565b9050919050565b60006112f182611127565b9050919050565b611301816112e6565b811461130c57600080fd5b50565b60008135905061131e816112f8565b92915050565b600080600080600060a086880312156113405761133f611001565b5b600061134e88828901611227565b955050602061135f8882890161130f565b94505060406113708882890161130f565b935050606061138188828901611227565b925050608061139288828901611227565b9150509295509295909350565b7f5369676e61747572652065787069726564000000000000000000000000000000600082015250565b60006113d5601183611269565b91506113e08261139f565b602082019050919050565b60006020820190508181036000830152611404816113c8565b9050919050565b7f496e76616c6964206f7264657249640000000000000000000000000000000000600082015250565b6000611441600f83611269565b915061144c8261140b565b602082019050919050565b6000602082019050818103600083015261147081611434565b9050919050565b7f496e76616c6964206163636f756e740000000000000000000000000000000000600082015250565b60006114ad600f83611269565b91506114b882611477565b602082019050919050565b600060208201905081810360008301526114dc816114a0565b9050919050565b600081905092915050565b82818337600083830152505050565b600061150983856114e3565b93506115168385846114ee565b82840190509392505050565b600061152f8284866114fd565b91508190509392505050565b7f45544820496e73756666696369656e7400000000000000000000000000000000600082015250565b6000611571601083611269565b915061157c8261153b565b602082019050919050565b600060208201905081810360008301526115a081611564565b9050919050565b6000815190506115b681611210565b92915050565b6000602082840312156115d2576115d1611001565b5b60006115e0848285016115a7565b91505092915050565b7f455243323020496e73756666696369656e740000000000000000000000000000600082015250565b600061161f601283611269565b915061162a826115e9565b602082019050919050565b6000602082019050818103600083015261164e81611612565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116b1602683611269565b91506116bc82611655565b604082019050919050565b600060208201905081810360008301526116e0816116a4565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061171d601083611269565b9150611728826116e7565b602082019050919050565b6000602082019050818103600083015261174c81611710565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611789601f83611269565b915061179482611753565b602082019050919050565b600060208201905081810360008301526117b88161177c565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006117f5601183611269565b9150611800826117bf565b602082019050919050565b60006020820190508181036000830152611824816117e8565b9050919050565b60006040820190506118406000830185611159565b61184d602083018461118d565b9392505050565b600081519050919050565b60005b8381101561187d578082015181840152602081019050611862565b60008484015250505050565b600061189482611854565b61189e81856114e3565b93506118ae81856020860161185f565b80840191505092915050565b60006118c68284611889565b915081905092915050565b6118da816110f1565b81146118e557600080fd5b50565b6000815190506118f7816118d1565b92915050565b60006020828403121561191357611912611001565b5b6000611921848285016118e8565b91505092915050565b7f4c6f772d6c6576656c2063616c6c206661696c65640000000000000000000000600082015250565b6000611960601583611269565b915061196b8261192a565b602082019050919050565b6000602082019050818103600083015261198f81611953565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119cc602083611269565b91506119d782611996565b602082019050919050565b600060208201905081810360008301526119fb816119bf565b9050919050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000611a43601c83611a02565b9150611a4e82611a0d565b601c82019050919050565b6000819050919050565b6000819050919050565b611a7e611a7982611a59565b611a63565b82525050565b6000611a8f82611a36565b9150611a9b8284611a6d565b60208201915081905092915050565b611ab381611a59565b82525050565b600060ff82169050919050565b611acf81611ab9565b82525050565b6000608082019050611aea6000830187611aaa565b611af76020830186611ac6565b611b046040830185611aaa565b611b116060830184611aaa565b95945050505050565b7f496e636f7272656374205369676e6174757265204c656e677468000000000000600082015250565b6000611b50601a83611269565b9150611b5b82611b1a565b602082019050919050565b60006020820190508181036000830152611b7f81611b43565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611bbc601483611269565b9150611bc782611b86565b602082019050919050565b60006020820190508181036000830152611beb81611baf565b905091905056fea26469706673582212208ec0dfbe38188b52e98a846656c78af981395d618a4261e96c41911d3034b2de64736f6c634300081200330000000000000000000000005ab85b15e0ed0009a8aa606cb07809230fc16eaa
Deployed Bytecode
0x6080604052600436106100c65760003560e01c80637d0c1cf91161007f578063b588d22511610059578063b588d22514610261578063d0e30db01461029e578063d431b1ac146102bc578063f2fde38b146102d3576100cd565b80637d0c1cf9146101d05780637d7d62bb1461020d5780638da5cb5b14610236576100cd565b806350fbe2d9146100d25780635c975abb1461010f5780636232d83f1461013a5780636e94729814610165578063715018a6146101905780637ccbfe7c146101a7576100cd565b366100cd57005b600080fd5b3480156100de57600080fd5b506100f960048036038101906100f49190611070565b6102fc565b604051610106919061110c565b60405180910390f35b34801561011b57600080fd5b506101246106fa565b604051610131919061110c565b60405180910390f35b34801561014657600080fd5b5061014f610710565b60405161015c9190611168565b60405180910390f35b34801561017157600080fd5b5061017a610742565b604051610187919061119c565b60405180910390f35b34801561019c57600080fd5b506101a561074a565b005b3480156101b357600080fd5b506101ce60048036038101906101c991906111e3565b61075e565b005b3480156101dc57600080fd5b506101f760048036038101906101f2919061123c565b6107aa565b604051610204919061110c565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f91906111e3565b6107d4565b005b34801561024257600080fd5b5061024b610826565b6040516102589190611168565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906111e3565b61084f565b604051610295919061119c565b60405180910390f35b6102a66108d2565b6040516102b3919061119c565b60405180910390f35b3480156102c857600080fd5b506102d161091e565b005b3480156102df57600080fd5b506102fa60048036038101906102f591906111e3565b61094a565b005b60006103066109cd565b61030e610a17565b6000858590501180156103245750600083839050115b610363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035a906112c6565b60405180910390fd5b6000806000806000898981019061037a9190611324565b945094509450945094508042106103c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bd906113eb565b60405180910390fd5b6003600086815260200190815260200160002060009054906101000a900460ff1615610427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041e90611457565b60405180910390fd5b61042f610a66565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461049c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610493906114c3565b60405180910390fd5b60008a8a6040516104ae929190611522565b604051809103902090506104c3818a8a610a6e565b60016003600088815260200190815260200160002060006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036105b25782471015610566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055d90611587565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156105ac573d6000803e3d6000fd5b5061067a565b828573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105ec9190611168565b602060405180830381865afa158015610609573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062d91906115bc565b101561066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066590611635565b60405180910390fd5b610679858585610b61565b5b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16877ffeb2000dca3e617cd6f3a8bbb63014bb54a124aac6ccbf73ee7229b4cd01f120866040516106d8919061119c565b60405180910390a4600196505050505050506106f2610cb6565b949350505050565b60008060009054906101000a900460ff16905090565b600061071a610cbf565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600047905090565b610752610cbf565b61075c6000610d3d565b565b610766610cbf565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006003600083815260200190815260200160002060009054906101000a900460ff169050919050565b6107dc610cbf565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610822573d6000803e3d6000fd5b5050565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161088a9190611168565b602060405180830381865afa1580156108a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cb91906115bc565b9050919050565b6000349050803373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c60405160405180910390a390565b610926610cbf565b61092e6106fa565b61093f5761093a610e02565b610948565b610947610e64565b5b565b610952610cbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906116c7565b60405180910390fd5b6109ca81610d3d565b50565b6109d56106fa565b15610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90611733565b60405180910390fd5b565b600260015403610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a539061179f565b60405180910390fd5b6002600181905550565b600033905090565b610a7783610ec6565b92506000610ac98484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610ef6565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b529061180b565b60405180910390fd5b50505050565b6000808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401610b9692919061182b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610c0091906118ba565b6000604051808303816000865af19150503d8060008114610c3d576040519150601f19603f3d011682016040523d82523d6000602084013e610c42565b606091505b5091509150818015610c705750600081511480610c6f575080806020019051810190610c6e91906118fd565b5b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611976565b60405180910390fd5b5050505050565b60018081905550565b610cc7610a66565b73ffffffffffffffffffffffffffffffffffffffff16610ce5610826565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906119e2565b60405180910390fd5b565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e0a6109cd565b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e4d610a66565b604051610e5a9190611168565b60405180910390a1565b610e6c610fb8565b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610eaf610a66565b604051610ebc9190611168565b60405180910390a1565b600081604051602001610ed99190611a84565b604051602081830303815290604052805190602001209050919050565b60006041825103610f775760008060006020850151925060408501519150606085015160001a905060018682858560405160008152602001604052604051610f419493929190611ad5565b6020604051602081039080840390855afa158015610f63573d6000803e3d6000fd5b505050602060405103519350505050610fb2565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611b66565b60405180910390fd5b92915050565b610fc06106fa565b610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611bd2565b60405180910390fd5b565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126110305761102f61100b565b5b8235905067ffffffffffffffff81111561104d5761104c611010565b5b60208301915083600182028301111561106957611068611015565b5b9250929050565b6000806000806040858703121561108a57611089611001565b5b600085013567ffffffffffffffff8111156110a8576110a7611006565b5b6110b48782880161101a565b9450945050602085013567ffffffffffffffff8111156110d7576110d6611006565b5b6110e38782880161101a565b925092505092959194509250565b60008115159050919050565b611106816110f1565b82525050565b600060208201905061112160008301846110fd565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061115282611127565b9050919050565b61116281611147565b82525050565b600060208201905061117d6000830184611159565b92915050565b6000819050919050565b61119681611183565b82525050565b60006020820190506111b1600083018461118d565b92915050565b6111c081611147565b81146111cb57600080fd5b50565b6000813590506111dd816111b7565b92915050565b6000602082840312156111f9576111f8611001565b5b6000611207848285016111ce565b91505092915050565b61121981611183565b811461122457600080fd5b50565b60008135905061123681611210565b92915050565b60006020828403121561125257611251611001565b5b600061126084828501611227565b91505092915050565b600082825260208201905092915050565b7f496e76616c696420646174610000000000000000000000000000000000000000600082015250565b60006112b0600c83611269565b91506112bb8261127a565b602082019050919050565b600060208201905081810360008301526112df816112a3565b9050919050565b60006112f182611127565b9050919050565b611301816112e6565b811461130c57600080fd5b50565b60008135905061131e816112f8565b92915050565b600080600080600060a086880312156113405761133f611001565b5b600061134e88828901611227565b955050602061135f8882890161130f565b94505060406113708882890161130f565b935050606061138188828901611227565b925050608061139288828901611227565b9150509295509295909350565b7f5369676e61747572652065787069726564000000000000000000000000000000600082015250565b60006113d5601183611269565b91506113e08261139f565b602082019050919050565b60006020820190508181036000830152611404816113c8565b9050919050565b7f496e76616c6964206f7264657249640000000000000000000000000000000000600082015250565b6000611441600f83611269565b915061144c8261140b565b602082019050919050565b6000602082019050818103600083015261147081611434565b9050919050565b7f496e76616c6964206163636f756e740000000000000000000000000000000000600082015250565b60006114ad600f83611269565b91506114b882611477565b602082019050919050565b600060208201905081810360008301526114dc816114a0565b9050919050565b600081905092915050565b82818337600083830152505050565b600061150983856114e3565b93506115168385846114ee565b82840190509392505050565b600061152f8284866114fd565b91508190509392505050565b7f45544820496e73756666696369656e7400000000000000000000000000000000600082015250565b6000611571601083611269565b915061157c8261153b565b602082019050919050565b600060208201905081810360008301526115a081611564565b9050919050565b6000815190506115b681611210565b92915050565b6000602082840312156115d2576115d1611001565b5b60006115e0848285016115a7565b91505092915050565b7f455243323020496e73756666696369656e740000000000000000000000000000600082015250565b600061161f601283611269565b915061162a826115e9565b602082019050919050565b6000602082019050818103600083015261164e81611612565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116b1602683611269565b91506116bc82611655565b604082019050919050565b600060208201905081810360008301526116e0816116a4565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061171d601083611269565b9150611728826116e7565b602082019050919050565b6000602082019050818103600083015261174c81611710565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611789601f83611269565b915061179482611753565b602082019050919050565b600060208201905081810360008301526117b88161177c565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006117f5601183611269565b9150611800826117bf565b602082019050919050565b60006020820190508181036000830152611824816117e8565b9050919050565b60006040820190506118406000830185611159565b61184d602083018461118d565b9392505050565b600081519050919050565b60005b8381101561187d578082015181840152602081019050611862565b60008484015250505050565b600061189482611854565b61189e81856114e3565b93506118ae81856020860161185f565b80840191505092915050565b60006118c68284611889565b915081905092915050565b6118da816110f1565b81146118e557600080fd5b50565b6000815190506118f7816118d1565b92915050565b60006020828403121561191357611912611001565b5b6000611921848285016118e8565b91505092915050565b7f4c6f772d6c6576656c2063616c6c206661696c65640000000000000000000000600082015250565b6000611960601583611269565b915061196b8261192a565b602082019050919050565b6000602082019050818103600083015261198f81611953565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119cc602083611269565b91506119d782611996565b602082019050919050565b600060208201905081810360008301526119fb816119bf565b9050919050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000611a43601c83611a02565b9150611a4e82611a0d565b601c82019050919050565b6000819050919050565b6000819050919050565b611a7e611a7982611a59565b611a63565b82525050565b6000611a8f82611a36565b9150611a9b8284611a6d565b60208201915081905092915050565b611ab381611a59565b82525050565b600060ff82169050919050565b611acf81611ab9565b82525050565b6000608082019050611aea6000830187611aaa565b611af76020830186611ac6565b611b046040830185611aaa565b611b116060830184611aaa565b95945050505050565b7f496e636f7272656374205369676e6174757265204c656e677468000000000000600082015250565b6000611b50601a83611269565b9150611b5b82611b1a565b602082019050919050565b60006020820190508181036000830152611b7f81611b43565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611bbc601483611269565b9150611bc782611b86565b602082019050919050565b60006020820190508181036000830152611beb81611baf565b905091905056fea26469706673582212208ec0dfbe38188b52e98a846656c78af981395d618a4261e96c41911d3034b2de64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005ab85b15e0ed0009a8aa606cb07809230fc16eaa
-----Decoded View---------------
Arg [0] : _withdrawSigner (address): 0x5ab85B15e0ED0009A8AA606cb07809230fC16eaA
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005ab85b15e0ed0009a8aa606cb07809230fc16eaa
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.47
Net Worth in ETH
0.000227
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,059.64 | 0.00022729 | $0.468133 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.