Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 47 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Rescue ETH20Toke... | 18060862 | 507 days ago | IN | 0 ETH | 0.00034774 | ||||
Force Send | 18059652 | 507 days ago | IN | 0 ETH | 0.00031667 | ||||
Toggle_lock | 18058227 | 507 days ago | IN | 0 ETH | 0.00049214 | ||||
Toggle_lock | 18058220 | 507 days ago | IN | 0 ETH | 0.00056773 | ||||
Toggle_lock | 18058202 | 507 days ago | IN | 0 ETH | 0.00046942 | ||||
Emergency Unstak... | 18049644 | 509 days ago | IN | 0 ETH | 0.00094022 | ||||
Withdraw LP | 18049538 | 509 days ago | IN | 0 ETH | 0.00141467 | ||||
Change Locking P... | 18049535 | 509 days ago | IN | 0 ETH | 0.00037784 | ||||
Emergencymeasure... | 18049530 | 509 days ago | IN | 0 ETH | 0.00074371 | ||||
Deposit_LP | 18046270 | 509 days ago | IN | 0 ETH | 0.00079458 | ||||
Deposit_LP | 18038887 | 510 days ago | IN | 0 ETH | 0.00084117 | ||||
Deposit_LP | 18034916 | 511 days ago | IN | 0 ETH | 0.00324188 | ||||
Deposit_LP | 18030593 | 511 days ago | IN | 0 ETH | 0.00302599 | ||||
Deposit_LP | 18030382 | 511 days ago | IN | 0 ETH | 0.00130056 | ||||
Deposit_LP | 18030276 | 511 days ago | IN | 0 ETH | 0.00135187 | ||||
Deposit_LP | 18029222 | 511 days ago | IN | 0 ETH | 0.00361097 | ||||
Deposit_LP | 18025536 | 512 days ago | IN | 0 ETH | 0.00124391 | ||||
Deposit_LP | 18025447 | 512 days ago | IN | 0 ETH | 0.00282054 | ||||
Deposit_LP | 18025164 | 512 days ago | IN | 0 ETH | 0.00273173 | ||||
Deposit_LP | 18025020 | 512 days ago | IN | 0 ETH | 0.00291075 | ||||
Deposit_LP | 18024969 | 512 days ago | IN | 0 ETH | 0.00290627 | ||||
Deposit_LP | 18024898 | 512 days ago | IN | 0 ETH | 0.00263742 | ||||
Deposit_LP | 18024007 | 512 days ago | IN | 0 ETH | 0.00307485 | ||||
Deposit_LP | 18023768 | 512 days ago | IN | 0 ETH | 0.00121923 | ||||
Claim | 18023715 | 512 days ago | IN | 0 ETH | 0.00137051 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
OpenPoolStaking
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.6; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } /** * @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; } } /** * @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; } } /** * @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. 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 { 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); } } /** * @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); } /* OpenPool Staking A simple drip feed staking contract which takes deposits in OpenPool Lp token, and gives you a set Ethereum claimable amount per block while you are locked. This is a V1 Staking contract for OpenPool LP, this is unaudited software so use at your own risk. A V2 contract will be released 1-2 weeks after V1 and will be audited, users will be recommended to move to that pool, When the V2 contract is deployed this contract will be discontinued by shutting off staking deposits via the stake_lockdown function. Withdraws will remain open, and funds will be added while users are staked. There is a Bad Actor mapping to tag users who potentially are looking to game the contract, we are watching, you will be seen. Play Nice, you get one warning. */ contract OpenPoolStaking is Ownable, ReentrancyGuard { struct StakingDetails { uint256 amount; uint256 deposit_time; uint256 unlock_time; uint256 last_claim_time; bool participant; } using SafeMath for uint256; address public LP_token_address; IERC20 public LP_token; uint256 public locking_period; bool public claim_enabled = false; bool public lock_enabled = true; bool public stake_lockdown = true; uint256 public total_lp_tokens; uint256 public depositors; uint256 public eth_per_block; uint check_threshold = 500; bool public emergencyMeasures = false; uint256 minThreshold = 1000000000000000000; event RewardsAdded(uint256 deposit_amount, uint256 time); event RunningLowOnRewards(uint256 left_remaining, uint256 time); event Claimed(address account, uint256 amount_due, uint256 time); event LargeDeposit(address account, uint256 amount, uint256 time); mapping(address => StakingDetails) public stake_details; mapping(address => bool) public BadActor; constructor(address _pair, uint256 block_reward) { LP_token = IERC20(_pair); LP_token_address = _pair; eth_per_block = block_reward; locking_period = 604800; } receive() external payable {} function returnLPbalance() public view returns (uint256) { return LP_token.balanceOf(address(this)); } function returnETHbalance() public view returns (uint256) { return address(this).balance; } function fetchEthPerBlock() internal view returns (uint256) { return eth_per_block; } function UpdateAllSettings( bool claim_state, bool lock_state, bool stake_lock_state ) public onlyOwner { enable_claim(claim_state); toggle_lock(lock_state); toggle_stake_lock(stake_lock_state); } function init() public onlyOwner { enable_claim(true); toggle_lock(true); toggle_stake_lock(false); } function emergencymeasuresstate(bool state) public onlyOwner { emergencyMeasures = state; } function DepositRewards() public payable onlyOwner { emit RewardsAdded(msg.value, block.timestamp); } function enable_claim(bool state) public onlyOwner { claim_enabled = state; } function declare_bad_actor(address account, bool state) public onlyOwner { BadActor[account] = state; } function changeEthPerBock(uint256 newvalue) public onlyOwner { eth_per_block = newvalue; } function changeLockingPeriod(uint256 newtime) public onlyOwner { require(newtime <= 500000, "Can't set lock longer then 2 months"); locking_period = newtime; } // if there is a deposit lock for 2 weeks function toggle_lock(bool state) public onlyOwner { lock_enabled = state; } // deposits on/off function toggle_stake_lock(bool state) public onlyOwner { stake_lockdown = state; } function change_threshold(uint amount) public onlyOwner { check_threshold = amount; } // have to approve the vault on the pair contract first function Deposit_LP(uint256 amount) public nonReentrant { require(stake_lockdown == false, " cannot stake at this time "); require(!BadActor[msg.sender]); require(amount > 0); amount = amount; if(amount > check_threshold){ emit LargeDeposit(msg.sender, amount, block.timestamp); } if (stake_details[msg.sender].participant == true) { if(claim_enabled){ internalClaim(msg.sender); } stake_details[msg.sender].amount += amount; LP_token.transferFrom(msg.sender, address(this), amount); total_lp_tokens += amount; } else { bool success = LP_token.transferFrom( msg.sender, address(this), amount ); require(success); depositors += 1; stake_details[msg.sender].amount += amount; stake_details[msg.sender].participant = true; stake_details[msg.sender].deposit_time = block.timestamp; stake_details[msg.sender].last_claim_time = block.timestamp; stake_details[msg.sender].unlock_time = block.timestamp + locking_period; total_lp_tokens += amount; } } function WithdrawLP() public nonReentrant { require(stake_details[msg.sender].participant == true); require(!BadActor[msg.sender]); if (lock_enabled) { require( stake_details[msg.sender].deposit_time + locking_period <= block.timestamp, "your still locked wait until block.timestamp is later then your lock period" ); } if (stake_details[msg.sender].last_claim_time < block.timestamp) { if(claim_enabled){ internalClaim(msg.sender); } } stake_details[msg.sender].participant = false; depositors -= 1; bool success = LP_token.transfer( msg.sender, stake_details[msg.sender].amount ); require(success); total_lp_tokens -= stake_details[msg.sender].amount; stake_details[msg.sender].amount = 0; } function EmergencyUnstake() public nonReentrant { require(emergencyMeasures == true, "can only use in emergency state"); require(stake_details[msg.sender].participant == true); require(!BadActor[msg.sender]); if (lock_enabled) { require( stake_details[msg.sender].deposit_time + locking_period <= block.timestamp, "your still locked wait until block.timestamp is later then your lock period" ); } stake_details[msg.sender].participant = false; depositors -= 1; bool success = LP_token.transfer( msg.sender, stake_details[msg.sender].amount ); require(success); total_lp_tokens -= stake_details[msg.sender].amount; stake_details[msg.sender].amount = 0; } function internalClaim(address account) private { require(claim_enabled, " claim has not been enabled yet "); require( stake_details[account].participant == true, " not recognized as acive staker" ); require( block.timestamp > stake_details[account].last_claim_time, "you can only claim once per block" ); stake_details[account].last_claim_time = block.timestamp; uint256 amount_due = getPendingReturns(account); if (amount_due == 0) { return; } (bool success, ) = payable(account).call{value: amount_due}(""); require(success); emit Claimed(account, amount_due, block.timestamp); if (address(this).balance <= minThreshold) { emit RunningLowOnRewards(address(this).balance, block.timestamp); } } function Claim() public nonReentrant { require(!BadActor[msg.sender]); require(claim_enabled, " claim has not been enabled yet "); require( stake_details[msg.sender].participant == true, " not recognized as active staker" ); require( block.timestamp > stake_details[msg.sender].last_claim_time, "you can only claim once per block" ); require( block.timestamp <= stake_details[msg.sender].deposit_time + locking_period, "you must re-lock your LP for another lock duration before claiming again Withraw will auto claim rewards" ); uint256 amount_due = getPendingReturns(msg.sender); stake_details[msg.sender].last_claim_time = block.timestamp; if (amount_due == 0) { return; } (bool success, ) = payable(msg.sender).call{value: amount_due}(""); require(success); emit Claimed(msg.sender, amount_due, block.timestamp); if (address(this).balance <= minThreshold) { emit RunningLowOnRewards(address(this).balance, block.timestamp); } } function Compound() public nonReentrant { require(!BadActor[msg.sender]); require( stake_lockdown == false, "stake lockdown active, please remove your tokens, or wait for activation" ); require( stake_details[msg.sender].participant == true, " not recognized as acive staker" ); if (lock_enabled) { require( stake_details[msg.sender].deposit_time + locking_period <= block.timestamp, "your still locked - wait for lock duration to time out " ); } if (stake_details[msg.sender].last_claim_time < block.timestamp) { internalClaim(msg.sender); } stake_details[msg.sender].deposit_time = block.timestamp; stake_details[msg.sender].last_claim_time = block.timestamp; stake_details[msg.sender].unlock_time = block.timestamp + locking_period; } function getTimeInPool(address account) public view returns(uint256){ return stake_details[account].deposit_time - block.timestamp; } function getTimeleftTillUnlock(address account) public view returns(uint256){ return stake_details[account].deposit_time + locking_period - block.timestamp; } function getPendingReturns(address account) public view returns (uint256) { uint256 reward_blocks = block.timestamp - stake_details[account].last_claim_time; uint256 reward_rate = fetchEthPerBlock(); uint256 amount_due = ((reward_rate * users_pool_percentage(account)) / 10000) * reward_blocks; return amount_due; } function users_pool_percentage(address account) public view returns (uint256) { uint256 userStake = stake_details[account].amount; uint256 totalSupply = LP_token.balanceOf(address(this)); if (totalSupply == 0) { return 0; // Avoid division by zero } uint256 percentage = (userStake * 10000) / totalSupply; return percentage; } function rescueETH20Tokens(address tokenAddress) external onlyOwner { IERC20(tokenAddress).transfer( owner(), IERC20(tokenAddress).balanceOf(address(this)) ); } function forceSend() external onlyOwner { uint256 ETHbalance = address(this).balance; (bool success, ) = payable(owner()).call{value: ETHbalance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"uint256","name":"block_reward","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount_due","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"LargeDeposit","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":"uint256","name":"deposit_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"RewardsAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"left_remaining","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"RunningLowOnRewards","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"BadActor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DepositRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit_LP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"EmergencyUnstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LP_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LP_token_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"claim_state","type":"bool"},{"internalType":"bool","name":"lock_state","type":"bool"},{"internalType":"bool","name":"stake_lock_state","type":"bool"}],"name":"UpdateAllSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WithdrawLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newvalue","type":"uint256"}],"name":"changeEthPerBock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newtime","type":"uint256"}],"name":"changeLockingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"change_threshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim_enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"declare_bad_actor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyMeasures","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"emergencymeasuresstate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"enable_claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eth_per_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getPendingReturns","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTimeInPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTimeleftTillUnlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lock_enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locking_period","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnETHbalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"returnLPbalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stake_details","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deposit_time","type":"uint256"},{"internalType":"uint256","name":"unlock_time","type":"uint256"},{"internalType":"uint256","name":"last_claim_time","type":"uint256"},{"internalType":"bool","name":"participant","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stake_lockdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"toggle_lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"toggle_stake_lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"total_lp_tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"users_pool_percentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526005805462ffffff1916620101001790556101f4600955600a805460ff19169055670de0b6b3a7640000600b553480156200003e57600080fd5b5060405162002052380380620020528339810160408190526200006191620000fb565b6200006c33620000ab565b60018055600380546001600160a01b039093166001600160a01b03199384168117909155600280549093161790915560085562093a8060045562000137565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200010f57600080fd5b82516001600160a01b03811681146200012757600080fd5b6020939093015192949293505050565b611f0b80620001476000396000f3fe6080604052600436106102a45760003560e01c806391cd55d91161016e578063d7ca7cc5116100cb578063e469c5231161007f578063f2fde38b11610064578063f2fde38b1461072d578063f7b2c5551461074d578063fb7a9eb11461076d57600080fd5b8063e469c523146106f3578063e82346441461071357600080fd5b8063e0ba9e17116100b0578063e0ba9e17146106a9578063e18253e0146106be578063e1c7392a146106de57600080fd5b8063d7ca7cc514610669578063e0a886aa1461068957600080fd5b8063b6f1757a11610122578063bd96aff511610107578063bd96aff514610609578063c8d035ef14610629578063d5caa35a1461064957600080fd5b8063b6f1757a146105ec578063b9ba5f8b1461060157600080fd5b80639f2508a7116101535780639f2508a71461053f578063a4cecf5f146105b6578063aaa46688146105d657600080fd5b806391cd55d9146104ff5780639ee32ae51461051f57600080fd5b80633158952e1161021c578063715018a6116101d057806383ffda3b116101b557806383ffda3b146104ac578063846a0efa146104cc5780638da5cb5b146104e157600080fd5b8063715018a6146104815780637d5859ed1461049657600080fd5b80633c823333116102015780633c8233331461042b57806342592bf91461044b5780636dbf218e1461046b57600080fd5b80633158952e146103f6578063357953201461040b57600080fd5b806319940ea51161027357806323c76b5c1161025857806323c76b5c146103975780632563e935146103ac57806326b74e09146103dc57600080fd5b806319940ea5146103495780631a9502171461035f57600080fd5b80630a78097d146102b05780630e867aa8146102d25780631147b1901461030557806312b77e8a1461033457600080fd5b366102ab57005b600080fd5b3480156102bc57600080fd5b506102d06102cb366004611d42565b610780565b005b3480156102de57600080fd5b506102f26102ed366004611d42565b61089c565b6040519081526020015b60405180910390f35b34801561031157600080fd5b5060055461032490610100900460ff1681565b60405190151581526020016102fc565b34801561034057600080fd5b506102d06108c9565b34801561035557600080fd5b506102f260065481565b34801561036b57600080fd5b5060035461037f906001600160a01b031681565b6040516001600160a01b0390911681526020016102fc565b3480156103a357600080fd5b506102f2610943565b3480156103b857600080fd5b506103246103c7366004611d42565b600d6020526000908152604090205460ff1681565b3480156103e857600080fd5b50600a546103249060ff1681565b34801561040257600080fd5b506102d06109b5565b34801561041757600080fd5b506102f2610426366004611d42565b610cf9565b34801561043757600080fd5b506102d0610446366004611d64565b610d30565b34801561045757600080fd5b506102d0610466366004611d8b565b610d3d565b34801561047757600080fd5b506102f260045481565b34801561048d57600080fd5b506102d0610d61565b3480156104a257600080fd5b506102f260085481565b3480156104b857600080fd5b506102f26104c7366004611d42565b610d73565b3480156104d857600080fd5b506102d0610de0565b3480156104ed57600080fd5b506000546001600160a01b031661037f565b34801561050b57600080fd5b506102d061051a366004611d64565b611020565b34801561052b57600080fd5b506102d061053a366004611d8b565b61102d565b34801561054b57600080fd5b5061058c61055a366004611d42565b600c60205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a0016102fc565b3480156105c257600080fd5b506102d06105d1366004611d8b565b61104f565b3480156105e257600080fd5b506102f260075481565b3480156105f857600080fd5b506102d061106a565b6102d06112e0565b34801561061557600080fd5b5060025461037f906001600160a01b031681565b34801561063557600080fd5b506102d0610644366004611da8565b611322565b34801561065557600080fd5b506102d0610664366004611df3565b61134a565b34801561067557600080fd5b506102d0610684366004611d64565b61137d565b34801561069557600080fd5b506102f26106a4366004611d42565b611403565b3480156106b557600080fd5b506102d06114b4565b3480156106ca57600080fd5b506005546103249062010000900460ff1681565b3480156106ea57600080fd5b506102d06115e4565b3480156106ff57600080fd5b506102d061070e366004611d8b565b61160a565b34801561071f57600080fd5b506005546103249060ff1681565b34801561073957600080fd5b506102d0610748366004611d42565b611625565b34801561075957600080fd5b506102d0610768366004611d64565b6116b5565b34801561077957600080fd5b50476102f2565b6107886119b1565b806001600160a01b031663a9059cbb6107a96000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156107ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108119190611e2a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610874573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108989190611e43565b5050565b6001600160a01b0381166000908152600c60205260408120600101546108c3904290611e76565b92915050565b6108d16119b1565b4760006108e66000546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610930576040519150601f19603f3d011682016040523d82523d6000602084013e610935565b606091505b505090508061089857600080fd5b6003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561098c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b09190611e2a565b905090565b6109bd611a0b565b336000908152600d602052604090205460ff16156109da57600080fd5b60055460ff16610a315760405162461bcd60e51b815260206004820181905260248201527f20636c61696d20686173206e6f74206265656e20656e61626c6564207965742060448201526064015b60405180910390fd5b336000908152600c602052604090206004015460ff161515600114610a985760405162461bcd60e51b815260206004820181905260248201527f206e6f74207265636f676e697a656420617320616374697665207374616b65726044820152606401610a28565b336000908152600c60205260409020600301544211610b035760405162461bcd60e51b815260206004820152602160248201527f796f752063616e206f6e6c7920636c61696d206f6e63652070657220626c6f636044820152606b60f81b6064820152608401610a28565b600454336000908152600c6020526040902060010154610b239190611e89565b421115610be45760405162461bcd60e51b815260206004820152606860248201527f796f75206d7573742072652d6c6f636b20796f7572204c5020666f7220616e6f60448201527f74686572206c6f636b206475726174696f6e206265666f726520636c61696d6960648201527f6e6720616761696e20576974687261772077696c6c206175746f20636c61696d60848201527f207265776172647300000000000000000000000000000000000000000000000060a482015260c401610a28565b6000610bef33610d73565b336000908152600c6020526040812042600390910155909150819003610c155750610cee565b604051600090339083908381818185875af1925050503d8060008114610c57576040519150601f19603f3d011682016040523d82523d6000602084013e610c5c565b606091505b5050905080610c6a57600080fd5b6040805133815260208101849052428183015290517f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a9181900360600190a1600b544711610ceb57604080514781524260208201527f4a8a21e3c6b2ec3a6e7a6fede383f6300659c320b4ecb992db2ea573e68a64e4910160405180910390a15b50505b610cf760018055565b565b6004546001600160a01b0382166000908152600c602052604081206001015490914291610d269190611e89565b6108c39190611e76565b610d386119b1565b600955565b610d456119b1565b60058054911515620100000262ff000019909216919091179055565b610d696119b1565b610cf76000611a64565b6001600160a01b0381166000908152600c60205260408120600301548190610d9b9042611e76565b90506000610da860085490565b9050600082612710610db987611403565b610dc39085611e9c565b610dcd9190611eb3565b610dd79190611e9c565b95945050505050565b610de8611a0b565b336000908152600d602052604090205460ff1615610e0557600080fd5b60055462010000900460ff1615610eaa5760405162461bcd60e51b815260206004820152604860248201527f7374616b65206c6f636b646f776e206163746976652c20706c6561736520726560448201527f6d6f766520796f757220746f6b656e732c206f72207761697420666f7220616360648201527f7469766174696f6e000000000000000000000000000000000000000000000000608482015260a401610a28565b336000908152600c602052604090206004015460ff161515600114610f115760405162461bcd60e51b815260206004820152601f60248201527f206e6f74207265636f676e697a6564206173206163697665207374616b6572006044820152606401610a28565b600554610100900460ff1615610fb657600454336000908152600c60205260409020600101544291610f4291611e89565b1115610fb65760405162461bcd60e51b815260206004820152603760248201527f796f7572207374696c6c206c6f636b6564202d207761697420666f72206c6f6360448201527f6b206475726174696f6e20746f2074696d65206f7574200000000000000000006064820152608401610a28565b336000908152600c6020526040902060030154421115610fd957610fd933611acc565b336000908152600c602052604090204260018201819055600390910181905560045461100491611e89565b336000908152600c6020526040902060020155610cf760018055565b6110286119b1565b600855565b6110356119b1565b600580549115156101000261ff0019909216919091179055565b6110576119b1565b6005805460ff1916911515919091179055565b611072611a0b565b600a5460ff1615156001146110c95760405162461bcd60e51b815260206004820152601f60248201527f63616e206f6e6c792075736520696e20656d657267656e6379207374617465006044820152606401610a28565b336000908152600c602052604090206004015460ff1615156001146110ed57600080fd5b336000908152600d602052604090205460ff161561110a57600080fd5b600554610100900460ff16156111c357600454336000908152600c6020526040902060010154429161113b91611e89565b11156111c35760405162461bcd60e51b815260206004820152604b60248201527f796f7572207374696c6c206c6f636b6564207761697420756e74696c20626c6f60448201527f636b2e74696d657374616d70206973206c61746572207468656e20796f75722060648201526a1b1bd8dac81c195c9a5bd960aa1b608482015260a401610a28565b336000908152600c60205260408120600401805460ff1916905560078054600192906111f0908490611e76565b9091555050600354336000818152600c60205260408082205490517fa9059cbb00000000000000000000000000000000000000000000000000000000815260048101939093526024830152916001600160a01b03169063a9059cbb906044016020604051808303816000875af115801561126e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112929190611e43565b90508061129e57600080fd5b336000908152600c602052604081205460068054919290916112c1908490611e76565b9091555050336000908152600c602052604081205550610cf760018055565b6112e86119b1565b604080513481524260208201527f40df43107e8b4d467127964bd3c966687c0a6a39aaede970755397fd09535e98910160405180910390a1565b61132a6119b1565b6113338361104f565b61133c8261102d565b61134581610d3d565b505050565b6113526119b1565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6113856119b1565b6207a1208111156113fe5760405162461bcd60e51b815260206004820152602360248201527f43616e277420736574206c6f636b206c6f6e676572207468656e2032206d6f6e60448201527f74687300000000000000000000000000000000000000000000000000000000006064820152608401610a28565b600455565b6001600160a01b038181166000908152600c60205260408082205460035491516370a0823160e01b8152306004820152929390928492909116906370a0823190602401602060405180830381865afa158015611463573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114879190611e2a565b90508060000361149b575060009392505050565b6000816114aa84612710611e9c565b610dd79190611eb3565b6114bc611a0b565b336000908152600c602052604090206004015460ff1615156001146114e057600080fd5b336000908152600d602052604090205460ff16156114fd57600080fd5b600554610100900460ff16156115b657600454336000908152600c6020526040902060010154429161152e91611e89565b11156115b65760405162461bcd60e51b815260206004820152604b60248201527f796f7572207374696c6c206c6f636b6564207761697420756e74696c20626c6f60448201527f636b2e74696d657374616d70206973206c61746572207468656e20796f75722060648201526a1b1bd8dac81c195c9a5bd960aa1b608482015260a401610a28565b336000908152600c60205260409020600301544211156111c35760055460ff16156111c3576111c333611acc565b6115ec6119b1565b6115f6600161104f565b611600600161102d565b610cf76000610d3d565b6116126119b1565b600a805460ff1916911515919091179055565b61162d6119b1565b6001600160a01b0381166116a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a28565b6116b281611a64565b50565b6116bd611a0b565b60055462010000900460ff16156117165760405162461bcd60e51b815260206004820152601b60248201527f2063616e6e6f74207374616b6520617420746869732074696d652000000000006044820152606401610a28565b336000908152600d602052604090205460ff161561173357600080fd5b6000811161174057600080fd5b60095481111561178a576040805133815260208101839052428183015290517f824b70925347125fc620b18df17c04f61a2451ac8bb4f4f7dec1aa73030f77569181900360600190a15b336000908152600c602052604090206004015460ff16151560010361187a5760055460ff16156117bd576117bd33611acc565b336000908152600c6020526040812080548392906117dc908490611e89565b90915550506003546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015611838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185c9190611e43565b50806006600082825461186f9190611e89565b909155506119a89050565b6003546040516323b872dd60e01b8152336004820152306024820152604481018390526000916001600160a01b0316906323b872dd906064016020604051808303816000875af11580156118d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f69190611e43565b90508061190257600080fd5b6001600760008282546119159190611e89565b9091555050336000908152600c602052604081208054849290611939908490611e89565b9091555050336000908152600c602052604090206004808201805460ff191660019081179091554290830181905560039092018290555461197991611e89565b336000908152600c6020526040812060020191909155600680548492906119a1908490611e89565b9091555050505b6116b260018055565b6000546001600160a01b03163314610cf75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a28565b600260015403611a5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a28565b6002600155565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60055460ff16611b1e5760405162461bcd60e51b815260206004820181905260248201527f20636c61696d20686173206e6f74206265656e20656e61626c656420796574206044820152606401610a28565b6001600160a01b0381166000908152600c602052604090206004015460ff161515600114611b8e5760405162461bcd60e51b815260206004820152601f60248201527f206e6f74207265636f676e697a6564206173206163697665207374616b6572006044820152606401610a28565b6001600160a01b0381166000908152600c60205260409020600301544211611c025760405162461bcd60e51b815260206004820152602160248201527f796f752063616e206f6e6c7920636c61696d206f6e63652070657220626c6f636044820152606b60f81b6064820152608401610a28565b6001600160a01b0381166000908152600c6020526040812042600390910155611c2a82610d73565b905080600003611c38575050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c85576040519150601f19603f3d011682016040523d82523d6000602084013e611c8a565b606091505b5050905080611c9857600080fd5b604080516001600160a01b038516815260208101849052428183015290517f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a9181900360600190a1600b54471161134557604080514781524260208201527f4a8a21e3c6b2ec3a6e7a6fede383f6300659c320b4ecb992db2ea573e68a64e4910160405180910390a1505050565b80356001600160a01b0381168114611d3d57600080fd5b919050565b600060208284031215611d5457600080fd5b611d5d82611d26565b9392505050565b600060208284031215611d7657600080fd5b5035919050565b80151581146116b257600080fd5b600060208284031215611d9d57600080fd5b8135611d5d81611d7d565b600080600060608486031215611dbd57600080fd5b8335611dc881611d7d565b92506020840135611dd881611d7d565b91506040840135611de881611d7d565b809150509250925092565b60008060408385031215611e0657600080fd5b611e0f83611d26565b91506020830135611e1f81611d7d565b809150509250929050565b600060208284031215611e3c57600080fd5b5051919050565b600060208284031215611e5557600080fd5b8151611d5d81611d7d565b634e487b7160e01b600052601160045260246000fd5b818103818111156108c3576108c3611e60565b808201808211156108c3576108c3611e60565b80820281158282048414176108c3576108c3611e60565b600082611ed057634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220da8e928d8323593c93769afa98336d0421809898e6acc5da1a006df9fc56f86b64736f6c63430008120033000000000000000000000000a0e1b7c989692ac60b17a800b7018727b618d163000000000000000000000000000000000000000000000000000000a63db76400
Deployed Bytecode
0x6080604052600436106102a45760003560e01c806391cd55d91161016e578063d7ca7cc5116100cb578063e469c5231161007f578063f2fde38b11610064578063f2fde38b1461072d578063f7b2c5551461074d578063fb7a9eb11461076d57600080fd5b8063e469c523146106f3578063e82346441461071357600080fd5b8063e0ba9e17116100b0578063e0ba9e17146106a9578063e18253e0146106be578063e1c7392a146106de57600080fd5b8063d7ca7cc514610669578063e0a886aa1461068957600080fd5b8063b6f1757a11610122578063bd96aff511610107578063bd96aff514610609578063c8d035ef14610629578063d5caa35a1461064957600080fd5b8063b6f1757a146105ec578063b9ba5f8b1461060157600080fd5b80639f2508a7116101535780639f2508a71461053f578063a4cecf5f146105b6578063aaa46688146105d657600080fd5b806391cd55d9146104ff5780639ee32ae51461051f57600080fd5b80633158952e1161021c578063715018a6116101d057806383ffda3b116101b557806383ffda3b146104ac578063846a0efa146104cc5780638da5cb5b146104e157600080fd5b8063715018a6146104815780637d5859ed1461049657600080fd5b80633c823333116102015780633c8233331461042b57806342592bf91461044b5780636dbf218e1461046b57600080fd5b80633158952e146103f6578063357953201461040b57600080fd5b806319940ea51161027357806323c76b5c1161025857806323c76b5c146103975780632563e935146103ac57806326b74e09146103dc57600080fd5b806319940ea5146103495780631a9502171461035f57600080fd5b80630a78097d146102b05780630e867aa8146102d25780631147b1901461030557806312b77e8a1461033457600080fd5b366102ab57005b600080fd5b3480156102bc57600080fd5b506102d06102cb366004611d42565b610780565b005b3480156102de57600080fd5b506102f26102ed366004611d42565b61089c565b6040519081526020015b60405180910390f35b34801561031157600080fd5b5060055461032490610100900460ff1681565b60405190151581526020016102fc565b34801561034057600080fd5b506102d06108c9565b34801561035557600080fd5b506102f260065481565b34801561036b57600080fd5b5060035461037f906001600160a01b031681565b6040516001600160a01b0390911681526020016102fc565b3480156103a357600080fd5b506102f2610943565b3480156103b857600080fd5b506103246103c7366004611d42565b600d6020526000908152604090205460ff1681565b3480156103e857600080fd5b50600a546103249060ff1681565b34801561040257600080fd5b506102d06109b5565b34801561041757600080fd5b506102f2610426366004611d42565b610cf9565b34801561043757600080fd5b506102d0610446366004611d64565b610d30565b34801561045757600080fd5b506102d0610466366004611d8b565b610d3d565b34801561047757600080fd5b506102f260045481565b34801561048d57600080fd5b506102d0610d61565b3480156104a257600080fd5b506102f260085481565b3480156104b857600080fd5b506102f26104c7366004611d42565b610d73565b3480156104d857600080fd5b506102d0610de0565b3480156104ed57600080fd5b506000546001600160a01b031661037f565b34801561050b57600080fd5b506102d061051a366004611d64565b611020565b34801561052b57600080fd5b506102d061053a366004611d8b565b61102d565b34801561054b57600080fd5b5061058c61055a366004611d42565b600c60205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a0016102fc565b3480156105c257600080fd5b506102d06105d1366004611d8b565b61104f565b3480156105e257600080fd5b506102f260075481565b3480156105f857600080fd5b506102d061106a565b6102d06112e0565b34801561061557600080fd5b5060025461037f906001600160a01b031681565b34801561063557600080fd5b506102d0610644366004611da8565b611322565b34801561065557600080fd5b506102d0610664366004611df3565b61134a565b34801561067557600080fd5b506102d0610684366004611d64565b61137d565b34801561069557600080fd5b506102f26106a4366004611d42565b611403565b3480156106b557600080fd5b506102d06114b4565b3480156106ca57600080fd5b506005546103249062010000900460ff1681565b3480156106ea57600080fd5b506102d06115e4565b3480156106ff57600080fd5b506102d061070e366004611d8b565b61160a565b34801561071f57600080fd5b506005546103249060ff1681565b34801561073957600080fd5b506102d0610748366004611d42565b611625565b34801561075957600080fd5b506102d0610768366004611d64565b6116b5565b34801561077957600080fd5b50476102f2565b6107886119b1565b806001600160a01b031663a9059cbb6107a96000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156107ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108119190611e2a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610874573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108989190611e43565b5050565b6001600160a01b0381166000908152600c60205260408120600101546108c3904290611e76565b92915050565b6108d16119b1565b4760006108e66000546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610930576040519150601f19603f3d011682016040523d82523d6000602084013e610935565b606091505b505090508061089857600080fd5b6003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561098c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b09190611e2a565b905090565b6109bd611a0b565b336000908152600d602052604090205460ff16156109da57600080fd5b60055460ff16610a315760405162461bcd60e51b815260206004820181905260248201527f20636c61696d20686173206e6f74206265656e20656e61626c6564207965742060448201526064015b60405180910390fd5b336000908152600c602052604090206004015460ff161515600114610a985760405162461bcd60e51b815260206004820181905260248201527f206e6f74207265636f676e697a656420617320616374697665207374616b65726044820152606401610a28565b336000908152600c60205260409020600301544211610b035760405162461bcd60e51b815260206004820152602160248201527f796f752063616e206f6e6c7920636c61696d206f6e63652070657220626c6f636044820152606b60f81b6064820152608401610a28565b600454336000908152600c6020526040902060010154610b239190611e89565b421115610be45760405162461bcd60e51b815260206004820152606860248201527f796f75206d7573742072652d6c6f636b20796f7572204c5020666f7220616e6f60448201527f74686572206c6f636b206475726174696f6e206265666f726520636c61696d6960648201527f6e6720616761696e20576974687261772077696c6c206175746f20636c61696d60848201527f207265776172647300000000000000000000000000000000000000000000000060a482015260c401610a28565b6000610bef33610d73565b336000908152600c6020526040812042600390910155909150819003610c155750610cee565b604051600090339083908381818185875af1925050503d8060008114610c57576040519150601f19603f3d011682016040523d82523d6000602084013e610c5c565b606091505b5050905080610c6a57600080fd5b6040805133815260208101849052428183015290517f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a9181900360600190a1600b544711610ceb57604080514781524260208201527f4a8a21e3c6b2ec3a6e7a6fede383f6300659c320b4ecb992db2ea573e68a64e4910160405180910390a15b50505b610cf760018055565b565b6004546001600160a01b0382166000908152600c602052604081206001015490914291610d269190611e89565b6108c39190611e76565b610d386119b1565b600955565b610d456119b1565b60058054911515620100000262ff000019909216919091179055565b610d696119b1565b610cf76000611a64565b6001600160a01b0381166000908152600c60205260408120600301548190610d9b9042611e76565b90506000610da860085490565b9050600082612710610db987611403565b610dc39085611e9c565b610dcd9190611eb3565b610dd79190611e9c565b95945050505050565b610de8611a0b565b336000908152600d602052604090205460ff1615610e0557600080fd5b60055462010000900460ff1615610eaa5760405162461bcd60e51b815260206004820152604860248201527f7374616b65206c6f636b646f776e206163746976652c20706c6561736520726560448201527f6d6f766520796f757220746f6b656e732c206f72207761697420666f7220616360648201527f7469766174696f6e000000000000000000000000000000000000000000000000608482015260a401610a28565b336000908152600c602052604090206004015460ff161515600114610f115760405162461bcd60e51b815260206004820152601f60248201527f206e6f74207265636f676e697a6564206173206163697665207374616b6572006044820152606401610a28565b600554610100900460ff1615610fb657600454336000908152600c60205260409020600101544291610f4291611e89565b1115610fb65760405162461bcd60e51b815260206004820152603760248201527f796f7572207374696c6c206c6f636b6564202d207761697420666f72206c6f6360448201527f6b206475726174696f6e20746f2074696d65206f7574200000000000000000006064820152608401610a28565b336000908152600c6020526040902060030154421115610fd957610fd933611acc565b336000908152600c602052604090204260018201819055600390910181905560045461100491611e89565b336000908152600c6020526040902060020155610cf760018055565b6110286119b1565b600855565b6110356119b1565b600580549115156101000261ff0019909216919091179055565b6110576119b1565b6005805460ff1916911515919091179055565b611072611a0b565b600a5460ff1615156001146110c95760405162461bcd60e51b815260206004820152601f60248201527f63616e206f6e6c792075736520696e20656d657267656e6379207374617465006044820152606401610a28565b336000908152600c602052604090206004015460ff1615156001146110ed57600080fd5b336000908152600d602052604090205460ff161561110a57600080fd5b600554610100900460ff16156111c357600454336000908152600c6020526040902060010154429161113b91611e89565b11156111c35760405162461bcd60e51b815260206004820152604b60248201527f796f7572207374696c6c206c6f636b6564207761697420756e74696c20626c6f60448201527f636b2e74696d657374616d70206973206c61746572207468656e20796f75722060648201526a1b1bd8dac81c195c9a5bd960aa1b608482015260a401610a28565b336000908152600c60205260408120600401805460ff1916905560078054600192906111f0908490611e76565b9091555050600354336000818152600c60205260408082205490517fa9059cbb00000000000000000000000000000000000000000000000000000000815260048101939093526024830152916001600160a01b03169063a9059cbb906044016020604051808303816000875af115801561126e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112929190611e43565b90508061129e57600080fd5b336000908152600c602052604081205460068054919290916112c1908490611e76565b9091555050336000908152600c602052604081205550610cf760018055565b6112e86119b1565b604080513481524260208201527f40df43107e8b4d467127964bd3c966687c0a6a39aaede970755397fd09535e98910160405180910390a1565b61132a6119b1565b6113338361104f565b61133c8261102d565b61134581610d3d565b505050565b6113526119b1565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6113856119b1565b6207a1208111156113fe5760405162461bcd60e51b815260206004820152602360248201527f43616e277420736574206c6f636b206c6f6e676572207468656e2032206d6f6e60448201527f74687300000000000000000000000000000000000000000000000000000000006064820152608401610a28565b600455565b6001600160a01b038181166000908152600c60205260408082205460035491516370a0823160e01b8152306004820152929390928492909116906370a0823190602401602060405180830381865afa158015611463573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114879190611e2a565b90508060000361149b575060009392505050565b6000816114aa84612710611e9c565b610dd79190611eb3565b6114bc611a0b565b336000908152600c602052604090206004015460ff1615156001146114e057600080fd5b336000908152600d602052604090205460ff16156114fd57600080fd5b600554610100900460ff16156115b657600454336000908152600c6020526040902060010154429161152e91611e89565b11156115b65760405162461bcd60e51b815260206004820152604b60248201527f796f7572207374696c6c206c6f636b6564207761697420756e74696c20626c6f60448201527f636b2e74696d657374616d70206973206c61746572207468656e20796f75722060648201526a1b1bd8dac81c195c9a5bd960aa1b608482015260a401610a28565b336000908152600c60205260409020600301544211156111c35760055460ff16156111c3576111c333611acc565b6115ec6119b1565b6115f6600161104f565b611600600161102d565b610cf76000610d3d565b6116126119b1565b600a805460ff1916911515919091179055565b61162d6119b1565b6001600160a01b0381166116a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a28565b6116b281611a64565b50565b6116bd611a0b565b60055462010000900460ff16156117165760405162461bcd60e51b815260206004820152601b60248201527f2063616e6e6f74207374616b6520617420746869732074696d652000000000006044820152606401610a28565b336000908152600d602052604090205460ff161561173357600080fd5b6000811161174057600080fd5b60095481111561178a576040805133815260208101839052428183015290517f824b70925347125fc620b18df17c04f61a2451ac8bb4f4f7dec1aa73030f77569181900360600190a15b336000908152600c602052604090206004015460ff16151560010361187a5760055460ff16156117bd576117bd33611acc565b336000908152600c6020526040812080548392906117dc908490611e89565b90915550506003546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015611838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185c9190611e43565b50806006600082825461186f9190611e89565b909155506119a89050565b6003546040516323b872dd60e01b8152336004820152306024820152604481018390526000916001600160a01b0316906323b872dd906064016020604051808303816000875af11580156118d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f69190611e43565b90508061190257600080fd5b6001600760008282546119159190611e89565b9091555050336000908152600c602052604081208054849290611939908490611e89565b9091555050336000908152600c602052604090206004808201805460ff191660019081179091554290830181905560039092018290555461197991611e89565b336000908152600c6020526040812060020191909155600680548492906119a1908490611e89565b9091555050505b6116b260018055565b6000546001600160a01b03163314610cf75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a28565b600260015403611a5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a28565b6002600155565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60055460ff16611b1e5760405162461bcd60e51b815260206004820181905260248201527f20636c61696d20686173206e6f74206265656e20656e61626c656420796574206044820152606401610a28565b6001600160a01b0381166000908152600c602052604090206004015460ff161515600114611b8e5760405162461bcd60e51b815260206004820152601f60248201527f206e6f74207265636f676e697a6564206173206163697665207374616b6572006044820152606401610a28565b6001600160a01b0381166000908152600c60205260409020600301544211611c025760405162461bcd60e51b815260206004820152602160248201527f796f752063616e206f6e6c7920636c61696d206f6e63652070657220626c6f636044820152606b60f81b6064820152608401610a28565b6001600160a01b0381166000908152600c6020526040812042600390910155611c2a82610d73565b905080600003611c38575050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c85576040519150601f19603f3d011682016040523d82523d6000602084013e611c8a565b606091505b5050905080611c9857600080fd5b604080516001600160a01b038516815260208101849052428183015290517f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a9181900360600190a1600b54471161134557604080514781524260208201527f4a8a21e3c6b2ec3a6e7a6fede383f6300659c320b4ecb992db2ea573e68a64e4910160405180910390a1505050565b80356001600160a01b0381168114611d3d57600080fd5b919050565b600060208284031215611d5457600080fd5b611d5d82611d26565b9392505050565b600060208284031215611d7657600080fd5b5035919050565b80151581146116b257600080fd5b600060208284031215611d9d57600080fd5b8135611d5d81611d7d565b600080600060608486031215611dbd57600080fd5b8335611dc881611d7d565b92506020840135611dd881611d7d565b91506040840135611de881611d7d565b809150509250925092565b60008060408385031215611e0657600080fd5b611e0f83611d26565b91506020830135611e1f81611d7d565b809150509250929050565b600060208284031215611e3c57600080fd5b5051919050565b600060208284031215611e5557600080fd5b8151611d5d81611d7d565b634e487b7160e01b600052601160045260246000fd5b818103818111156108c3576108c3611e60565b808201808211156108c3576108c3611e60565b80820281158282048414176108c3576108c3611e60565b600082611ed057634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220da8e928d8323593c93769afa98336d0421809898e6acc5da1a006df9fc56f86b64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a0e1b7c989692ac60b17a800b7018727b618d163000000000000000000000000000000000000000000000000000000a63db76400
-----Decoded View---------------
Arg [0] : _pair (address): 0xa0E1B7c989692Ac60b17a800B7018727B618D163
Arg [1] : block_reward (uint256): 714000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0e1b7c989692ac60b17a800b7018727b618d163
Arg [1] : 000000000000000000000000000000000000000000000000000000a63db76400
Deployed Bytecode Sourcemap
16769:11317:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27662:209;;;;;;;;;;-1:-1:-1;27662:209:0;;;;;:::i;:::-;;:::i;:::-;;26491:147;;;;;;;;;;-1:-1:-1;26491:147:0;;;;;:::i;:::-;;:::i;:::-;;;552:25:1;;;540:2;525:18;26491:147:0;;;;;;;;17200:31;;;;;;;;;;-1:-1:-1;17200:31:0;;;;;;;;;;;;;;753:14:1;;746:22;728:41;;716:2;701:18;17200:31:0;588:187:1;27881:202:0;;;;;;;;;;;;;:::i;17285:30::-;;;;;;;;;;;;;;;;17091:22;;;;;;;;;;-1:-1:-1;17091:22:0;;;;-1:-1:-1;;;;;17091:22:0;;;;;;-1:-1:-1;;;;;958:55:1;;;940:74;;928:2;913:18;17091:22:0;780:240:1;18157:116:0;;;;;;;;;;;;;:::i;17861:40::-;;;;;;;;;;-1:-1:-1;17861:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17424:37;;;;;;;;;;-1:-1:-1;17424:37:0;;;;;;;;24243:1204;;;;;;;;;;;;;:::i;26648:172::-;;;;;;;;;;-1:-1:-1;26648:172:0;;;;;:::i;:::-;;:::i;19945:99::-;;;;;;;;;;-1:-1:-1;19945:99:0;;;;;:::i;:::-;;:::i;19840:97::-;;;;;;;;;;-1:-1:-1;19840:97:0;;;;;:::i;:::-;;:::i;17122:29::-;;;;;;;;;;;;;;;;12476:103;;;;;;;;;;;;;:::i;17354:28::-;;;;;;;;;;;;;;;;26828:382;;;;;;;;;;-1:-1:-1;26828:382:0;;;;;:::i;:::-;;:::i;25455:1028::-;;;;;;;;;;;;;:::i;11835:87::-;;;;;;;;;;-1:-1:-1;11881:7:0;11908:6;-1:-1:-1;;;;;11908:6:0;11835:87;;19370:104;;;;;;;;;;-1:-1:-1;19370:104:0;;;;;:::i;:::-;;:::i;19719:89::-;;;;;;;;;;-1:-1:-1;19719:89:0;;;;;:::i;:::-;;:::i;17799:55::-;;;;;;;;;;-1:-1:-1;17799:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:25:1;;;2119:2;2104:18;;2097:34;;;;2147:18;;;2140:34;;;;2205:2;2190:18;;2183:34;2261:14;2254:22;2248:3;2233:19;;2226:51;2050:3;2035:19;17799:55:0;1810:473:1;19146:91:0;;;;;;;;;;-1:-1:-1;19146:91:0;;;;;:::i;:::-;;:::i;17322:25::-;;;;;;;;;;;;;;;;22438:873;;;;;;;;;;;;;:::i;19023:115::-;;;:::i;17053:31::-;;;;;;;;;;-1:-1:-1;17053:31:0;;;;-1:-1:-1;;;;;17053:31:0;;;18501:260;;;;;;;;;;-1:-1:-1;18501:260:0;;;;;:::i;:::-;;:::i;19245:117::-;;;;;;;;;;-1:-1:-1;19245:117:0;;;;;:::i;:::-;;:::i;19482:182::-;;;;;;;;;;-1:-1:-1;19482:182:0;;;;;:::i;:::-;;:::i;27218:436::-;;;;;;;;;;-1:-1:-1;27218:436:0;;;;;:::i;:::-;;:::i;21455:975::-;;;;;;;;;;;;;:::i;17238:33::-;;;;;;;;;;-1:-1:-1;17238:33:0;;;;;;;;;;;18769:133;;;;;;;;;;;;;:::i;18910:105::-;;;;;;;;;;-1:-1:-1;18910:105:0;;;;;:::i;:::-;;:::i;17160:33::-;;;;;;;;;;-1:-1:-1;17160:33:0;;;;;;;;12734:201;;;;;;;;;;-1:-1:-1;12734:201:0;;;;;:::i;:::-;;:::i;20113:1334::-;;;;;;;;;;-1:-1:-1;20113:1334:0;;;;;:::i;:::-;;:::i;18281:105::-;;;;;;;;;;-1:-1:-1;18357:21:0;18281:105;;27662:209;11721:13;:11;:13::i;:::-;27748:12:::1;-1:-1:-1::0;;;;;27741:29:0::1;;27785:7;11881::::0;11908:6;-1:-1:-1;;;;;11908:6:0;;11835:87;27785:7:::1;27807:45;::::0;-1:-1:-1;;;27807:45:0;;27846:4:::1;27807:45;::::0;::::1;940:74:1::0;-1:-1:-1;;;;;27807:30:0;::::1;::::0;::::1;::::0;913:18:1;;27807:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27741:122;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;3505:55:1;;;27741:122:0::1;::::0;::::1;3487:74:1::0;3577:18;;;3570:34;3460:18;;27741:122:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27662:209:::0;:::o;26491:147::-;-1:-1:-1;;;;;26577:22:0;;26551:7;26577:22;;;:13;:22;;;;;:35;;;:53;;26615:15;;26577:53;:::i;:::-;26570:60;26491:147;-1:-1:-1;;26491:147:0:o;27881:202::-;11721:13;:11;:13::i;:::-;27953:21:::1;27932:18;28012:7;11881::::0;11908:6;-1:-1:-1;;;;;11908:6:0;;11835:87;28012:7:::1;-1:-1:-1::0;;;;;28004:21:0::1;28033:10;28004:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27985:63;;;28067:7;28059:16;;;::::0;::::1;18157:116:::0;18232:8;;:33;;-1:-1:-1;;;18232:33:0;;18259:4;18232:33;;;940:74:1;18205:7:0;;-1:-1:-1;;;;;18232:8:0;;:18;;913::1;;18232:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18225:40;;18157:116;:::o;24243:1204::-;9863:21;:19;:21::i;:::-;24309:10:::1;24300:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;24299:21;24291:30;;;::::0;::::1;;24340:13;::::0;::::1;;24332:58;;;::::0;-1:-1:-1;;;24332:58:0;;4599:2:1;24332:58:0::1;::::0;::::1;4581:21:1::0;;;4618:18;;;4611:30;4677:34;4657:18;;;4650:62;4729:18;;24332:58:0::1;;;;;;;;;24437:10;24423:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;::::0;::::1;;:45;;:37:::0;:45:::1;24401:127;;;::::0;-1:-1:-1;;;24401:127:0;;4960:2:1;24401:127:0::1;::::0;::::1;4942:21:1::0;;;4979:18;;;4972:30;5038:34;5018:18;;;5011:62;5090:18;;24401:127:0::1;4758:356:1::0;24401:127:0::1;24593:10;24579:25;::::0;;;:13:::1;:25;::::0;;;;:41:::1;;::::0;24561:15:::1;:59;24539:142;;;::::0;-1:-1:-1;;;24539:142:0;;5321:2:1;24539:142:0::1;::::0;::::1;5303:21:1::0;5360:2;5340:18;;;5333:30;5399:34;5379:18;;;5372:62;-1:-1:-1;;;5450:18:1;;;5443:31;5491:19;;24539:142:0::1;5119:397:1::0;24539:142:0::1;24774:14;::::0;24747:10:::1;24733:25;::::0;;;:13:::1;:25;::::0;;;;:38:::1;;::::0;:55:::1;::::0;24774:14;24733:55:::1;:::i;:::-;24714:15;:74;;24692:228;;;::::0;-1:-1:-1;;;24692:228:0;;5853:2:1;24692:228:0::1;::::0;::::1;5835:21:1::0;5892:3;5872:18;;;5865:31;5932:34;5912:18;;;5905:62;6003:34;5983:18;;;5976:62;6075:34;6054:19;;;6047:63;6147:10;6126:19;;;6119:39;6175:19;;24692:228:0::1;5651:549:1::0;24692:228:0::1;24933:18;24954:29;24972:10;24954:17;:29::i;:::-;25010:10;24996:25;::::0;;;:13:::1;:25;::::0;;;;25040:15:::1;24996:41;::::0;;::::1;:59:::0;24933:50;;-1:-1:-1;25072:15:0;;;25068:54:::1;;25104:7;;;25068:54;25153:47;::::0;25135:12:::1;::::0;25161:10:::1;::::0;25185;;25135:12;25153:47;25135:12;25153:47;25185:10;25161;25153:47:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25134:66;;;25219:7;25211:16;;;::::0;::::1;;25245:48;::::0;;25253:10:::1;6407:74:1::0;;6512:2;6497:18;;6490:34;;;25277:15:0::1;6540:18:1::0;;;6533:34;25245:48:0;;::::1;::::0;;;;6395:2:1;25245:48:0;;::::1;25335:12;;25310:21;:37;25306:134;;25369:59;::::0;;25389:21:::1;6752:25:1::0;;25412:15:0::1;6808:2:1::0;6793:18;;6786:34;25369:59:0::1;::::0;6725:18:1;25369:59:0::1;;;;;;;25306:134;24280:1167;;9895:1;9907:20:::0;9301:1;10427:22;;10244:213;9907:20;24243:1204::o;26648:172::-;26780:14;;-1:-1:-1;;;;;26742:22:0;;26716:7;26742:22;;;:13;:22;;;;;:35;;;26716:7;;26797:15;;26742:52;;26780:14;26742:52;:::i;:::-;:70;;;;:::i;19945:99::-;11721:13;:11;:13::i;:::-;20012:15:::1;:24:::0;19945:99::o;19840:97::-;11721:13;:11;:13::i;:::-;19907:14:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;19907:22:0;;::::1;::::0;;;::::1;::::0;;19840:97::o;12476:103::-;11721:13;:11;:13::i;:::-;12541:30:::1;12568:1;12541:18;:30::i;26828:382::-:0;-1:-1:-1;;;;;26968:22:0;;26893:7;26968:22;;;:13;:22;;;;;:38;;;26893:7;;26937:69;;:15;:69;:::i;:::-;26913:93;;27017:19;27039:18;18472:13;;;18394:99;27039:18;27017:40;;27068:18;27161:13;27152:5;27105:30;27127:7;27105:21;:30::i;:::-;27091:44;;:11;:44;:::i;:::-;27090:67;;;;:::i;:::-;27089:85;;;;:::i;:::-;27068:106;26828:382;-1:-1:-1;;;;;26828:382:0:o;25455:1028::-;9863:21;:19;:21::i;:::-;25524:10:::1;25515:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;25514:21;25506:30;;;::::0;::::1;;25569:14;::::0;;;::::1;;;:23;25547:145;;;::::0;-1:-1:-1;;;25547:145:0;;7485:2:1;25547:145:0::1;::::0;::::1;7467:21:1::0;7524:2;7504:18;;;7497:30;7563:34;7543:18;;;7536:62;7634:34;7614:18;;;7607:62;7706:10;7685:19;;;7678:39;7734:19;;25547:145:0::1;7283:476:1::0;25547:145:0::1;25739:10;25725:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;::::0;::::1;;:45;;:37:::0;:45:::1;25703:126;;;::::0;-1:-1:-1;;;25703:126:0;;7966:2:1;25703:126:0::1;::::0;::::1;7948:21:1::0;8005:2;7985:18;;;7978:30;8044:33;8024:18;;;8017:61;8095:18;;25703:126:0::1;7764:355:1::0;25703:126:0::1;25844:12;::::0;::::1;::::0;::::1;;;25840:257;;;25940:14;::::0;25913:10:::1;25899:25;::::0;;;:13:::1;:25;::::0;;;;:38:::1;;::::0;25979:15:::1;::::0;25899:55:::1;::::0;::::1;:::i;:::-;:95;;25873:212;;;::::0;-1:-1:-1;;;25873:212:0;;8326:2:1;25873:212:0::1;::::0;::::1;8308:21:1::0;8365:2;8345:18;;;8338:30;8404:34;8384:18;;;8377:62;8475:25;8455:18;;;8448:53;8518:19;;25873:212:0::1;8124:419:1::0;25873:212:0::1;26127:10;26113:25;::::0;;;:13:::1;:25;::::0;;;;:41:::1;;::::0;26157:15:::1;-1:-1:-1::0;26109:117:0::1;;;26189:25;26203:10;26189:13;:25::i;:::-;26252:10;26238:25;::::0;;;:13:::1;:25;::::0;;;;26279:15:::1;26238:38;::::0;::::1;:56:::0;;;26307:41:::1;::::0;;::::1;:59:::0;;;26461:14:::1;::::0;26430:45:::1;::::0;::::1;:::i;:::-;26391:10;26377:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;:98:::0;9907:20;9301:1;10427:22;;10244:213;19370:104;11721:13;:11;:13::i;:::-;19442::::1;:24:::0;19370:104::o;19719:89::-;11721:13;:11;:13::i;:::-;19780:12:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;19780:20:0;;::::1;::::0;;;::::1;::::0;;19719:89::o;19146:91::-;11721:13;:11;:13::i;:::-;19208::::1;:21:::0;;-1:-1:-1;;19208:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19146:91::o;22438:873::-;9863:21;:19;:21::i;:::-;22505:17:::1;::::0;::::1;;:25;;:17:::0;:25:::1;22497:69;;;::::0;-1:-1:-1;;;22497:69:0;;8750:2:1;22497:69:0::1;::::0;::::1;8732:21:1::0;8789:2;8769:18;;;8762:30;8828:33;8808:18;;;8801:61;8879:18;;22497:69:0::1;8548:355:1::0;22497:69:0::1;22599:10;22585:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;::::0;::::1;;:45;;:37:::0;:45:::1;22577:54;;;::::0;::::1;;22660:10;22651:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;22650:21;22642:30;;;::::0;::::1;;22687:12;::::0;::::1;::::0;::::1;;;22683:277;;;22783:14;::::0;22756:10:::1;22742:25;::::0;;;:13:::1;:25;::::0;;;;:38:::1;;::::0;22822:15:::1;::::0;22742:55:::1;::::0;::::1;:::i;:::-;:95;;22716:232;;;::::0;-1:-1:-1;;;22716:232:0;;9110:2:1;22716:232:0::1;::::0;::::1;9092:21:1::0;9149:2;9129:18;;;9122:30;9188:34;9168:18;;;9161:62;9259:34;9239:18;;;9232:62;-1:-1:-1;;;9310:19:1;;;9303:42;9362:19;;22716:232:0::1;8908:479:1::0;22716:232:0::1;22984:10;23010:5;22970:25:::0;;;:13:::1;:25;::::0;;;;:37:::1;;:45:::0;;-1:-1:-1;;22970:45:0::1;::::0;;23026:10:::1;:15:::0;;22970:45;;23010:5;23026:15:::1;::::0;22970:45;;23026:15:::1;:::i;:::-;::::0;;;-1:-1:-1;;23067:8:0::1;::::0;23099:10:::1;23052:12;23124:25:::0;;;:13:::1;:25;::::0;;;;;:32;23067:100;;;;;::::1;::::0;::::1;3487:74:1::0;;;;3577:18;;;3570:34;23052:12:0;-1:-1:-1;;;;;23067:8:0::1;::::0;:17:::1;::::0;3460:18:1;;23067:100:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23052:115;;23186:7;23178:16;;;::::0;::::1;;23238:10;23224:25;::::0;;;:13:::1;:25;::::0;;;;:32;23205:15:::1;:51:::0;;23224:32;;23205:15;;:51:::1;::::0;23224:32;;23205:51:::1;:::i;:::-;::::0;;;-1:-1:-1;;23281:10:0::1;23302:1;23267:25:::0;;;:13:::1;:25;::::0;;;;:36;-1:-1:-1;9907:20:0;9301:1;10427:22;;10244:213;19023:115;11721:13;:11;:13::i;:::-;19090:40:::1;::::0;;19103:9:::1;6752:25:1::0;;19114:15:0::1;6808:2:1::0;6793:18;;6786:34;19090:40:0::1;::::0;6725:18:1;19090:40:0::1;;;;;;;19023:115::o:0;18501:260::-;11721:13;:11;:13::i;:::-;18648:25:::1;18661:11;18648:12;:25::i;:::-;18684:23;18696:10;18684:11;:23::i;:::-;18718:35;18736:16;18718:17;:35::i;:::-;18501:260:::0;;;:::o;19245:117::-;11721:13;:11;:13::i;:::-;-1:-1:-1;;;;;19329:17:0;;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:25;;-1:-1:-1;;19329:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19245:117::o;19482:182::-;11721:13;:11;:13::i;:::-;19575:6:::1;19564:7;:17;;19556:65;;;::::0;-1:-1:-1;;;19556:65:0;;9594:2:1;19556:65:0::1;::::0;::::1;9576:21:1::0;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;9743:5;9723:18;;;9716:33;9766:19;;19556:65:0::1;9392:399:1::0;19556:65:0::1;19632:14;:24:::0;19482:182::o;27218:436::-;-1:-1:-1;;;;;27359:22:0;;;27314:7;27359:22;;;:13;:22;;;;;;:29;27421:8;;:33;;-1:-1:-1;;;27421:33:0;;27448:4;27421:33;;;940:74:1;27314:7:0;;27359:29;;27314:7;;27421:8;;;;:18;;913::1;;27421:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27399:55;;27471:11;27486:1;27471:16;27467:83;;-1:-1:-1;27511:1:0;;27218:436;-1:-1:-1;;;27218:436:0:o;27467:83::-;27562:18;27605:11;27584:17;:9;27596:5;27584:17;:::i;:::-;27583:33;;;;:::i;21455:975::-;9863:21;:19;:21::i;:::-;21530:10:::1;21516:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;::::0;::::1;;:45;;:37:::0;:45:::1;21508:54;;;::::0;::::1;;21591:10;21582:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;21581:21;21573:30;;;::::0;::::1;;21618:12;::::0;::::1;::::0;::::1;;;21614:277;;;21714:14;::::0;21687:10:::1;21673:25;::::0;;;:13:::1;:25;::::0;;;;:38:::1;;::::0;21753:15:::1;::::0;21673:55:::1;::::0;::::1;:::i;:::-;:95;;21647:232;;;::::0;-1:-1:-1;;;21647:232:0;;9110:2:1;21647:232:0::1;::::0;::::1;9092:21:1::0;9149:2;9129:18;;;9122:30;9188:34;9168:18;;;9161:62;9259:34;9239:18;;;9232:62;-1:-1:-1;;;9310:19:1;;;9303:42;9362:19;;21647:232:0::1;8908:479:1::0;21647:232:0::1;21921:10;21907:25;::::0;;;:13:::1;:25;::::0;;;;:41:::1;;::::0;21951:15:::1;-1:-1:-1::0;21903:164:0::1;;;21986:13;::::0;::::1;;21983:73;;;22015:25;22029:10;22015:13;:25::i;18769:133::-:0;11721:13;:11;:13::i;:::-;18813:18:::1;18826:4;18813:12;:18::i;:::-;18842:17;18854:4;18842:11;:17::i;:::-;18870:24;18888:5;18870:17;:24::i;18910:105::-:0;11721:13;:11;:13::i;:::-;18982:17:::1;:25:::0;;-1:-1:-1;;18982:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18910:105::o;12734:201::-;11721:13;:11;:13::i;:::-;-1:-1:-1;;;;;12823:22:0;::::1;12815:73;;;::::0;-1:-1:-1;;;12815:73:0;;9998:2:1;12815:73:0::1;::::0;::::1;9980:21:1::0;10037:2;10017:18;;;10010:30;10076:34;10056:18;;;10049:62;10147:8;10127:18;;;10120:36;10173:19;;12815:73:0::1;9796:402:1::0;12815:73:0::1;12899:28;12918:8;12899:18;:28::i;:::-;12734:201:::0;:::o;20113:1334::-;9863:21;:19;:21::i;:::-;20188:14:::1;::::0;;;::::1;;;:23;20180:63;;;::::0;-1:-1:-1;;;20180:63:0;;10405:2:1;20180:63:0::1;::::0;::::1;10387:21:1::0;10444:2;10424:18;;;10417:30;10483:29;10463:18;;;10456:57;10530:18;;20180:63:0::1;10203:351:1::0;20180:63:0::1;20272:10;20263:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;20262:21;20254:30;;;::::0;::::1;;20312:1;20303:6;:10;20295:19;;;::::0;::::1;;20363:15;;20354:6;:24;20351:109;;;20399:49;::::0;;20412:10:::1;6407:74:1::0;;6512:2;6497:18;;6490:34;;;20432:15:0::1;6540:18:1::0;;;6533:34;20399:49:0;;::::1;::::0;;;;6395:2:1;20399:49:0;;::::1;20351:109;20488:10;20474:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;::::0;::::1;;:45;;:37:::0;:45;20470:970:::1;;20539:13;::::0;::::1;;20536:60;;;20568:25;20582:10;20568:13;:25::i;:::-;20624:10;20610:25;::::0;;;:13:::1;:25;::::0;;;;:42;;20646:6;;20610:25;:42:::1;::::0;20646:6;;20610:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;20667:8:0::1;::::0;:56:::1;::::0;-1:-1:-1;;;20667:56:0;;20689:10:::1;20667:56;::::0;::::1;10822:34:1::0;20709:4:0::1;10872:18:1::0;;;10865:43;10924:18;;;10917:34;;;-1:-1:-1;;;;;20667:8:0;;::::1;::::0;:21:::1;::::0;10734:18:1;;20667:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20757:6;20738:15;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;20470:970:0::1;::::0;-1:-1:-1;20470:970:0::1;;20811:8;::::0;:122:::1;::::0;-1:-1:-1;;;20811:122:0;;20851:10:::1;20811:122;::::0;::::1;10822:34:1::0;20888:4:0::1;10872:18:1::0;;;10865:43;10924:18;;;10917:34;;;20796:12:0::1;::::0;-1:-1:-1;;;;;20811:8:0::1;::::0;:21:::1;::::0;10734:18:1;;20811:122:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20796:137;;20956:7;20948:16;;;::::0;::::1;;20993:1;20979:10;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;21025:10:0::1;21011:25;::::0;;;:13:::1;:25;::::0;;;;:42;;21047:6;;21011:25;:42:::1;::::0;21047:6;;21011:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;21084:10:0::1;21070:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;::::0;;::::1;:44:::0;;-1:-1:-1;;21070:44:0::1;21110:4;21070:44:::0;;::::1;::::0;;;21172:15:::1;21131:38:::0;;::::1;:56:::0;;;-1:-1:-1;21204:41:0;;::::1;:59:::0;;;21372:14;21337:49:::1;::::0;::::1;:::i;:::-;21294:10;21280:25;::::0;;;:13:::1;:25;::::0;;;;:37:::1;;:106:::0;;;;21403:15:::1;:25:::0;;21422:6;;21280:25;21403::::1;::::0;21422:6;;21403:25:::1;:::i;:::-;::::0;;;-1:-1:-1;;;20470:970:0::1;9907:20:::0;9301:1;10427:22;;10244:213;12000:132;11881:7;11908:6;-1:-1:-1;;;;;11908:6:0;7560:10;12064:23;12056:68;;;;-1:-1:-1;;;12056:68:0;;11164:2:1;12056:68:0;;;11146:21:1;;;11183:18;;;11176:30;11242:34;11222:18;;;11215:62;11294:18;;12056:68:0;10962:356:1;9943:293:0;9345:1;10077:7;;:19;10069:63;;;;-1:-1:-1;;;10069:63:0;;11525:2:1;10069:63:0;;;11507:21:1;11564:2;11544:18;;;11537:30;11603:33;11583:18;;;11576:61;11654:18;;10069:63:0;11323:355:1;10069:63:0;9345:1;10210:7;:18;9943:293::o;13095:191::-;13169:16;13188:6;;-1:-1:-1;;;;;13205:17:0;;;;;;;;;;13238:40;;13188:6;;;;;;;13238:40;;13169:16;13238:40;13158:128;13095:191;:::o;23319:916::-;23386:13;;;;23378:58;;;;-1:-1:-1;;;23378:58:0;;4599:2:1;23378:58:0;;;4581:21:1;;;4618:18;;;4611:30;4677:34;4657:18;;;4650:62;4729:18;;23378:58:0;4397:356:1;23378:58:0;-1:-1:-1;;;;;23469:22:0;;;;;;:13;:22;;;;;:34;;;;;:42;;:34;:42;23447:123;;;;-1:-1:-1;;;23447:123:0;;7966:2:1;23447:123:0;;;7948:21:1;8005:2;7985:18;;;7978:30;8044:33;8024:18;;;8017:61;8095:18;;23447:123:0;7764:355:1;23447:123:0;-1:-1:-1;;;;;23621:22:0;;;;;;:13;:22;;;;;:38;;;23603:15;:56;23581:139;;;;-1:-1:-1;;;23581:139:0;;5321:2:1;23581:139:0;;;5303:21:1;5360:2;5340:18;;;5333:30;5399:34;5379:18;;;5372:62;-1:-1:-1;;;5450:18:1;;;5443:31;5491:19;;23581:139:0;5119:397:1;23581:139:0;-1:-1:-1;;;;;23733:22:0;;;;;;:13;:22;;;;;23774:15;23733:38;;;;:56;23823:26;23747:7;23823:17;:26::i;:::-;23802:47;;23866:10;23880:1;23866:15;23862:54;;23898:7;23319:916;:::o;23862:54::-;23929:12;23955:7;-1:-1:-1;;;;;23947:21:0;23976:10;23947:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23928:63;;;24010:7;24002:16;;;;;;24036:45;;;-1:-1:-1;;;;;6425:55:1;;6407:74;;6512:2;6497:18;;6490:34;;;24065:15:0;6540:18:1;;;6533:34;24036:45:0;;;;;;;6395:2:1;24036:45:0;;;24123:12;;24098:21;:37;24094:134;;24157:59;;;24177:21;6752:25:1;;24200:15:0;6808:2:1;6793:18;;6786:34;24157:59:0;;6725:18:1;24157:59:0;;;;;;;23367:868;;23319:916;:::o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:1:o;1025:180::-;1084:6;1137:2;1125:9;1116:7;1112:23;1108:32;1105:52;;;1153:1;1150;1143:12;1105:52;-1:-1:-1;1176:23:1;;1025:180;-1:-1:-1;1025:180:1:o;1210:118::-;1296:5;1289:13;1282:21;1275:5;1272:32;1262:60;;1318:1;1315;1308:12;1333:241;1389:6;1442:2;1430:9;1421:7;1417:23;1413:32;1410:52;;;1458:1;1455;1448:12;1410:52;1497:9;1484:23;1516:28;1538:5;1516:28;:::i;2288:511::-;2356:6;2364;2372;2425:2;2413:9;2404:7;2400:23;2396:32;2393:52;;;2441:1;2438;2431:12;2393:52;2480:9;2467:23;2499:28;2521:5;2499:28;:::i;:::-;2546:5;-1:-1:-1;2603:2:1;2588:18;;2575:32;2616:30;2575:32;2616:30;:::i;:::-;2665:7;-1:-1:-1;2724:2:1;2709:18;;2696:32;2737:30;2696:32;2737:30;:::i;:::-;2786:7;2776:17;;;2288:511;;;;;:::o;2804:315::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;;3048:2;3037:9;3033:18;3020:32;3061:28;3083:5;3061:28;:::i;:::-;3108:5;3098:15;;;2804:315;;;;;:::o;3124:184::-;3194:6;3247:2;3235:9;3226:7;3222:23;3218:32;3215:52;;;3263:1;3260;3253:12;3215:52;-1:-1:-1;3286:16:1;;3124:184;-1:-1:-1;3124:184:1:o;3615:245::-;3682:6;3735:2;3723:9;3714:7;3710:23;3706:32;3703:52;;;3751:1;3748;3741:12;3703:52;3783:9;3777:16;3802:28;3824:5;3802:28;:::i;3865:184::-;-1:-1:-1;;;3914:1:1;3907:88;4014:4;4011:1;4004:15;4038:4;4035:1;4028:15;4054:128;4121:9;;;4142:11;;;4139:37;;;4156:18;;:::i;5521:125::-;5586:9;;;5607:10;;;5604:36;;;5620:18;;:::i;6831:168::-;6904:9;;;6935;;6952:15;;;6946:22;;6932:37;6922:71;;6973:18;;:::i;7004:274::-;7044:1;7070;7060:189;;-1:-1:-1;;;7102:1:1;7095:88;7206:4;7203:1;7196:15;7234:4;7231:1;7224:15;7060:189;-1:-1:-1;7263:9:1;;7004:274::o
Swarm Source
ipfs://da8e928d8323593c93769afa98336d0421809898e6acc5da1a006df9fc56f86b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.