Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 37 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 16191551 | 750 days ago | IN | 0 ETH | 0.00119435 | ||||
Approve | 16126089 | 759 days ago | IN | 0 ETH | 0.00064201 | ||||
Approve | 16126071 | 759 days ago | IN | 0 ETH | 0.00061791 | ||||
Approve | 16094798 | 764 days ago | IN | 0 ETH | 0.00052207 | ||||
Transfer | 16093948 | 764 days ago | IN | 0 ETH | 0.0055868 | ||||
Approve | 16075890 | 766 days ago | IN | 0 ETH | 0.00070969 | ||||
Remove Limits | 16074279 | 766 days ago | IN | 0 ETH | 0.00032592 | ||||
Update Sell Fees | 16074201 | 766 days ago | IN | 0 ETH | 0.00055365 | ||||
Approve | 16074180 | 766 days ago | IN | 0 ETH | 0.0005167 | ||||
Manual Burn Liqu... | 16074153 | 766 days ago | IN | 0 ETH | 0.00253354 | ||||
Manual Burn Liqu... | 16074144 | 766 days ago | IN | 0 ETH | 0.00241328 | ||||
Transfer | 16074143 | 766 days ago | IN | 0 ETH | 0.00092516 | ||||
Approve | 16074100 | 766 days ago | IN | 0 ETH | 0.00063456 | ||||
Approve | 16074058 | 766 days ago | IN | 0 ETH | 0.00053661 | ||||
Transfer | 16074041 | 766 days ago | IN | 0 ETH | 0.00522879 | ||||
Approve | 16074034 | 766 days ago | IN | 0 ETH | 0.00051017 | ||||
Approve | 16074033 | 766 days ago | IN | 0 ETH | 0.00093342 | ||||
Approve | 16074026 | 766 days ago | IN | 0 ETH | 0.00048319 | ||||
Transfer | 16074022 | 766 days ago | IN | 0 ETH | 0.00510547 | ||||
Approve | 16074020 | 766 days ago | IN | 0 ETH | 0.00055188 | ||||
Transfer | 16074006 | 766 days ago | IN | 0 ETH | 0.0058937 | ||||
Approve | 16073998 | 766 days ago | IN | 0 ETH | 0.00051592 | ||||
Transfer | 16073988 | 766 days ago | IN | 0 ETH | 0.0052694 | ||||
Approve | 16073987 | 766 days ago | IN | 0 ETH | 0.00052064 | ||||
Approve | 16073984 | 766 days ago | IN | 0 ETH | 0.00053886 |
Latest 2 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
16073684 | 766 days ago | Contract Creation | 0 ETH | |||
16073684 | 766 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
TITAN
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-29 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IDexFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } 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); } 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } 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); } } 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; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; function swapExactETHForTokensSupportingFeeOnTransferTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; function addLiquidityETH(address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function addLiquidity(address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB, uint liquidity); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function removeLiquidity(address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB); } interface DividendPayingTokenOptionalInterface { /// @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); } 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 Distributes ether to token holders as dividends. /// @dev SHOULD distribute the paid ether to token holders as dividends. /// SHOULD NOT directly transfer ether to token holders in this function. /// MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0. function distributeDividends() external payable; /// @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; /// @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 ); } contract DividendPayingToken is DividendPayingTokenInterface, DividendPayingTokenOptionalInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // 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 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; address public token; // 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; mapping (address => uint256) public holderBalance; uint256 public totalBalance; uint256 public totalDividendsDistributed; uint256 public totalDividendsWaitingToSend; /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public override payable { require(false, "Cannot send BNB directly to tracker as it is unrecoverable"); // } function distributeTokenDividends() public { if(totalBalance > 0){ uint256 tokensToAdd; uint256 balance = IERC20(token).balanceOf(address(this)); if(totalDividendsWaitingToSend < balance){ tokensToAdd = balance - totalDividendsWaitingToSend; } else { tokensToAdd = 0; } if (tokensToAdd > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (tokensToAdd).mul(magnitude) / totalBalance ); emit DividendsDistributed(msg.sender, tokensToAdd); totalDividendsDistributed = totalDividendsDistributed.add(tokensToAdd); totalDividendsWaitingToSend = totalDividendsWaitingToSend.add(tokensToAdd); } } } /// @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); if(totalDividendsWaitingToSend >= _withdrawableDividend){ totalDividendsWaitingToSend -= _withdrawableDividend; } else { totalDividendsWaitingToSend = 0; } emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(token).transfer(user, _withdrawableDividend); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_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(holderBalance[_owner]).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that increases 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 _increase(address account, uint256 value) internal { magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that reduces 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 _reduce(address account, uint256 value) internal { magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = holderBalance[account]; holderBalance[account] = newBalance; if(newBalance > currentBalance) { uint256 increaseAmount = newBalance.sub(currentBalance); _increase(account, increaseAmount); totalBalance += increaseAmount; } else if(newBalance < currentBalance) { uint256 reduceAmount = currentBalance.sub(newBalance); _reduce(account, reduceAmount); totalBalance -= reduceAmount; } } } contract DividendTracker is DividendPayingToken { using SafeMath for uint256; using SafeMathInt for int256; Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public immutable minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event IncludeInDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor(address _token) { claimWait = 1; minimumTokenBalanceForDividends = 1; token = _token; } struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(address key) private view returns (uint) { return tokenHoldersMap.values[key]; } function getIndexOfKey(address key) private view returns (int) { if(!tokenHoldersMap.inserted[key]) { return -1; } return int(tokenHoldersMap.indexOf[key]); } function getKeyAtIndex(uint index) private view returns (address) { return tokenHoldersMap.keys[index]; } function size() private view returns (uint) { return tokenHoldersMap.keys.length; } function set(address key, uint val) private { if (tokenHoldersMap.inserted[key]) { tokenHoldersMap.values[key] = val; } else { tokenHoldersMap.inserted[key] = true; tokenHoldersMap.values[key] = val; tokenHoldersMap.indexOf[key] = tokenHoldersMap.keys.length; tokenHoldersMap.keys.push(key); } } function remove(address key) private { if (!tokenHoldersMap.inserted[key]) { return; } delete tokenHoldersMap.inserted[key]; delete tokenHoldersMap.values[key]; uint index = tokenHoldersMap.indexOf[key]; uint lastIndex = tokenHoldersMap.keys.length - 1; address lastKey = tokenHoldersMap.keys[lastIndex]; tokenHoldersMap.indexOf[lastKey] = index; delete tokenHoldersMap.indexOf[key]; tokenHoldersMap.keys[index] = lastKey; tokenHoldersMap.keys.pop(); } function excludeFromDividends(address account) external onlyOwner { excludedFromDividends[account] = true; _setBalance(account, 0); remove(account); emit ExcludeFromDividends(account); } function includeInDividends(address account) external onlyOwner { require(excludedFromDividends[account]); excludedFromDividends[account] = false; emit IncludeInDividends(account); } function getLastProcessedIndex() external view returns(uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns(uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) { account = _account; index = getIndexOfKey(account); iterationsUntilProcessed = -1; if(index >= 0) { if(uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub(int256(lastProcessedIndex)); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray)); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { if(index >= size()) { return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0); } address account = getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if(lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } if(newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); set(account, newBalance); } else { _setBalance(account, 0); remove(account); } processAccount(account, true); } function process(uint256 gas) public returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if(numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while(gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if(_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if(canAutoClaim(lastClaimTimes[account])) { if(processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if(gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } } contract TokenHandler is Ownable { function sendTokenToOwner(address token) external onlyOwner { if(IERC20(token).balanceOf(address(this)) > 0){ IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this))); } } } contract TITAN is ERC20, Ownable { using SafeMath for uint256; IDexRouter public immutable dexRouter; address public lpPair; IERC20 public immutable STABLECOIN; TokenHandler public tokenHandler; bool private swapping; DividendTracker public dividendTracker; address public operationsWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public liquidityActiveBlock = 0; // 0 means liquidity is not active yet uint256 public tradingActiveBlock = 0; // 0 means trading is not active uint256 public earlyBuyPenaltyEnd; // determines when snipers/bots can sell without extra penalty bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public constant feeDivisor = 1000; uint256 public totalSellFees; uint256 public rewardsSellFee; uint256 public operationsSellFee; uint256 public liquiditySellFee; uint256 public totalBuyFees; uint256 public rewardsBuyFee; uint256 public operationsBuyFee; uint256 public liquidityBuyFee; uint256 public tokensForRewards; uint256 public tokensForOperations; uint256 public tokensForLiquidity; uint256 public gasForProcessing = 0; uint256 public lpWithdrawRequestTimestamp; uint256 public lpWithdrawRequestDuration = 1 seconds; bool public lpWithdrawRequestPending; uint256 public lpPercToWithDraw; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 360000 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 1 seconds; uint256 public lastManualLpBurnTime; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event ExcludedMaxTransactionAmount(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event OperationsWalletUpdated(address indexed newWallet, address indexed oldWallet); event DevWalletUpdated(address indexed newWallet, address indexed oldWallet); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event AutoBurnLP(uint256 indexed tokensBurned); event ManualBurnLP(uint256 indexed tokensBurned); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SendDividends( uint256 tokensSwapped, uint256 amount ); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); event RequestedLPWithdraw(); event WithdrewLPForMigration(); event CanceledLpWithdrawRequest(); constructor() ERC20("TITAN INU", "TITAN") { address _dexRouter; address stablecoinAddress; if(block.chainid == 1){ _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH Router stablecoinAddress = 0x6967299e9F3d5312740Aa61dEe6E9ea658958e31; // USDC ETH } else if(block.chainid == 5){ _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // Goerli Router stablecoinAddress = 0x2f3A40A3db8a7e3D09B0adfEfbCe4f6F81927557; // Goerli USDC } else if(block.chainid == 42161){ stablecoinAddress = 0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f; // BSC Testnet BUSD _dexRouter = 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506; // BNB Chain: PCS V2 } else { revert("Chain not configured"); } tokenHandler = new TokenHandler(); STABLECOIN = IERC20(stablecoinAddress); dexRouter = IDexRouter(_dexRouter); dividendTracker = new DividendTracker(stablecoinAddress); lpPair = IDexFactory(dexRouter.factory()).createPair(address(this), address(STABLECOIN)); _setAutomatedMarketMakerPair(address(lpPair), true); uint256 totalSupply = 100 * 1e6 * 1e18; maxTransactionAmount = totalSupply * 10 / 1000; // 0.5% maxTransactionAmountTxn swapTokensAtAmount = totalSupply * 10 / 10000; // 0.05% swap tokens amount maxWallet = totalSupply * 5 / 1000; // 0.5% Max wallet rewardsBuyFee = 20; operationsBuyFee = 20; liquidityBuyFee = 10; totalBuyFees = rewardsBuyFee + operationsBuyFee + liquidityBuyFee; rewardsSellFee = 10; operationsSellFee = 10; liquiditySellFee = 30; totalSellFees = rewardsSellFee + operationsSellFee + liquiditySellFee; operationsWallet = address(msg.sender); // set as operations wallet // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(address(_dexRouter)); dividendTracker.excludeFromDividends(address(0xdead)); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(_dexRouter), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(dividendTracker), true); excludeFromMaxTransaction(address(_dexRouter), true); excludeFromMaxTransaction(address(0xdead), true); _createInitialSupply(address(owner()), totalSupply); STABLECOIN.approve(address(dexRouter), type(uint256).max); _approve(address(this), address(dexRouter), type(uint256).max); IERC20(address(lpPair)).approve(address(dexRouter), type(uint256).max); } // only use if conducting a presale function addPresaleAddressForExclusions(address _presaleAddress) external onlyOwner { excludeFromFees(_presaleAddress, true); dividendTracker.excludeFromDividends(_presaleAddress); excludeFromMaxTransaction(_presaleAddress, true); } // leaving external and open for long-term viability for swapbacks function updateAllowanceForSwapping() external { STABLECOIN.approve(address(dexRouter), type(uint256).max); _approve(address(this), address(dexRouter), type(uint256).max); IERC20(address(lpPair)).approve(address(dexRouter), type(uint256).max); } function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner { require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes"); require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%"); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } // excludes wallets and contracts from dividends (such as CEX hotwallets, etc.) function excludeFromDividends(address account) external onlyOwner { dividendTracker.excludeFromDividends(account); } // removes exclusion on wallets and contracts from dividends (such as CEX hotwallets, etc.) function includeInDividends(address account) external onlyOwner { dividendTracker.includeInDividends(account); } // once enabled, can never be turned off function enableTrading() external onlyOwner { require(!tradingActive, "Cannot re-enable trading"); tradingActive = true; swapEnabled = true; tradingActiveBlock = block.number; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateMaxAmount(uint256 newNum) external onlyOwner { require(newNum > (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%"); maxWallet = newNum * (10**18); } function updateBuyFees(uint256 _operationsFee, uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner { operationsBuyFee = _operationsFee; rewardsBuyFee = _rewardsFee; liquidityBuyFee = _liquidityFee; totalBuyFees = operationsBuyFee + rewardsBuyFee + liquidityBuyFee; require(totalBuyFees <= 150, "Must keep fees at 15% or less"); } function updateSellFees(uint256 _operationsFee, uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner { operationsSellFee = _operationsFee; rewardsSellFee = _rewardsFee; liquiditySellFee = _liquidityFee; totalSellFees = operationsSellFee + rewardsSellFee + liquiditySellFee; require(totalSellFees <= 150, "Must keep fees at 15% or less"); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; emit ExcludedMaxTransactionAmount(updAds, isEx); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) external onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != lpPair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; excludeFromMaxTransaction(pair, value); if(value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function updateOperationsWallet(address newOperationsWallet) external onlyOwner { require(newOperationsWallet != address(0), "may not set to 0 address"); excludeFromFees(newOperationsWallet, true); emit OperationsWalletUpdated(newOperationsWallet, operationsWallet); operationsWallet = newOperationsWallet; } function updateGasForProcessing(uint256 newValue) external onlyOwner { require(newValue <= 500000, " gasForProcessing must be between 200,000 and 500,000"); require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value"); emit GasForProcessingUpdated(newValue, gasForProcessing); gasForProcessing = newValue; } function getClaimWait() external view returns(uint256) { return dividendTracker.claimWait(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) external view returns(bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) external view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) external view returns (uint256) { return dividendTracker.holderBalance(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccountAtIndex(index); } function processDividendTracker(uint256 gas) external { (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas); emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin); } function claim() external { dividendTracker.processAccount(payable(msg.sender), false); } function getLastProcessedIndex() external view returns(uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns(uint256) { return dividendTracker.getNumberOfTokenHolders(); } function getNumberOfDividends() external view returns(uint256) { return dividendTracker.totalBalance(); } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; transferDelayEnabled = false; return true; } 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(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet."); } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != address(dexRouter) && to != address(lpPair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // no taxes on transfers (non buys/sells) if(takeFee){ if(tradingActiveBlock + 1 >= block.number && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])){ fees = amount.mul(99).div(100); tokensForLiquidity += fees * 33 / 99; tokensForRewards += fees * 33 / 99; tokensForOperations += fees * 33 / 99; } // on sell else if (automatedMarketMakerPairs[to] && totalSellFees > 0){ fees = amount.mul(totalSellFees).div(feeDivisor); tokensForRewards += fees * rewardsSellFee / totalSellFees; tokensForLiquidity += fees * liquiditySellFee / totalSellFees; tokensForOperations += fees * operationsSellFee / totalSellFees; } // on buy else if(automatedMarketMakerPairs[from] && totalBuyFees > 0) { fees = amount.mul(totalBuyFees).div(feeDivisor); tokensForRewards += fees * rewardsBuyFee / totalBuyFees; tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees; tokensForOperations += fees * operationsBuyFee / totalBuyFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); dividendTracker.setBalance(payable(from), balanceOf(from)); dividendTracker.setBalance(payable(to), balanceOf(to)); if(!swapping && gasForProcessing > 0) { uint256 gas = gasForProcessing; try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) { emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin); } catch {} } } function swapTokensForStablecoin(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = address(STABLECOIN); // make the swap dexRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(tokenHandler), block.timestamp ); tokenHandler.sendTokenToOwner(address(STABLECOIN)); } function addLiquidity(uint256 tokenAmount, uint256 scAmount) private { // add the liquidity dexRouter.addLiquidity( address(this), address(STABLECOIN), tokenAmount, scAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function autoBurnLiquidityPairTokens() internal { lastLpBurnTime = block.timestamp; lastManualLpBurnTime = block.timestamp; uint256 lpBalance = IERC20(address(lpPair)).balanceOf(address(this)); uint256 tokenBalance = balanceOf(address(this)); uint256 lpAmount = lpBalance * percentForLPBurn / 10000; uint256 initialSCBalance = STABLECOIN.balanceOf(address(this)); // remove the liquidity dexRouter.removeLiquidity( address(this), address(STABLECOIN), lpAmount, 1, // slippage is unavoidable 1, // slippage is unavoidable address(this), block.timestamp ); uint256 deltaTokenBalance = balanceOf(address(this)) - tokenBalance; if(deltaTokenBalance > 0){ super._transfer(address(this), address(0xdead), deltaTokenBalance); } uint256 deltaSCBalance = STABLECOIN.balanceOf(address(this)) - initialSCBalance; if(deltaSCBalance > 0){ buyBackTokens(deltaSCBalance); } emit AutoBurnLP(lpAmount); } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner { require(percent <=2000, "May not burn more than 20% of contract's LP at a time"); require(lastManualLpBurnTime <= block.timestamp - manualBurnFrequency, "Burn too soon"); lastManualLpBurnTime = block.timestamp; uint256 lpBalance = IERC20(address(lpPair)).balanceOf(address(this)); uint256 tokenBalance = balanceOf(address(this)); uint256 lpAmount = lpBalance * percent / 10000; uint256 initialSCBalance = STABLECOIN.balanceOf(address(this)); // remove the liquidity dexRouter.removeLiquidity( address(this), address(STABLECOIN), lpAmount, 1, // slippage is unavoidable 1, // slippage is unavoidable address(this), block.timestamp ); uint256 deltaTokenBalance = balanceOf(address(this)) - tokenBalance; if(deltaTokenBalance > 0){ super._transfer(address(this), address(0xdead), deltaTokenBalance); } uint256 deltaSCBalance = STABLECOIN.balanceOf(address(this)) - initialSCBalance; if(deltaSCBalance > 0){ buyBackTokens(deltaSCBalance); } emit ManualBurnLP(lpAmount); } function buyBackTokens(uint256 amountInWei) internal { address[] memory path = new address[](2); path[0] = address(STABLECOIN); path[1] = address(this); dexRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens( amountInWei, 0, path, address(0xdead), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations + tokensForRewards; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForSC= contractBalance.sub(liquidityTokens); uint256 initialSCBalance = STABLECOIN.balanceOf(address(this)); swapTokensForStablecoin(amountToSwapForSC); uint256 scBalance = STABLECOIN.balanceOf(address(this)) - (initialSCBalance); uint256 scForOperations = scBalance.mul(tokensForOperations).div(totalTokensToSwap - (tokensForLiquidity/2)); uint256 scForRewards = scBalance.mul(tokensForRewards).div(totalTokensToSwap - (tokensForLiquidity/2)); uint256 scForLiquidity = scBalance - scForOperations - scForRewards; tokensForLiquidity = 0; tokensForOperations = 0; tokensForRewards = 0; if(liquidityTokens > 0 && scForLiquidity > 0){ addLiquidity(liquidityTokens, scForLiquidity); emit SwapAndLiquify(amountToSwapForSC, scForLiquidity, tokensForLiquidity); } if(scForRewards > 0){ STABLECOIN.transfer(address(dividendTracker), scForRewards); dividendTracker.distributeTokenDividends(); } if(STABLECOIN.balanceOf(address(this)) > 0){ STABLECOIN.transfer(operationsWallet, STABLECOIN.balanceOf(address(this)) ); } } function requestToWithdrawLP(uint256 percToWithdraw) external onlyOwner { require(!lpWithdrawRequestPending, "Cannot request again until first request is over."); require(percToWithdraw <= 100 && percToWithdraw > 0, "Need to set between 1-100%"); lpWithdrawRequestTimestamp = block.timestamp; lpWithdrawRequestPending = true; lpPercToWithDraw = percToWithdraw; emit RequestedLPWithdraw(); } function nextAvailableLpWithdrawDate() public view returns (uint256){ if(lpWithdrawRequestPending){ return lpWithdrawRequestTimestamp + lpWithdrawRequestDuration; } else { return 0; // 0 means no open requests } } function withdrawRequestedLP() external onlyOwner { require(block.timestamp >= nextAvailableLpWithdrawDate() && nextAvailableLpWithdrawDate() > 0, "Must request and wait."); lpWithdrawRequestTimestamp = 0; lpWithdrawRequestPending = false; uint256 amtToWithdraw = IERC20(address(lpPair)).balanceOf(address(this)) * lpPercToWithDraw / 100; lpPercToWithDraw = 0; IERC20(lpPair).transfer(msg.sender, amtToWithdraw); } function cancelLPWithdrawRequest() external onlyOwner { lpWithdrawRequestPending = false; lpPercToWithDraw = 0; lpWithdrawRequestTimestamp = 0; emit CanceledLpWithdrawRequest(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"uint256","name":"tokensBurned","type":"uint256"}],"name":"AutoBurnLP","type":"event"},{"anonymous":false,"inputs":[],"name":"CanceledLpWithdrawRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMaxTransactionAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokensBurned","type":"uint256"}],"name":"ManualBurnLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"OperationsWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[],"name":"RequestedLPWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[],"name":"WithdrewLPForMigration","type":"event"},{"inputs":[],"name":"STABLECOIN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleAddress","type":"address"}],"name":"addPresaleAddressForExclusions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"cancelLPWithdrawRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","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":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"earlyBuyPenaltyEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"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":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividends","outputs":[{"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":"account","type":"address"}],"name":"includeInDividends","outputs":[],"stateMutability":"nonpayable","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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPercToWithDraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":"nextAvailableLpWithdrawDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percToWithdraw","type":"uint256"}],"name":"requestToWithdrawLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenHandler","outputs":[{"internalType":"contract TokenHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[],"name":"updateAllowanceForSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRequestedLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040526000600d819055600e8190556010805462ffffff191660019081179091556012805460ff199081168317909155601e92909255602081905560196023556024805490921690915562057e406025556027553480156200006257600080fd5b5060405180604001604052806009815260200168544954414e20494e5560b81b815250604051806040016040528060058152602001642a24aa20a760d91b8152508160039081620000b4919062000db0565b506004620000c3828262000db0565b5050506000620000d8620008ab60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060008046600103620001655750737a250d5630b4cf539739df2c5dacb4c659f2488d9050736967299e9f3d5312740aa61dee6e9ea658958e316200022b565b46600503620001a15750737a250d5630b4cf539739df2c5dacb4c659f2488d9050732f3a40a3db8a7e3d09b0adfefbce4f6f819275576200022b565b4661a4b103620001de5750731b02da8cb0d097eb8d57a175b88c7d8b479975069050732f2a2543b76a4166549f7aab2e75bef0aefc5b0f6200022b565b60405162461bcd60e51b815260206004820152601460248201527f436861696e206e6f7420636f6e6669677572656400000000000000000000000060448201526064015b60405180910390fd5b604051620002399062000cef565b604051809103906000f08015801562000256573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b0392831617905581811660a052821660805260405181906200028e9062000cfd565b6001600160a01b039091168152602001604051809103906000f080158015620002bb573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000323573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000349919062000e7c565b60a0516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200039b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c1919062000e7c565b600680546001600160a01b0319166001600160a01b03929092169182179055620003ed906001620008af565b6a52b7d2dcc80cd2e40000006103e86200040982600a62000ec4565b62000415919062000ee6565b600a908155612710906200042b90839062000ec4565b62000437919062000ee6565b600b556103e86200044a82600562000ec4565b62000456919062000ee6565b600c55601460188190556019819055600a601a8190559062000479908062000f09565b62000485919062000f09565b601755600a60148190556015819055601e601681905590620004a8908062000f09565b620004b4919062000f09565b601355600980546001600160a01b0319163317905560085460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b1580156200051057600080fd5b505af115801562000525573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200056f57600080fd5b505af115801562000584573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620005ae6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620005f057600080fd5b505af115801562000605573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03878116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200065157600080fd5b505af115801562000666573d6000803e3d6000fd5b505060085460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b158015620006b257600080fd5b505af1158015620006c7573d6000803e3d6000fd5b50505050620006e7620006df6200098460201b60201c565b600162000993565b620006f430600162000993565b6200070361dead600162000993565b6200071083600162000993565b6200072f620007276005546001600160a01b031690565b600162000a3e565b6200073c30600162000a3e565b60085462000755906001600160a01b0316600162000a3e565b6200076283600162000a3e565b6200077161dead600162000a3e565b6200078f620007886005546001600160a01b031690565b8262000ae2565b60a05160805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620007e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200080c919062000f25565b50620008243060805160001962000bc760201b60201c565b60065460805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156200087b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008a1919062000f25565b5050505062000f49565b3390565b6001600160a01b0382166000908152602b60205260409020805460ff1916821515179055620008df828262000a3e565b8015620009485760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200092e57600080fd5b505af115801562000943573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b03163314620009de5760405162461bcd60e51b8152602060048201819052602482015260008051602062007403833981519152604482015260640162000222565b6001600160a01b038216600081815260296020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b0316331462000a895760405162461bcd60e51b8152602060048201819052602482015260008051602062007403833981519152604482015260640162000222565b6001600160a01b0382166000818152602a6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95910162000a32565b6001600160a01b03821662000b3a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000222565b806002600082825462000b4e919062000f09565b90915550506001600160a01b0382166000908152602081905260408120805483929062000b7d90849062000f09565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831662000c2b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000222565b6001600160a01b03821662000c8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000222565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6104d680620055b983390190565b6119748062005a8f83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000d3657607f821691505b60208210810362000d5757634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000dab57600081815260208120601f850160051c8101602086101562000d865750805b601f850160051c820191505b8181101562000da75782815560010162000d92565b5050505b505050565b81516001600160401b0381111562000dcc5762000dcc62000d0b565b62000de48162000ddd845462000d21565b8462000d5d565b602080601f83116001811462000e1c576000841562000e035750858301515b600019600386901b1c1916600185901b17855562000da7565b600085815260208120601f198616915b8281101562000e4d5788860151825594840194600190910190840162000e2c565b508582101562000e6c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000e8f57600080fd5b81516001600160a01b038116811462000ea757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000ee15762000ee162000eae565b500290565b60008262000f0457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000f1f5762000f1f62000eae565b92915050565b60006020828403121562000f3857600080fd5b8151801515811462000ea757600080fd5b60805160a0516145b7620010026000396000818161081601528181610d6c01528181612535015281816125bf015281816126ca015281816135a401528181613741015281816137d90152818161396501528181613a5601528181613aef01528181613d4601528181613e2a0152613e8201526000818161053401528181610d3c01528181610de001528181610e210152818161260d01528181612a2c0152818161362f01528181613da00152613ed401526145b76000f3fe608060405234801561001057600080fd5b50600436106104f95760003560e01c80638a8c523c11610299578063c18bc19511610167578063e884f260116100d9578063f54afa7811610092578063f54afa7814610a9f578063f8b45b0514610aa8578063fb002c9714610ab1578063fd361d0e14610aba578063fd72e22a14610ac7578063fe72b27a14610ada57600080fd5b8063e884f26014610a56578063ee40166e14610a5e578063ee44b44e14610a67578063efcc1b2f14610a70578063f27fd25414610a79578063f2fde38b14610a8c57600080fd5b8063ccb613581161012b578063ccb61358146109f1578063ccd146b2146109fa578063d0a3981414610a03578063dd62ed3e14610a0c578063e2f4560514610a45578063e7841ec014610a4e57600080fd5b8063c18bc195146109ad578063c492f046146109c0578063c7c61e2c146109d3578063c876d0b9146109db578063c8c8ebe4146109e857600080fd5b8063a4c82a001161020b578063b9e93700116101c4578063b9e9370014610946578063bbc0c7421461094f578063befd2fac14610961578063c024666814610974578063c0f306ef14610987578063c17b5b8c1461099a57600080fd5b8063a4c82a0014610889578063a716b77314610892578063a8b9d240146108a5578063a9059cbb146108b8578063ad56c13c146108cb578063b62496f51461092357600080fd5b80639a36f9321161025d5780639a36f932146108405780639a7a23d6146108495780639c1b8af51461085c5780639ec22c0e14610865578063a26579ad1461086e578063a457c2d71461087657600080fd5b80638a8c523c146107e55780638da5cb5b146107ed578063924de9b7146107fe57806393a397761461081157806395d89b411461083857600080fd5b806331e79db0116103d657806370a0823111610348578063751039fc11610301578063751039fc146107935780637571336a1461079b578063763cef49146107ae578063783102eb146107b65780638095d564146107bf578063871c128d146107d257600080fd5b806370a082311461074c578063712c29851461075f578063715018a61461076757806371778e7d1461076f578063730c1888146107775780637506cbd81461078a57600080fd5b80634e71d92d1161039a5780634e71d92d146106d75780634fbee193146106df57806364b0f6531461070b5780636843cd84146107135780636ddd171314610726578063700bb1911461073957600080fd5b806331e79db014610688578063395093511461069b578063452ed4f1146106ae5780634a62bb65146106c15780634af6f7ee146106ce57600080fd5b80631a8145bb1161046f5780632c1f5216116104335780632c1f5216146106355780632c3e486c146106485780632e82f1a01461065157806330bb4cff1461065e57806330d5d18d14610666578063313ce5671461067957600080fd5b80631a8145bb146105f55780631b3d6e87146105fe5780631fc851bd1461061157806323b872dd1461061a578063254248961461062d57600080fd5b80630f4432e3116104c15780630f4432e31461059a578063106b5da1146105a357806310d5de53146105b857806318160ddd146105db578063184c16c5146105e3578063199ffc72146105ec57600080fd5b8063058054c9146104fe57806306fdde031461051a5780630758d9241461052f578063095ea7b31461056e578063099d0d3014610591575b600080fd5b610507601f5481565b6040519081526020015b60405180910390f35b610522610aed565b6040516105119190613faa565b6105567f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610511565b61058161057c36600461400d565b610b7f565b6040519015158152602001610511565b61050760165481565b610507600d5481565b6105b66105b1366004614039565b610b96565b005b6105816105c6366004614052565b602a6020526000908152604090205460ff1681565b600254610507565b61050760275481565b61050760235481565b610507601d5481565b600754610556906001600160a01b031681565b610507600f5481565b61058161062836600461406f565b610c7b565b6105b6610d25565b600854610556906001600160a01b031681565b61050760255481565b6024546105819060ff1681565b610507610ea3565b6105b6610674366004614052565b610f16565b60405160128152602001610511565b6105b6610696366004614052565b610ffe565b6105816106a936600461400d565b61108b565b600654610556906001600160a01b031681565b6010546105819060ff1681565b61050760185481565b6105b66110c7565b6105816106ed366004614052565b6001600160a01b031660009081526029602052604090205460ff1690565b6105076110fe565b610507610721366004614052565b611148565b6010546105819062010000900460ff1681565b6105b6610747366004614039565b6111b8565b61050761075a366004614052565b61128b565b6105076112a6565b6105b66112ca565b61050761133e565b6105b66107853660046140be565b611388565b61050760155481565b6105816114b1565b6105b66107a93660046140f7565b6114fa565b6105b6611584565b61050760225481565b6105b66107cd366004614130565b611726565b6105b66107e0366004614039565b6117ce565b6105b6611902565b6005546001600160a01b0316610556565b6105b661080c36600461415c565b61199b565b6105567f000000000000000000000000000000000000000000000000000000000000000081565b6105226119e1565b6105076103e881565b6105b66108573660046140f7565b6119f0565b610507601e5481565b61050760285481565b610507611ab6565b61058161088436600461400d565b611b00565b61050760265481565b6105b66108a0366004614052565b611b99565b6105076108b3366004614052565b611c38565b6105816108c636600461400d565b611c6b565b6108de6108d9366004614052565b611c78565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610511565b610581610931366004614052565b602b6020526000908152604090205460ff1681565b61050760175481565b60105461058190610100900460ff1681565b6105b661096f366004614039565b611d13565b6105b66109823660046140f7565b611e49565b6105b6610995366004614052565b611ecb565b6105b66109a8366004614130565b611f27565b6105b66109bb366004614039565b611fca565b6105b66109ce366004614179565b612098565b6105b6612174565b6012546105819060ff1681565b610507600a5481565b610507601a5481565b61050760145481565b61050760135481565b610507610a1a3660046141f4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610507600b5481565b6105076121dd565b610581612227565b610507600e5481565b61050760205481565b61050760195481565b6108de610a87366004614039565b612264565b6105b6610a9a366004614052565b6122a6565b610507601b5481565b610507600c5481565b610507601c5481565b6021546105819060ff1681565b600954610556906001600160a01b031681565b6105b6610ae8366004614039565b612391565b606060038054610afc90614222565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890614222565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b5050505050905090565b6000610b8c338484612784565b5060015b92915050565b6005546001600160a01b03163314610bc95760405162461bcd60e51b8152600401610bc09061425c565b60405180910390fd5b670de0b6b3a76400006103e8610bde60025490565b610be99060016142a7565b610bf391906142c6565b610bfd91906142c6565b8111610c635760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bc0565b610c7581670de0b6b3a76400006142a7565b600a5550565b6000610c888484846128a8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d0d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bc0565b610d1a8533858403612784565b506001949350505050565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd991906142e8565b50610e07307f0000000000000000000000000000000000000000000000000000000000000000600019612784565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044015b6020604051808303816000875af1158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea091906142e8565b50565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f119190614305565b905090565b6005546001600160a01b03163314610f405760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b038116610f965760405162461bcd60e51b815260206004820152601860248201527f6d6179206e6f742073657420746f2030206164647265737300000000000000006044820152606401610bc0565b610fa1816001611e49565b6009546040516001600160a01b03918216918316907f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f890600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110285760405162461bcd60e51b8152600401610bc09061425c565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b15801561107057600080fd5b505af1158015611084573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b8c9185906110c290869061431e565b612784565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401610e5d565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b60085460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024015b602060405180830381865afa158015611194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b909190614305565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190614331565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60215460009060ff16156112c457602054601f54610f11919061431e565b50600090565b6005546001600160a01b031633146112f45760405162461bcd60e51b8152600401610bc09061425c565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6008546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b6005546001600160a01b031633146113b25760405162461bcd60e51b8152600401610bc09061425c565b6102588310156114205760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bc0565b6103e88211158015611430575060015b6114955760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bc0565b6025929092556023556024805460ff1916911515919091179055565b6005546000906001600160a01b031633146114de5760405162461bcd60e51b8152600401610bc09061425c565b506010805460ff19908116909155601280549091169055600190565b6005546001600160a01b031633146115245760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b0382166000818152602a6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146115ae5760405162461bcd60e51b8152600401610bc09061425c565b6115b66112a6565b42101580156115cc575060006115ca6112a6565b115b6116115760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610bc0565b6000601f8190556021805460ff191690556022546006546040516370a0823160e01b8152306004820152606492916001600160a01b0316906370a0823190602401602060405180830381865afa15801561166f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116939190614305565b61169d91906142a7565b6116a791906142c6565b600060225560065460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172291906142e8565b5050565b6005546001600160a01b031633146117505760405162461bcd60e51b8152600401610bc09061425c565b60198390556018829055601a8190558061176a838561431e565b611774919061431e565b6017819055609610156117c95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bc0565b505050565b6005546001600160a01b031633146117f85760405162461bcd60e51b8152600401610bc09061425c565b6207a1208111156118695760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610bc0565b601e5481036118cf5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610bc0565b601e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601e55565b6005546001600160a01b0316331461192c5760405162461bcd60e51b8152600401610bc09061425c565b601054610100900460ff16156119845760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610bc0565b6010805462ffff0019166201010017905543600e55565b6005546001600160a01b031633146119c55760405162461bcd60e51b8152600401610bc09061425c565b60108054911515620100000262ff000019909216919091179055565b606060048054610afc90614222565b6005546001600160a01b03163314611a1a5760405162461bcd60e51b8152600401610bc09061425c565b6006546001600160a01b0390811690831603611aac5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610bc0565b611722828261336a565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b825760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bc0565b611b8f3385858403612784565b5060019392505050565b6005546001600160a01b03163314611bc35760405162461bcd60e51b8152600401610bc09061425c565b611bce816001611e49565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b158015611c1557600080fd5b505af1158015611c29573d6000803e3d6000fd5b50505050610ea08160016114fa565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611177565b6000610b8c3384846128a8565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611cd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf8919061435f565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611d3d5760405162461bcd60e51b8152600401610bc09061425c565b60215460ff1615611daa5760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74207265717565737420616761696e20756e74696c206669727374604482015270103932b8bab2b9ba1034b99037bb32b91760791b6064820152608401610bc0565b60648111158015611dbb5750600081115b611e075760405162461bcd60e51b815260206004820152601a60248201527f4e65656420746f20736574206265747765656e20312d313030250000000000006044820152606401610bc0565b42601f556021805460ff1916600117905560228190556040517fd99a77b2f3951cd076e75814e44db497e6abc203dd251329da0b62c288f9f48b90600090a150565b6005546001600160a01b03163314611e735760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b038216600081815260296020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611578565b6005546001600160a01b03163314611ef55760405162461bcd60e51b8152600401610bc09061425c565b60085460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401611056565b6005546001600160a01b03163314611f515760405162461bcd60e51b8152600401610bc09061425c565b60158390556014829055601681905580611f6b838561431e565b611f75919061431e565b6013819055609610156117c95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bc0565b6005546001600160a01b03163314611ff45760405162461bcd60e51b8152600401610bc09061425c565b670de0b6b3a7640000606461200860025490565b6120139060016142a7565b61201d91906142c6565b61202791906142c6565b81116120805760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610bc0565b61209281670de0b6b3a76400006142a7565b600c5550565b6005546001600160a01b031633146120c25760405162461bcd60e51b8152600401610bc09061425c565b60005b828110156121335781602960008686858181106120e4576120e46143c9565b90506020020160208101906120f99190614052565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061212b816143df565b9150506120c5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051612167939291906143f8565b60405180910390a1505050565b6005546001600160a01b0316331461219e5760405162461bcd60e51b8152600401610bc09061425c565b6021805460ff1916905560006022819055601f8190556040517ffbcc1c208c9c4d1d9f557267b55c5ae316e74ce676a0db72ef18c6d5f5767c619190a1565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b6005546000906001600160a01b031633146122545760405162461bcd60e51b8152600401610bc09061425c565b506012805460ff19169055600190565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611cb6565b6005546001600160a01b031633146122d05760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b0381166123355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc0565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146123bb5760405162461bcd60e51b8152600401610bc09061425c565b6107d081111561242b5760405162461bcd60e51b815260206004820152603560248201527f4d6179206e6f74206275726e206d6f7265207468616e20323025206f6620636f6044820152746e74726163742773204c5020617420612074696d6560581b6064820152608401610bc0565b6027546124389042614451565b60285411156124795760405162461bcd60e51b815260206004820152600d60248201526c213ab937103a37b79039b7b7b760991b6044820152606401610bc0565b426028556006546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156124c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124ea9190614305565b905060006124f73061128b565b9050600061271061250885856142a7565b61251291906142c6565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa15801561257c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a09190614305565b604051635d5155ef60e11b815230600482018190526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116602484015260448301869052600160648401819052608484015260a48301919091524260c48301529192507f00000000000000000000000000000000000000000000000000000000000000009091169063baa2abde9060e40160408051808303816000875af1158015612657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267b9190614464565b50506000836126893061128b565b6126939190614451565b905080156126a8576126a83061dead8361343a565b6040516370a0823160e01b815230600482015260009083906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015612711573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127359190614305565b61273f9190614451565b905080156127505761275081613581565b60405184907f81b7e7967a97e0708996ad25e859322b1c2e22612ac6798c9c95cfda2dca265f90600090a250505050505050565b6001600160a01b0383166127e65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc0565b6001600160a01b0382166128475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bc0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166128ce5760405162461bcd60e51b8152600401610bc090614488565b6001600160a01b0382166128f45760405162461bcd60e51b8152600401610bc0906144cd565b80600003612908576117c98383600061343a565b601054610100900460ff166129a2576001600160a01b03831660009081526029602052604090205460ff168061295657506001600160a01b03821660009081526029602052604090205460ff165b6129a25760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610bc0565b60105460ff1615612d82576005546001600160a01b038481169116148015906129d957506005546001600160a01b03838116911614155b80156129ed57506001600160a01b03821615155b8015612a0457506001600160a01b03821661dead14155b8015612a1a5750600754600160a01b900460ff16155b15612d825760125460ff1615612b28577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614158015612a7a57506006546001600160a01b03838116911614155b15612b2857326000908152601160205260409020544311612b155760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bc0565b3260009081526011602052604090204390555b6001600160a01b0383166000908152602b602052604090205460ff168015612b6957506001600160a01b0382166000908152602a602052604090205460ff16155b15612c4757600a54811115612bde5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bc0565b600c54612bea8361128b565b612bf4908361431e565b1115612c425760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610bc0565b612d82565b6001600160a01b0382166000908152602b602052604090205460ff168015612c8857506001600160a01b0383166000908152602a602052604090205460ff16155b15612cfe57600a54811115612c425760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bc0565b6001600160a01b0382166000908152602a602052604090205460ff16612d8257600c54612d2a8361128b565b612d34908361431e565b1115612d825760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610bc0565b6000612d8d3061128b565b600b5490915081108015908190612dac575060105462010000900460ff165b8015612dc25750600754600160a01b900460ff16155b8015612de757506001600160a01b0385166000908152602b602052604090205460ff16155b8015612e0c57506001600160a01b03851660009081526029602052604090205460ff16155b8015612e3157506001600160a01b03841660009081526029602052604090205460ff16155b15612e5f576007805460ff60a01b1916600160a01b179055612e516136a7565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526029602052604090205460ff600160a01b909204821615911680612ead57506001600160a01b03851660009081526029602052604090205460ff165b15612eb6575060005b6000811561317b5743600e546001612ece919061431e565b10158015612f1657506001600160a01b0386166000908152602b602052604090205460ff1680612f1657506001600160a01b0387166000908152602b602052604090205460ff165b15612fc257612f316064612f2b876063613be2565b90613c6b565b90506063612f408260216142a7565b612f4a91906142c6565b601d6000828254612f5b919061431e565b9091555060639050612f6e8260216142a7565b612f7891906142c6565b601b6000828254612f89919061431e565b9091555060639050612f9c8260216142a7565b612fa691906142c6565b601c6000828254612fb7919061431e565b9091555061315d9050565b6001600160a01b0386166000908152602b602052604090205460ff168015612fec57506000601354115b1561307f5761300c6103e8612f2b60135488613be290919063ffffffff16565b90506013546014548261301f91906142a7565b61302991906142c6565b601b600082825461303a919061431e565b909155505060135460165461304f90836142a7565b61305991906142c6565b601d600082825461306a919061431e565b9091555050601354601554612f9c90836142a7565b6001600160a01b0387166000908152602b602052604090205460ff1680156130a957506000601754115b1561315d576130c96103e8612f2b60175488613be290919063ffffffff16565b9050601754601854826130dc91906142a7565b6130e691906142c6565b601b60008282546130f7919061431e565b9091555050601754601a5461310c90836142a7565b61311691906142c6565b601d6000828254613127919061431e565b909155505060175460195461313c90836142a7565b61314691906142c6565b601c6000828254613157919061431e565b90915550505b801561316e5761316e87308361343a565b6131788186614451565b94505b61318687878761343a565b6008546001600160a01b031663e30443bc886131a18161128b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156131e757600080fd5b505af11580156131fb573d6000803e3d6000fd5b50506008546001600160a01b0316915063e30443bc90508761321c8161128b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561326257600080fd5b505af1158015613276573d6000803e3d6000fd5b5050600754600160a01b900460ff1615915050801561329757506000601e54115b1561336157601e546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af1925050508015613309575060408051601f3d908101601f1916820190925261330691810190614331565b60015b1561335f5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152602b60205260409020805460ff191682151517905561339882826114fa565b80156133fe5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156133e557600080fd5b505af11580156133f9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134605760405162461bcd60e51b8152600401610bc090614488565b6001600160a01b0382166134865760405162461bcd60e51b8152600401610bc0906144cd565b6001600160a01b038316600090815260208190526040902054818110156134fe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bc0565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061353590849061431e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127d91815260200190565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000000816000815181106135d6576135d66143c9565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061360a5761360a6143c9565b6001600160a01b039283166020918202929092010152604051635c11d79560e01b81527f000000000000000000000000000000000000000000000000000000000000000090911690635c11d79590613671908590600090869061dead904290600401614510565b600060405180830381600087803b15801561368b57600080fd5b505af115801561369f573d6000803e3d6000fd5b505050505050565b60006136b23061128b565b90506000601b54601c54601d546136c9919061431e565b6136d3919061431e565b90508115806136e0575080155b156136e9575050565b6000600282601d54856136fc91906142a7565b61370691906142c6565b61371091906142c6565b9050600061371e8483613cad565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015613788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ac9190614305565b90506137b782613cef565b6040516370a0823160e01b815230600482015260009082906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015613820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138449190614305565b61384e9190614451565b9050600061387c6002601d5461386491906142c6565b61386e9088614451565b601c54612f2b908590613be2565b905060006138aa6002601d5461389291906142c6565b61389c9089614451565b601b54612f2b908690613be2565b90506000816138b98486614451565b6138c39190614451565b6000601d819055601c819055601b55905086158015906138e35750600081115b15613936576138f28782613e64565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8115613a3e5760085460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb906044016020604051808303816000875af11580156139b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d491906142e8565b50600860009054906101000a90046001600160a01b03166001600160a01b031663b51312916040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a2557600080fd5b505af1158015613a39573d6000803e3d6000fd5b505050505b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015613aa5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ac99190614305565b1115613bd7576009546040516370a0823160e01b81523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015613b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b669190614305565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015613bb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bd591906142e8565b505b505050505050505050565b600082600003613bf457506000610b90565b6000613c0083856142a7565b905082613c0d85836142c6565b14613c645760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610bc0565b9392505050565b6000613c6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f42565b6000613c6483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f79565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613d2457613d246143c9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110613d7857613d786143c9565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b81527f0000000000000000000000000000000000000000000000000000000000000000831692635c11d79592613de092879260009288929116904290600401614510565b600060405180830381600087803b158015613dfa57600080fd5b505af1158015613e0e573d6000803e3d6000fd5b50506007546040516304fa881160e21b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015290911692506313ea20449150602401613671565b60405162e8e33760e81b815230600482018190526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024840152604483018590526064830184905260006084840181905260a484015260c48301919091524260e48301527f0000000000000000000000000000000000000000000000000000000000000000169063e8e3370090610104016060604051808303816000875af1158015613f1e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110849190614331565b60008183613f635760405162461bcd60e51b8152600401610bc09190613faa565b506000613f7084866142c6565b95945050505050565b60008184841115613f9d5760405162461bcd60e51b8152600401610bc09190613faa565b506000613f708486614451565b600060208083528351808285015260005b81811015613fd757858101830151858201604001528201613fbb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ea057600080fd5b6000806040838503121561402057600080fd5b823561402b81613ff8565b946020939093013593505050565b60006020828403121561404b57600080fd5b5035919050565b60006020828403121561406457600080fd5b8135613c6481613ff8565b60008060006060848603121561408457600080fd5b833561408f81613ff8565b9250602084013561409f81613ff8565b929592945050506040919091013590565b8015158114610ea057600080fd5b6000806000606084860312156140d357600080fd5b833592506020840135915060408401356140ec816140b0565b809150509250925092565b6000806040838503121561410a57600080fd5b823561411581613ff8565b91506020830135614125816140b0565b809150509250929050565b60008060006060848603121561414557600080fd5b505081359360208301359350604090920135919050565b60006020828403121561416e57600080fd5b8135613c64816140b0565b60008060006040848603121561418e57600080fd5b833567ffffffffffffffff808211156141a657600080fd5b818601915086601f8301126141ba57600080fd5b8135818111156141c957600080fd5b8760208260051b85010111156141de57600080fd5b602092830195509350508401356140ec816140b0565b6000806040838503121561420757600080fd5b823561421281613ff8565b9150602083013561412581613ff8565b600181811c9082168061423657607f821691505b60208210810361425657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156142c1576142c1614291565b500290565b6000826142e357634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156142fa57600080fd5b8151613c64816140b0565b60006020828403121561431757600080fd5b5051919050565b80820180821115610b9057610b90614291565b60008060006060848603121561434657600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b03121561437c57600080fd5b885161438781613ff8565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b6000600182016143f1576143f1614291565b5060010190565b6040808252810183905260008460608301825b8681101561443b57823561441e81613ff8565b6001600160a01b031682526020928301929091019060010161440b565b5080925050508215156020830152949350505050565b81810381811115610b9057610b90614291565b6000806040838503121561447757600080fd5b505080516020909101519092909150565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156145605784516001600160a01b03168352938301939183019160010161453b565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122092f4f322e64aa744e7856ebf70ab7c5988768c192e7a3011359eafcb6fdf076864736f6c63430008100033608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610475806100616000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806313ea204414610051578063715018a6146100665780638da5cb5b1461006e578063f2fde38b1461008d575b600080fd5b61006461005f36600461039f565b6100a0565b005b610064610241565b600054604080516001600160a01b039092168252519081900360200190f35b61006461009b36600461039f565b6102b5565b6000546001600160a01b031633146100d35760405162461bcd60e51b81526004016100ca906103cf565b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061013e9190610404565b111561023e57806001600160a01b031663a9059cbb6101656000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156101a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101cd9190610404565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610218573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023c919061041d565b505b50565b6000546001600160a01b0316331461026b5760405162461bcd60e51b81526004016100ca906103cf565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146102df5760405162461bcd60e51b81526004016100ca906103cf565b6001600160a01b0381166103445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016100ca565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000602082840312156103b157600080fd5b81356001600160a01b03811681146103c857600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561041657600080fd5b5051919050565b60006020828403121561042f57600080fd5b815180151581146103c857600080fdfea2646970667358221220061c8238a6cc81c419b3ad618fc88c4c2096b8b1a9264c093b980be95b7e56a264736f6c6343000810003360a060405234801561001057600080fd5b5060405161197438038061197483398101604081905261002f9161009f565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060016010819055608052600280546001600160a01b0319166001600160a01b03929092169190911790556100cf565b6000602082840312156100b157600080fd5b81516001600160a01b03811681146100c857600080fd5b9392505050565b6080516118836100f1600039600081816104b60152610b2701526118836000f3fe6080604052600436106101c65760003560e01c8063a8b9d240116100f7578063c0f306ef11610095578063f2fde38b11610064578063f2fde38b14610543578063fbcbc0f114610563578063fc0c546a14610583578063ffb2c479146105a357600080fd5b8063c0f306ef146104d8578063e30443bc146104f8578063e7841ec014610518578063f2e65d6f1461052d57600080fd5b8063ad7a672f116100d1578063ad7a672f14610459578063b51312911461046f578063bc4c4b3714610484578063be10b614146104a457600080fd5b8063a8b9d240146103d6578063aafd847a146103f6578063ab6ddfa81461042c57600080fd5b80635183d6fd11610164578063715018a61161013e578063715018a61461035957806385a6b3ae1461036e5780638da5cb5b1461038457806391b89fba146103b657600080fd5b80635183d6fd146102c95780636a4740021461032e5780636f2789ec1461034357600080fd5b806327ce0147116101a057806327ce0147146102335780633009a6091461025357806331e79db0146102695780634e7b827f1461028957600080fd5b806303c83302146101da57806309bbedde146101e2578063226cfa3d1461020657600080fd5b366101d5576101d36105de565b005b600080fd5b6101d36105de565b3480156101ee57600080fd5b506009545b6040519081526020015b60405180910390f35b34801561021257600080fd5b506101f36102213660046115e1565b600f6020526000908152604090205481565b34801561023f57600080fd5b506101f361024e3660046115e1565b610653565b34801561025f57600080fd5b506101f3600d5481565b34801561027557600080fd5b506101d36102843660046115e1565b6106b6565b34801561029557600080fd5b506102b96102a43660046115e1565b600e6020526000908152604090205460ff1681565b60405190151581526020016101fd565b3480156102d557600080fd5b506102e96102e43660046115fe565b61074e565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016101fd565b34801561033a57600080fd5b506101d36107bb565b34801561034f57600080fd5b506101f360105481565b34801561036557600080fd5b506101d36107c7565b34801561037a57600080fd5b506101f360075481565b34801561039057600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101fd565b3480156103c257600080fd5b506101f36103d13660046115e1565b61083b565b3480156103e257600080fd5b506101f36103f13660046115e1565b610842565b34801561040257600080fd5b506101f36104113660046115e1565b6001600160a01b031660009081526004602052604090205490565b34801561043857600080fd5b506101f36104473660046115e1565b60056020526000908152604090205481565b34801561046557600080fd5b506101f360065481565b34801561047b57600080fd5b506101d361086e565b34801561049057600080fd5b506102b961049f366004611625565b610997565b3480156104b057600080fd5b506101f37f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e457600080fd5b506101d36104f33660046115e1565b610a43565b34801561050457600080fd5b506101d361051336600461165e565b610adb565b34801561052457600080fd5b50600d546101f3565b34801561053957600080fd5b506101f360085481565b34801561054f57600080fd5b506101d361055e3660046115e1565b610b89565b34801561056f57600080fd5b506102e961057e3660046115e1565b610c73565b34801561058f57600080fd5b5060025461039e906001600160a01b031681565b3480156105af57600080fd5b506105c36105be3660046115fe565b610d5a565b604080519384526020840192909252908201526060016101fd565b60405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f742073656e6420424e42206469726563746c7920746f207472616360448201527f6b657220617320697420697320756e7265636f76657261626c6500000000000060648201526084015b60405180910390fd5b565b6001600160a01b0381166000908152600360209081526040808320546005909252822054600154600160801b926106a6926106a19261069b916106969190610e77565b610f00565b90610f10565b610f4e565b6106b091906116a0565b92915050565b6000546001600160a01b031633146106e05760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b0381166000908152600e60205260408120805460ff1916600117905561070e908290610f61565b61071781610ffa565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b60008060008060008060008061076360095490565b89106107885750600096506000199550859450869350839250829150819050806107b0565b60006107938a61112d565b905061079e81610c73565b98509850985098509850985098509850505b919395975091939597565b6107c433611160565b50565b6000546001600160a01b031633146107f15760405162461bcd60e51b8152600401610648906116c2565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006106b0825b6001600160a01b0381166000908152600460205260408120546106b09061086884610653565b906112f6565b60065415610651576002546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156108c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e791906116f7565b9050806008541015610907576008546109009082611710565b915061090c565b600091505b81156109935760065461093a9061092784600160801b610e77565b61093191906116a0565b60015490611338565b60015560405182815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a260075461097f9083611338565b60075560085461098f9083611338565b6008555b5050565b600080546001600160a01b031633146109c25760405162461bcd60e51b8152600401610648906116c2565b60006109cd84611160565b90508015610a39576001600160a01b0384166000818152600f6020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610a279085815260200190565b60405180910390a360019150506106b0565b5060009392505050565b6000546001600160a01b03163314610a6d5760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b0381166000908152600e602052604090205460ff16610a9257600080fd5b6001600160a01b0381166000818152600e6020526040808220805460ff19169055517f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329190a250565b6000546001600160a01b03163314610b055760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b0382166000908152600e602052604090205460ff16610993577f00000000000000000000000000000000000000000000000000000000000000008110610b6557610b568282610f61565b610b608282611397565b610b79565b610b70826000610f61565b610b7982610ffa565b610b84826001610997565b505050565b6000546001600160a01b03163314610bb35760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b038116610c185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b806000808080808080610c8588611455565b9650600019955060008712610ce757600d54871115610cb357600d54610cac90889061149a565b9550610ce7565b600d5460095460009110610cc8576000610cd7565b600d54600954610cd7916112f6565b9050610ce38882610f10565b9650505b610cf088610842565b9450610cfb88610653565b6001600160a01b0389166000908152600f6020526040902054909450925082610d25576000610d33565b601054610d33908490611338565b9150428211610d43576000610d4d565b610d4d82426112f6565b9050919395975091939597565b60095460009081908190808203610d7c575050600d5460009250829150610e70565b600d546000805a90506000805b8984108015610d9757508582105b15610e5f5784610da681611723565b60095490965086109050610db957600094505b600060096000018681548110610dd157610dd161173c565b60009182526020808320909101546001600160a01b0316808352600f909152604090912054909150610e02906114d7565b15610e2557610e12816001610997565b15610e255781610e2181611723565b9250505b82610e2f81611723565b93505060005a905080851115610e5657610e53610e4c86836112f6565b8790611338565b95505b9350610d899050565b600d85905590975095509193505050505b9193909250565b600082600003610e89575060006106b0565b6000610e958385611752565b905082610ea285836116a0565b14610ef95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610648565b9392505050565b600081818112156106b057600080fd5b600080610f1d8385611771565b905060008312158015610f305750838112155b80610f455750600083128015610f4557508381125b610ef957600080fd5b600080821215610f5d57600080fd5b5090565b6001600160a01b038216600090815260056020526040902080549082905580821115610fbd576000610f9383836112f6565b9050610f9f84826114fe565b8060066000828254610fb19190611799565b90915550610b84915050565b80821015610b84576000610fd182846112f6565b9050610fdd8482611558565b8060066000828254610fef9190611710565b909155505050505050565b6001600160a01b0381166000908152600c602052604090205460ff1661101d5750565b6001600160a01b0381166000908152600c60209081526040808320805460ff19169055600a8252808320839055600b90915281205460095490919061106490600190611710565b905060006009600001828154811061107e5761107e61173c565b60009182526020808320909101546001600160a01b03908116808452600b90925260408084208790559087168352822091909155600980549192508291859081106110cb576110cb61173c565b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790556009805480611105576111056117ac565b600082815260209020810160001990810180546001600160a01b031916905501905550505050565b6000600960000182815481106111455761114561173c565b6000918252602090912001546001600160a01b031692915050565b60008061116c83610842565b905080156112ed576001600160a01b0383166000908152600460205260409020546111979082611338565b6001600160a01b03841660009081526004602052604090205560085481116111d65780600860008282546111cb9190611710565b909155506111dc9050565b60006008555b826001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161121791815260200190565b60405180910390a260025460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af1158015611273573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129791906117c2565b9050806112e6576001600160a01b0384166000908152600460205260409020546112c190836112f6565b6001600160a01b03909416600090815260046020526040812094909455509192915050565b5092915050565b50600092915050565b6000610ef983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611592565b6000806113458385611799565b905083811015610ef95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610648565b6001600160a01b0382166000908152600c602052604090205460ff16156113d5576001600160a01b03919091166000908152600a6020526040902055565b6001600160a01b0382166000818152600c60209081526040808320805460ff19166001908117909155600a835281842086905560098054600b909452918420839055820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b03191690911790555050565b6001600160a01b0381166000908152600c602052604081205460ff1661147e5750600019919050565b506001600160a01b03166000908152600b602052604090205490565b6000806114a783856117df565b9050600083121580156114ba5750838113155b80610f455750600083128015610f455750838113610ef957600080fd5b6000428211156114e957506000919050565b6010546114f642846112f6565b101592915050565b61153861151961069683600154610e7790919063ffffffff16565b6001600160a01b0384166000908152600360205260409020549061149a565b6001600160a01b0390921660009081526003602052604090209190915550565b61153861157361069683600154610e7790919063ffffffff16565b6001600160a01b03841660009081526003602052604090205490610f10565b600081848411156115b65760405162461bcd60e51b815260040161064891906117ff565b5060006115c38486611710565b95945050505050565b6001600160a01b03811681146107c457600080fd5b6000602082840312156115f357600080fd5b8135610ef9816115cc565b60006020828403121561161057600080fd5b5035919050565b80151581146107c457600080fd5b6000806040838503121561163857600080fd5b8235611643816115cc565b9150602083013561165381611617565b809150509250929050565b6000806040838503121561167157600080fd5b823561167c816115cc565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b6000826116bd57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561170957600080fd5b5051919050565b818103818111156106b0576106b061168a565b6000600182016117355761173561168a565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561176c5761176c61168a565b500290565b80820182811260008312801582168215821617156117915761179161168a565b505092915050565b808201808211156106b0576106b061168a565b634e487b7160e01b600052603160045260246000fd5b6000602082840312156117d457600080fd5b8151610ef981611617565b81810360008312801583831316838312821617156112e6576112e661168a565b600060208083528351808285015260005b8181101561182c57858101830151858201604001528201611810565b506000604082860101526040601f19601f830116850101925050509291505056fea264697066735822122082b6e20dc77e295f1bee1f12d5748b57a8c3c9db64e1f32bd46b1f22772a5d4864736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104f95760003560e01c80638a8c523c11610299578063c18bc19511610167578063e884f260116100d9578063f54afa7811610092578063f54afa7814610a9f578063f8b45b0514610aa8578063fb002c9714610ab1578063fd361d0e14610aba578063fd72e22a14610ac7578063fe72b27a14610ada57600080fd5b8063e884f26014610a56578063ee40166e14610a5e578063ee44b44e14610a67578063efcc1b2f14610a70578063f27fd25414610a79578063f2fde38b14610a8c57600080fd5b8063ccb613581161012b578063ccb61358146109f1578063ccd146b2146109fa578063d0a3981414610a03578063dd62ed3e14610a0c578063e2f4560514610a45578063e7841ec014610a4e57600080fd5b8063c18bc195146109ad578063c492f046146109c0578063c7c61e2c146109d3578063c876d0b9146109db578063c8c8ebe4146109e857600080fd5b8063a4c82a001161020b578063b9e93700116101c4578063b9e9370014610946578063bbc0c7421461094f578063befd2fac14610961578063c024666814610974578063c0f306ef14610987578063c17b5b8c1461099a57600080fd5b8063a4c82a0014610889578063a716b77314610892578063a8b9d240146108a5578063a9059cbb146108b8578063ad56c13c146108cb578063b62496f51461092357600080fd5b80639a36f9321161025d5780639a36f932146108405780639a7a23d6146108495780639c1b8af51461085c5780639ec22c0e14610865578063a26579ad1461086e578063a457c2d71461087657600080fd5b80638a8c523c146107e55780638da5cb5b146107ed578063924de9b7146107fe57806393a397761461081157806395d89b411461083857600080fd5b806331e79db0116103d657806370a0823111610348578063751039fc11610301578063751039fc146107935780637571336a1461079b578063763cef49146107ae578063783102eb146107b65780638095d564146107bf578063871c128d146107d257600080fd5b806370a082311461074c578063712c29851461075f578063715018a61461076757806371778e7d1461076f578063730c1888146107775780637506cbd81461078a57600080fd5b80634e71d92d1161039a5780634e71d92d146106d75780634fbee193146106df57806364b0f6531461070b5780636843cd84146107135780636ddd171314610726578063700bb1911461073957600080fd5b806331e79db014610688578063395093511461069b578063452ed4f1146106ae5780634a62bb65146106c15780634af6f7ee146106ce57600080fd5b80631a8145bb1161046f5780632c1f5216116104335780632c1f5216146106355780632c3e486c146106485780632e82f1a01461065157806330bb4cff1461065e57806330d5d18d14610666578063313ce5671461067957600080fd5b80631a8145bb146105f55780631b3d6e87146105fe5780631fc851bd1461061157806323b872dd1461061a578063254248961461062d57600080fd5b80630f4432e3116104c15780630f4432e31461059a578063106b5da1146105a357806310d5de53146105b857806318160ddd146105db578063184c16c5146105e3578063199ffc72146105ec57600080fd5b8063058054c9146104fe57806306fdde031461051a5780630758d9241461052f578063095ea7b31461056e578063099d0d3014610591575b600080fd5b610507601f5481565b6040519081526020015b60405180910390f35b610522610aed565b6040516105119190613faa565b6105567f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610511565b61058161057c36600461400d565b610b7f565b6040519015158152602001610511565b61050760165481565b610507600d5481565b6105b66105b1366004614039565b610b96565b005b6105816105c6366004614052565b602a6020526000908152604090205460ff1681565b600254610507565b61050760275481565b61050760235481565b610507601d5481565b600754610556906001600160a01b031681565b610507600f5481565b61058161062836600461406f565b610c7b565b6105b6610d25565b600854610556906001600160a01b031681565b61050760255481565b6024546105819060ff1681565b610507610ea3565b6105b6610674366004614052565b610f16565b60405160128152602001610511565b6105b6610696366004614052565b610ffe565b6105816106a936600461400d565b61108b565b600654610556906001600160a01b031681565b6010546105819060ff1681565b61050760185481565b6105b66110c7565b6105816106ed366004614052565b6001600160a01b031660009081526029602052604090205460ff1690565b6105076110fe565b610507610721366004614052565b611148565b6010546105819062010000900460ff1681565b6105b6610747366004614039565b6111b8565b61050761075a366004614052565b61128b565b6105076112a6565b6105b66112ca565b61050761133e565b6105b66107853660046140be565b611388565b61050760155481565b6105816114b1565b6105b66107a93660046140f7565b6114fa565b6105b6611584565b61050760225481565b6105b66107cd366004614130565b611726565b6105b66107e0366004614039565b6117ce565b6105b6611902565b6005546001600160a01b0316610556565b6105b661080c36600461415c565b61199b565b6105567f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3181565b6105226119e1565b6105076103e881565b6105b66108573660046140f7565b6119f0565b610507601e5481565b61050760285481565b610507611ab6565b61058161088436600461400d565b611b00565b61050760265481565b6105b66108a0366004614052565b611b99565b6105076108b3366004614052565b611c38565b6105816108c636600461400d565b611c6b565b6108de6108d9366004614052565b611c78565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610511565b610581610931366004614052565b602b6020526000908152604090205460ff1681565b61050760175481565b60105461058190610100900460ff1681565b6105b661096f366004614039565b611d13565b6105b66109823660046140f7565b611e49565b6105b6610995366004614052565b611ecb565b6105b66109a8366004614130565b611f27565b6105b66109bb366004614039565b611fca565b6105b66109ce366004614179565b612098565b6105b6612174565b6012546105819060ff1681565b610507600a5481565b610507601a5481565b61050760145481565b61050760135481565b610507610a1a3660046141f4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610507600b5481565b6105076121dd565b610581612227565b610507600e5481565b61050760205481565b61050760195481565b6108de610a87366004614039565b612264565b6105b6610a9a366004614052565b6122a6565b610507601b5481565b610507600c5481565b610507601c5481565b6021546105819060ff1681565b600954610556906001600160a01b031681565b6105b6610ae8366004614039565b612391565b606060038054610afc90614222565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890614222565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b5050505050905090565b6000610b8c338484612784565b5060015b92915050565b6005546001600160a01b03163314610bc95760405162461bcd60e51b8152600401610bc09061425c565b60405180910390fd5b670de0b6b3a76400006103e8610bde60025490565b610be99060016142a7565b610bf391906142c6565b610bfd91906142c6565b8111610c635760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bc0565b610c7581670de0b6b3a76400006142a7565b600a5550565b6000610c888484846128a8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d0d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bc0565b610d1a8533858403612784565b506001949350505050565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301527f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e31169063095ea7b3906044016020604051808303816000875af1158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd991906142e8565b50610e07307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019612784565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044015b6020604051808303816000875af1158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea091906142e8565b50565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f119190614305565b905090565b6005546001600160a01b03163314610f405760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b038116610f965760405162461bcd60e51b815260206004820152601860248201527f6d6179206e6f742073657420746f2030206164647265737300000000000000006044820152606401610bc0565b610fa1816001611e49565b6009546040516001600160a01b03918216918316907f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f890600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110285760405162461bcd60e51b8152600401610bc09061425c565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b15801561107057600080fd5b505af1158015611084573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b8c9185906110c290869061431e565b612784565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401610e5d565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b60085460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024015b602060405180830381865afa158015611194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b909190614305565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190614331565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60215460009060ff16156112c457602054601f54610f11919061431e565b50600090565b6005546001600160a01b031633146112f45760405162461bcd60e51b8152600401610bc09061425c565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6008546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b6005546001600160a01b031633146113b25760405162461bcd60e51b8152600401610bc09061425c565b6102588310156114205760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bc0565b6103e88211158015611430575060015b6114955760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bc0565b6025929092556023556024805460ff1916911515919091179055565b6005546000906001600160a01b031633146114de5760405162461bcd60e51b8152600401610bc09061425c565b506010805460ff19908116909155601280549091169055600190565b6005546001600160a01b031633146115245760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b0382166000818152602a6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146115ae5760405162461bcd60e51b8152600401610bc09061425c565b6115b66112a6565b42101580156115cc575060006115ca6112a6565b115b6116115760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610bc0565b6000601f8190556021805460ff191690556022546006546040516370a0823160e01b8152306004820152606492916001600160a01b0316906370a0823190602401602060405180830381865afa15801561166f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116939190614305565b61169d91906142a7565b6116a791906142c6565b600060225560065460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172291906142e8565b5050565b6005546001600160a01b031633146117505760405162461bcd60e51b8152600401610bc09061425c565b60198390556018829055601a8190558061176a838561431e565b611774919061431e565b6017819055609610156117c95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bc0565b505050565b6005546001600160a01b031633146117f85760405162461bcd60e51b8152600401610bc09061425c565b6207a1208111156118695760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610bc0565b601e5481036118cf5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610bc0565b601e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601e55565b6005546001600160a01b0316331461192c5760405162461bcd60e51b8152600401610bc09061425c565b601054610100900460ff16156119845760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610bc0565b6010805462ffff0019166201010017905543600e55565b6005546001600160a01b031633146119c55760405162461bcd60e51b8152600401610bc09061425c565b60108054911515620100000262ff000019909216919091179055565b606060048054610afc90614222565b6005546001600160a01b03163314611a1a5760405162461bcd60e51b8152600401610bc09061425c565b6006546001600160a01b0390811690831603611aac5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610bc0565b611722828261336a565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b825760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bc0565b611b8f3385858403612784565b5060019392505050565b6005546001600160a01b03163314611bc35760405162461bcd60e51b8152600401610bc09061425c565b611bce816001611e49565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b158015611c1557600080fd5b505af1158015611c29573d6000803e3d6000fd5b50505050610ea08160016114fa565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611177565b6000610b8c3384846128a8565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611cd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf8919061435f565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611d3d5760405162461bcd60e51b8152600401610bc09061425c565b60215460ff1615611daa5760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74207265717565737420616761696e20756e74696c206669727374604482015270103932b8bab2b9ba1034b99037bb32b91760791b6064820152608401610bc0565b60648111158015611dbb5750600081115b611e075760405162461bcd60e51b815260206004820152601a60248201527f4e65656420746f20736574206265747765656e20312d313030250000000000006044820152606401610bc0565b42601f556021805460ff1916600117905560228190556040517fd99a77b2f3951cd076e75814e44db497e6abc203dd251329da0b62c288f9f48b90600090a150565b6005546001600160a01b03163314611e735760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b038216600081815260296020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611578565b6005546001600160a01b03163314611ef55760405162461bcd60e51b8152600401610bc09061425c565b60085460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401611056565b6005546001600160a01b03163314611f515760405162461bcd60e51b8152600401610bc09061425c565b60158390556014829055601681905580611f6b838561431e565b611f75919061431e565b6013819055609610156117c95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bc0565b6005546001600160a01b03163314611ff45760405162461bcd60e51b8152600401610bc09061425c565b670de0b6b3a7640000606461200860025490565b6120139060016142a7565b61201d91906142c6565b61202791906142c6565b81116120805760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610bc0565b61209281670de0b6b3a76400006142a7565b600c5550565b6005546001600160a01b031633146120c25760405162461bcd60e51b8152600401610bc09061425c565b60005b828110156121335781602960008686858181106120e4576120e46143c9565b90506020020160208101906120f99190614052565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061212b816143df565b9150506120c5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051612167939291906143f8565b60405180910390a1505050565b6005546001600160a01b0316331461219e5760405162461bcd60e51b8152600401610bc09061425c565b6021805460ff1916905560006022819055601f8190556040517ffbcc1c208c9c4d1d9f557267b55c5ae316e74ce676a0db72ef18c6d5f5767c619190a1565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610eed573d6000803e3d6000fd5b6005546000906001600160a01b031633146122545760405162461bcd60e51b8152600401610bc09061425c565b506012805460ff19169055600190565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611cb6565b6005546001600160a01b031633146122d05760405162461bcd60e51b8152600401610bc09061425c565b6001600160a01b0381166123355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc0565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146123bb5760405162461bcd60e51b8152600401610bc09061425c565b6107d081111561242b5760405162461bcd60e51b815260206004820152603560248201527f4d6179206e6f74206275726e206d6f7265207468616e20323025206f6620636f6044820152746e74726163742773204c5020617420612074696d6560581b6064820152608401610bc0565b6027546124389042614451565b60285411156124795760405162461bcd60e51b815260206004820152600d60248201526c213ab937103a37b79039b7b7b760991b6044820152606401610bc0565b426028556006546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156124c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124ea9190614305565b905060006124f73061128b565b9050600061271061250885856142a7565b61251291906142c6565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3116906370a0823190602401602060405180830381865afa15801561257c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a09190614305565b604051635d5155ef60e11b815230600482018190526001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e318116602484015260448301869052600160648401819052608484015260a48301919091524260c48301529192507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063baa2abde9060e40160408051808303816000875af1158015612657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267b9190614464565b50506000836126893061128b565b6126939190614451565b905080156126a8576126a83061dead8361343a565b6040516370a0823160e01b815230600482015260009083906001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3116906370a0823190602401602060405180830381865afa158015612711573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127359190614305565b61273f9190614451565b905080156127505761275081613581565b60405184907f81b7e7967a97e0708996ad25e859322b1c2e22612ac6798c9c95cfda2dca265f90600090a250505050505050565b6001600160a01b0383166127e65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc0565b6001600160a01b0382166128475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bc0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166128ce5760405162461bcd60e51b8152600401610bc090614488565b6001600160a01b0382166128f45760405162461bcd60e51b8152600401610bc0906144cd565b80600003612908576117c98383600061343a565b601054610100900460ff166129a2576001600160a01b03831660009081526029602052604090205460ff168061295657506001600160a01b03821660009081526029602052604090205460ff165b6129a25760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610bc0565b60105460ff1615612d82576005546001600160a01b038481169116148015906129d957506005546001600160a01b03838116911614155b80156129ed57506001600160a01b03821615155b8015612a0457506001600160a01b03821661dead14155b8015612a1a5750600754600160a01b900460ff16155b15612d825760125460ff1615612b28577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614158015612a7a57506006546001600160a01b03838116911614155b15612b2857326000908152601160205260409020544311612b155760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bc0565b3260009081526011602052604090204390555b6001600160a01b0383166000908152602b602052604090205460ff168015612b6957506001600160a01b0382166000908152602a602052604090205460ff16155b15612c4757600a54811115612bde5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bc0565b600c54612bea8361128b565b612bf4908361431e565b1115612c425760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610bc0565b612d82565b6001600160a01b0382166000908152602b602052604090205460ff168015612c8857506001600160a01b0383166000908152602a602052604090205460ff16155b15612cfe57600a54811115612c425760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bc0565b6001600160a01b0382166000908152602a602052604090205460ff16612d8257600c54612d2a8361128b565b612d34908361431e565b1115612d825760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610bc0565b6000612d8d3061128b565b600b5490915081108015908190612dac575060105462010000900460ff165b8015612dc25750600754600160a01b900460ff16155b8015612de757506001600160a01b0385166000908152602b602052604090205460ff16155b8015612e0c57506001600160a01b03851660009081526029602052604090205460ff16155b8015612e3157506001600160a01b03841660009081526029602052604090205460ff16155b15612e5f576007805460ff60a01b1916600160a01b179055612e516136a7565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526029602052604090205460ff600160a01b909204821615911680612ead57506001600160a01b03851660009081526029602052604090205460ff165b15612eb6575060005b6000811561317b5743600e546001612ece919061431e565b10158015612f1657506001600160a01b0386166000908152602b602052604090205460ff1680612f1657506001600160a01b0387166000908152602b602052604090205460ff165b15612fc257612f316064612f2b876063613be2565b90613c6b565b90506063612f408260216142a7565b612f4a91906142c6565b601d6000828254612f5b919061431e565b9091555060639050612f6e8260216142a7565b612f7891906142c6565b601b6000828254612f89919061431e565b9091555060639050612f9c8260216142a7565b612fa691906142c6565b601c6000828254612fb7919061431e565b9091555061315d9050565b6001600160a01b0386166000908152602b602052604090205460ff168015612fec57506000601354115b1561307f5761300c6103e8612f2b60135488613be290919063ffffffff16565b90506013546014548261301f91906142a7565b61302991906142c6565b601b600082825461303a919061431e565b909155505060135460165461304f90836142a7565b61305991906142c6565b601d600082825461306a919061431e565b9091555050601354601554612f9c90836142a7565b6001600160a01b0387166000908152602b602052604090205460ff1680156130a957506000601754115b1561315d576130c96103e8612f2b60175488613be290919063ffffffff16565b9050601754601854826130dc91906142a7565b6130e691906142c6565b601b60008282546130f7919061431e565b9091555050601754601a5461310c90836142a7565b61311691906142c6565b601d6000828254613127919061431e565b909155505060175460195461313c90836142a7565b61314691906142c6565b601c6000828254613157919061431e565b90915550505b801561316e5761316e87308361343a565b6131788186614451565b94505b61318687878761343a565b6008546001600160a01b031663e30443bc886131a18161128b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156131e757600080fd5b505af11580156131fb573d6000803e3d6000fd5b50506008546001600160a01b0316915063e30443bc90508761321c8161128b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561326257600080fd5b505af1158015613276573d6000803e3d6000fd5b5050600754600160a01b900460ff1615915050801561329757506000601e54115b1561336157601e546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af1925050508015613309575060408051601f3d908101601f1916820190925261330691810190614331565b60015b1561335f5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152602b60205260409020805460ff191682151517905561339882826114fa565b80156133fe5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156133e557600080fd5b505af11580156133f9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134605760405162461bcd60e51b8152600401610bc090614488565b6001600160a01b0382166134865760405162461bcd60e51b8152600401610bc0906144cd565b6001600160a01b038316600090815260208190526040902054818110156134fe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bc0565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061353590849061431e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127d91815260200190565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e31816000815181106135d6576135d66143c9565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061360a5761360a6143c9565b6001600160a01b039283166020918202929092010152604051635c11d79560e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911690635c11d79590613671908590600090869061dead904290600401614510565b600060405180830381600087803b15801561368b57600080fd5b505af115801561369f573d6000803e3d6000fd5b505050505050565b60006136b23061128b565b90506000601b54601c54601d546136c9919061431e565b6136d3919061431e565b90508115806136e0575080155b156136e9575050565b6000600282601d54856136fc91906142a7565b61370691906142c6565b61371091906142c6565b9050600061371e8483613cad565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3116906370a0823190602401602060405180830381865afa158015613788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ac9190614305565b90506137b782613cef565b6040516370a0823160e01b815230600482015260009082906001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3116906370a0823190602401602060405180830381865afa158015613820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138449190614305565b61384e9190614451565b9050600061387c6002601d5461386491906142c6565b61386e9088614451565b601c54612f2b908590613be2565b905060006138aa6002601d5461389291906142c6565b61389c9089614451565b601b54612f2b908690613be2565b90506000816138b98486614451565b6138c39190614451565b6000601d819055601c819055601b55905086158015906138e35750600081115b15613936576138f28782613e64565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8115613a3e5760085460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490527f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e319091169063a9059cbb906044016020604051808303816000875af11580156139b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d491906142e8565b50600860009054906101000a90046001600160a01b03166001600160a01b031663b51312916040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a2557600080fd5b505af1158015613a39573d6000803e3d6000fd5b505050505b6040516370a0823160e01b81523060048201526000907f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e316001600160a01b0316906370a0823190602401602060405180830381865afa158015613aa5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ac99190614305565b1115613bd7576009546040516370a0823160e01b81523060048201526001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3181169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015613b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b669190614305565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015613bb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bd591906142e8565b505b505050505050505050565b600082600003613bf457506000610b90565b6000613c0083856142a7565b905082613c0d85836142c6565b14613c645760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610bc0565b9392505050565b6000613c6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f42565b6000613c6483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f79565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613d2457613d246143c9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3181600181518110613d7857613d786143c9565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d831692635c11d79592613de092879260009288929116904290600401614510565b600060405180830381600087803b158015613dfa57600080fd5b505af1158015613e0e573d6000803e3d6000fd5b50506007546040516304fa881160e21b81526001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e318116600483015290911692506313ea20449150602401613671565b60405162e8e33760e81b815230600482018190526001600160a01b037f0000000000000000000000006967299e9f3d5312740aa61dee6e9ea658958e3181166024840152604483018590526064830184905260006084840181905260a484015260c48301919091524260e48301527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063e8e3370090610104016060604051808303816000875af1158015613f1e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110849190614331565b60008183613f635760405162461bcd60e51b8152600401610bc09190613faa565b506000613f7084866142c6565b95945050505050565b60008184841115613f9d5760405162461bcd60e51b8152600401610bc09190613faa565b506000613f708486614451565b600060208083528351808285015260005b81811015613fd757858101830151858201604001528201613fbb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ea057600080fd5b6000806040838503121561402057600080fd5b823561402b81613ff8565b946020939093013593505050565b60006020828403121561404b57600080fd5b5035919050565b60006020828403121561406457600080fd5b8135613c6481613ff8565b60008060006060848603121561408457600080fd5b833561408f81613ff8565b9250602084013561409f81613ff8565b929592945050506040919091013590565b8015158114610ea057600080fd5b6000806000606084860312156140d357600080fd5b833592506020840135915060408401356140ec816140b0565b809150509250925092565b6000806040838503121561410a57600080fd5b823561411581613ff8565b91506020830135614125816140b0565b809150509250929050565b60008060006060848603121561414557600080fd5b505081359360208301359350604090920135919050565b60006020828403121561416e57600080fd5b8135613c64816140b0565b60008060006040848603121561418e57600080fd5b833567ffffffffffffffff808211156141a657600080fd5b818601915086601f8301126141ba57600080fd5b8135818111156141c957600080fd5b8760208260051b85010111156141de57600080fd5b602092830195509350508401356140ec816140b0565b6000806040838503121561420757600080fd5b823561421281613ff8565b9150602083013561412581613ff8565b600181811c9082168061423657607f821691505b60208210810361425657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156142c1576142c1614291565b500290565b6000826142e357634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156142fa57600080fd5b8151613c64816140b0565b60006020828403121561431757600080fd5b5051919050565b80820180821115610b9057610b90614291565b60008060006060848603121561434657600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b03121561437c57600080fd5b885161438781613ff8565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b6000600182016143f1576143f1614291565b5060010190565b6040808252810183905260008460608301825b8681101561443b57823561441e81613ff8565b6001600160a01b031682526020928301929091019060010161440b565b5080925050508215156020830152949350505050565b81810381811115610b9057610b90614291565b6000806040838503121561447757600080fd5b505080516020909101519092909150565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156145605784516001600160a01b03168352938301939183019160010161453b565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122092f4f322e64aa744e7856ebf70ab7c5988768c192e7a3011359eafcb6fdf076864736f6c63430008100033
Deployed Bytecode Sourcemap
36285:27042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37905:41;;;;;;;;;160:25:1;;;148:2;133:18;37905:41:0;;;;;;;;4145:100;;;:::i;:::-;;;;;;;:::i;36360:37::-;;;;;;;;-1:-1:-1;;;;;932:32:1;;;914:51;;902:2;887:18;36360:37:0;749:222:1;5059:169:0;;;;;;:::i;:::-;;:::i;:::-;;;1597:14:1;;1590:22;1572:41;;1560:2;1545:18;5059:169:0;1432:187:1;37542:31:0;;;;;;36756:39;;;;;;45529:230;;;;;;:::i;:::-;;:::i;:::-;;38527:64;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4466:108;4554:12;;4466:108;;38287:46;;;;;;38095:36;;;;;;37815:33;;;;;;36475:32;;;;;-1:-1:-1;;;;;36475:32:0;;;36918:33;;;;;;5236:492;;;;;;:::i;:::-;;:::i;43662:277::-;;;:::i;36546:38::-;;;;;-1:-1:-1;;;;;36546:38:0;;;38191:47;;;;;;38151:33;;;;;;;;;48978:141;;;:::i;48124:349::-;;;;;;:::i;:::-;;:::i;4365:93::-;;;4448:2;3133:36:1;;3121:2;3106:18;4365:93:0;2991:184:1;44683:130:0;;;;;;:::i;:::-;;:::i;5736:215::-;;;;;;:::i;:::-;;:::i;36404:21::-;;;;;-1:-1:-1;;;;;36404:21:0;;;37027:33;;;;;;;;;37620:28;;;;;;50480:97;;;:::i;49127:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;49218:28:0;49194:4;49218:28;;;:19;:28;;;;;;;;;49127:127;50719:141;;;:::i;49416:136::-;;;;;;:::i;:::-;;:::i;37107:31::-;;;;;;;;;;;;50213:259;;;;;;:::i;:::-;;:::i;4582:127::-;;;;;;:::i;:::-;;:::i;62320:281::-;;;:::i;13549:148::-;;;:::i;50872:119::-;;;:::i;43947:447::-;;;;;;:::i;:::-;;:::i;37503:32::-;;;;;;51047:159;;;:::i;46803:202::-;;;;;;:::i;:::-;;:::i;62609:487::-;;;:::i;38055:31::-;;;;;;45994:390;;;;;;:::i;:::-;;:::i;48481:373::-;;;;;;:::i;:::-;;:::i;45102:218::-;;;:::i;12907:79::-;12972:6;;-1:-1:-1;;;;;12972:6:0;12907:79;;45420:101;;;;;;:::i;:::-;;:::i;36434:34::-;;;;;4253:104;;;:::i;37382:41::-;;37419:4;37382:41;;47519:251;;;;;;:::i;:::-;;:::i;37861:35::-;;;;;;38340;;;;;;48862:108;;;:::i;5959:413::-;;;;;;:::i;:::-;;:::i;38245:29::-;;;;;;43318:264;;;;;;:::i;:::-;;:::i;49262:149::-;;;;;;:::i;:::-;;:::i;4717:175::-;;;;;;:::i;:::-;;:::i;49560:318::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5426:32:1;;;5408:51;;5490:2;5475:18;;5468:34;;;;5518:18;;;5511:34;;;;5576:2;5561:18;;5554:34;;;;5619:3;5604:19;;5597:35;5446:3;5648:19;;5641:35;5707:3;5692:19;;5685:35;5751:3;5736:19;;5729:35;5395:3;5380:19;49560:318:0;5069:701:1;38749:58:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37586:27;;;;;;37067:33;;;;;;;;;;;;61863:449;;;;;;:::i;:::-;;:::i;47013:184::-;;;;;;:::i;:::-;;:::i;44918:126::-;;;;;;:::i;:::-;;:::i;46396:399::-;;;;;;:::i;:::-;;:::i;45771:211::-;;;;;;:::i;:::-;;:::i;47205:306::-;;;;;;:::i;:::-;;:::i;63104:220::-;;;:::i;37330:39::-;;;;;;;;;36637:35;;;;;;37693:30;;;;;;37467:29;;;;;;37432:28;;;;;;4900:151;;;;;;:::i;:::-;-1:-1:-1;;;;;5016:18:0;;;4989:7;5016:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4900:151;36679:33;;;;;;50585:126;;;:::i;44456:134::-;;;:::i;36841:37::-;;;;;;37953:52;;;;;;37655:31;;;;;;49883:325;;;;;;:::i;:::-;;:::i;13852:244::-;;;;;;:::i;:::-;;:::i;37736:31::-;;;;;;36719:24;;;;;;37774:34;;;;;;38012:36;;;;;;;;;36593:31;;;;;-1:-1:-1;;;;;36593:31:0;;;58347:1329;;;;;;:::i;:::-;;:::i;4145:100::-;4199:13;4232:5;4225:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4145:100;:::o;5059:169::-;5142:4;5159:39;252:10;5182:7;5191:6;5159:8;:39::i;:::-;-1:-1:-1;5216:4:0;5059:169;;;;;:::o;45529:230::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;;;;;;;;;45644:4:::1;45638;45618:13;4554:12:::0;;;4466:108;45618:13:::1;:17;::::0;45634:1:::1;45618:17;:::i;:::-;:24;;;;:::i;:::-;45617:31;;;;:::i;:::-;45608:6;:40;45600:100;;;::::0;-1:-1:-1;;;45600:100:0;;8398:2:1;45600:100:0::1;::::0;::::1;8380:21:1::0;8437:2;8417:18;;;8410:30;8476:34;8456:18;;;8449:62;-1:-1:-1;;;8527:18:1;;;8520:45;8582:19;;45600:100:0::1;8196:411:1::0;45600:100:0::1;45734:17;:6:::0;45744::::1;45734:17;:::i;:::-;45711:20;:40:::0;-1:-1:-1;45529:230:0:o;5236:492::-;5376:4;5393:36;5403:6;5411:9;5422:6;5393:9;:36::i;:::-;-1:-1:-1;;;;;5469:19:0;;5442:24;5469:19;;;:11;:19;;;;;;;;252:10;5469:33;;;;;;;;5521:26;;;;5513:79;;;;-1:-1:-1;;;5513:79:0;;8814:2:1;5513:79:0;;;8796:21:1;8853:2;8833:18;;;8826:30;8892:34;8872:18;;;8865:62;-1:-1:-1;;;8943:18:1;;;8936:38;8991:19;;5513:79:0;8612:404:1;5513:79:0;5628:57;5637:6;252:10;5678:6;5659:16;:25;5628:8;:57::i;:::-;-1:-1:-1;5716:4:0;;5236:492;-1:-1:-1;;;;5236:492:0:o;43662:277::-;43720:57;;-1:-1:-1;;;43720:57:0;;-1:-1:-1;;;;;43747:9:0;9213:32:1;;43720:57:0;;;9195:51:1;-1:-1:-1;;9262:18:1;;;9255:34;43720:10:0;:18;;;;9168::1;;43720:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43788:62;43805:4;43820:9;-1:-1:-1;;43788:8:0;:62::i;:::-;43876:6;;43861:70;;-1:-1:-1;;;43861:70:0;;-1:-1:-1;;;;;43901:9:0;9213:32:1;;43861:70:0;;;9195:51:1;-1:-1:-1;;9262:18:1;;;9255:34;43876:6:0;;;;43861:31;;9168:18:1;;43861:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43662:277::o;48978:141::-;49068:15;;:43;;;-1:-1:-1;;;49068:43:0;;;;49041:7;;-1:-1:-1;;;;;49068:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49061:50;;48978:141;:::o;48124:349::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48223:33:0;::::1;48215:70;;;::::0;-1:-1:-1;;;48215:70:0;;9941:2:1;48215:70:0::1;::::0;::::1;9923:21:1::0;9980:2;9960:18;;;9953:30;10019:26;9999:18;;;9992:54;10063:18;;48215:70:0::1;9739:348:1::0;48215:70:0::1;48296:42;48312:19;48333:4;48296:15;:42::i;:::-;48399:16;::::0;48354:62:::1;::::0;-1:-1:-1;;;;;48399:16:0;;::::1;::::0;48354:62;::::1;::::0;::::1;::::0;48399:16:::1;::::0;48354:62:::1;48427:16;:38:::0;;-1:-1:-1;;;;;;48427:38:0::1;-1:-1:-1::0;;;;;48427:38:0;;;::::1;::::0;;;::::1;::::0;;48124:349::o;44683:130::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;44760:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;44760:45:0;;-1:-1:-1;;;;;932:32:1;;;44760:45:0::1;::::0;::::1;914:51:1::0;44760:15:0;;::::1;::::0;:36:::1;::::0;887:18:1;;44760:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44683:130:::0;:::o;5736:215::-;252:10;5824:4;5873:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5873:34:0;;;;;;;;;;5824:4;;5841:80;;5864:7;;5873:47;;5910:10;;5873:47;:::i;:::-;5841:8;:80::i;50480:97::-;50511:15;;:58;;-1:-1:-1;;;50511:58:0;;50550:10;50511:58;;;10406:51:1;50511:15:0;10473:18:1;;;10466:50;-1:-1:-1;;;;;50511:15:0;;;;:30;;10379:18:1;;50511:58:0;10222:300:1;50719:141:0;50811:15;;:41;;;-1:-1:-1;;;50811:41:0;;;;50784:7;;-1:-1:-1;;;;;50811:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;49416:136;49509:15;;:38;;-1:-1:-1;;;49509:38:0;;-1:-1:-1;;;;;932:32:1;;;49509:38:0;;;914:51:1;49488:7:0;;49509:15;;:29;;887:18:1;;49509:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;50213:259::-;50339:15;;:28;;-1:-1:-1;;;;;;50339:28:0;;;;;160:25:1;;;50273:18:0;;;;;;-1:-1:-1;;;;;50339:15:0;;:23;;133:18:1;;50339:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50377:87;;;11069:25:1;;;11125:2;11110:18;;11103:34;;;11153:18;;;11146:34;;;11211:2;11196:18;;11189:34;;;50272:95:0;;-1:-1:-1;50272:95:0;;-1:-1:-1;50272:95:0;-1:-1:-1;50454:9:0;;50442:5;;50377:87;;11056:3:1;11041:19;50377:87:0;;;;;;;;50267:205;;;50213:259;:::o;4582:127::-;-1:-1:-1;;;;;4683:18:0;4656:7;4683:18;;;;;;;;;;;;4582:127::o;62320:281::-;62402:24;;62380:7;;62402:24;;62399:195;;;62478:25;;62449:26;;:54;;;;:::i;62399:195::-;-1:-1:-1;62552:1:0;;62320:281::o;13549:148::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;13640:6:::1;::::0;13619:40:::1;::::0;13656:1:::1;::::0;-1:-1:-1;;;;;13640:6:0::1;::::0;13619:40:::1;::::0;13656:1;;13619:40:::1;13670:6;:19:::0;;-1:-1:-1;;;;;;13670:19:0::1;::::0;;13549:148::o;50872:119::-;50953:15;;:30;;;-1:-1:-1;;;50953:30:0;;;;50926:7;;-1:-1:-1;;;;;50953:15:0;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;43947:447;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;44101:3:::1;44078:19;:26;;44070:90;;;::::0;-1:-1:-1;;;44070:90:0;;11436:2:1;44070:90:0::1;::::0;::::1;11418:21:1::0;11475:2;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;-1:-1:-1;;;11565:18:1;;;11558:49;11624:19;;44070:90:0::1;11234:415:1::0;44070:90:0::1;44191:4;44179:8;:16;;:33;;;;-1:-1:-1::0;44199:13:0;44179:33:::1;44171:94;;;::::0;-1:-1:-1;;;44171:94:0;;11856:2:1;44171:94:0::1;::::0;::::1;11838:21:1::0;11895:2;11875:18;;;11868:30;11934:34;11914:18;;;11907:62;-1:-1:-1;;;11985:18:1;;;11978:46;12041:19;;44171:94:0::1;11654:412:1::0;44171:94:0::1;44276:15;:37:::0;;;;44324:16:::1;:27:::0;44362:13:::1;:24:::0;;-1:-1:-1;;44362:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43947:447::o;51047:159::-;13119:6;;51099:4;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;51115:14:0::1;:22:::0;;-1:-1:-1;;51115:22:0;;::::1;::::0;;;51148:20:::1;:28:::0;;;;::::1;::::0;;51115:22;51047:159;:::o;46803:202::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46893:39:0;::::1;;::::0;;;:31:::1;:39;::::0;;;;;;;;:46;;-1:-1:-1;;46893:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46955:42;;1572:41:1;;;46955:42:0::1;::::0;1545:18:1;46955:42:0::1;;;;;;;;46803:202:::0;;:::o;62609:487::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;62697:29:::1;:27;:29::i;:::-;62678:15;:48;;:85;;;;;62762:1;62730:29;:27;:29::i;:::-;:33;62678:85;62670:120;;;::::0;-1:-1:-1;;;62670:120:0;;12273:2:1;62670:120:0::1;::::0;::::1;12255:21:1::0;12312:2;12292:18;;;12285:30;-1:-1:-1;;;12331:18:1;;;12324:52;12393:18;;62670:120:0::1;12071:346:1::0;62670:120:0::1;62830:1;62801:26;:30:::0;;;62842:24:::1;:32:::0;;-1:-1:-1;;62842:32:0::1;::::0;;62962:16:::1;::::0;62926:6:::1;::::0;62911:48:::1;::::0;-1:-1:-1;;;62911:48:0;;62953:4:::1;62911:48;::::0;::::1;914:51:1::0;62981:3:0::1;::::0;62962:16;-1:-1:-1;;;;;62926:6:0::1;::::0;62911:33:::1;::::0;887:18:1;;62911:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;;;;:::i;:::-;:73;;;;:::i;:::-;63024:1;63005:16;:20:::0;63045:6:::1;::::0;63038:50:::1;::::0;-1:-1:-1;;;63038:50:0;;63062:10:::1;63038:50;::::0;::::1;9195:51:1::0;9262:18;;;9255:34;;;62887:97:0;;-1:-1:-1;;;;;;63045:6:0::1;::::0;63038:23:::1;::::0;9168:18:1;;63038:50:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62659:437;62609:487::o:0;45994:390::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;46115:16:::1;:33:::0;;;46159:13:::1;:27:::0;;;46197:15:::1;:31:::0;;;46215:13;46254:32:::1;46175:11:::0;46134:14;46254:32:::1;:::i;:::-;:50;;;;:::i;:::-;46239:12;:65:::0;;;46339:3:::1;-1:-1:-1::0;46323:19:0::1;46315:61;;;::::0;-1:-1:-1;;;46315:61:0;;12624:2:1;46315:61:0::1;::::0;::::1;12606:21:1::0;12663:2;12643:18;;;12636:30;12702:31;12682:18;;;12675:59;12751:18;;46315:61:0::1;12422:353:1::0;46315:61:0::1;45994:390:::0;;;:::o;48481:373::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;48581:6:::1;48569:8;:18;;48561:84;;;::::0;-1:-1:-1;;;48561:84:0;;12982:2:1;48561:84:0::1;::::0;::::1;12964:21:1::0;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:1;;;13104:51;13172:19;;48561:84:0::1;12780:417:1::0;48561:84:0::1;48676:16;;48664:8;:28:::0;48656:85:::1;;;::::0;-1:-1:-1;;;48656:85:0;;13404:2:1;48656:85:0::1;::::0;::::1;13386:21:1::0;13443:2;13423:18;;;13416:30;13482:34;13462:18;;;13455:62;-1:-1:-1;;;13533:18:1;;;13526:42;13585:19;;48656:85:0::1;13202:408:1::0;48656:85:0::1;48791:16;::::0;48757:51:::1;::::0;48781:8;;48757:51:::1;::::0;;;::::1;48819:16;:27:::0;48481:373::o;45102:218::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;45166:13:::1;::::0;::::1;::::0;::::1;;;45165:14;45157:51;;;::::0;-1:-1:-1;;;45157:51:0;;13817:2:1;45157:51:0::1;::::0;::::1;13799:21:1::0;13856:2;13836:18;;;13829:30;13895:26;13875:18;;;13868:54;13939:18;;45157:51:0::1;13615:348:1::0;45157:51:0::1;45219:13;:20:::0;;-1:-1:-1;;45250:18:0;;;;;45300:12:::1;45279:18;:33:::0;45102:218::o;45420:101::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;45492:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45492:21:0;;::::1;::::0;;;::::1;::::0;;45420:101::o;4253:104::-;4309:13;4342:7;4335:14;;;;;:::i;47519:251::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;47628:6:::1;::::0;-1:-1:-1;;;;;47628:6:0;;::::1;47620:14:::0;;::::1;::::0;47612:96:::1;;;::::0;-1:-1:-1;;;47612:96:0;;14170:2:1;47612:96:0::1;::::0;::::1;14152:21:1::0;14209:2;14189:18;;;14182:30;14248:34;14228:18;;;14221:62;14319:34;14299:18;;;14292:62;-1:-1:-1;;;14370:19:1;;;14363:36;14416:19;;47612:96:0::1;13968:473:1::0;47612:96:0::1;47721:41;47750:4;47756:5;47721:28;:41::i;48862:108::-:0;48935:15;;:27;;;-1:-1:-1;;;48935:27:0;;;;48908:7;;-1:-1:-1;;;;;48935:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;5959:413;252:10;6052:4;6096:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6096:34:0;;;;;;;;;;6149:35;;;;6141:85;;;;-1:-1:-1;;;6141:85:0;;14648:2:1;6141:85:0;;;14630:21:1;14687:2;14667:18;;;14660:30;14726:34;14706:18;;;14699:62;-1:-1:-1;;;14777:18:1;;;14770:35;14822:19;;6141:85:0;14446:401:1;6141:85:0;6262:67;252:10;6285:7;6313:15;6294:16;:34;6262:8;:67::i;:::-;-1:-1:-1;6360:4:0;;5959:413;-1:-1:-1;;;5959:413:0:o;43318:264::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;43413:38:::1;43429:15;43446:4;43413:15;:38::i;:::-;43462:15;::::0;:53:::1;::::0;-1:-1:-1;;;43462:53:0;;-1:-1:-1;;;;;932:32:1;;;43462:53:0::1;::::0;::::1;914:51:1::0;43462:15:0;;::::1;::::0;:36:::1;::::0;887:18:1;;43462:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43526:48;43552:15;43569:4;43526:25;:48::i;49262:149::-:0;49357:15;;:47;;-1:-1:-1;;;49357:47:0;;-1:-1:-1;;;;;932:32:1;;;49357:47:0;;;914:51:1;49333:7:0;;49357:15;;:38;;887:18:1;;49357:47:0;749:222:1;4717:175:0;4803:4;4820:42;252:10;4844:9;4855:6;4820:9;:42::i;49560:318::-;49835:15;;:35;;-1:-1:-1;;;49835:35:0;;-1:-1:-1;;;;;932:32:1;;;49835:35:0;;;914:51:1;49656:7:0;;;;;;;;;;;;;;;;49835:15;;;:26;;887:18:1;;49835:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49828:42;;;;;;;;;;;;;;;;49560:318;;;;;;;;;:::o;61863:449::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;61955:24:::1;::::0;::::1;;61954:25;61946:87;;;::::0;-1:-1:-1;;;61946:87:0;;15740:2:1;61946:87:0::1;::::0;::::1;15722:21:1::0;15779:2;15759:18;;;15752:30;15818:34;15798:18;;;15791:62;-1:-1:-1;;;15869:18:1;;;15862:47;15926:19;;61946:87:0::1;15538:413:1::0;61946:87:0::1;62070:3;62052:14;:21;;:43;;;;;62094:1;62077:14;:18;62052:43;62044:82;;;::::0;-1:-1:-1;;;62044:82:0;;16158:2:1;62044:82:0::1;::::0;::::1;16140:21:1::0;16197:2;16177:18;;;16170:30;16236:28;16216:18;;;16209:56;16282:18;;62044:82:0::1;15956:350:1::0;62044:82:0::1;62166:15;62137:26;:44:::0;62192:24:::1;:31:::0;;-1:-1:-1;;62192:31:0::1;62219:4;62192:31;::::0;;62234:16:::1;:33:::0;;;62283:21:::1;::::0;::::1;::::0;62192:24:::1;::::0;62283:21:::1;61863:449:::0;:::o;47013:184::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47098:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;47098:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;47155:34;;1572:41:1;;;47155:34:0::1;::::0;1545:18:1;47155:34:0::1;1432:187:1::0;44918:126:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;44993:15:::1;::::0;:43:::1;::::0;-1:-1:-1;;;44993:43:0;;-1:-1:-1;;;;;932:32:1;;;44993:43:0::1;::::0;::::1;914:51:1::0;44993:15:0;;::::1;::::0;:34:::1;::::0;887:18:1;;44993:43:0::1;749:222:1::0;46396:399:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;46518:17:::1;:34:::0;;;46563:14:::1;:28:::0;;;46602:16:::1;:32:::0;;;46621:13;46661:34:::1;46580:11:::0;46538:14;46661:34:::1;:::i;:::-;:53;;;;:::i;:::-;46645:13;:69:::0;;;46750:3:::1;-1:-1:-1::0;46733:20:0::1;46725:62;;;::::0;-1:-1:-1;;;46725:62:0;;12624:2:1;46725:62:0::1;::::0;::::1;12606:21:1::0;12663:2;12643:18;;;12636:30;12702:31;12682:18;;;12675:59;12751:18;;46725:62:0::1;12422:353:1::0;45771:211:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;45891:4:::1;45886:3;45866:13;4554:12:::0;;;4466:108;45866:13:::1;:17;::::0;45882:1:::1;45866:17;:::i;:::-;:23;;;;:::i;:::-;45865:30;;;;:::i;:::-;45856:6;:39;45848:86;;;::::0;-1:-1:-1;;;45848:86:0;;16513:2:1;45848:86:0::1;::::0;::::1;16495:21:1::0;16552:2;16532:18;;;16525:30;16591:34;16571:18;;;16564:62;-1:-1:-1;;;16642:18:1;;;16635:32;16684:19;;45848:86:0::1;16311:398:1::0;45848:86:0::1;45957:17;:6:::0;45967::::1;45957:17;:::i;:::-;45945:9;:29:::0;-1:-1:-1;45771:211:0:o;47205:306::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;47324:9:::1;47320:115;47339:19:::0;;::::1;47320:115;;;47415:8;47380:19;:32;47400:8;;47409:1;47400:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47380:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47380:32:0;:43;;-1:-1:-1;;47380:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47360:3;::::1;::::0;::::1;:::i;:::-;;;;47320:115;;;;47452:51;47484:8;;47494;47452:51;;;;;;;;:::i;:::-;;;;;;;;47205:306:::0;;;:::o;63104:220::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;63169:24:::1;:32:::0;;-1:-1:-1;;63169:32:0::1;::::0;;63196:5:::1;63212:16;:20:::0;;;63243:26:::1;:30:::0;;;63289:27:::1;::::0;::::1;::::0;63196:5;63289:27:::1;63104:220::o:0;50585:126::-;50664:15;;:39;;;-1:-1:-1;;;50664:39:0;;;;50640:7;;-1:-1:-1;;;;;50664:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;44456:134;13119:6;;44516:4;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;44532:20:0::1;:28:::0;;-1:-1:-1;;44532:28:0::1;::::0;;;44456:134;:::o;49883:325::-;50160:15;;:40;;-1:-1:-1;;;50160:40:0;;;;;160:25:1;;;49984:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50160:15:0;;;;:33;;133:18:1;;50160:40:0;14:177:1;13852:244:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13941:22:0;::::1;13933:73;;;::::0;-1:-1:-1;;;13933:73:0;;17987:2:1;13933:73:0::1;::::0;::::1;17969:21:1::0;18026:2;18006:18;;;17999:30;18065:34;18045:18;;;18038:62;-1:-1:-1;;;18116:18:1;;;18109:36;18162:19;;13933:73:0::1;17785:402:1::0;13933:73:0::1;14043:6;::::0;14022:38:::1;::::0;-1:-1:-1;;;;;14022:38:0;;::::1;::::0;14043:6:::1;::::0;14022:38:::1;::::0;14043:6:::1;::::0;14022:38:::1;14071:6;:17:::0;;-1:-1:-1;;;;;;14071:17:0::1;-1:-1:-1::0;;;;;14071:17:0;;;::::1;::::0;;;::::1;::::0;;13852:244::o;58347:1329::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;58451:4:::1;58441:7;:14;;58433:80;;;::::0;-1:-1:-1;;;58433:80:0;;18394:2:1;58433:80:0::1;::::0;::::1;18376:21:1::0;18433:2;18413:18;;;18406:30;18472:34;18452:18;;;18445:62;-1:-1:-1;;;18523:18:1;;;18516:51;18584:19;;58433:80:0::1;18192:417:1::0;58433:80:0::1;58574:19;::::0;58556:37:::1;::::0;:15:::1;:37;:::i;:::-;58532:20;;:61;;58524:87;;;::::0;-1:-1:-1;;;58524:87:0;;18949:2:1;58524:87:0::1;::::0;::::1;18931:21:1::0;18988:2;18968:18;;;18961:30;-1:-1:-1;;;19007:18:1;;;19000:43;19060:18;;58524:87:0::1;18747:337:1::0;58524:87:0::1;58645:15;58622:20;:38:::0;58706:6:::1;::::0;58691:48:::1;::::0;-1:-1:-1;;;58691:48:0;;58733:4:::1;58691:48;::::0;::::1;914:51:1::0;58671:17:0::1;::::0;-1:-1:-1;;;;;58706:6:0::1;::::0;58691:33:::1;::::0;887:18:1;;58691:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58671:68;;58750:20;58773:24;58791:4;58773:9;:24::i;:::-;58750:47:::0;-1:-1:-1;58808:16:0::1;58849:5;58827:19;58839:7:::0;58827:9;:19:::1;:::i;:::-;:27;;;;:::i;:::-;58892:35;::::0;-1:-1:-1;;;58892:35:0;;58921:4:::1;58892:35;::::0;::::1;914:51:1::0;58808:46:0;;-1:-1:-1;58865:24:0::1;::::0;-1:-1:-1;;;;;58892:10:0::1;:20;::::0;::::1;::::0;887:18:1;;58892:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58973:265;::::0;-1:-1:-1;;;58973:265:0;;59021:4:::1;58973:265;::::0;::::1;19458:34:1::0;;;-1:-1:-1;;;;;59049:10:0::1;19528:15:1::0;;19508:18;;;19501:43;19560:18;;;19553:34;;;59098:1:0::1;19603:18:1::0;;;19596:34;;;19646:19;;;19639:35;19690:19;;;19683:44;;;;59212:15:0::1;19743:19:1::0;;;19736:35;58865:62:0;;-1:-1:-1;58973:9:0::1;:25:::0;;::::1;::::0;::::1;::::0;19392:19:1;;58973:265:0::1;::::0;::::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59251:25;59306:12;59279:24;59297:4;59279:9;:24::i;:::-;:39;;;;:::i;:::-;59251:67:::0;-1:-1:-1;59332:21:0;;59329:118:::1;;59369:66;59393:4;59408:6;59417:17;59369:15;:66::i;:::-;59484:35;::::0;-1:-1:-1;;;59484:35:0;;59513:4:::1;59484:35;::::0;::::1;914:51:1::0;59459:22:0::1;::::0;59522:16;;-1:-1:-1;;;;;59484:10:0::1;:20;::::0;::::1;::::0;887:18:1;;59484:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;;;;:::i;:::-;59459:79:::0;-1:-1:-1;59554:18:0;;59551:78:::1;;59588:29;59602:14;59588:13;:29::i;:::-;59646:22;::::0;59659:8;;59646:22:::1;::::0;;;::::1;58422:1254;;;;;;58347:1329:::0;:::o;7299:380::-;-1:-1:-1;;;;;7435:19:0;;7427:68;;;;-1:-1:-1;;;7427:68:0;;20234:2:1;7427:68:0;;;20216:21:1;20273:2;20253:18;;;20246:30;20312:34;20292:18;;;20285:62;-1:-1:-1;;;20363:18:1;;;20356:34;20407:19;;7427:68:0;20032:400:1;7427:68:0;-1:-1:-1;;;;;7514:21:0;;7506:68;;;;-1:-1:-1;;;7506:68:0;;20639:2:1;7506:68:0;;;20621:21:1;20678:2;20658:18;;;20651:30;20717:34;20697:18;;;20690:62;-1:-1:-1;;;20768:18:1;;;20761:32;20810:19;;7506:68:0;20437:398:1;7506:68:0;-1:-1:-1;;;;;7587:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7639:32;;160:25:1;;;7639:32:0;;133:18:1;7639:32:0;;;;;;;7299:380;;;:::o;51218:4902::-;-1:-1:-1;;;;;51350:18:0;;51342:68;;;;-1:-1:-1;;;51342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51429:16:0;;51421:64;;;;-1:-1:-1;;;51421:64:0;;;;;;;:::i;:::-;51510:6;51520:1;51510:11;51507:92;;51538:28;51554:4;51560:2;51564:1;51538:15;:28::i;51507:92::-;51623:13;;;;;;;51619:136;;-1:-1:-1;;;;;51660:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;51689:23:0;;;;;;:19;:23;;;;;;;;51660:52;51652:91;;;;-1:-1:-1;;;51652:91:0;;21852:2:1;51652:91:0;;;21834:21:1;21891:2;21871:18;;;21864:30;21930:28;21910:18;;;21903:56;21976:18;;51652:91:0;21650:350:1;51652:91:0;51778:14;;;;51775:1632;;;12972:6;;-1:-1:-1;;;;;51830:15:0;;;12972:6;;51830:15;;;;:49;;-1:-1:-1;12972:6:0;;-1:-1:-1;;;;;51866:13:0;;;12972:6;;51866:13;;51830:49;:86;;;;-1:-1:-1;;;;;;51900:16:0;;;;51830:86;:128;;;;-1:-1:-1;;;;;;51937:21:0;;51951:6;51937:21;;51830:128;:158;;;;-1:-1:-1;51980:8:0;;-1:-1:-1;;;51980:8:0;;;;51979:9;51830:158;51808:1588;;;52162:20;;;;52158:393;;;52224:9;-1:-1:-1;;;;;52210:24:0;:2;-1:-1:-1;;;;;52210:24:0;;;:49;;;;-1:-1:-1;52252:6:0;;-1:-1:-1;;;;;52238:21:0;;;52252:6;;52238:21;;52210:49;52206:326;;;52324:9;52295:39;;;;:28;:39;;;;;;52337:12;-1:-1:-1;52287:140:0;;;;-1:-1:-1;;;52287:140:0;;22207:2:1;52287:140:0;;;22189:21:1;22246:2;22226:18;;;22219:30;22285:34;22265:18;;;22258:62;22356:34;22336:18;;;22329:62;-1:-1:-1;;;22407:19:1;;;22400:40;22457:19;;52287:140:0;22005:477:1;52287:140:0;52483:9;52454:39;;;;:28;:39;;;;;52496:12;52454:54;;52206:326;-1:-1:-1;;;;;52619:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;52655:35:0;;;;;;:31;:35;;;;;;;;52654:36;52619:71;52615:766;;;52733:20;;52723:6;:30;;52715:96;;;;-1:-1:-1;;;52715:96:0;;22689:2:1;52715:96:0;;;22671:21:1;22728:2;22708:18;;;22701:30;22767:34;22747:18;;;22740:62;-1:-1:-1;;;22818:18:1;;;22811:51;22879:19;;52715:96:0;22487:417:1;52715:96:0;52868:9;;52851:13;52861:2;52851:9;:13::i;:::-;52842:22;;:6;:22;:::i;:::-;:35;;52834:75;;;;-1:-1:-1;;;52834:75:0;;23111:2:1;52834:75:0;;;23093:21:1;23150:2;23130:18;;;23123:30;23189:29;23169:18;;;23162:57;23236:18;;52834:75:0;22909:351:1;52834:75:0;52615:766;;;-1:-1:-1;;;;;52986:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;53020:37:0;;;;;;:31;:37;;;;;;;;53019:38;52986:71;52982:399;;;53100:20;;53090:6;:30;;53082:97;;;;-1:-1:-1;;;53082:97:0;;23467:2:1;53082:97:0;;;23449:21:1;23506:2;23486:18;;;23479:30;23545:34;23525:18;;;23518:62;-1:-1:-1;;;23596:18:1;;;23589:52;23658:19;;53082:97:0;23265:418:1;52982:399:0;-1:-1:-1;;;;;53226:35:0;;;;;;:31;:35;;;;;;;;53222:159;;53320:9;;53303:13;53313:2;53303:9;:13::i;:::-;53294:22;;:6;:22;:::i;:::-;:35;;53286:75;;;;-1:-1:-1;;;53286:75:0;;23111:2:1;53286:75:0;;;23093:21:1;23150:2;23130:18;;;23123:30;23189:29;23169:18;;;23162:57;23236:18;;53286:75:0;22909:351:1;53286:75:0;53413:28;53444:24;53462:4;53444:9;:24::i;:::-;53528:18;;53413:55;;-1:-1:-1;53504:42:0;;;;;;;53577:35;;-1:-1:-1;53601:11:0;;;;;;;53577:35;:61;;;;-1:-1:-1;53630:8:0;;-1:-1:-1;;;53630:8:0;;;;53629:9;53577:61;:110;;;;-1:-1:-1;;;;;;53656:31:0;;;;;;:25;:31;;;;;;;;53655:32;53577:110;:153;;;;-1:-1:-1;;;;;;53705:25:0;;;;;;:19;:25;;;;;;;;53704:26;53577:153;:194;;;;-1:-1:-1;;;;;;53748:23:0;;;;;;:19;:23;;;;;;;;53747:24;53577:194;53559:322;;;53798:8;:15;;-1:-1:-1;;;;53798:15:0;-1:-1:-1;;;53798:15:0;;;53828:10;:8;:10::i;:::-;53853:8;:16;;-1:-1:-1;;;;53853:16:0;;;53559:322;53909:8;;-1:-1:-1;;;;;54018:25:0;;53893:12;54018:25;;;:19;:25;;;;;;53909:8;-1:-1:-1;;;53909:8:0;;;;;53908:9;;54018:25;;:52;;-1:-1:-1;;;;;;54047:23:0;;;;;;:19;:23;;;;;;;;54018:52;54015:99;;;-1:-1:-1;54097:5:0;54015:99;54134:12;54225:7;54222:1365;;;54277:12;54251:18;;54272:1;54251:22;;;;:::i;:::-;:38;;:108;;;;-1:-1:-1;;;;;;54294:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;54327:31:0;;;;;;:25;:31;;;;;;;;54294:64;54248:1182;;;54386:23;54405:3;54386:14;:6;54397:2;54386:10;:14::i;:::-;:18;;:23::i;:::-;54379:30;-1:-1:-1;54462:2:0;54450:9;54379:30;54457:2;54450:9;:::i;:::-;:14;;;;:::i;:::-;54428:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;54515:2:0;;-1:-1:-1;54503:9:0;:4;54510:2;54503:9;:::i;:::-;:14;;;;:::i;:::-;54483:16;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;54571:2:0;;-1:-1:-1;54559:9:0;:4;54566:2;54559:9;:::i;:::-;:14;;;;:::i;:::-;54536:19;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;54248:1182:0;;-1:-1:-1;54248:1182:0;;-1:-1:-1;;;;;54638:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;54687:1;54671:13;;:17;54638:50;54634:796;;;54715:41;37419:4;54715:25;54726:13;;54715:6;:10;;:25;;;;:::i;:41::-;54708:48;;54819:13;;54802:14;;54795:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;54775:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;54899:13:0;;54880:16;;54873:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;54851:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;54981:13:0;;54961:17;;54954:24;;:4;:24;:::i;54634:796::-;-1:-1:-1;;;;;55069:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;55119:1;55104:12;;:16;55069:51;55066:364;;;55145:40;37419:4;55145:24;55156:12;;55145:6;:10;;:24;;;;:::i;:40::-;55138:47;;55244:12;;55228:13;;55221:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;55201:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;55322:12:0;;55304:15;;55297:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;55275:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;55402:12:0;;55383:16;;55376:23;;:4;:23;:::i;:::-;:38;;;;:::i;:::-;55353:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;55066:364:0;55449:8;;55446:93;;55481:42;55497:4;55511;55518;55481:15;:42::i;:::-;55561:14;55571:4;55561:14;;:::i;:::-;;;54222:1365;55599:33;55615:4;55621:2;55625:6;55599:15;:33::i;:::-;55645:15;;-1:-1:-1;;;;;55645:15:0;:26;55680:4;55687:15;55680:4;55687:9;:15::i;:::-;55645:58;;-1:-1:-1;;;;;;55645:58:0;;;;;;;-1:-1:-1;;;;;9213:32:1;;;55645:58:0;;;9195:51:1;9262:18;;;9255:34;9168:18;;55645:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55714:15:0;;-1:-1:-1;;;;;55714:15:0;;-1:-1:-1;55714:26:0;;-1:-1:-1;55749:2:0;55754:13;55749:2;55754:9;:13::i;:::-;55714:54;;-1:-1:-1;;;;;;55714:54:0;;;;;;;-1:-1:-1;;;;;9213:32:1;;;55714:54:0;;;9195:51:1;9262:18;;;9255:34;9168:18;;55714:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55785:8:0;;-1:-1:-1;;;55785:8:0;;;;55784:9;;-1:-1:-1;;55784:33:0;;;;;55816:1;55797:16;;:20;55784:33;55781:332;;;55842:16;;55873:15;;:28;;-1:-1:-1;;;;;;55873:28:0;;;;;160:25:1;;;-1:-1:-1;;;;;55873:15:0;;;;:23;;133:18:1;;55873:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;55873:28:0;;;;;;;;-1:-1:-1;;55873:28:0;;;;;;;;;;;;:::i;:::-;;;55869:233;;;55990:86;;;11069:25:1;;;11125:2;11110:18;;11103:34;;;11153:18;;;11146:34;;;11211:2;11196:18;;11189:34;;;56066:9:0;;56055:4;;55990:86;;11056:3:1;11041:19;55990:86:0;;;;;;;55902:184;;;55869:233;55819:294;55781:332;51331:4789;;;;51218:4902;;;:::o;47778:338::-;-1:-1:-1;;;;;47861:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;47861:39:0;;;;;;;47913:38;47861:31;:39;47913:25;:38::i;:::-;47975:5;47972:79;;;47997:15;;:42;;-1:-1:-1;;;47997:42:0;;-1:-1:-1;;;;;932:32:1;;;47997:42:0;;;914:51:1;47997:15:0;;;;:36;;887:18:1;;47997:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47972:79;48068:40;;;;;;-1:-1:-1;;;;;48068:40:0;;;;;;;;47778:338;;:::o;6380:614::-;-1:-1:-1;;;;;6520:20:0;;6512:70;;;;-1:-1:-1;;;6512:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6601:23:0;;6593:71;;;;-1:-1:-1;;;6593:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6701:17:0;;6677:21;6701:17;;;;;;;;;;;6737:23;;;;6729:74;;;;-1:-1:-1;;;6729:74:0;;24185:2:1;6729:74:0;;;24167:21:1;24224:2;24204:18;;;24197:30;24263:34;24243:18;;;24236:62;-1:-1:-1;;;24314:18:1;;;24307:36;24360:19;;6729:74:0;23983:402:1;6729:74:0;-1:-1:-1;;;;;6839:17:0;;;:9;:17;;;;;;;;;;;6859:22;;;6839:42;;6903:20;;;;;;;;:30;;6875:6;;6839:9;6903:30;;6875:6;;6903:30;:::i;:::-;;;;;;;;6968:9;-1:-1:-1;;;;;6951:35:0;6960:6;-1:-1:-1;;;;;6951:35:0;;6979:6;6951:35;;;;160:25:1;;148:2;133:18;;14:177;59684:394:0;59772:16;;;59786:1;59772:16;;;;;;;;59748:21;;59772:16;;;;;;;;;;-1:-1:-1;59772:16:0;59748:40;;59817:10;59799:4;59804:1;59799:7;;;;;;;;:::i;:::-;;;;;;:29;-1:-1:-1;;;;;59799:29:0;;;-1:-1:-1;;;;;59799:29:0;;;;;59857:4;59839;59844:1;59839:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59839:23:0;;;:7;;;;;;;;;:23;59875:195;;-1:-1:-1;;;59875:195:0;;:9;:63;;;;;;:195;;59953:11;;59979:1;;59995:4;;60022:6;;60044:15;;59875:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59737:341;59684:394;:::o;60090:1765::-;60129:23;60155:24;60173:4;60155:9;:24::i;:::-;60129:50;;60190:25;60261:16;;60239:19;;60218:18;;:40;;;;:::i;:::-;:59;;;;:::i;:::-;60190:87;-1:-1:-1;60301:20:0;;;:46;;-1:-1:-1;60325:22:0;;60301:46;60298:60;;;60350:7;;60090:1765::o;60298:60::-;60427:23;60512:1;60492:17;60471:18;;60453:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;60427:86;-1:-1:-1;60524:25:0;60551:36;:15;60427:86;60551:19;:36::i;:::-;60635:35;;-1:-1:-1;;;60635:35:0;;60664:4;60635:35;;;914:51:1;60524:63:0;;-1:-1:-1;60608:24:0;;-1:-1:-1;;;;;60635:10:0;:20;;;;887:18:1;;60635:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60608:62;;60683:42;60707:17;60683:23;:42::i;:::-;60767:35;;-1:-1:-1;;;60767:35:0;;60796:4;60767:35;;;914:51:1;60747:17:0;;60806:16;;-1:-1:-1;;;;;60767:10:0;:20;;;;887:18:1;;60767:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;;;:::i;:::-;60747:76;;60844:23;60870:82;60949:1;60930:18;;:20;;;;:::i;:::-;60909:42;;:17;:42;:::i;:::-;60884:19;;60870:34;;:9;;:13;:34::i;:82::-;60844:108;;60963:20;60986:79;61062:1;61043:18;;:20;;;;:::i;:::-;61022:42;;:17;:42;:::i;:::-;61000:16;;60986:31;;:9;;:13;:31::i;:79::-;60963:102;-1:-1:-1;61086:22:0;60963:102;61111:27;61123:15;61111:9;:27;:::i;:::-;:42;;;;:::i;:::-;61195:1;61174:18;:22;;;61207:19;:23;;;61241:16;:20;61086:67;-1:-1:-1;61305:19:0;;;;;:41;;;61345:1;61328:14;:18;61305:41;61302:206;;;61362:45;61375:15;61392:14;61362:12;:45::i;:::-;61477:18;;61427:69;;;25709:25:1;;;25765:2;25750:18;;25743:34;;;25793:18;;;25786:34;;;;61427:69:0;;;;;;25697:2:1;61427:69:0;;;61302:206;61531:16;;61528:163;;61591:15;;61563:59;;-1:-1:-1;;;61563:59:0;;-1:-1:-1;;;;;61591:15:0;;;61563:59;;;9195:51:1;9262:18;;;9255:34;;;61563:10:0;:19;;;;;;9168:18:1;;61563:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61637:15;;;;;;;;;-1:-1:-1;;;;;61637:15:0;-1:-1:-1;;;;;61637:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61528:163;61706:35;;-1:-1:-1;;;61706:35:0;;61735:4;61706:35;;;914:51:1;61744:1:0;;61706:10;-1:-1:-1;;;;;61706:20:0;;;;887:18:1;;61706:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;61703:145;;;61781:16;;61799:35;;-1:-1:-1;;;61799:35:0;;61828:4;61799:35;;;914:51:1;-1:-1:-1;;;;;61761:10:0;:19;;;;;61781:16;;;61761:19;;61799:20;;887:18:1;;61799:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61761:75;;-1:-1:-1;;;;;;61761:75:0;;;;;;;-1:-1:-1;;;;;9213:32:1;;;61761:75:0;;;9195:51:1;9262:18;;;9255:34;9168:18;;61761:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61703:145;60118:1737;;;;;;;;;60090:1765::o;9305:471::-;9363:7;9608:1;9613;9608:6;9604:47;;-1:-1:-1;9638:1:0;9631:8;;9604:47;9663:9;9675:5;9679:1;9675;:5;:::i;:::-;9663:17;-1:-1:-1;9708:1:0;9699:5;9703:1;9663:17;9699:5;:::i;:::-;:10;9691:56;;;;-1:-1:-1;;;9691:56:0;;26033:2:1;9691:56:0;;;26015:21:1;26072:2;26052:18;;;26045:30;26111:34;26091:18;;;26084:62;-1:-1:-1;;;26162:18:1;;;26155:31;26203:19;;9691:56:0;25831:397:1;9691:56:0;9767:1;9305:471;-1:-1:-1;;;9305:471:0:o;10252:132::-;10310:7;10337:39;10341:1;10344;10337:39;;;;;;;;;;;;;;;;;:3;:39::i;8415:136::-;8473:7;8500:43;8504:1;8507;8500:43;;;;;;;;;;;;;;;;;:3;:43::i;56132:598::-;56291:16;;;56305:1;56291:16;;;;;;;;56267:21;;56291:16;;;;;;;;;;-1:-1:-1;56291:16:0;56267:40;;56336:4;56318;56323:1;56318:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;56318:23:0;;;-1:-1:-1;;;;;56318:23:0;;;;;56370:10;56352:4;56357:1;56352:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56352:29:0;;;:7;;;;;;;;;:29;56595:12;;56420:229;;-1:-1:-1;;;56420:229:0;;:9;:63;;;;;:229;;56498:11;;56524:1;;56568:4;;56595:12;;;56623:15;;56420:229;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56662:12:0;;:50;;-1:-1:-1;;;56662:50:0;;-1:-1:-1;;;;;56700:10:0;932:32:1;;56662:50:0;;;914:51:1;56662:12:0;;;;-1:-1:-1;56662:29:0;;-1:-1:-1;887:18:1;;56662:50:0;749:222:1;56742:406:0;56852:288;;-1:-1:-1;;;56852:288:0;;56897:4;56852:288;;;26630:34:1;;;-1:-1:-1;;;;;56925:10:0;26700:15:1;;26680:18;;;26673:43;26732:18;;;26725:34;;;26775:18;;;26768:34;;;-1:-1:-1;26818:19:1;;;26811:35;;;26862:19;;;26855:35;26906:19;;;26899:44;;;;57114:15:0;26959:19:1;;;26952:35;56852:9:0;:22;;;;26564:19:1;;56852:288:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10880:278::-;10966:7;11001:12;10994:5;10986:28;;;;-1:-1:-1;;;10986:28:0;;;;;;;;:::i;:::-;-1:-1:-1;11025:9:0;11037:5;11041:1;11037;:5;:::i;:::-;11025:17;10880:278;-1:-1:-1;;;;;10880:278:0:o;8854:192::-;8940:7;8976:12;8968:6;;;;8960:29;;;;-1:-1:-1;;;8960:29:0;;;;;;;;:::i;:::-;-1:-1:-1;9000:9:0;9012:5;9016:1;9012;:5;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;976:131::-;-1:-1:-1;;;;;1051:31:1;;1041:42;;1031:70;;1097:1;1094;1087:12;1112:315;1180:6;1188;1241:2;1229:9;1220:7;1216:23;1212:32;1209:52;;;1257:1;1254;1247:12;1209:52;1296:9;1283:23;1315:31;1340:5;1315:31;:::i;:::-;1365:5;1417:2;1402:18;;;;1389:32;;-1:-1:-1;;;1112:315:1:o;1624:180::-;1683:6;1736:2;1724:9;1715:7;1711:23;1707:32;1704:52;;;1752:1;1749;1742:12;1704:52;-1:-1:-1;1775:23:1;;1624:180;-1:-1:-1;1624:180:1:o;1809:247::-;1868:6;1921:2;1909:9;1900:7;1896:23;1892:32;1889:52;;;1937:1;1934;1927:12;1889:52;1976:9;1963:23;1995:31;2020:5;1995:31;:::i;2290:456::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2491:9;2478:23;2510:31;2535:5;2510:31;:::i;:::-;2560:5;-1:-1:-1;2617:2:1;2602:18;;2589:32;2630:33;2589:32;2630:33;:::i;:::-;2290:456;;2682:7;;-1:-1:-1;;;2736:2:1;2721:18;;;;2708:32;;2290:456::o;3388:118::-;3474:5;3467:13;3460:21;3453:5;3450:32;3440:60;;3496:1;3493;3486:12;3511:377;3585:6;3593;3601;3654:2;3642:9;3633:7;3629:23;3625:32;3622:52;;;3670:1;3667;3660:12;3622:52;3706:9;3693:23;3683:33;;3763:2;3752:9;3748:18;3735:32;3725:42;;3817:2;3806:9;3802:18;3789:32;3830:28;3852:5;3830:28;:::i;:::-;3877:5;3867:15;;;3511:377;;;;;:::o;3893:382::-;3958:6;3966;4019:2;4007:9;3998:7;3994:23;3990:32;3987:52;;;4035:1;4032;4025:12;3987:52;4074:9;4061:23;4093:31;4118:5;4093:31;:::i;:::-;4143:5;-1:-1:-1;4200:2:1;4185:18;;4172:32;4213:30;4172:32;4213:30;:::i;:::-;4262:7;4252:17;;;3893:382;;;;;:::o;4280:316::-;4357:6;4365;4373;4426:2;4414:9;4405:7;4401:23;4397:32;4394:52;;;4442:1;4439;4432:12;4394:52;-1:-1:-1;;4465:23:1;;;4535:2;4520:18;;4507:32;;-1:-1:-1;4586:2:1;4571:18;;;4558:32;;4280:316;-1:-1:-1;4280:316:1:o;4601:241::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:52;;;4726:1;4723;4716:12;4678:52;4765:9;4752:23;4784:28;4806:5;4784:28;:::i;5775:750::-;5867:6;5875;5883;5936:2;5924:9;5915:7;5911:23;5907:32;5904:52;;;5952:1;5949;5942:12;5904:52;5992:9;5979:23;6021:18;6062:2;6054:6;6051:14;6048:34;;;6078:1;6075;6068:12;6048:34;6116:6;6105:9;6101:22;6091:32;;6161:7;6154:4;6150:2;6146:13;6142:27;6132:55;;6183:1;6180;6173:12;6132:55;6223:2;6210:16;6249:2;6241:6;6238:14;6235:34;;;6265:1;6262;6255:12;6235:34;6320:7;6313:4;6303:6;6300:1;6296:14;6292:2;6288:23;6284:34;6281:47;6278:67;;;6341:1;6338;6331:12;6278:67;6372:4;6364:13;;;;-1:-1:-1;6396:6:1;-1:-1:-1;;6437:20:1;;6424:34;6467:28;6424:34;6467:28;:::i;6530:388::-;6598:6;6606;6659:2;6647:9;6638:7;6634:23;6630:32;6627:52;;;6675:1;6672;6665:12;6627:52;6714:9;6701:23;6733:31;6758:5;6733:31;:::i;:::-;6783:5;-1:-1:-1;6840:2:1;6825:18;;6812:32;6853:33;6812:32;6853:33;:::i;6923:380::-;7002:1;6998:12;;;;7045;;;7066:61;;7120:4;7112:6;7108:17;7098:27;;7066:61;7173:2;7165:6;7162:14;7142:18;7139:38;7136:161;;7219:10;7214:3;7210:20;7207:1;7200:31;7254:4;7251:1;7244:15;7282:4;7279:1;7272:15;7136:161;;6923:380;;;:::o;7308:356::-;7510:2;7492:21;;;7529:18;;;7522:30;7588:34;7583:2;7568:18;;7561:62;7655:2;7640:18;;7308:356::o;7669:127::-;7730:10;7725:3;7721:20;7718:1;7711:31;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:168;7841:7;7907:1;7903;7899:6;7895:14;7892:1;7889:21;7884:1;7877:9;7870:17;7866:45;7863:71;;;7914:18;;:::i;:::-;-1:-1:-1;7954:9:1;;7801:168::o;7974:217::-;8014:1;8040;8030:132;;8084:10;8079:3;8075:20;8072:1;8065:31;8119:4;8116:1;8109:15;8147:4;8144:1;8137:15;8030:132;-1:-1:-1;8176:9:1;;7974:217::o;9300:245::-;9367:6;9420:2;9408:9;9399:7;9395:23;9391:32;9388:52;;;9436:1;9433;9426:12;9388:52;9468:9;9462:16;9487:28;9509:5;9487:28;:::i;9550:184::-;9620:6;9673:2;9661:9;9652:7;9648:23;9644:32;9641:52;;;9689:1;9686;9679:12;9641:52;-1:-1:-1;9712:16:1;;9550:184;-1:-1:-1;9550:184:1:o;10092:125::-;10157:9;;;10178:10;;;10175:36;;;10191:18;;:::i;10527:306::-;10615:6;10623;10631;10684:2;10672:9;10663:7;10659:23;10655:32;10652:52;;;10700:1;10697;10690:12;10652:52;10729:9;10723:16;10713:26;;10779:2;10768:9;10764:18;10758:25;10748:35;;10823:2;10812:9;10808:18;10802:25;10792:35;;10527:306;;;;;:::o;14852:681::-;14983:6;14991;14999;15007;15015;15023;15031;15039;15092:3;15080:9;15071:7;15067:23;15063:33;15060:53;;;15109:1;15106;15099:12;15060:53;15141:9;15135:16;15160:31;15185:5;15160:31;:::i;:::-;15210:5;15200:15;;;15255:2;15244:9;15240:18;15234:25;15224:35;;15299:2;15288:9;15284:18;15278:25;15268:35;;15343:2;15332:9;15328:18;15322:25;15312:35;;15387:3;15376:9;15372:19;15366:26;15356:36;;15432:3;15421:9;15417:19;15411:26;15401:36;;15477:3;15466:9;15462:19;15456:26;15446:36;;15522:3;15511:9;15507:19;15501:26;15491:36;;14852:681;;;;;;;;;;;:::o;16714:127::-;16775:10;16770:3;16766:20;16763:1;16756:31;16806:4;16803:1;16796:15;16830:4;16827:1;16820:15;16846:135;16885:3;16906:17;;;16903:43;;16926:18;;:::i;:::-;-1:-1:-1;16973:1:1;16962:13;;16846:135::o;16986:794::-;17208:2;17220:21;;;17193:18;;17276:22;;;17160:4;17355:6;17329:2;17314:18;;17160:4;17389:304;17403:6;17400:1;17397:13;17389:304;;;17478:6;17465:20;17498:31;17523:5;17498:31;:::i;:::-;-1:-1:-1;;;;;17554:31:1;17542:44;;17609:4;17668:15;;;;17633:12;;;;17582:1;17418:9;17389:304;;;17393:3;17710;17702:11;;;;17765:6;17758:14;17751:22;17744:4;17733:9;17729:20;17722:52;16986:794;;;;;;:::o;18614:128::-;18681:9;;;18702:11;;;18699:37;;;18716:18;;:::i;19782:245::-;19861:6;19869;19922:2;19910:9;19901:7;19897:23;19893:32;19890:52;;;19938:1;19935;19928:12;19890:52;-1:-1:-1;;19961:16:1;;20017:2;20002:18;;;19996:25;19961:16;;19996:25;;-1:-1:-1;19782:245:1:o;20840:401::-;21042:2;21024:21;;;21081:2;21061:18;;;21054:30;21120:34;21115:2;21100:18;;21093:62;-1:-1:-1;;;21186:2:1;21171:18;;21164:35;21231:3;21216:19;;20840:401::o;21246:399::-;21448:2;21430:21;;;21487:2;21467:18;;;21460:30;21526:34;21521:2;21506:18;;21499:62;-1:-1:-1;;;21592:2:1;21577:18;;21570:33;21635:3;21620:19;;21246:399::o;24522:980::-;24784:4;24832:3;24821:9;24817:19;24863:6;24852:9;24845:25;24889:2;24927:6;24922:2;24911:9;24907:18;24900:34;24970:3;24965:2;24954:9;24950:18;24943:31;24994:6;25029;25023:13;25060:6;25052;25045:22;25098:3;25087:9;25083:19;25076:26;;25137:2;25129:6;25125:15;25111:29;;25158:1;25168:195;25182:6;25179:1;25176:13;25168:195;;;25247:13;;-1:-1:-1;;;;;25243:39:1;25231:52;;25338:15;;;;25303:12;;;;25279:1;25197:9;25168:195;;;-1:-1:-1;;;;;;;25419:32:1;;;;25414:2;25399:18;;25392:60;-1:-1:-1;;;25483:3:1;25468:19;25461:35;25380:3;24522:980;-1:-1:-1;;;24522:980:1:o
Swarm Source
ipfs://82b6e20dc77e295f1bee1f12d5748b57a8c3c9db64e1f32bd46b1f22772a5d48
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.