ERC-20
Overview
Max Total Supply
100,000,000 LPS
Holders
204
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,642,017.86729681346805734 LPSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LPS
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Twitter: https://twitter.com/LPshareerc // Website: https://lpshares.tech // Telegram: https://t.me/LpShares // SPDX-License-Identifier: MIT pragma solidity ^0.8.21; import "./DividendTracker.sol"; import "./IStaking.sol"; contract LPS is ERC20, Ownable { IUniswapRouter public router; address public pair; bool private swapping; bool public claimStatus; bool public tradingEnabled; DividendTracker public dividendTracker; address public marketingWallet; IStaking public staking; uint256 public swapTokensAtAmount = 300000 * 1e18; uint256 public maxBuyAmount = 2000000 * 1e18; uint256 public maxSellAmount = 2000000 * 1e18; uint256 public maxWallet = 2000000 * 1e18; struct Fees { uint256 liquidity; uint256 marketing; uint256 staking; } Fees public fees = Fees(3, 2, 1); uint256 public totalFees = 6; uint256 private _initialTax = 20; uint256 private _reduceTaxAt = 20; uint256 private _buyCount = 0; uint256 private _sellCount = 0; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => bool) private _isExcludedFromMaxWallet; constructor(address _stakingPool) ERC20("LPShares", "LPS") { marketingWallet = _msgSender(); router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); pair = IFactory(router.factory()).createPair( address(this), router.WETH() ); dividendTracker = new DividendTracker(); staking = IStaking(_stakingPool); staking.init(address(this), pair); _setAutomatedMarketMakerPair(pair, true); dividendTracker.updateLP_Token(pair); dividendTracker.excludeFromDividends(address(dividendTracker), true); dividendTracker.excludeFromDividends(_stakingPool, true); dividendTracker.excludeFromDividends(address(this), true); dividendTracker.excludeFromDividends(owner(), true); dividendTracker.excludeFromDividends(address(0xdead), true); dividendTracker.excludeFromDividends(address(router), true); setExcludeFromMaxWallet(address(pair), true); setExcludeFromMaxWallet(address(this), true); setExcludeFromMaxWallet(address(router), true); setExcludeFromMaxWallet(_stakingPool, true); setExcludeFromMaxWallet(address(dividendTracker), true); setExcludeFromFees(owner(), true); setExcludeFromFees(address(this), true); setExcludeFromFees(_stakingPool, true); setExcludeFromFees(address(dividendTracker), true); _mint(owner(), 100000000 * (10 ** 18)); _approve(address(this), address(router), type(uint256).max); } receive() external payable {} function claimLP() external { require(claimStatus, "Claim not enabled"); dividendTracker.processAccount(payable(msg.sender)); } function enableClaimLP(bool _status) external onlyOwner { claimStatus = _status; } function setMaxAmount( uint256 _maxWallet, uint256 _maxBuy, uint256 _maxSell ) external onlyOwner { require(_maxWallet >= 1000000, "Cannot set maxWallet lower than 1%"); require(_maxBuy >= 1000000, "Can't set maxbuy lower than 1% "); require(_maxSell >= 500000, "Can't set maxsell lower than 0.5% "); maxWallet = _maxWallet * 10 ** 18; maxBuyAmount = _maxBuy * 10 ** 18; maxSellAmount = _maxSell * 10 ** 18; } function updateStakingPool(address _stakingPool) external onlyOwner { staking = IStaking(_stakingPool); } function setExcludeFromMaxWallet( address account, bool excluded ) public onlyOwner { _isExcludedFromMaxWallet[account] = excluded; } function setExcludeFromFees( address account, bool excluded ) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; } function excludeFromDividends( address account, bool value ) public onlyOwner { dividendTracker.excludeFromDividends(account, value); } function startTrading() external onlyOwner { require(!tradingEnabled, "Already enabled"); tradingEnabled = true; } function _setAutomatedMarketMakerPair(address newPair, bool value) private { require( automatedMarketMakerPairs[newPair] != value, "Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[newPair] = value; if (value) { dividendTracker.excludeFromDividends(newPair, true); } } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf( address account ) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf( address account ) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountInfo( address account ) external view returns (address, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping ) { require(tradingEnabled, "Trading not active"); if (automatedMarketMakerPairs[to]) { require( amount <= maxSellAmount, "You are exceeding maxSellAmount" ); _sellCount++; } else if (automatedMarketMakerPairs[from]) { require( amount <= maxBuyAmount, "You are exceeding maxBuyAmount" ); _buyCount++; } if (!_isExcludedFromMaxWallet[to]) { require( amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && automatedMarketMakerPairs[to] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapAndLiquify(swapTokensAtAmount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]) takeFee = false; if (takeFee) { uint256 feeAmt; if (automatedMarketMakerPairs[to]) { feeAmt = (amount * (_sellCount > _reduceTaxAt ? totalFees : _initialTax)) / 100; } else if (automatedMarketMakerPairs[from]) { feeAmt = (amount * (_buyCount > _reduceTaxAt ? totalFees : _initialTax)) / 100; } amount = amount - feeAmt; super._transfer(from, address(this), feeAmt); } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapAndLiquify(uint256 tokens) private { uint256 toSwapForLiq = ((tokens * fees.liquidity) / totalFees) / 2; uint256 tokensToAddLiquidityWith = ((tokens * fees.liquidity) / totalFees) / 2; uint256 toSwapForDev = (tokens * fees.marketing) / totalFees; uint256 toStakingPool = (tokens * fees.staking) / totalFees; super._transfer(address(this), address(staking), toStakingPool); staking.updateReward(toStakingPool); swapTokensForETH(toSwapForLiq); uint256 currentbalance = address(this).balance; if (currentbalance > 0) { addLiquidity(tokensToAddLiquidityWith, currentbalance); } swapTokensForETH(toSwapForDev); uint256 devAmt = address(this).balance; if (devAmt > 0) { (bool success, ) = payable(marketingWallet).call{value: devAmt}(""); require(success, "Failed to send ETH to dev wallet"); } } function distributionDiv(uint256 amount) public onlyOwner { IERC20(pair).transferFrom( _msgSender(), address(dividendTracker), amount ); dividendTracker.distributeLPDividends(amount); } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { (, , uint256 liquidity) = router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, address(dividendTracker), block.timestamp ); if (liquidity > 0) { dividendTracker.distributeLPDividends(liquidity); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// 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 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "./Math.sol"; import "./IDividendTracker.sol"; interface IPair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function token0() external view returns (address); } interface IFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); function getPair( address tokenA, address tokenB ) external view returns (address pair); } interface IUniswapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; address public LP_Token; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 internal constant magnitude = 2 ** 128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; uint256 public totalDividendsWithdrawn; constructor( string memory _name, string memory _symbol ) ERC20(_name, _symbol) {} function _distributeLPDividends(uint256 amount) internal virtual { require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser( address payable user ) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add( _withdrawableDividend ); totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(LP_Token).transfer( user, _withdrawableDividend ); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub( _withdrawableDividend ); totalDividendsWithdrawn -= _withdrawableDividend; return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns (uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf( address _owner ) public view override returns (uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf( address _owner ) public view override returns (uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf( address _owner ) public view override returns (uint256) { return magnifiedDividendPerShare .mul(balanceOf(_owner)) .toInt256Safe() .add(magnifiedDividendCorrections[_owner]) .toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer( address from, address to, uint256 value ) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare .mul(value) .toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from] .add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub( _magCorrection ); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if (newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if (newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract DividendTracker is Ownable, DividendPayingToken { struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } mapping(address => bool) public excludedFromDividends; mapping(address => uint256) public lastClaimTimes; event ExcludeFromDividends(address indexed account, bool value); event Claim(address indexed account, uint256 amount); constructor() DividendPayingToken("LPS Dividend", "LPS_Dividend") {} function trackerRescueETH20Tokens( address recipient, address tokenAddress ) external onlyOwner { IERC20(tokenAddress).transfer( recipient, IERC20(tokenAddress).balanceOf(address(this)) ); } function updateLP_Token(address _lpToken) external onlyOwner { LP_Token = _lpToken; } function _transfer(address, address, uint256) internal pure override { require(false, "Dividend_Tracker: No transfers allowed"); } function excludeFromDividends( address account, bool value ) external onlyOwner { require(excludedFromDividends[account] != value); excludedFromDividends[account] = value; if (value == true) { _setBalance(account, 0); } else { _setBalance(account, balanceOf(account)); } emit ExcludeFromDividends(account, value); } function getAccount( address account ) public view returns (address, uint256, uint256, uint256, uint256) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function setBalance( address account, uint256 newBalance ) external onlyOwner { if (excludedFromDividends[account]) { return; } _setBalance(account, newBalance); } function processAccount( address payable account ) external onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount); return true; } return false; } function distributeLPDividends(uint256 amount) public onlyOwner { _distributeLPDividends(amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns (uint256); /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns (uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed(address indexed from, uint256 weiAmount); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn(address indexed to, uint256 weiAmount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; interface IStaking { function updateReward(uint256 _amount) external; function init(address _rewardToken, address _stakingToken) external; }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stakingPool","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributionDiv","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enableClaimLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fees","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"staking","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxBuy","type":"uint256"},{"internalType":"uint256","name":"_maxSell","type":"uint256"}],"name":"setMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingPool","type":"address"}],"name":"updateStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052693f870857a3e0e3800000600b556a01a784379d99db42000000600c556a01a784379d99db42000000600d556a01a784379d99db42000000600e55604051806060016040528060038152602001600281526020016001815250600f5f820151815f01556020820151816001015560408201518160020155505060066012556014601355601480555f6015555f6016553480156200009f575f80fd5b5060405162008fd838038062008fd88339818101604052810190620000c59190620013ad565b6040518060400160405280600881526020017f4c505368617265730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c50530000000000000000000000000000000000000000000000000000000000815250816003908162000142919062001641565b50806004908162000154919062001641565b505050620001776200016b62000b9b60201b60201c565b62000ba260201b60201c565b6200018762000b9b60201b60201c565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ab9190620013ad565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000332573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003589190620013ad565b6040518363ffffffff1660e01b81526004016200037792919062001736565b6020604051808303815f875af115801562000394573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003ba9190620013ad565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405162000407906200133a565b604051809103905ff08015801562000421573d5f803e3d5ffd5b5060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f09a40163060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200052092919062001736565b5f604051808303815f87803b15801562000538575f80fd5b505af11580156200054b573d5f803e3d5ffd5b505050506200058360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000c6560201b60201c565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040162000600919062001761565b5f604051808303815f87803b15801562000618575f80fd5b505af11580156200062b573d5f803e3d5ffd5b5050505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401620006af92919062001798565b5f604051808303815f87803b158015620006c7575f80fd5b505af1158015620006da573d5f803e3d5ffd5b5050505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016200073d92919062001798565b5f604051808303815f87803b15801562000755575f80fd5b505af115801562000768573d5f803e3d5ffd5b5050505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401620007cb92919062001798565b5f604051808303815f87803b158015620007e3575f80fd5b505af1158015620007f6573d5f803e3d5ffd5b5050505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200084762000de560201b60201c565b60016040518363ffffffff1660e01b81526004016200086892919062001798565b5f604051808303815f87803b15801562000880575f80fd5b505af115801562000893573d5f803e3d5ffd5b5050505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a061dead60016040518363ffffffff1660e01b8152600401620008f892919062001798565b5f604051808303815f87803b15801562000910575f80fd5b505af115801562000923573d5f803e3d5ffd5b5050505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401620009a792919062001798565b5f604051808303815f87803b158015620009bf575f80fd5b505af1158015620009d2573d5f803e3d5ffd5b5050505062000a0a60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000e0d60201b60201c565b62000a1d30600162000e0d60201b60201c565b62000a5160065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000e0d60201b60201c565b62000a6481600162000e0d60201b60201c565b62000a9860085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000e0d60201b60201c565b62000aba62000aac62000de560201b60201c565b600162000e7560201b60201c565b62000acd30600162000e7560201b60201c565b62000ae081600162000e7560201b60201c565b62000b1460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000e7560201b60201c565b62000b4062000b2862000de560201b60201c565b6a52b7d2dcc80cd2e400000062000f6f60201b60201c565b62000b943060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620010d460201b60201c565b5062001b92565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80151560185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615150362000cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cee9062001847565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550801562000de15760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000db192919062001798565b5f604051808303815f87803b15801562000dc9575f80fd5b505af115801562000ddc573d5f803e3d5ffd5b505050505b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000e1d6200129f60201b60201c565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b62000e856200129f60201b60201c565b80151560175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615150362000f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f0e90620018db565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fe0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fd79062001949565b60405180910390fd5b62000ff35f83836200133060201b60201c565b8060025f82825462001006919062001996565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620010b59190620019e1565b60405180910390a3620010d05f83836200133560201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001145576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200113c9062001a70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620011b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011ad9062001b04565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620012929190620019e1565b60405180910390a3505050565b620012af62000b9b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620012d562000de560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013259062001b72565b60405180910390fd5b565b505050565b505050565b6131cf8062005e0983390190565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001377826200134c565b9050919050565b62001389816200136b565b811462001394575f80fd5b50565b5f81519050620013a7816200137e565b92915050565b5f60208284031215620013c557620013c462001348565b5b5f620013d48482850162001397565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200145957607f821691505b6020821081036200146f576200146e62001414565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620014d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001496565b620014df868362001496565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62001529620015236200151d84620014f7565b62001500565b620014f7565b9050919050565b5f819050919050565b620015448362001509565b6200155c620015538262001530565b848454620014a2565b825550505050565b5f90565b6200157262001564565b6200157f81848462001539565b505050565b5b81811015620015a6576200159a5f8262001568565b60018101905062001585565b5050565b601f821115620015f557620015bf8162001475565b620015ca8462001487565b81016020851015620015da578190505b620015f2620015e98562001487565b83018262001584565b50505b505050565b5f82821c905092915050565b5f620016175f1984600802620015fa565b1980831691505092915050565b5f62001631838362001606565b9150826002028217905092915050565b6200164c82620013dd565b67ffffffffffffffff811115620016685762001667620013e7565b5b62001674825462001441565b62001681828285620015aa565b5f60209050601f831160018114620016b7575f8415620016a2578287015190505b620016ae858262001624565b8655506200171d565b601f198416620016c78662001475565b5f5b82811015620016f057848901518255600182019150602085019450602081019050620016c9565b868310156200171057848901516200170c601f89168262001606565b8355505b6001600288020188555050505b505050505050565b62001730816200136b565b82525050565b5f6040820190506200174b5f83018562001725565b6200175a602083018462001725565b9392505050565b5f602082019050620017765f83018462001725565b92915050565b5f8115159050919050565b62001792816200177c565b82525050565b5f604082019050620017ad5f83018562001725565b620017bc602083018462001787565b9392505050565b5f82825260208201905092915050565b7f4175746f6d61746564206d61726b6574206d616b6572207061697220697320615f8201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b5f6200182f603883620017c3565b91506200183c82620017d3565b604082019050919050565b5f6020820190508181035f830152620018608162001821565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f66205f8201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b5f620018c3602a83620017c3565b9150620018d08262001867565b604082019050919050565b5f6020820190508181035f830152620018f481620018b5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001931601f83620017c3565b91506200193e82620018fb565b602082019050919050565b5f6020820190508181035f830152620019628162001923565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620019a282620014f7565b9150620019af83620014f7565b9250828201905080821115620019ca57620019c962001969565b5b92915050565b620019db81620014f7565b82525050565b5f602082019050620019f65f830184620019d0565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62001a58602483620017c3565b915062001a6582620019fc565b604082019050919050565b5f6020820190508181035f83015262001a898162001a4a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62001aec602283620017c3565b915062001af98262001a90565b604082019050919050565b5f6020820190508181035f83015262001b1d8162001ade565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62001b5a602083620017c3565b915062001b678262001b24565b602082019050919050565b5f6020820190508181035f83015262001b8b8162001b4c565b9050919050565b6142698062001ba05f395ff3fe608060405260043610610254575f3560e01c806388e765ff11610138578063ae87fc4b116100b5578063dd62ed3e11610079578063dd62ed3e146108dd578063de44391a14610919578063e2f456051461092f578063f2fde38b14610959578063f887ea4014610981578063f8b45b05146109ab5761025b565b8063ae87fc4b146107ff578063b3578f7614610829578063b62496f514610851578063c027f7b61461088d578063d63cad22146108b55761025b565b8063a457c2d7116100fc578063a457c2d7146106f9578063a8aa1b3114610735578063a8b9d2401461075f578063a9059cbb1461079b578063a99bc409146107d75761025b565b806388e765ff146106275780638da5cb5b14610651578063929f13601461067b57806395d89b41146106a35780639af1d35a146106cd5761025b565b806339509351116101d157806366d602ae1161019557806366d602ae146105055780636843cd841461052f57806370a082311461056b578063715018a6146105a757806375f0a874146105bd5780637b510fe8146105e75761025b565b806339509351146104115780634ada218b1461044d5780634bf7fde1146104775780634cf088d91461049f5780634fbee193146104c95761025b565b806323b872dd1161021857806323b872dd14610341578063293230b81461037d5780632c1f52161461039357806330bb4cff146103bd578063313ce567146103e75761025b565b80630483f7a01461025f57806306fdde0314610287578063095ea7b3146102b157806313114a9d146102ed57806318160ddd146103175761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b5061028560048036038101906102809190612d70565b6109d5565b005b348015610292575f80fd5b5061029b610a6a565b6040516102a89190612e38565b60405180910390f35b3480156102bc575f80fd5b506102d760048036038101906102d29190612e8b565b610afa565b6040516102e49190612ed8565b60405180910390f35b3480156102f8575f80fd5b50610301610b1c565b60405161030e9190612f00565b60405180910390f35b348015610322575f80fd5b5061032b610b22565b6040516103389190612f00565b60405180910390f35b34801561034c575f80fd5b5061036760048036038101906103629190612f19565b610b2b565b6040516103749190612ed8565b60405180910390f35b348015610388575f80fd5b50610391610b59565b005b34801561039e575f80fd5b506103a7610bce565b6040516103b49190612fc4565b60405180910390f35b3480156103c8575f80fd5b506103d1610bf3565b6040516103de9190612f00565b60405180910390f35b3480156103f2575f80fd5b506103fb610c87565b6040516104089190612ff8565b60405180910390f35b34801561041c575f80fd5b5061043760048036038101906104329190612e8b565b610c8f565b6040516104449190612ed8565b60405180910390f35b348015610458575f80fd5b50610461610cc5565b60405161046e9190612ed8565b60405180910390f35b348015610482575f80fd5b5061049d60048036038101906104989190613011565b610cd8565b005b3480156104aa575f80fd5b506104b3610e05565b6040516104c09190613081565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea919061309a565b610e2a565b6040516104fc9190612ed8565b60405180910390f35b348015610510575f80fd5b50610519610e7c565b6040516105269190612f00565b60405180910390f35b34801561053a575f80fd5b506105556004803603810190610550919061309a565b610e82565b6040516105629190612f00565b60405180910390f35b348015610576575f80fd5b50610591600480360381019061058c919061309a565b610f23565b60405161059e9190612f00565b60405180910390f35b3480156105b2575f80fd5b506105bb610f68565b005b3480156105c8575f80fd5b506105d1610f7b565b6040516105de91906130d4565b60405180910390f35b3480156105f2575f80fd5b5061060d6004803603810190610608919061309a565b610fa0565b60405161061e9594939291906130ed565b60405180910390f35b348015610632575f80fd5b5061063b611051565b6040516106489190612f00565b60405180910390f35b34801561065c575f80fd5b50610665611057565b60405161067291906130d4565b60405180910390f35b348015610686575f80fd5b506106a1600480360381019061069c9190612d70565b61107f565b005b3480156106ae575f80fd5b506106b76110df565b6040516106c49190612e38565b60405180910390f35b3480156106d8575f80fd5b506106e161116f565b6040516106f09392919061313e565b60405180910390f35b348015610704575f80fd5b5061071f600480360381019061071a9190612e8b565b611186565b60405161072c9190612ed8565b60405180910390f35b348015610740575f80fd5b506107496111fb565b60405161075691906130d4565b60405180910390f35b34801561076a575f80fd5b506107856004803603810190610780919061309a565b611220565b6040516107929190612f00565b60405180910390f35b3480156107a6575f80fd5b506107c160048036038101906107bc9190612e8b565b6112c1565b6040516107ce9190612ed8565b60405180910390f35b3480156107e2575f80fd5b506107fd60048036038101906107f8919061309a565b6112e3565b005b34801561080a575f80fd5b5061081361132e565b6040516108209190612ed8565b60405180910390f35b348015610834575f80fd5b5061084f600480360381019061084a9190613173565b611341565b005b34801561085c575f80fd5b506108776004803603810190610872919061309a565b611366565b6040516108849190612ed8565b60405180910390f35b348015610898575f80fd5b506108b360048036038101906108ae919061319e565b611383565b005b3480156108c0575f80fd5b506108db60048036038101906108d69190612d70565b6114dc565b005b3480156108e8575f80fd5b5061090360048036038101906108fe91906131c9565b6115cb565b6040516109109190612f00565b60405180910390f35b348015610924575f80fd5b5061092d61164d565b005b34801561093a575f80fd5b50610943611739565b6040516109509190612f00565b60405180910390f35b348015610964575f80fd5b5061097f600480360381019061097a919061309a565b61173f565b005b34801561098c575f80fd5b506109956117c1565b6040516109a29190613227565b60405180910390f35b3480156109b6575f80fd5b506109bf6117e6565b6040516109cc9190612f00565b60405180910390f35b6109dd6117ec565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610a39929190613240565b5f604051808303815f87803b158015610a50575f80fd5b505af1158015610a62573d5f803e3d5ffd5b505050505050565b606060038054610a7990613294565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590613294565b8015610af05780601f10610ac757610100808354040283529160200191610af0565b820191905f5260205f20905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b5f80610b0461186a565b9050610b11818585611871565b600191505092915050565b60125481565b5f600254905090565b5f80610b3561186a565b9050610b42858285611a34565b610b4d858585611abf565b60019150509392505050565b610b616117ec565b600760169054906101000a900460ff1615610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba89061330e565b60405180910390fd5b6001600760166101000a81548160ff021916908315150217905550565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c829190613340565b905090565b5f6012905090565b5f80610c9961186a565b9050610cba818585610cab85896115cb565b610cb59190613398565b611871565b600191505092915050565b600760169054906101000a900460ff1681565b610ce06117ec565b620f4240831015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061343b565b60405180910390fd5b620f4240821015610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d63906134a3565b60405180910390fd5b6207a120811015610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990613531565b60405180910390fd5b670de0b6b3a764000083610dc6919061354f565b600e81905550670de0b6b3a764000082610de0919061354f565b600c81905550670de0b6b3a764000081610dfa919061354f565b600d81905550505050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610edd91906130d4565b602060405180830381865afa158015610ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1c9190613340565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f706117ec565b610f795f6123e3565b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f805f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401610fff91906130d4565b60a060405180830381865afa15801561101a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103e91906135a4565b9450945094509450945091939590929450565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110876117ec565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6060600480546110ee90613294565b80601f016020809104026020016040519081016040528092919081815260200182805461111a90613294565b80156111655780601f1061113c57610100808354040283529160200191611165565b820191905f5260205f20905b81548152906001019060200180831161114857829003601f168201915b5050505050905090565b600f805f0154908060010154908060020154905083565b5f8061119061186a565b90505f61119d82866115cb565b9050838110156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d99061368b565b60405180910390fd5b6111ef8286868403611871565b60019250505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b815260040161127b91906130d4565b602060405180830381865afa158015611296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ba9190613340565b9050919050565b5f806112cb61186a565b90506112d8818585611abf565b600191505092915050565b6112eb6117ec565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760159054906101000a900460ff1681565b6113496117ec565b80600760156101000a81548160ff02191690831515021790555050565b6018602052805f5260405f205f915054906101000a900460ff1681565b61138b6117ec565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6113d061186a565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401611411939291906136a9565b6020604051808303815f875af115801561142d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145191906136f2565b5060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c826040518263ffffffff1660e01b81526004016114ac9190612f00565b5f604051808303815f87803b1580156114c3575f80fd5b505af11580156114d5573d5f803e3d5ffd5b5050505050565b6114e46117ec565b80151560175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061378d565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600760159054906101000a900460ff1661169c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611693906137f5565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b81526004016116f69190613833565b6020604051808303815f875af1158015611712573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061173691906136f2565b50565b600b5481565b6117476117ec565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906138bc565b60405180910390fd5b6117be816123e3565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6117f461186a565b73ffffffffffffffffffffffffffffffffffffffff16611812611057565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613924565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906139b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613a40565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a279190612f00565b60405180910390a3505050565b5f611a3f84846115cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ab95781811015611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613aa8565b60405180910390fd5b611ab88484848403611871565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613b36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290613bc4565b60405180910390fd5b5f8103611bb257611bad83835f6124a6565b6123de565b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611c50575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611c695750600760149054906101000a900460ff16155b15611ec257600760169054906101000a900460ff16611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613c2c565b60405180910390fd5b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611d6d57600d54811115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c94565b60405180910390fd5b60165f815480929190611d6390613cb2565b9190505550611e1a565b60185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611e1957600c54811115611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df890613d43565b60405180910390fd5b60155f815480929190611e1390613cb2565b91905055505b5b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611ec157600e54611e7483610f23565b82611e7f9190613398565b1115611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790613dab565b60405180910390fd5b5b5b5f611ecc30610f23565b90505f600b548210159050808015611ef15750600760149054906101000a900460ff16155b8015611f43575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611f96575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611fe9575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561202f576001600760146101000a81548160ff021916908315150217905550612014600b54612712565b5f600760146101000a81548160ff0219169083151502179055505b5f600760149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120de575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156120e7575f90505b60185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015612185575060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561218e575f90505b80156122b5575f60185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612219576064601454601654116121f9576013546121fd565b6012545b86612208919061354f565b6122129190613df6565b905061229a565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156122995760646014546015541161227d57601354612281565b6012545b8661228c919061354f565b6122969190613df6565b90505b5b80856122a69190613e26565b94506122b38730836124a6565b505b6122c08686866124a6565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761230789610f23565b6040518363ffffffff1660e01b8152600401612324929190613e59565b5f604051808303815f87803b15801561233b575f80fd5b505af192505050801561234c575060015b5060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8661239488610f23565b6040518363ffffffff1660e01b81526004016123b1929190613e59565b5f604051808303815f87803b1580156123c8575f80fd5b505af19250505080156123d9575060015b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90613b36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257990613bc4565b60405180910390fd5b61258d838383612968565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260790613ef0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126f99190612f00565b60405180910390a361270c84848461296d565b50505050565b5f6002601254600f5f015484612728919061354f565b6127329190613df6565b61273c9190613df6565b90505f6002601254600f5f015485612754919061354f565b61275e9190613df6565b6127689190613df6565b90505f601254600f600101548561277f919061354f565b6127899190613df6565b90505f601254600f60020154866127a0919061354f565b6127aa9190613df6565b90506127d830600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836124a6565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663425c8abd826040518263ffffffff1660e01b81526004016128329190612f00565b5f604051808303815f87803b158015612849575f80fd5b505af115801561285b573d5f803e3d5ffd5b5050505061286884612972565b5f4790505f81111561287f5761287e8482612b7c565b5b61288883612972565b5f4790505f81111561295f575f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516128da90613f3b565b5f6040518083038185875af1925050503d805f8114612914576040519150601f19603f3d011682016040523d82523d5f602084013e612919565b606091505b505090508061295d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295490613f99565b60405180910390fd5b505b50505050505050565b505050565b505050565b5f600267ffffffffffffffff81111561298e5761298d613fb7565b5b6040519080825280602002602001820160405280156129bc5781602001602082028036833780820191505090505b50905030815f815181106129d3576129d2613fe4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9b9190614011565b81600181518110612aaf57612aae613fe4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612b4b95949392919061412c565b5f604051808303815f87803b158015612b62575f80fd5b505af1158015612b74573d5f803e3d5ffd5b505050505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f8060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612c0396959493929190614184565b60606040518083038185885af1158015612c1f573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612c4491906141e3565b925050505f811115612cd85760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c826040518263ffffffff1660e01b8152600401612caa9190612f00565b5f604051808303815f87803b158015612cc1575f80fd5b505af1158015612cd3573d5f803e3d5ffd5b505050505b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d0a82612ce1565b9050919050565b612d1a81612d00565b8114612d24575f80fd5b50565b5f81359050612d3581612d11565b92915050565b5f8115159050919050565b612d4f81612d3b565b8114612d59575f80fd5b50565b5f81359050612d6a81612d46565b92915050565b5f8060408385031215612d8657612d85612cdd565b5b5f612d9385828601612d27565b9250506020612da485828601612d5c565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612de5578082015181840152602081019050612dca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e0a82612dae565b612e148185612db8565b9350612e24818560208601612dc8565b612e2d81612df0565b840191505092915050565b5f6020820190508181035f830152612e508184612e00565b905092915050565b5f819050919050565b612e6a81612e58565b8114612e74575f80fd5b50565b5f81359050612e8581612e61565b92915050565b5f8060408385031215612ea157612ea0612cdd565b5b5f612eae85828601612d27565b9250506020612ebf85828601612e77565b9150509250929050565b612ed281612d3b565b82525050565b5f602082019050612eeb5f830184612ec9565b92915050565b612efa81612e58565b82525050565b5f602082019050612f135f830184612ef1565b92915050565b5f805f60608486031215612f3057612f2f612cdd565b5b5f612f3d86828701612d27565b9350506020612f4e86828701612d27565b9250506040612f5f86828701612e77565b9150509250925092565b5f819050919050565b5f612f8c612f87612f8284612ce1565b612f69565b612ce1565b9050919050565b5f612f9d82612f72565b9050919050565b5f612fae82612f93565b9050919050565b612fbe81612fa4565b82525050565b5f602082019050612fd75f830184612fb5565b92915050565b5f60ff82169050919050565b612ff281612fdd565b82525050565b5f60208201905061300b5f830184612fe9565b92915050565b5f805f6060848603121561302857613027612cdd565b5b5f61303586828701612e77565b935050602061304686828701612e77565b925050604061305786828701612e77565b9150509250925092565b5f61306b82612f93565b9050919050565b61307b81613061565b82525050565b5f6020820190506130945f830184613072565b92915050565b5f602082840312156130af576130ae612cdd565b5b5f6130bc84828501612d27565b91505092915050565b6130ce81612d00565b82525050565b5f6020820190506130e75f8301846130c5565b92915050565b5f60a0820190506131005f8301886130c5565b61310d6020830187612ef1565b61311a6040830186612ef1565b6131276060830185612ef1565b6131346080830184612ef1565b9695505050505050565b5f6060820190506131515f830186612ef1565b61315e6020830185612ef1565b61316b6040830184612ef1565b949350505050565b5f6020828403121561318857613187612cdd565b5b5f61319584828501612d5c565b91505092915050565b5f602082840312156131b3576131b2612cdd565b5b5f6131c084828501612e77565b91505092915050565b5f80604083850312156131df576131de612cdd565b5b5f6131ec85828601612d27565b92505060206131fd85828601612d27565b9150509250929050565b5f61321182612f93565b9050919050565b61322181613207565b82525050565b5f60208201905061323a5f830184613218565b92915050565b5f6040820190506132535f8301856130c5565b6132606020830184612ec9565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132ab57607f821691505b6020821081036132be576132bd613267565b5b50919050565b7f416c726561647920656e61626c656400000000000000000000000000000000005f82015250565b5f6132f8600f83612db8565b9150613303826132c4565b602082019050919050565b5f6020820190508181035f830152613325816132ec565b9050919050565b5f8151905061333a81612e61565b92915050565b5f6020828403121561335557613354612cdd565b5b5f6133628482850161332c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133a282612e58565b91506133ad83612e58565b92508282019050808211156133c5576133c461336b565b5b92915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b5f613425602283612db8565b9150613430826133cb565b604082019050919050565b5f6020820190508181035f83015261345281613419565b9050919050565b7f43616e277420736574206d6178627579206c6f776572207468616e20312520005f82015250565b5f61348d601f83612db8565b915061349882613459565b602082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f43616e277420736574206d617873656c6c206c6f776572207468616e20302e355f8201527f2520000000000000000000000000000000000000000000000000000000000000602082015250565b5f61351b602283612db8565b9150613526826134c1565b604082019050919050565b5f6020820190508181035f8301526135488161350f565b9050919050565b5f61355982612e58565b915061356483612e58565b925082820261357281612e58565b915082820484148315176135895761358861336b565b5b5092915050565b5f8151905061359e81612d11565b92915050565b5f805f805f60a086880312156135bd576135bc612cdd565b5b5f6135ca88828901613590565b95505060206135db8882890161332c565b94505060406135ec8882890161332c565b93505060606135fd8882890161332c565b925050608061360e8882890161332c565b9150509295509295909350565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613675602583612db8565b91506136808261361b565b604082019050919050565b5f6020820190508181035f8301526136a281613669565b9050919050565b5f6060820190506136bc5f8301866130c5565b6136c960208301856130c5565b6136d66040830184612ef1565b949350505050565b5f815190506136ec81612d46565b92915050565b5f6020828403121561370757613706612cdd565b5b5f613714848285016136de565b91505092915050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f66205f8201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b5f613777602a83612db8565b91506137828261371d565b604082019050919050565b5f6020820190508181035f8301526137a48161376b565b9050919050565b7f436c61696d206e6f7420656e61626c65640000000000000000000000000000005f82015250565b5f6137df601183612db8565b91506137ea826137ab565b602082019050919050565b5f6020820190508181035f83015261380c816137d3565b9050919050565b5f61381d82612ce1565b9050919050565b61382d81613813565b82525050565b5f6020820190506138465f830184613824565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6138a6602683612db8565b91506138b18261384c565b604082019050919050565b5f6020820190508181035f8301526138d38161389a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61390e602083612db8565b9150613919826138da565b602082019050919050565b5f6020820190508181035f83015261393b81613902565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61399c602483612db8565b91506139a782613942565b604082019050919050565b5f6020820190508181035f8301526139c981613990565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a2a602283612db8565b9150613a35826139d0565b604082019050919050565b5f6020820190508181035f830152613a5781613a1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613a92601d83612db8565b9150613a9d82613a5e565b602082019050919050565b5f6020820190508181035f830152613abf81613a86565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613b20602583612db8565b9150613b2b82613ac6565b604082019050919050565b5f6020820190508181035f830152613b4d81613b14565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613bae602383612db8565b9150613bb982613b54565b604082019050919050565b5f6020820190508181035f830152613bdb81613ba2565b9050919050565b7f54726164696e67206e6f742061637469766500000000000000000000000000005f82015250565b5f613c16601283612db8565b9150613c2182613be2565b602082019050919050565b5f6020820190508181035f830152613c4381613c0a565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e74005f82015250565b5f613c7e601f83612db8565b9150613c8982613c4a565b602082019050919050565b5f6020820190508181035f830152613cab81613c72565b9050919050565b5f613cbc82612e58565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cee57613ced61336b565b5b600182019050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e7400005f82015250565b5f613d2d601e83612db8565b9150613d3882613cf9565b602082019050919050565b5f6020820190508181035f830152613d5a81613d21565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c657400000000005f82015250565b5f613d95601b83612db8565b9150613da082613d61565b602082019050919050565b5f6020820190508181035f830152613dc281613d89565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613e0082612e58565b9150613e0b83612e58565b925082613e1b57613e1a613dc9565b5b828204905092915050565b5f613e3082612e58565b9150613e3b83612e58565b9250828203905081811115613e5357613e5261336b565b5b92915050565b5f604082019050613e6c5f8301856130c5565b613e796020830184612ef1565b9392505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613eda602683612db8565b9150613ee582613e80565b604082019050919050565b5f6020820190508181035f830152613f0781613ece565b9050919050565b5f81905092915050565b50565b5f613f265f83613f0e565b9150613f3182613f18565b5f82019050919050565b5f613f4582613f1b565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c65745f82015250565b5f613f83602083612db8565b9150613f8e82613f4f565b602082019050919050565b5f6020820190508181035f830152613fb081613f77565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6020828403121561402657614025612cdd565b5b5f61403384828501613590565b91505092915050565b5f819050919050565b5f61405f61405a6140558461403c565b612f69565b612e58565b9050919050565b61406f81614045565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6140a781612d00565b82525050565b5f6140b8838361409e565b60208301905092915050565b5f602082019050919050565b5f6140da82614075565b6140e4818561407f565b93506140ef8361408f565b805f5b8381101561411f57815161410688826140ad565b9750614111836140c4565b9250506001810190506140f2565b5085935050505092915050565b5f60a08201905061413f5f830188612ef1565b61414c6020830187614066565b818103604083015261415e81866140d0565b905061416d60608301856130c5565b61417a6080830184612ef1565b9695505050505050565b5f60c0820190506141975f8301896130c5565b6141a46020830188612ef1565b6141b16040830187614066565b6141be6060830186614066565b6141cb60808301856130c5565b6141d860a0830184612ef1565b979650505050505050565b5f805f606084860312156141fa576141f9612cdd565b5b5f6142078682870161332c565b93505060206142188682870161332c565b92505060406142298682870161332c565b915050925092509256fea26469706673582212200a3b76ccc8de6562903fb0466f3bdbd940f0067861dd630656d7ec13575977a164736f6c63430008150033608060405234801562000010575f80fd5b506040518060400160405280600c81526020017f4c5053204469766964656e6400000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4c50535f4469766964656e64000000000000000000000000000000000000000081525081818160039081620000909190620003fb565b508060049081620000a29190620003fb565b505050620000c5620000b9620000cd60201b60201c565b620000d460201b60201c565b5050620004df565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200021357607f821691505b602082108103620002295762000228620001ce565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200028d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000250565b62000299868362000250565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620002e3620002dd620002d784620002b1565b620002ba565b620002b1565b9050919050565b5f819050919050565b620002fe83620002c3565b620003166200030d82620002ea565b8484546200025c565b825550505050565b5f90565b6200032c6200031e565b62000339818484620002f3565b505050565b5b818110156200036057620003545f8262000322565b6001810190506200033f565b5050565b601f821115620003af5762000379816200022f565b620003848462000241565b8101602085101562000394578190505b620003ac620003a38562000241565b8301826200033e565b50505b505050565b5f82821c905092915050565b5f620003d15f1984600802620003b4565b1980831691505092915050565b5f620003eb8383620003c0565b9150826002028217905092915050565b620004068262000197565b67ffffffffffffffff811115620004225762000421620001a1565b5b6200042e8254620001fb565b6200043b82828562000364565b5f60209050601f83116001811462000471575f84156200045c578287015190505b620004688582620003de565b865550620004d7565b601f19841662000481866200022f565b5f5b82811015620004aa5784890151825560018201915060208501945060208101905062000483565b86831015620004ca5784890151620004c6601f891682620003c0565b8355505b6001600288020188555050505b505050505050565b612ce280620004ed5f395ff3fe608060405234801561000f575f80fd5b50600436106101e3575f3560e01c8063715018a61161010d578063a8b9d240116100a0578063e30443bc1161006f578063e30443bc146105df578063ede6ad9c146105fb578063f2fde38b14610617578063fbcbc0f114610633576101e3565b8063a8b9d2401461051f578063a9059cbb1461054f578063aafd847a1461057f578063dd62ed3e146105af576101e3565b806391b89fba116100dc57806391b89fba1461048357806395d89b41146104b35780639e1e0661146104d1578063a457c2d7146104ef576101e3565b8063715018a61461040d578063807ab4f71461041757806385a6b3ae146104475780638da5cb5b14610465576101e3565b806327ce014711610185578063497ec82311610154578063497ec823146103875780634e7b827f146103a35780636a474002146103d357806370a08231146103dd576101e3565b806327ce0147146102ed578063313ce5671461031d578063395093511461033b57806344b6bd9e1461036b576101e3565b80631162c4b6116101c15780631162c4b61461025157806318160ddd1461026f578063226cfa3d1461028d57806323b872dd146102bd576101e3565b80630483f7a0146101e757806306fdde0314610203578063095ea7b314610221575b5f80fd5b61020160048036038101906101fc9190611fbd565b610667565b005b61020b61079b565b6040516102189190612085565b60405180910390f35b61023b600480360381019061023691906120d8565b61082b565b6040516102489190612125565b60405180910390f35b61025961084d565b604051610266919061214d565b60405180910390f35b610277610872565b6040516102849190612175565b60405180910390f35b6102a760048036038101906102a2919061218e565b61087b565b6040516102b49190612175565b60405180910390f35b6102d760048036038101906102d291906121b9565b610890565b6040516102e49190612125565b60405180910390f35b6103076004803603810190610302919061218e565b6108be565b6040516103149190612175565b60405180910390f35b61032561095e565b6040516103329190612224565b60405180910390f35b610355600480360381019061035091906120d8565b610966565b6040516103629190612125565b60405180910390f35b6103856004803603810190610380919061218e565b61099c565b005b6103a1600480360381019061039c919061223d565b6109e7565b005b6103bd60048036038101906103b8919061218e565b610ae6565b6040516103ca9190612125565b60405180910390f35b6103db610b03565b005b6103f760048036038101906103f2919061218e565b610b0f565b6040516104049190612175565b60405180910390f35b610415610b54565b005b610431600480360381019061042c91906122b6565b610b67565b60405161043e9190612125565b60405180910390f35b61044f610c28565b60405161045c9190612175565b60405180910390f35b61046d610c2e565b60405161047a919061214d565b60405180910390f35b61049d6004803603810190610498919061218e565b610c56565b6040516104aa9190612175565b60405180910390f35b6104bb610c67565b6040516104c89190612085565b60405180910390f35b6104d9610cf7565b6040516104e69190612175565b60405180910390f35b610509600480360381019061050491906120d8565b610cfd565b6040516105169190612125565b60405180910390f35b6105396004803603810190610534919061218e565b610d72565b6040516105469190612175565b60405180910390f35b610569600480360381019061056491906120d8565b610dd2565b6040516105769190612125565b60405180910390f35b6105996004803603810190610594919061218e565b610df4565b6040516105a69190612175565b60405180910390f35b6105c960048036038101906105c4919061223d565b610e3a565b6040516105d69190612175565b60405180910390f35b6105f960048036038101906105f491906120d8565b610ebc565b005b610615600480360381019061061091906122e1565b610f21565b005b610631600480360381019061062c919061218e565b610f35565b005b61064d6004803603810190610648919061218e565b610fb7565b60405161065e95949392919061230c565b60405180910390f35b61066f611090565b801515600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515036106c7575f80fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600115158115150361073657610731825f61110e565b610749565b6107488261074384610b0f565b61110e565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be8260405161078f9190612125565b60405180910390a25050565b6060600380546107aa9061238a565b80601f01602080910402602001604051908101604052809291908181526020018280546107d69061238a565b80156108215780601f106107f857610100808354040283529160200191610821565b820191905f5260205f20905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b5f80610835611178565b905061084281858561117f565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b600d602052805f5260405f205f915090505481565b5f8061089a611178565b90506108a7858285611342565b6108b28585856113cd565b60019150509392505050565b5f70010000000000000000000000000000000061094d61094860085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461093a61093561092488610b0f565b60075461141290919063ffffffff16565b611489565b6114a390919063ffffffff16565b6114ea565b6109579190612414565b9050919050565b5f6012905090565b5f80610970611178565b90506109918185856109828589610e3a565b61098c9190612444565b61117f565b600191505092915050565b6109a4611090565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109ef611090565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a45919061214d565b602060405180830381865afa158015610a60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a84919061248b565b6040518363ffffffff1660e01b8152600401610aa19291906124b6565b6020604051808303815f875af1158015610abd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae191906124f1565b505050565b600c602052805f5260405f205f915054906101000a900460ff1681565b610b0c336114ff565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b5c611090565b610b655f611776565b565b5f610b70611090565b5f610b7a836114ff565b90505f811115610c1e5742600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610c0c9190612175565b60405180910390a26001915050610c23565b5f9150505b919050565b600a5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f610c6082610d72565b9050919050565b606060048054610c769061238a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca29061238a565b8015610ced5780601f10610cc457610100808354040283529160200191610ced565b820191905f5260205f20905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b600b5481565b5f80610d07611178565b90505f610d148286610e3a565b905083811015610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d509061258c565b60405180910390fd5b610d66828686840361117f565b60019250505092915050565b5f610dcb60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dbd846108be565b61183990919063ffffffff16565b9050919050565b5f80610ddc611178565b9050610de98185856113cd565b600191505092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ec4611090565b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610f1d57610f1c828261110e565b5b5050565b610f29611090565b610f3281611882565b50565b610f3d611090565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061261a565b60405180910390fd5b610fb481611776565b50565b5f805f805f610fc4611ef0565b86815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061100487610d72565b816020018181525050611016876108be565b816040018181525050600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054816060018181525050805f0151816020015182604001518360600151600b54955095509550955095505091939590929450565b611098611178565b73ffffffffffffffffffffffffffffffffffffffff166110b6610c2e565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612682565b60405180910390fd5b565b5f61111883610b0f565b905080821115611148575f611136828461183990919063ffffffff16565b90506111428482611959565b50611173565b80821015611172575f611164838361183990919063ffffffff16565b90506111708482611a14565b505b5b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490612710565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061279e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113359190612175565b60405180910390a3505050565b5f61134d8484610e3a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113c757818110156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090612806565b60405180910390fd5b6113c6848484840361117f565b5b50505050565b5f61140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612894565b60405180910390fd5b505050565b5f808303611422575f9050611483565b5f828461142f91906128b2565b905082848261143e9190612414565b1461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612963565b60405180910390fd5b809150505b92915050565b5f808290505f81121561149a575f80fd5b80915050919050565b5f8082846114b1919061298a565b90505f83121580156114c35750838112155b806114d857505f831280156114d757508381125b5b6114e0575f80fd5b8091505092915050565b5f808212156114f7575f80fd5b819050919050565b5f8061150a83610d72565b90505f81111561176c576115648160095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611acf90919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080600b5f8282546115b69190612444565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516116039190612175565b60405180910390a25f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401611668929190612a26565b6020604051808303815f875af1158015611684573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a891906124f1565b905080611762576116ff8260095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461183990919063ffffffff16565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081600b5f8282546117519190612a4d565b925050819055505f92505050611771565b8192505050611771565b5f9150505b919050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61187a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b2c565b905092915050565b5f61188b610872565b11611894575f80fd5b5f811115611956576118e66118a7610872565b6118cb7001000000000000000000000000000000008461141290919063ffffffff16565b6118d59190612414565b600754611acf90919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511826040516119329190612175565b60405180910390a261194f81600a54611acf90919063ffffffff16565b600a819055505b50565b6119638282611b8e565b6119cf61198361197e8360075461141290919063ffffffff16565b611489565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cdc90919063ffffffff16565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b611a1e8282611d23565b611a8a611a3e611a398360075461141290919063ffffffff16565b611489565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546114a390919063ffffffff16565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f808284611add9190612444565b905083811015611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990612aca565b60405180910390fd5b8091505092915050565b5f838311158290611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9190612085565b60405180910390fd5b505f8385611b819190612a4d565b9050809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390612b32565b60405180910390fd5b611c075f8383611ee6565b8060025f828254611c189190612444565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cc59190612175565b60405180910390a3611cd85f8383611eeb565b5050565b5f808284611cea9190612b50565b90505f8312158015611cfc5750838113155b80611d1157505f83128015611d1057508381135b5b611d19575f80fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890612c00565b60405180910390fd5b611d9c825f83611ee6565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690612c8e565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ece9190612175565b60405180910390a3611ee1835f84611eeb565b505050565b505050565b505050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f81525090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f5782611f2e565b9050919050565b611f6781611f4d565b8114611f71575f80fd5b50565b5f81359050611f8281611f5e565b92915050565b5f8115159050919050565b611f9c81611f88565b8114611fa6575f80fd5b50565b5f81359050611fb781611f93565b92915050565b5f8060408385031215611fd357611fd2611f2a565b5b5f611fe085828601611f74565b9250506020611ff185828601611fa9565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612032578082015181840152602081019050612017565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61205782611ffb565b6120618185612005565b9350612071818560208601612015565b61207a8161203d565b840191505092915050565b5f6020820190508181035f83015261209d818461204d565b905092915050565b5f819050919050565b6120b7816120a5565b81146120c1575f80fd5b50565b5f813590506120d2816120ae565b92915050565b5f80604083850312156120ee576120ed611f2a565b5b5f6120fb85828601611f74565b925050602061210c858286016120c4565b9150509250929050565b61211f81611f88565b82525050565b5f6020820190506121385f830184612116565b92915050565b61214781611f4d565b82525050565b5f6020820190506121605f83018461213e565b92915050565b61216f816120a5565b82525050565b5f6020820190506121885f830184612166565b92915050565b5f602082840312156121a3576121a2611f2a565b5b5f6121b084828501611f74565b91505092915050565b5f805f606084860312156121d0576121cf611f2a565b5b5f6121dd86828701611f74565b93505060206121ee86828701611f74565b92505060406121ff868287016120c4565b9150509250925092565b5f60ff82169050919050565b61221e81612209565b82525050565b5f6020820190506122375f830184612215565b92915050565b5f806040838503121561225357612252611f2a565b5b5f61226085828601611f74565b925050602061227185828601611f74565b9150509250929050565b5f61228582611f2e565b9050919050565b6122958161227b565b811461229f575f80fd5b50565b5f813590506122b08161228c565b92915050565b5f602082840312156122cb576122ca611f2a565b5b5f6122d8848285016122a2565b91505092915050565b5f602082840312156122f6576122f5611f2a565b5b5f612303848285016120c4565b91505092915050565b5f60a08201905061231f5f83018861213e565b61232c6020830187612166565b6123396040830186612166565b6123466060830185612166565b6123536080830184612166565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123a157607f821691505b6020821081036123b4576123b361235d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61241e826120a5565b9150612429836120a5565b925082612439576124386123ba565b5b828204905092915050565b5f61244e826120a5565b9150612459836120a5565b9250828201905080821115612471576124706123e7565b5b92915050565b5f81519050612485816120ae565b92915050565b5f602082840312156124a05761249f611f2a565b5b5f6124ad84828501612477565b91505092915050565b5f6040820190506124c95f83018561213e565b6124d66020830184612166565b9392505050565b5f815190506124eb81611f93565b92915050565b5f6020828403121561250657612505611f2a565b5b5f612513848285016124dd565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612576602583612005565b91506125818261251c565b604082019050919050565b5f6020820190508181035f8301526125a38161256a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612604602683612005565b915061260f826125aa565b604082019050919050565b5f6020820190508181035f830152612631816125f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61266c602083612005565b915061267782612638565b602082019050919050565b5f6020820190508181035f83015261269981612660565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6126fa602483612005565b9150612705826126a0565b604082019050919050565b5f6020820190508181035f830152612727816126ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612788602283612005565b91506127938261272e565b604082019050919050565b5f6020820190508181035f8301526127b58161277c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6127f0601d83612005565b91506127fb826127bc565b602082019050919050565b5f6020820190508181035f83015261281d816127e4565b9050919050565b7f4469766964656e645f547261636b65723a204e6f207472616e736665727320615f8201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b5f61287e602683612005565b915061288982612824565b604082019050919050565b5f6020820190508181035f8301526128ab81612872565b9050919050565b5f6128bc826120a5565b91506128c7836120a5565b92508282026128d5816120a5565b915082820484148315176128ec576128eb6123e7565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61294d602183612005565b9150612958826128f3565b604082019050919050565b5f6020820190508181035f83015261297a81612941565b9050919050565b5f819050919050565b5f61299482612981565b915061299f83612981565b92508282019050828112155f8312168382125f8412151617156129c5576129c46123e7565b5b92915050565b5f819050919050565b5f6129ee6129e96129e484611f2e565b6129cb565b611f2e565b9050919050565b5f6129ff826129d4565b9050919050565b5f612a10826129f5565b9050919050565b612a2081612a06565b82525050565b5f604082019050612a395f830185612a17565b612a466020830184612166565b9392505050565b5f612a57826120a5565b9150612a62836120a5565b9250828203905081811115612a7a57612a796123e7565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612ab4601b83612005565b9150612abf82612a80565b602082019050919050565b5f6020820190508181035f830152612ae181612aa8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612b1c601f83612005565b9150612b2782612ae8565b602082019050919050565b5f6020820190508181035f830152612b4981612b10565b9050919050565b5f612b5a82612981565b9150612b6583612981565b925082820390508181125f8412168282135f851215161715612b8a57612b896123e7565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612bea602183612005565b9150612bf582612b90565b604082019050919050565b5f6020820190508181035f830152612c1781612bde565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c78602283612005565b9150612c8382612c1e565b604082019050919050565b5f6020820190508181035f830152612ca581612c6c565b905091905056fea2646970667358221220ac362667f218ab797249c95c638dbe34420989dcc481b506e3c46b088ae72eb664736f6c634300081500330000000000000000000000005d2311f78514700a7163c24c183eb60e1e507eeb
Deployed Bytecode
0x608060405260043610610254575f3560e01c806388e765ff11610138578063ae87fc4b116100b5578063dd62ed3e11610079578063dd62ed3e146108dd578063de44391a14610919578063e2f456051461092f578063f2fde38b14610959578063f887ea4014610981578063f8b45b05146109ab5761025b565b8063ae87fc4b146107ff578063b3578f7614610829578063b62496f514610851578063c027f7b61461088d578063d63cad22146108b55761025b565b8063a457c2d7116100fc578063a457c2d7146106f9578063a8aa1b3114610735578063a8b9d2401461075f578063a9059cbb1461079b578063a99bc409146107d75761025b565b806388e765ff146106275780638da5cb5b14610651578063929f13601461067b57806395d89b41146106a35780639af1d35a146106cd5761025b565b806339509351116101d157806366d602ae1161019557806366d602ae146105055780636843cd841461052f57806370a082311461056b578063715018a6146105a757806375f0a874146105bd5780637b510fe8146105e75761025b565b806339509351146104115780634ada218b1461044d5780634bf7fde1146104775780634cf088d91461049f5780634fbee193146104c95761025b565b806323b872dd1161021857806323b872dd14610341578063293230b81461037d5780632c1f52161461039357806330bb4cff146103bd578063313ce567146103e75761025b565b80630483f7a01461025f57806306fdde0314610287578063095ea7b3146102b157806313114a9d146102ed57806318160ddd146103175761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b5061028560048036038101906102809190612d70565b6109d5565b005b348015610292575f80fd5b5061029b610a6a565b6040516102a89190612e38565b60405180910390f35b3480156102bc575f80fd5b506102d760048036038101906102d29190612e8b565b610afa565b6040516102e49190612ed8565b60405180910390f35b3480156102f8575f80fd5b50610301610b1c565b60405161030e9190612f00565b60405180910390f35b348015610322575f80fd5b5061032b610b22565b6040516103389190612f00565b60405180910390f35b34801561034c575f80fd5b5061036760048036038101906103629190612f19565b610b2b565b6040516103749190612ed8565b60405180910390f35b348015610388575f80fd5b50610391610b59565b005b34801561039e575f80fd5b506103a7610bce565b6040516103b49190612fc4565b60405180910390f35b3480156103c8575f80fd5b506103d1610bf3565b6040516103de9190612f00565b60405180910390f35b3480156103f2575f80fd5b506103fb610c87565b6040516104089190612ff8565b60405180910390f35b34801561041c575f80fd5b5061043760048036038101906104329190612e8b565b610c8f565b6040516104449190612ed8565b60405180910390f35b348015610458575f80fd5b50610461610cc5565b60405161046e9190612ed8565b60405180910390f35b348015610482575f80fd5b5061049d60048036038101906104989190613011565b610cd8565b005b3480156104aa575f80fd5b506104b3610e05565b6040516104c09190613081565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea919061309a565b610e2a565b6040516104fc9190612ed8565b60405180910390f35b348015610510575f80fd5b50610519610e7c565b6040516105269190612f00565b60405180910390f35b34801561053a575f80fd5b506105556004803603810190610550919061309a565b610e82565b6040516105629190612f00565b60405180910390f35b348015610576575f80fd5b50610591600480360381019061058c919061309a565b610f23565b60405161059e9190612f00565b60405180910390f35b3480156105b2575f80fd5b506105bb610f68565b005b3480156105c8575f80fd5b506105d1610f7b565b6040516105de91906130d4565b60405180910390f35b3480156105f2575f80fd5b5061060d6004803603810190610608919061309a565b610fa0565b60405161061e9594939291906130ed565b60405180910390f35b348015610632575f80fd5b5061063b611051565b6040516106489190612f00565b60405180910390f35b34801561065c575f80fd5b50610665611057565b60405161067291906130d4565b60405180910390f35b348015610686575f80fd5b506106a1600480360381019061069c9190612d70565b61107f565b005b3480156106ae575f80fd5b506106b76110df565b6040516106c49190612e38565b60405180910390f35b3480156106d8575f80fd5b506106e161116f565b6040516106f09392919061313e565b60405180910390f35b348015610704575f80fd5b5061071f600480360381019061071a9190612e8b565b611186565b60405161072c9190612ed8565b60405180910390f35b348015610740575f80fd5b506107496111fb565b60405161075691906130d4565b60405180910390f35b34801561076a575f80fd5b506107856004803603810190610780919061309a565b611220565b6040516107929190612f00565b60405180910390f35b3480156107a6575f80fd5b506107c160048036038101906107bc9190612e8b565b6112c1565b6040516107ce9190612ed8565b60405180910390f35b3480156107e2575f80fd5b506107fd60048036038101906107f8919061309a565b6112e3565b005b34801561080a575f80fd5b5061081361132e565b6040516108209190612ed8565b60405180910390f35b348015610834575f80fd5b5061084f600480360381019061084a9190613173565b611341565b005b34801561085c575f80fd5b506108776004803603810190610872919061309a565b611366565b6040516108849190612ed8565b60405180910390f35b348015610898575f80fd5b506108b360048036038101906108ae919061319e565b611383565b005b3480156108c0575f80fd5b506108db60048036038101906108d69190612d70565b6114dc565b005b3480156108e8575f80fd5b5061090360048036038101906108fe91906131c9565b6115cb565b6040516109109190612f00565b60405180910390f35b348015610924575f80fd5b5061092d61164d565b005b34801561093a575f80fd5b50610943611739565b6040516109509190612f00565b60405180910390f35b348015610964575f80fd5b5061097f600480360381019061097a919061309a565b61173f565b005b34801561098c575f80fd5b506109956117c1565b6040516109a29190613227565b60405180910390f35b3480156109b6575f80fd5b506109bf6117e6565b6040516109cc9190612f00565b60405180910390f35b6109dd6117ec565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610a39929190613240565b5f604051808303815f87803b158015610a50575f80fd5b505af1158015610a62573d5f803e3d5ffd5b505050505050565b606060038054610a7990613294565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590613294565b8015610af05780601f10610ac757610100808354040283529160200191610af0565b820191905f5260205f20905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b5f80610b0461186a565b9050610b11818585611871565b600191505092915050565b60125481565b5f600254905090565b5f80610b3561186a565b9050610b42858285611a34565b610b4d858585611abf565b60019150509392505050565b610b616117ec565b600760169054906101000a900460ff1615610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba89061330e565b60405180910390fd5b6001600760166101000a81548160ff021916908315150217905550565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c829190613340565b905090565b5f6012905090565b5f80610c9961186a565b9050610cba818585610cab85896115cb565b610cb59190613398565b611871565b600191505092915050565b600760169054906101000a900460ff1681565b610ce06117ec565b620f4240831015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061343b565b60405180910390fd5b620f4240821015610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d63906134a3565b60405180910390fd5b6207a120811015610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990613531565b60405180910390fd5b670de0b6b3a764000083610dc6919061354f565b600e81905550670de0b6b3a764000082610de0919061354f565b600c81905550670de0b6b3a764000081610dfa919061354f565b600d81905550505050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610edd91906130d4565b602060405180830381865afa158015610ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1c9190613340565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f706117ec565b610f795f6123e3565b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f805f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401610fff91906130d4565b60a060405180830381865afa15801561101a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103e91906135a4565b9450945094509450945091939590929450565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110876117ec565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6060600480546110ee90613294565b80601f016020809104026020016040519081016040528092919081815260200182805461111a90613294565b80156111655780601f1061113c57610100808354040283529160200191611165565b820191905f5260205f20905b81548152906001019060200180831161114857829003601f168201915b5050505050905090565b600f805f0154908060010154908060020154905083565b5f8061119061186a565b90505f61119d82866115cb565b9050838110156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d99061368b565b60405180910390fd5b6111ef8286868403611871565b60019250505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b815260040161127b91906130d4565b602060405180830381865afa158015611296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ba9190613340565b9050919050565b5f806112cb61186a565b90506112d8818585611abf565b600191505092915050565b6112eb6117ec565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760159054906101000a900460ff1681565b6113496117ec565b80600760156101000a81548160ff02191690831515021790555050565b6018602052805f5260405f205f915054906101000a900460ff1681565b61138b6117ec565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6113d061186a565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401611411939291906136a9565b6020604051808303815f875af115801561142d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145191906136f2565b5060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c826040518263ffffffff1660e01b81526004016114ac9190612f00565b5f604051808303815f87803b1580156114c3575f80fd5b505af11580156114d5573d5f803e3d5ffd5b5050505050565b6114e46117ec565b80151560175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061378d565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600760159054906101000a900460ff1661169c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611693906137f5565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b81526004016116f69190613833565b6020604051808303815f875af1158015611712573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061173691906136f2565b50565b600b5481565b6117476117ec565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906138bc565b60405180910390fd5b6117be816123e3565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6117f461186a565b73ffffffffffffffffffffffffffffffffffffffff16611812611057565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613924565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906139b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613a40565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a279190612f00565b60405180910390a3505050565b5f611a3f84846115cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ab95781811015611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613aa8565b60405180910390fd5b611ab88484848403611871565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613b36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290613bc4565b60405180910390fd5b5f8103611bb257611bad83835f6124a6565b6123de565b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611c50575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611c695750600760149054906101000a900460ff16155b15611ec257600760169054906101000a900460ff16611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613c2c565b60405180910390fd5b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611d6d57600d54811115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c94565b60405180910390fd5b60165f815480929190611d6390613cb2565b9190505550611e1a565b60185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611e1957600c54811115611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df890613d43565b60405180910390fd5b60155f815480929190611e1390613cb2565b91905055505b5b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611ec157600e54611e7483610f23565b82611e7f9190613398565b1115611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790613dab565b60405180910390fd5b5b5b5f611ecc30610f23565b90505f600b548210159050808015611ef15750600760149054906101000a900460ff16155b8015611f43575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611f96575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611fe9575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561202f576001600760146101000a81548160ff021916908315150217905550612014600b54612712565b5f600760146101000a81548160ff0219169083151502179055505b5f600760149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120de575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156120e7575f90505b60185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015612185575060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561218e575f90505b80156122b5575f60185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612219576064601454601654116121f9576013546121fd565b6012545b86612208919061354f565b6122129190613df6565b905061229a565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156122995760646014546015541161227d57601354612281565b6012545b8661228c919061354f565b6122969190613df6565b90505b5b80856122a69190613e26565b94506122b38730836124a6565b505b6122c08686866124a6565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761230789610f23565b6040518363ffffffff1660e01b8152600401612324929190613e59565b5f604051808303815f87803b15801561233b575f80fd5b505af192505050801561234c575060015b5060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8661239488610f23565b6040518363ffffffff1660e01b81526004016123b1929190613e59565b5f604051808303815f87803b1580156123c8575f80fd5b505af19250505080156123d9575060015b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90613b36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257990613bc4565b60405180910390fd5b61258d838383612968565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260790613ef0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126f99190612f00565b60405180910390a361270c84848461296d565b50505050565b5f6002601254600f5f015484612728919061354f565b6127329190613df6565b61273c9190613df6565b90505f6002601254600f5f015485612754919061354f565b61275e9190613df6565b6127689190613df6565b90505f601254600f600101548561277f919061354f565b6127899190613df6565b90505f601254600f60020154866127a0919061354f565b6127aa9190613df6565b90506127d830600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836124a6565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663425c8abd826040518263ffffffff1660e01b81526004016128329190612f00565b5f604051808303815f87803b158015612849575f80fd5b505af115801561285b573d5f803e3d5ffd5b5050505061286884612972565b5f4790505f81111561287f5761287e8482612b7c565b5b61288883612972565b5f4790505f81111561295f575f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516128da90613f3b565b5f6040518083038185875af1925050503d805f8114612914576040519150601f19603f3d011682016040523d82523d5f602084013e612919565b606091505b505090508061295d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295490613f99565b60405180910390fd5b505b50505050505050565b505050565b505050565b5f600267ffffffffffffffff81111561298e5761298d613fb7565b5b6040519080825280602002602001820160405280156129bc5781602001602082028036833780820191505090505b50905030815f815181106129d3576129d2613fe4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9b9190614011565b81600181518110612aaf57612aae613fe4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612b4b95949392919061412c565b5f604051808303815f87803b158015612b62575f80fd5b505af1158015612b74573d5f803e3d5ffd5b505050505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f8060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612c0396959493929190614184565b60606040518083038185885af1158015612c1f573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612c4491906141e3565b925050505f811115612cd85760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c826040518263ffffffff1660e01b8152600401612caa9190612f00565b5f604051808303815f87803b158015612cc1575f80fd5b505af1158015612cd3573d5f803e3d5ffd5b505050505b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d0a82612ce1565b9050919050565b612d1a81612d00565b8114612d24575f80fd5b50565b5f81359050612d3581612d11565b92915050565b5f8115159050919050565b612d4f81612d3b565b8114612d59575f80fd5b50565b5f81359050612d6a81612d46565b92915050565b5f8060408385031215612d8657612d85612cdd565b5b5f612d9385828601612d27565b9250506020612da485828601612d5c565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612de5578082015181840152602081019050612dca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e0a82612dae565b612e148185612db8565b9350612e24818560208601612dc8565b612e2d81612df0565b840191505092915050565b5f6020820190508181035f830152612e508184612e00565b905092915050565b5f819050919050565b612e6a81612e58565b8114612e74575f80fd5b50565b5f81359050612e8581612e61565b92915050565b5f8060408385031215612ea157612ea0612cdd565b5b5f612eae85828601612d27565b9250506020612ebf85828601612e77565b9150509250929050565b612ed281612d3b565b82525050565b5f602082019050612eeb5f830184612ec9565b92915050565b612efa81612e58565b82525050565b5f602082019050612f135f830184612ef1565b92915050565b5f805f60608486031215612f3057612f2f612cdd565b5b5f612f3d86828701612d27565b9350506020612f4e86828701612d27565b9250506040612f5f86828701612e77565b9150509250925092565b5f819050919050565b5f612f8c612f87612f8284612ce1565b612f69565b612ce1565b9050919050565b5f612f9d82612f72565b9050919050565b5f612fae82612f93565b9050919050565b612fbe81612fa4565b82525050565b5f602082019050612fd75f830184612fb5565b92915050565b5f60ff82169050919050565b612ff281612fdd565b82525050565b5f60208201905061300b5f830184612fe9565b92915050565b5f805f6060848603121561302857613027612cdd565b5b5f61303586828701612e77565b935050602061304686828701612e77565b925050604061305786828701612e77565b9150509250925092565b5f61306b82612f93565b9050919050565b61307b81613061565b82525050565b5f6020820190506130945f830184613072565b92915050565b5f602082840312156130af576130ae612cdd565b5b5f6130bc84828501612d27565b91505092915050565b6130ce81612d00565b82525050565b5f6020820190506130e75f8301846130c5565b92915050565b5f60a0820190506131005f8301886130c5565b61310d6020830187612ef1565b61311a6040830186612ef1565b6131276060830185612ef1565b6131346080830184612ef1565b9695505050505050565b5f6060820190506131515f830186612ef1565b61315e6020830185612ef1565b61316b6040830184612ef1565b949350505050565b5f6020828403121561318857613187612cdd565b5b5f61319584828501612d5c565b91505092915050565b5f602082840312156131b3576131b2612cdd565b5b5f6131c084828501612e77565b91505092915050565b5f80604083850312156131df576131de612cdd565b5b5f6131ec85828601612d27565b92505060206131fd85828601612d27565b9150509250929050565b5f61321182612f93565b9050919050565b61322181613207565b82525050565b5f60208201905061323a5f830184613218565b92915050565b5f6040820190506132535f8301856130c5565b6132606020830184612ec9565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132ab57607f821691505b6020821081036132be576132bd613267565b5b50919050565b7f416c726561647920656e61626c656400000000000000000000000000000000005f82015250565b5f6132f8600f83612db8565b9150613303826132c4565b602082019050919050565b5f6020820190508181035f830152613325816132ec565b9050919050565b5f8151905061333a81612e61565b92915050565b5f6020828403121561335557613354612cdd565b5b5f6133628482850161332c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133a282612e58565b91506133ad83612e58565b92508282019050808211156133c5576133c461336b565b5b92915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b5f613425602283612db8565b9150613430826133cb565b604082019050919050565b5f6020820190508181035f83015261345281613419565b9050919050565b7f43616e277420736574206d6178627579206c6f776572207468616e20312520005f82015250565b5f61348d601f83612db8565b915061349882613459565b602082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f43616e277420736574206d617873656c6c206c6f776572207468616e20302e355f8201527f2520000000000000000000000000000000000000000000000000000000000000602082015250565b5f61351b602283612db8565b9150613526826134c1565b604082019050919050565b5f6020820190508181035f8301526135488161350f565b9050919050565b5f61355982612e58565b915061356483612e58565b925082820261357281612e58565b915082820484148315176135895761358861336b565b5b5092915050565b5f8151905061359e81612d11565b92915050565b5f805f805f60a086880312156135bd576135bc612cdd565b5b5f6135ca88828901613590565b95505060206135db8882890161332c565b94505060406135ec8882890161332c565b93505060606135fd8882890161332c565b925050608061360e8882890161332c565b9150509295509295909350565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613675602583612db8565b91506136808261361b565b604082019050919050565b5f6020820190508181035f8301526136a281613669565b9050919050565b5f6060820190506136bc5f8301866130c5565b6136c960208301856130c5565b6136d66040830184612ef1565b949350505050565b5f815190506136ec81612d46565b92915050565b5f6020828403121561370757613706612cdd565b5b5f613714848285016136de565b91505092915050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f66205f8201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b5f613777602a83612db8565b91506137828261371d565b604082019050919050565b5f6020820190508181035f8301526137a48161376b565b9050919050565b7f436c61696d206e6f7420656e61626c65640000000000000000000000000000005f82015250565b5f6137df601183612db8565b91506137ea826137ab565b602082019050919050565b5f6020820190508181035f83015261380c816137d3565b9050919050565b5f61381d82612ce1565b9050919050565b61382d81613813565b82525050565b5f6020820190506138465f830184613824565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6138a6602683612db8565b91506138b18261384c565b604082019050919050565b5f6020820190508181035f8301526138d38161389a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61390e602083612db8565b9150613919826138da565b602082019050919050565b5f6020820190508181035f83015261393b81613902565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61399c602483612db8565b91506139a782613942565b604082019050919050565b5f6020820190508181035f8301526139c981613990565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a2a602283612db8565b9150613a35826139d0565b604082019050919050565b5f6020820190508181035f830152613a5781613a1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613a92601d83612db8565b9150613a9d82613a5e565b602082019050919050565b5f6020820190508181035f830152613abf81613a86565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613b20602583612db8565b9150613b2b82613ac6565b604082019050919050565b5f6020820190508181035f830152613b4d81613b14565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613bae602383612db8565b9150613bb982613b54565b604082019050919050565b5f6020820190508181035f830152613bdb81613ba2565b9050919050565b7f54726164696e67206e6f742061637469766500000000000000000000000000005f82015250565b5f613c16601283612db8565b9150613c2182613be2565b602082019050919050565b5f6020820190508181035f830152613c4381613c0a565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e74005f82015250565b5f613c7e601f83612db8565b9150613c8982613c4a565b602082019050919050565b5f6020820190508181035f830152613cab81613c72565b9050919050565b5f613cbc82612e58565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cee57613ced61336b565b5b600182019050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e7400005f82015250565b5f613d2d601e83612db8565b9150613d3882613cf9565b602082019050919050565b5f6020820190508181035f830152613d5a81613d21565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c657400000000005f82015250565b5f613d95601b83612db8565b9150613da082613d61565b602082019050919050565b5f6020820190508181035f830152613dc281613d89565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613e0082612e58565b9150613e0b83612e58565b925082613e1b57613e1a613dc9565b5b828204905092915050565b5f613e3082612e58565b9150613e3b83612e58565b9250828203905081811115613e5357613e5261336b565b5b92915050565b5f604082019050613e6c5f8301856130c5565b613e796020830184612ef1565b9392505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613eda602683612db8565b9150613ee582613e80565b604082019050919050565b5f6020820190508181035f830152613f0781613ece565b9050919050565b5f81905092915050565b50565b5f613f265f83613f0e565b9150613f3182613f18565b5f82019050919050565b5f613f4582613f1b565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c65745f82015250565b5f613f83602083612db8565b9150613f8e82613f4f565b602082019050919050565b5f6020820190508181035f830152613fb081613f77565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6020828403121561402657614025612cdd565b5b5f61403384828501613590565b91505092915050565b5f819050919050565b5f61405f61405a6140558461403c565b612f69565b612e58565b9050919050565b61406f81614045565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6140a781612d00565b82525050565b5f6140b8838361409e565b60208301905092915050565b5f602082019050919050565b5f6140da82614075565b6140e4818561407f565b93506140ef8361408f565b805f5b8381101561411f57815161410688826140ad565b9750614111836140c4565b9250506001810190506140f2565b5085935050505092915050565b5f60a08201905061413f5f830188612ef1565b61414c6020830187614066565b818103604083015261415e81866140d0565b905061416d60608301856130c5565b61417a6080830184612ef1565b9695505050505050565b5f60c0820190506141975f8301896130c5565b6141a46020830188612ef1565b6141b16040830187614066565b6141be6060830186614066565b6141cb60808301856130c5565b6141d860a0830184612ef1565b979650505050505050565b5f805f606084860312156141fa576141f9612cdd565b5b5f6142078682870161332c565b93505060206142188682870161332c565b92505060406142298682870161332c565b915050925092509256fea26469706673582212200a3b76ccc8de6562903fb0466f3bdbd940f0067861dd630656d7ec13575977a164736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005d2311f78514700a7163c24c183eb60e1e507eeb
-----Decoded View---------------
Arg [0] : _stakingPool (address): 0x5d2311f78514700a7163C24C183EB60e1e507eEB
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005d2311f78514700a7163c24c183eb60e1e507eeb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.