Contract
0xe38D9Ae2AB3C1EccC701e3617297e1f4f48899c4
1
Contract Overview
My Name Tag:
Not Available
TokenTracker:
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xeAA6004484Af3415Eac104e5B3235aBc078F8691
Contract Name:
LiquidityGeneratorToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan on 2023-02-01 */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the 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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // Dependency file: contracts/interfaces/IUniswapV2Router02.sol // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // Dependency file: contracts/interfaces/IUniswapV2Factory.sol // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/liquidity-generator/LiquidityGeneratorToken.sol pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "contracts/interfaces/IUniswapV2Router02.sol"; // import "contracts/interfaces/IUniswapV2Factory.sol"; // import "contracts/BaseToken.sol"; contract LiquidityGeneratorToken is IERC20, Ownable, BaseToken { using SafeMath for uint256; using Address for address; uint256 public constant VERSION = 2; uint256 public constant MAX_FEE = 10**4 / 4; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name; string private _symbol; uint8 private _decimals; uint256 public _taxFee; uint256 private _previousTaxFee; uint256 public _liquidityFee; uint256 private _previousLiquidityFee; uint256 public _charityFee; uint256 private _previousCharityFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public _charityAddress; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled; uint256 private numTokensSellToAddToLiquidity; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyAmountUpdated(uint256 amount); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor( string memory name_, string memory symbol_, uint256 totalSupply_, address router_, address charityAddress_, uint16 taxFeeBps_, uint16 liquidityFeeBps_, uint16 charityFeeBps_, address serviceFeeReceiver_, uint256 serviceFee_ ) payable { if (charityAddress_ == address(0)) { require( charityFeeBps_ == 0, "Cant set both charity address to address 0 and charity percent more than 0" ); } require( taxFeeBps_ + liquidityFeeBps_ + charityFeeBps_ <= MAX_FEE, "Total fee is over 25%" ); _name = name_; _symbol = symbol_; _decimals = 9; _tTotal = totalSupply_; _rTotal = (MAX - (MAX % _tTotal)); _taxFee = taxFeeBps_; _previousTaxFee = _taxFee; _liquidityFee = liquidityFeeBps_; _previousLiquidityFee = _liquidityFee; _charityAddress = charityAddress_; _charityFee = charityFeeBps_; _previousCharityFee = _charityFee; numTokensSellToAddToLiquidity = totalSupply_.div(10**3); // 0.1% swapAndLiquifyEnabled = true; _rOwned[owner()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), owner(), _tTotal); emit TokenCreated( owner(), address(this), TokenType.liquidityGenerator, VERSION ); payable(serviceFeeReceiver_).transfer(serviceFee_); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); (uint256 rAmount, , , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function setTaxFeePercent(uint256 taxFeeBps) external onlyOwner { _taxFee = taxFeeBps; require( _taxFee + _liquidityFee + _charityFee <= MAX_FEE, "Total fee is over 25%" ); } function setLiquidityFeePercent(uint256 liquidityFeeBps) external onlyOwner { _liquidityFee = liquidityFeeBps; require( _taxFee + _liquidityFee + _charityFee <= MAX_FEE, "Total fee is over 25%" ); } function setCharityFeePercent(uint256 charityFeeBps) external onlyOwner { _charityFee = charityFeeBps; require( _taxFee + _liquidityFee + _charityFee <= MAX_FEE, "Total fee is over 25%" ); } function setSwapBackSettings(uint256 _amount) external onlyOwner { require( _amount >= totalSupply().mul(5).div(10**4), "Swapback amount should be at least 0.05% of total supply" ); numTokensSellToAddToLiquidity = _amount; emit SwapAndLiquifyAmountUpdated(_amount); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256, uint256 ) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tCharity, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tCharity ); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tCharityFee = calculateCharityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub( tCharityFee ); return (tTransferAmount, tFee, tLiquidity, tCharityFee); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rCharity = tCharity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub( rCharity ); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeCharityFee(uint256 tCharity) private { if (tCharity > 0) { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity); if (_isExcluded[_charityAddress]) _tOwned[_charityAddress] = _tOwned[_charityAddress].add( tCharity ); emit Transfer(_msgSender(), _charityAddress, tCharity); } } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**4); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**4); } function calculateCharityFee(uint256 _amount) private view returns (uint256) { if (_charityAddress == address(0)) return 0; return _amount.mul(_charityFee).div(10**4); } function removeAllFee() private { _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _previousCharityFee = _charityFee; _taxFee = 0; _liquidityFee = 0; _charityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _charityFee = _previousCharityFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _approve( address owner, address spender, uint256 amount ) private { 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); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdead), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"internalType":"address","name":"charityAddress_","type":"address"},{"internalType":"uint16","name":"taxFeeBps_","type":"uint16"},{"internalType":"uint16","name":"liquidityFeeBps_","type":"uint16"},{"internalType":"uint16","name":"charityFeeBps_","type":"uint16"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"}],"stateMutability":"payable","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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapAndLiquifyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFeeBps","type":"uint256"}],"name":"setCharityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFeeBps","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFeeBps","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405162002ee138038062002ee1833981016040819052620000269162000764565b620000313362000559565b6001600160a01b038616620000d15761ffff831615620000d15760405162461bcd60e51b815260206004820152604a60248201527f43616e742073657420626f74682063686172697479206164647265737320746f60448201527f2061646472657373203020616e6420636861726974792070657263656e74206d60648201526906f7265207468616e20360b41b608482015260a4015b60405180910390fd5b6109c483620000e186886200087d565b620000ed91906200087d565b61ffff161115620001415760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f7665722032352500000000000000000000006044820152606401620000c8565b89516200015690600a9060208d0190620005be565b5088516200016c90600b9060208c0190620005be565b50600c805460ff1916600917905560078890556200018d8860001962000914565b6200019b90600019620008bd565b60085561ffff858116600d819055600e55848116600f819055601055601580546001600160a01b0319166001600160a01b03891617905583166011819055601255620001f6886103e8620005a9602090811b6200116b17901c565b6016556015805460ff60a81b1916600160a81b17905560085460016000620002266000546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000879050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028957600080fd5b505afa1580156200029e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c4919062000747565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030d57600080fd5b505afa15801562000322573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000348919062000747565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200039157600080fd5b505af1158015620003a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cc919062000747565b601480546001600160a01b03199081166001600160a01b039384161790915560138054909116918316919091179055600160046000620004146000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620004676000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620004af91815260200190565b60405180910390a330620004cb6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe35626002806040516200050892919062000850565b60405180910390a36040516001600160a01b0384169083156108fc029084906000818181858888f1935050505015801562000547573d6000803e3d6000fd5b5050505050505050505050506200096d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620005b78284620008a6565b9392505050565b828054620005cc90620008d7565b90600052602060002090601f016020900481019282620005f057600085556200063b565b82601f106200060b57805160ff19168380011785556200063b565b828001600101855582156200063b579182015b828111156200063b5782518255916020019190600101906200061e565b50620006499291506200064d565b5090565b5b808211156200064957600081556001016200064e565b80516001600160a01b03811681146200067c57600080fd5b919050565b600082601f83011262000692578081fd5b81516001600160401b0380821115620006af57620006af62000957565b604051601f8301601f19908116603f01168101908282118183101715620006da57620006da62000957565b81604052838152602092508683858801011115620006f6578485fd5b8491505b83821015620007195785820183015181830184015290820190620006fa565b838211156200072a57848385830101525b9695505050505050565b805161ffff811681146200067c57600080fd5b60006020828403121562000759578081fd5b620005b78262000664565b6000806000806000806000806000806101408b8d03121562000784578586fd5b8a516001600160401b03808211156200079b578788fd5b620007a98e838f0162000681565b9b5060208d0151915080821115620007bf578788fd5b50620007ce8d828e0162000681565b99505060408b01519750620007e660608c0162000664565b9650620007f660808c0162000664565b95506200080660a08c0162000734565b94506200081660c08c0162000734565b93506200082660e08c0162000734565b9250620008376101008c0162000664565b91506101208b015190509295989b9194979a5092959850565b60408101600884106200087357634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600061ffff8083168185168083038211156200089d576200089d6200092b565b01949350505050565b600082620008b857620008b862000941565b500490565b600082821015620008d257620008d26200092b565b500390565b600181811c90821680620008ec57607f821691505b602082108114156200090e57634e487b7160e01b600052602260045260246000fd5b50919050565b60008262000926576200092662000941565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612564806200097d6000396000f3fe6080604052600436106102135760003560e01c80634a74bb02116101185780638ee88c53116100a0578063af41063b1161006f578063af41063b14610627578063bc063e1a14610647578063dd62ed3e1461065d578063f2fde38b146106a3578063ffa1ad74146106c357600080fd5b80638ee88c53146105b257806395d89b41146105d2578063a457c2d7146105e7578063a9059cbb1461060757600080fd5b806370a08231116100e757806370a0823114610506578063715018a614610526578063796431d01461053b57806388f820201461055b5780638da5cb5b1461059457600080fd5b80634a74bb021461047657806352390c02146104975780635342acb4146104b75780636bc87c3a146104f057600080fd5b8063313ce5671161019b5780633bd5d1731161016a5780633bd5d173146103e057806340f8007a14610400578063437823ec146104165780634549b0391461043657806349bd5a5e1461045657600080fd5b8063313ce567146103685780633685d4191461038a57806339509351146103aa5780633b124fe7146103ca57600080fd5b80631694505e116101e25780631694505e146102bb57806318160ddd146102f357806319a8ac9e1461030857806323b872dd146103285780632d8381191461034857600080fd5b8063061c82d01461021f57806306fdde0314610241578063095ea7b31461026c57806313114a9d1461029c57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023f61023a36600461228d565b6106d8565b005b34801561024d57600080fd5b50610256610778565b60405161026391906122fa565b60405180910390f35b34801561027857600080fd5b5061028c610287366004612262565b61080a565b6040519015158152602001610263565b3480156102a857600080fd5b506009545b604051908152602001610263565b3480156102c757600080fd5b506013546102db906001600160a01b031681565b6040516001600160a01b039091168152602001610263565b3480156102ff57600080fd5b506007546102ad565b34801561031457600080fd5b506015546102db906001600160a01b031681565b34801561033457600080fd5b5061028c610343366004612222565b610821565b34801561035457600080fd5b506102ad61036336600461228d565b61088a565b34801561037457600080fd5b50600c5460405160ff9091168152602001610263565b34801561039657600080fd5b5061023f6103a53660046121b2565b61090e565b3480156103b657600080fd5b5061028c6103c5366004612262565b610afd565b3480156103d657600080fd5b506102ad600d5481565b3480156103ec57600080fd5b5061023f6103fb36600461228d565b610b33565b34801561040c57600080fd5b506102ad60115481565b34801561042257600080fd5b5061023f6104313660046121b2565b610c1f565b34801561044257600080fd5b506102ad6104513660046122a5565b610c6d565b34801561046257600080fd5b506014546102db906001600160a01b031681565b34801561048257600080fd5b5060155461028c90600160a81b900460ff1681565b3480156104a357600080fd5b5061023f6104b23660046121b2565b610cfc565b3480156104c357600080fd5b5061028c6104d23660046121b2565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104fc57600080fd5b506102ad600f5481565b34801561051257600080fd5b506102ad6105213660046121b2565b610e4f565b34801561053257600080fd5b5061023f610eae565b34801561054757600080fd5b5061023f61055636600461228d565b610ee4565b34801561056757600080fd5b5061028c6105763660046121b2565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105a057600080fd5b506000546001600160a01b03166102db565b3480156105be57600080fd5b5061023f6105cd36600461228d565b610fde565b3480156105de57600080fd5b50610256611023565b3480156105f357600080fd5b5061028c610602366004612262565b611032565b34801561061357600080fd5b5061028c610622366004612262565b611081565b34801561063357600080fd5b5061023f61064236600461228d565b61108e565b34801561065357600080fd5b506102ad6109c481565b34801561066957600080fd5b506102ad6106783660046121ea565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156106af57600080fd5b5061023f6106be3660046121b2565b6110d3565b3480156106cf57600080fd5b506102ad600281565b6000546001600160a01b0316331461070b5760405162461bcd60e51b81526004016107029061234d565b60405180910390fd5b600d819055601154600f546109c4919061072590846123f2565b61072f91906123f2565b11156107755760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610702565b50565b6060600a805461078790612460565b80601f01602080910402602001604051908101604052809291908181526020018280546107b390612460565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000610817338484611177565b5060015b92915050565b600061082e84848461129c565b610880843361087b856040518060600160405280602881526020016124e2602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611491565b611177565b5060019392505050565b60006008548211156108f15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610702565b60006108fb6114bd565b9050610907838261116b565b9392505050565b6000546001600160a01b031633146109385760405162461bcd60e51b81526004016107029061234d565b6001600160a01b03811660009081526005602052604090205460ff166109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610702565b60005b600654811015610af957816001600160a01b0316600682815481106109d857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ae75760068054610a0390600190612449565b81548110610a2157634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610a5b57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610ac157634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610af18161249b565b9150506109a3565b5050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161081791859061087b90866114e0565b3360008181526005602052604090205460ff1615610ba85760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610702565b6000610bb3836114ec565b5050506001600160a01b038616600090815260016020526040902054939450610be193925084915050611547565b6001600160a01b038316600090815260016020526040902055600854610c079082611547565b600855600954610c1790846114e0565b600955505050565b6000546001600160a01b03163314610c495760405162461bcd60e51b81526004016107029061234d565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610cc15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610702565b81610ce1576000610cd1846114ec565b5094965061081b95505050505050565b6000610cec846114ec565b5093965061081b95505050505050565b6000546001600160a01b03163314610d265760405162461bcd60e51b81526004016107029061234d565b6001600160a01b03811660009081526005602052604090205460ff1615610d8f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610702565b6001600160a01b03811660009081526001602052604090205415610de9576001600160a01b038116600090815260016020526040902054610dcf9061088a565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604081205460ff1615610e8c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b03821660009081526001602052604090205461081b9061088a565b6000546001600160a01b03163314610ed85760405162461bcd60e51b81526004016107029061234d565b610ee26000611553565b565b6000546001600160a01b03163314610f0e5760405162461bcd60e51b81526004016107029061234d565b610f2e612710610f286005610f2260075490565b906115a3565b9061116b565b811015610fa35760405162461bcd60e51b815260206004820152603860248201527f537761706261636b20616d6f756e742073686f756c64206265206174206c656160448201527f737420302e303525206f6620746f74616c20737570706c7900000000000000006064820152608401610702565b60168190556040518181527ff7edd1a72d399eb95c56c07c5a26f00a9096735269c96c75caa8fc4e15bcd5d29060200160405180910390a150565b6000546001600160a01b031633146110085760405162461bcd60e51b81526004016107029061234d565b600f819055601154600d546109c491906107259084906123f2565b6060600b805461078790612460565b6000610817338461087b8560405180606001604052806025815260200161250a602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611491565b600061081733848461129c565b6000546001600160a01b031633146110b85760405162461bcd60e51b81526004016107029061234d565b6011819055600f54600d546109c491839161072591906123f2565b6000546001600160a01b031633146110fd5760405162461bcd60e51b81526004016107029061234d565b6001600160a01b0381166111625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b61077581611553565b6000610907828461240a565b6001600160a01b0383166111d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610702565b6001600160a01b03821661123a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610702565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113005760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b6001600160a01b0382166113625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610702565b600081116113c45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610702565b60006113cf30610e4f565b601654909150811080159081906113f05750601554600160a01b900460ff16155b801561140a57506014546001600160a01b03868116911614155b801561141f5750601554600160a81b900460ff165b15611432576016549150611432826115af565b6001600160a01b03851660009081526004602052604090205460019060ff168061147457506001600160a01b03851660009081526004602052604090205460ff165b1561147d575060005b61148986868684611656565b505050505050565b600081848411156114b55760405162461bcd60e51b815260040161070291906122fa565b505050900390565b60008060006114ca6117f6565b90925090506114d9828261116b565b9250505090565b600061090782846123f2565b60008060008060008060008060008060006115068c6119b0565b935093509350935060008060006115278f8787876115226114bd565b611a05565b919f509d509b509599509397509195509350505050919395979092949650565b60006109078284612449565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610907828461242a565b6015805460ff60a01b1916600160a01b17905560006115cf82600261116b565b905060006115dd8383611547565b9050476115e983611a67565b60006115f54783611547565b90506116018382611be4565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061168057611680600d8054600e55600f8054601055601180546012556000928390559082905555565b6001600160a01b03841660009081526005602052604090205460ff1680156116c157506001600160a01b03831660009081526005602052604090205460ff16155b156116d6576116d1848484611ca5565b6117d4565b6001600160a01b03841660009081526005602052604090205460ff1615801561171757506001600160a01b03831660009081526005602052604090205460ff165b15611727576116d1848484611deb565b6001600160a01b03841660009081526005602052604090205460ff1615801561176957506001600160a01b03831660009081526005602052604090205460ff16155b15611779576116d1848484611eaa565b6001600160a01b03841660009081526005602052604090205460ff1680156117b957506001600160a01b03831660009081526005602052604090205460ff165b156117c9576116d1848484611f04565b6117d4848484611eaa565b806117f0576117f0600e54600d55601054600f55601254601155565b50505050565b6008546007546000918291825b6006548110156119805782600160006006848154811061183357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806118ac575081600260006006848154811061188557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156118c257600854600754945094505050509091565b61191660016000600684815481106118ea57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611547565b925061196c600260006006848154811061194057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611547565b9150806119788161249b565b915050611803565b506007546008546119909161116b565b8210156119a7576008546007549350935050509091565b90939092509050565b60008060008060006119c186611f8d565b905060006119ce87611faa565b905060006119db88611fc7565b905060006119f5826119ef85818d89611547565b90611547565b9993985091965094509092505050565b6000808080611a1489866115a3565b90506000611a2289876115a3565b90506000611a3089886115a3565b90506000611a3e89896115a3565b90506000611a52826119ef85818989611547565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aaa57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611afe57600080fd5b505afa158015611b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3691906121ce565b81600181518110611b5757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354611b7d9130911684611177565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac94790611bb6908590600090869030904290600401612382565b600060405180830381600087803b158015611bd057600080fd5b505af1158015611489573d6000803e3d6000fd5b601354611bfc9030906001600160a01b031684611177565b60135460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611c6557600080fd5b505af1158015611c79573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c9e91906122cd565b5050505050565b6000806000806000806000611cb9886114ec565b9650965096509650965096509650611cff88600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461154790919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611d2e9088611547565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054611d5d90876114e0565b6001600160a01b038a16600090815260016020526040902055611d7f82611ffd565b611d8881612086565b611d92858461218e565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611dd791815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611dff886114ec565b9650965096509650965096509650611e4587600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461154790919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054611e7b90856114e0565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611d5d90876114e0565b6000806000806000806000611ebe886114ec565b9650965096509650965096509650611d2e87600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461154790919063ffffffff16565b6000806000806000806000611f18886114ec565b9650965096509650965096509650611f5e88600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461154790919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611e459088611547565b600061081b612710610f28600d54856115a390919063ffffffff16565b600061081b612710610f28600f54856115a390919063ffffffff16565b6015546000906001600160a01b0316611fe257506000919050565b61081b612710610f28601154856115a390919063ffffffff16565b60006120076114bd565b9050600061201583836115a3565b3060009081526001602052604090205490915061203290826114e0565b3060009081526001602090815260408083209390935560059052205460ff1615612081573060009081526002602052604090205461207090846114e0565b306000908152600260205260409020555b505050565b80156107755760006120966114bd565b905060006120a483836115a3565b6015546001600160a01b03166000908152600160205260409020549091506120cc90826114e0565b601580546001600160a01b03908116600090815260016020908152604080832095909555925490911681526005909152205460ff1615612147576015546001600160a01b031660009081526002602052604090205461212b90846114e0565b6015546001600160a01b03166000908152600260205260409020555b6015546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161128f91815260200190565b60085461219b9083611547565b6008556009546121ab90826114e0565b6009555050565b6000602082840312156121c3578081fd5b8135610907816124cc565b6000602082840312156121df578081fd5b8151610907816124cc565b600080604083850312156121fc578081fd5b8235612207816124cc565b91506020830135612217816124cc565b809150509250929050565b600080600060608486031215612236578081fd5b8335612241816124cc565b92506020840135612251816124cc565b929592945050506040919091013590565b60008060408385031215612274578182fd5b823561227f816124cc565b946020939093013593505050565b60006020828403121561229e578081fd5b5035919050565b600080604083850312156122b7578182fd5b8235915060208301358015158114612217578182fd5b6000806000606084860312156122e1578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156123265785810183015185820160400152820161230a565b818111156123375783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156123d15784516001600160a01b0316835293830193918301916001016123ac565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612405576124056124b6565b500190565b60008261242557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612444576124446124b6565b500290565b60008282101561245b5761245b6124b6565b500390565b600181811c9082168061247457607f821691505b6020821081141561249557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124af576124af6124b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461077557600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206b3cdcd747ccffde0f872c7b21c646b780b2fab45f8bd8c6f4b73570b4a54b6564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506000000000000000000000000f27078599b3cc90e35d6f15c3c8acfe30c49eb71000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000441424c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000441424c3200000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
28737:22911:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38214:232;;;;;;;;;;-1:-1:-1;38214:232:0;;;;;:::i;:::-;;:::i;:::-;;32495:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33480:193;;;;;;;;;;-1:-1:-1;33480:193:0;;;;;:::i;:::-;;:::i;:::-;;;3613:14:1;;3606:22;3588:41;;3576:2;3561:18;33480:193:0;3543:92:1;34979:87:0;;;;;;;;;;-1:-1:-1;35048:10:0;;34979:87;;;9740:25:1;;;9728:2;9713:18;34979:87:0;9695:76:1;29750:41:0;;;;;;;;;;-1:-1:-1;29750:41:0;;;;-1:-1:-1;;;;;29750:41:0;;;;;;-1:-1:-1;;;;;2792:32:1;;;2774:51;;2762:2;2747:18;29750:41:0;2729:102:1;32772:95:0;;;;;;;;;;-1:-1:-1;32852:7:0;;32772:95;;29833:30;;;;;;;;;;-1:-1:-1;29833:30:0;;;;-1:-1:-1;;;;;29833:30:0;;;33681:446;;;;;;;;;;-1:-1:-1;33681:446:0;;;;;:::i;:::-;;:::i;35994:322::-;;;;;;;;;;-1:-1:-1;35994:322:0;;;;;:::i;:::-;;:::i;32681:83::-;;;;;;;;;;-1:-1:-1;32747:9:0;;32681:83;;32747:9;;;;11230:36:1;;11218:2;11203:18;32681:83:0;11185:87:1;36778:477:0;;;;;;;;;;-1:-1:-1;36778:477:0;;;;;:::i;:::-;;:::i;34135:300::-;;;;;;;;;;-1:-1:-1;34135:300:0;;;;;:::i;:::-;;:::i;29523:22::-;;;;;;;;;;;;;;;;35074:421;;;;;;;;;;-1:-1:-1;35074:421:0;;;;;:::i;:::-;;:::i;29673:26::-;;;;;;;;;;;;;;;;38095:111;;;;;;;;;;-1:-1:-1;38095:111:0;;;;;:::i;:::-;;:::i;35503:483::-;;;;;;;;;;-1:-1:-1;35503:483:0;;;;;:::i;:::-;;:::i;29798:28::-;;;;;;;;;;-1:-1:-1;29798:28:0;;;;-1:-1:-1;;;;;29798:28:0;;;29900:33;;;;;;;;;;-1:-1:-1;29900:33:0;;;;-1:-1:-1;;;29900:33:0;;;;;;36324:446;;;;;;;;;;-1:-1:-1;36324:446:0;;;;;:::i;:::-;;:::i;44339:124::-;;;;;;;;;;-1:-1:-1;44339:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;44428:27:0;44404:4;44428:27;;;:18;:27;;;;;;;;;44339:124;29592:28;;;;;;;;;;;;;;;;32875:198;;;;;;;;;;-1:-1:-1;32875:198:0;;;;;:::i;:::-;;:::i;5454:94::-;;;;;;;;;;;;;:::i;38997:334::-;;;;;;;;;;-1:-1:-1;38997:334:0;;;;;:::i;:::-;;:::i;34851:120::-;;;;;;;;;;-1:-1:-1;34851:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;34943:20:0;34919:4;34943:20;;;:11;:20;;;;;;;;;34851:120;4803:87;;;;;;;;;;-1:-1:-1;4849:7:0;4876:6;-1:-1:-1;;;;;4876:6:0;4803:87;;38454:279;;;;;;;;;;-1:-1:-1;38454:279:0;;;;;:::i;:::-;;:::i;32586:87::-;;;;;;;;;;;;;:::i;34443:400::-;;;;;;;;;;-1:-1:-1;34443:400:0;;;;;:::i;:::-;;:::i;33081:199::-;;;;;;;;;;-1:-1:-1;33081:199:0;;;;;:::i;:::-;;:::i;38741:248::-;;;;;;;;;;-1:-1:-1;38741:248:0;;;;;:::i;:::-;;:::i;28918:43::-;;;;;;;;;;;;28952:9;28918:43;;33288:184;;;;;;;;;;-1:-1:-1;33288:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;33437:18:0;;;33405:7;33437:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;33288:184;5703:192;;;;;;;;;;-1:-1:-1;5703:192:0;;;;;:::i;:::-;;:::i;28874:35::-;;;;;;;;;;;;28908:1;28874:35;;38214:232;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;;;;;;;;;38289:7:::1;:19:::0;;;38367:11:::1;::::0;38351:13:::1;::::0;28952:9:::1;::::0;38367:11;38341:23:::1;::::0;38299:9;38341:23:::1;:::i;:::-;:37;;;;:::i;:::-;:48;;38319:119;;;::::0;-1:-1:-1;;;38319:119:0;;6666:2:1;38319:119:0::1;::::0;::::1;6648:21:1::0;6705:2;6685:18;;;6678:30;-1:-1:-1;;;6724:18:1;;;6717:51;6785:18;;38319:119:0::1;6638:171:1::0;38319:119:0::1;38214:232:::0;:::o;32495:83::-;32532:13;32565:5;32558:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32495:83;:::o;33480:193::-;33582:4;33604:39;3601:10;33627:7;33636:6;33604:8;:39::i;:::-;-1:-1:-1;33661:4:0;33480:193;;;;;:::o;33681:446::-;33813:4;33830:36;33840:6;33848:9;33859:6;33830:9;:36::i;:::-;33877:220;33900:6;3601:10;33948:138;34004:6;33948:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33948:19:0;;;;;;:11;:19;;;;;;;;3601:10;33948:33;;;;;;;;;;:37;:138::i;:::-;33877:8;:220::i;:::-;-1:-1:-1;34115:4:0;33681:446;;;;;:::o;35994:322::-;36088:7;36146;;36135;:18;;36113:110;;;;-1:-1:-1;;;36113:110:0;;5089:2:1;36113:110:0;;;5071:21:1;5128:2;5108:18;;;5101:30;5167:34;5147:18;;;5140:62;-1:-1:-1;;;5218:18:1;;;5211:40;5268:19;;36113:110:0;5061:232:1;36113:110:0;36234:19;36256:10;:8;:10::i;:::-;36234:32;-1:-1:-1;36284:24:0;:7;36234:32;36284:11;:24::i;:::-;36277:31;35994:322;-1:-1:-1;;;35994:322:0:o;36778:477::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36858:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36850:60;;;::::0;-1:-1:-1;;;36850:60:0;;6310:2:1;36850:60:0::1;::::0;::::1;6292:21:1::0;6349:2;6329:18;;;6322:30;6388:29;6368:18;;;6361:57;6435:18;;36850:60:0::1;6282:177:1::0;36850:60:0::1;36926:9;36921:327;36945:9;:16:::0;36941:20;::::1;36921:327;;;37003:7;-1:-1:-1::0;;;;;36987:23:0::1;:9;36997:1;36987:12;;;;;;-1:-1:-1::0;;;36987:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36987:12:0::1;:23;36983:254;;;37046:9;37056:16:::0;;:20:::1;::::0;37075:1:::1;::::0;37056:20:::1;:::i;:::-;37046:31;;;;;;-1:-1:-1::0;;;37046:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37031:9:::1;:12:::0;;-1:-1:-1;;;;;37046:31:0;;::::1;::::0;37041:1;;37031:12;::::1;;;-1:-1:-1::0;;;37031:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;37031:46:0::1;-1:-1:-1::0;;;;;37031:46:0;;::::1;;::::0;;37096:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;37135:11:::1;:20:::0;;;;:28;;-1:-1:-1;;37135:28:0::1;::::0;;37182:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;37182:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37182:15:0;;;;;-1:-1:-1;;;;;;37182:15:0::1;::::0;;;;;36921:327:::1;36778:477:::0;:::o;36983:254::-:1;36963:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36921:327;;;;36778:477:::0;:::o;34135:300::-;3601:10;34250:4;34344:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34344:34:0;;;;;;;;;;34250:4;;34272:133;;34322:7;;34344:50;;34383:10;34344:38;:50::i;35074:421::-;3601:10;35126:14;35189:19;;;:11;:19;;;;;;;;35188:20;35166:114;;;;-1:-1:-1;;;35166:114:0;;9383:2:1;35166:114:0;;;9365:21:1;9422:2;9402:18;;;9395:30;9461:34;9441:18;;;9434:62;-1:-1:-1;;;9512:18:1;;;9505:42;9564:19;;35166:114:0;9355:234:1;35166:114:0;35292:15;35323:19;35334:7;35323:10;:19::i;:::-;-1:-1:-1;;;;;;;;35371:15:0;;;;;;:7;:15;;;;;;35291:51;;-1:-1:-1;35371:28:0;;:15;-1:-1:-1;35291:51:0;;-1:-1:-1;;35371:19:0;:28::i;:::-;-1:-1:-1;;;;;35353:15:0;;;;;;:7;:15;;;;;:46;35420:7;;:20;;35432:7;35420:11;:20::i;:::-;35410:7;:30;35464:10;;:23;;35479:7;35464:14;:23::i;:::-;35451:10;:36;-1:-1:-1;;;35074:421:0:o;38095:111::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38164:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38164:34:0::1;38194:4;38164:34;::::0;;38095:111::o;35503:483::-;35621:7;35665;;35654;:18;;35646:62;;;;-1:-1:-1;;;35646:62:0;;7016:2:1;35646:62:0;;;6998:21:1;7055:2;7035:18;;;7028:30;7094:33;7074:18;;;7067:61;7145:18;;35646:62:0;6988:181:1;35646:62:0;35724:17;35719:260;;35759:15;35790:19;35801:7;35790:10;:19::i;:::-;-1:-1:-1;35758:51:0;;-1:-1:-1;35824:14:0;;-1:-1:-1;;;;;;35824:14:0;35719:260;35874:23;35911:19;35922:7;35911:10;:19::i;:::-;-1:-1:-1;35871:59:0;;-1:-1:-1;35945:22:0;;-1:-1:-1;;;;;;35945:22:0;36324:446;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36519:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36518:21;36510:61;;;::::0;-1:-1:-1;;;36510:61:0;;6310:2:1;36510:61:0::1;::::0;::::1;6292:21:1::0;6349:2;6329:18;;;6322:30;6388:29;6368:18;;;6361:57;6435:18;;36510:61:0::1;6282:177:1::0;36510:61:0::1;-1:-1:-1::0;;;;;36586:16:0;::::1;36605:1;36586:16:::0;;;:7:::1;:16;::::0;;;;;:20;36582:109:::1;;-1:-1:-1::0;;;;;36662:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;36642:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;36623:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;36582:109:::1;-1:-1:-1::0;;;;;36701:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;36701:27:0::1;36724:4;36701:27:::0;;::::1;::::0;;;36739:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36739:23:0::1;::::0;;::::1;::::0;;36324:446::o;32875:198::-;-1:-1:-1;;;;;32965:20:0;;32941:7;32965:20;;;:11;:20;;;;;;;;32961:49;;;-1:-1:-1;;;;;;32994:16:0;;;;;:7;:16;;;;;;;32875:198::o;32961:49::-;-1:-1:-1;;;;;33048:16:0;;;;;;:7;:16;;;;;;33028:37;;:19;:37::i;5454:94::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;5519:21:::1;5537:1;5519:9;:21::i;:::-;5454:94::o:0;38997:334::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;39106:31:::1;39131:5;39106:20;39124:1;39106:13;32852:7:::0;;;32772:95;39106:13:::1;:17:::0;::::1;:20::i;:::-;:24:::0;::::1;:31::i;:::-;39095:7;:42;;39073:148;;;::::0;-1:-1:-1;;;39073:148:0;;8553:2:1;39073:148:0::1;::::0;::::1;8535:21:1::0;8592:2;8572:18;;;8565:30;8631:34;8611:18;;;8604:62;8702:26;8682:18;;;8675:54;8746:19;;39073:148:0::1;8525:246:1::0;39073:148:0::1;39232:29;:39:::0;;;39287:36:::1;::::0;9740:25:1;;;39287:36:0::1;::::0;9728:2:1;9713:18;39287:36:0::1;;;;;;;38997:334:::0;:::o;38454:279::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;38564:13:::1;:31:::0;;;38654:11:::1;::::0;38628:7:::1;::::0;28952:9:::1;::::0;38654:11;38628:23:::1;::::0;38580:15;;38628:23:::1;:::i;32586:87::-:0;32625:13;32658:7;32651:14;;;;;:::i;34443:400::-;34563:4;34585:228;3601:10;34635:7;34657:145;34714:15;34657:145;;;;;;;;;;;;;;;;;3601:10;34657:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34657:34:0;;;;;;;;;;;;:38;:145::i;33081:199::-;33186:4;33208:42;3601:10;33232:9;33243:6;33208:9;:42::i;38741:248::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;38824:11:::1;:27:::0;;;38894:13:::1;::::0;38884:7:::1;::::0;28952:9:::1;::::0;38838:13;;38884:23:::1;::::0;38894:13;38884:23:::1;:::i;5703:192::-:0;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5792:22:0;::::1;5784:73;;;::::0;-1:-1:-1;;;5784:73:0;;5500:2:1;5784:73:0::1;::::0;::::1;5482:21:1::0;5539:2;5519:18;;;5512:30;5578:34;5558:18;;;5551:62;-1:-1:-1;;;5629:18:1;;;5622:36;5675:19;;5784:73:0::1;5472:228:1::0;5784:73:0::1;5868:19;5878:8;5868:9;:19::i;10026:98::-:0;10084:7;10111:5;10115:1;10111;:5;:::i;44471:371::-;-1:-1:-1;;;;;44598:19:0;;44590:68;;;;-1:-1:-1;;;44590:68:0;;8978:2:1;44590:68:0;;;8960:21:1;9017:2;8997:18;;;8990:30;9056:34;9036:18;;;9029:62;-1:-1:-1;;;9107:18:1;;;9100:34;9151:19;;44590:68:0;8950:226:1;44590:68:0;-1:-1:-1;;;;;44677:21:0;;44669:68;;;;-1:-1:-1;;;44669:68:0;;5907:2:1;44669:68:0;;;5889:21:1;5946:2;5926:18;;;5919:30;5985:34;5965:18;;;5958:62;-1:-1:-1;;;6036:18:1;;;6029:32;6078:19;;44669:68:0;5879:224:1;44669:68:0;-1:-1:-1;;;;;44750:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44802:32;;9740:25:1;;;44802:32:0;;9713:18:1;44802:32:0;;;;;;;;44471:371;;;:::o;44850:1531::-;-1:-1:-1;;;;;44972:18:0;;44964:68;;;;-1:-1:-1;;;44964:68:0;;8147:2:1;44964:68:0;;;8129:21:1;8186:2;8166:18;;;8159:30;8225:34;8205:18;;;8198:62;-1:-1:-1;;;8276:18:1;;;8269:35;8321:19;;44964:68:0;8119:227:1;44964:68:0;-1:-1:-1;;;;;45051:16:0;;45043:64;;;;-1:-1:-1;;;45043:64:0;;4685:2:1;45043:64:0;;;4667:21:1;4724:2;4704:18;;;4697:30;4763:34;4743:18;;;4736:62;-1:-1:-1;;;4814:18:1;;;4807:33;4857:19;;45043:64:0;4657:225:1;45043:64:0;45135:1;45126:6;:10;45118:64;;;;-1:-1:-1;;;45118:64:0;;7737:2:1;45118:64:0;;;7719:21:1;7776:2;7756:18;;;7749:30;7815:34;7795:18;;;7788:62;-1:-1:-1;;;7866:18:1;;;7859:39;7915:19;;45118:64:0;7709:231:1;45118:64:0;45477:28;45508:24;45526:4;45508:9;:24::i;:::-;45609:29;;45477:55;;-1:-1:-1;45572:66:0;;;;;;;45667:53;;-1:-1:-1;45704:16:0;;-1:-1:-1;;;45704:16:0;;;;45703:17;45667:53;:91;;;;-1:-1:-1;45745:13:0;;-1:-1:-1;;;;;45737:21:0;;;45745:13;;45737:21;;45667:91;:129;;;;-1:-1:-1;45775:21:0;;-1:-1:-1;;;45775:21:0;;;;45667:129;45649:318;;;45846:29;;45823:52;;45919:36;45934:20;45919:14;:36::i;:::-;-1:-1:-1;;;;;46160:24:0;;46040:12;46160:24;;;:18;:24;;;;;;46055:4;;46160:24;;;:50;;-1:-1:-1;;;;;;46188:22:0;;;;;;:18;:22;;;;;;;;46160:50;46156:98;;;-1:-1:-1;46237:5:0;46156:98;46332:41;46347:4;46353:2;46357:6;46365:7;46332:14;:41::i;:::-;44850:1531;;;;;;:::o;11168:240::-;11288:7;11349:12;11341:6;;;;11333:29;;;;-1:-1:-1;;;11333:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11384:5:0;;;11168:240::o;41675:164::-;41717:7;41738:15;41755;41774:19;:17;:19::i;:::-;41737:56;;-1:-1:-1;41737:56:0;-1:-1:-1;41811:20:0;41737:56;;41811:11;:20::i;:::-;41804:27;;;;41675:164;:::o;8889:98::-;8947:7;8974:5;8978:1;8974;:5;:::i;39587:841::-;39687:7;39709;39731;39753;39775;39797;39819;39869:23;39907:12;39934:18;39967:16;39997:20;40009:7;39997:11;:20::i;:::-;39854:163;;;;;;;;40029:15;40046:23;40071:12;40087:136;40113:7;40135:4;40154:10;40179:8;40202:10;:8;:10::i;:::-;40087:11;:136::i;:::-;40028:195;;-1:-1:-1;40028:195:0;-1:-1:-1;40028:195:0;-1:-1:-1;40327:15:0;;-1:-1:-1;40357:4:0;;-1:-1:-1;40376:10:0;;-1:-1:-1;40401:8:0;-1:-1:-1;;;;39587:841:0;;;;;;;;;:::o;9270:98::-;9328:7;9355:5;9359:1;9355;:5;:::i;5903:173::-;5959:16;5978:6;;-1:-1:-1;;;;;5995:17:0;;;-1:-1:-1;;;;;;5995:17:0;;;;;;6028:40;;5978:6;;;;;;;6028:40;;5959:16;6028:40;5903:173;;:::o;9627:98::-;9685:7;9712:5;9716:1;9712;:5;:::i;46389:977::-;30289:16;:23;;-1:-1:-1;;;;30289:23:0;-1:-1:-1;;;30289:23:0;;;;46540:27:::1;:20:::0;46565:1:::1;46540:24;:27::i;:::-;46525:42:::0;-1:-1:-1;46578:17:0::1;46598:30;:20:::0;46525:42;46598:24:::1;:30::i;:::-;46578:50:::0;-1:-1:-1;46931:21:0::1;46997:22;47014:4:::0;46997:16:::1;:22::i;:::-;47150:18;47171:41;:21;47197:14:::0;47171:25:::1;:41::i;:::-;47150:62;;47262:35;47275:9;47286:10;47262:12;:35::i;:::-;47315:43;::::0;;10966:25:1;;;11022:2;11007:18;;11000:34;;;11050:18;;;11043:34;;;47315:43:0::1;::::0;10954:2:1;10939:18;47315:43:0::1;;;;;;;-1:-1:-1::0;;30335:16:0;:24;;-1:-1:-1;;;;30335:24:0;;;-1:-1:-1;;;46389:977:0:o;48573:838::-;48729:7;48724:28;;48738:14;43969:7;;;43951:15;:25;44011:13;;;43987:21;:37;44057:11;;;44035:19;:33;-1:-1:-1;44081:11:0;;;;44103:17;;;;44131:15;43908:246;48738:14;-1:-1:-1;;;;;48769:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48793:22:0;;;;;;:11;:22;;;;;;;;48792:23;48769:46;48765:597;;;48832:48;48854:6;48862:9;48873:6;48832:21;:48::i;:::-;48765:597;;;-1:-1:-1;;;;;48903:19:0;;;;;;:11;:19;;;;;;;;48902:20;:46;;;;-1:-1:-1;;;;;;48926:22:0;;;;;;:11;:22;;;;;;;;48902:46;48898:464;;;48965:46;48985:6;48993:9;49004:6;48965:19;:46::i;48898:464::-;-1:-1:-1;;;;;49034:19:0;;;;;;:11;:19;;;;;;;;49033:20;:47;;;;-1:-1:-1;;;;;;49058:22:0;;;;;;:11;:22;;;;;;;;49057:23;49033:47;49029:333;;;49097:44;49115:6;49123:9;49134:6;49097:17;:44::i;49029:333::-;-1:-1:-1;;;;;49163:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49186:22:0;;;;;;:11;:22;;;;;;;;49163:45;49159:203;;;49225:48;49247:6;49255:9;49266:6;49225:21;:48::i;49159:203::-;49306:44;49324:6;49332:9;49343:6;49306:17;:44::i;:::-;49379:7;49374:29;;49388:15;44216;;44206:7;:25;44258:21;;44242:13;:37;44304:19;;44290:11;:33;44162:169;49388:15;48573:838;;;;:::o;41847:605::-;41945:7;;41981;;41898;;;;;41999:338;42023:9;:16;42019:20;;41999:338;;;42107:7;42083;:21;42091:9;42101:1;42091:12;;;;;;-1:-1:-1;;;42091:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42091:12:0;42083:21;;;;;;;;;;;;;:31;;:83;;;42159:7;42135;:21;42143:9;42153:1;42143:12;;;;;;-1:-1:-1;;;42143:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42143:12:0;42135:21;;;;;;;;;;;;;:31;42083:83;42061:146;;;42190:7;;42199;;42182:25;;;;;;;41847:605;;:::o;42061:146::-;42232:34;42244:7;:21;42252:9;42262:1;42252:12;;;;;;-1:-1:-1;;;42252:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42252:12:0;42244:21;;;;;;;;;;;;;42232:7;;:11;:34::i;:::-;42222:44;;42291:34;42303:7;:21;42311:9;42321:1;42311:12;;;;;;-1:-1:-1;;;42311:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42311:12:0;42303:21;;;;;;;;;;;;;42291:7;;:11;:34::i;:::-;42281:44;-1:-1:-1;42041:3:0;;;;:::i;:::-;;;;41999:338;;;-1:-1:-1;42373:7:0;;42361;;:20;;:11;:20::i;:::-;42351:7;:30;42347:61;;;42391:7;;42400;;42383:25;;;;;;41847:605;;:::o;42347:61::-;42427:7;;42436;;-1:-1:-1;41847:605:0;-1:-1:-1;41847:605:0:o;40436:549::-;40537:7;40559;40581;40603;40638:12;40653:24;40669:7;40653:15;:24::i;:::-;40638:39;;40688:18;40709:30;40731:7;40709:21;:30::i;:::-;40688:51;;40750:19;40772:28;40792:7;40772:19;:28::i;:::-;40750:50;-1:-1:-1;40811:23:0;40837:74;40750:50;40837:33;40859:10;40837:33;:7;40849:4;40837:11;:17::i;:::-;:21;;:33::i;:74::-;40811:100;40947:4;;-1:-1:-1;40953:10:0;;-1:-1:-1;40953:10:0;-1:-1:-1;40436:549:0;;-1:-1:-1;;;40436:549:0:o;40993:674::-;41219:7;;;;41316:24;:7;41328:11;41316;:24::i;:::-;41298:42;-1:-1:-1;41351:12:0;41366:21;:4;41375:11;41366:8;:21::i;:::-;41351:36;-1:-1:-1;41398:18:0;41419:27;:10;41434:11;41419:14;:27::i;:::-;41398:48;-1:-1:-1;41457:16:0;41476:25;:8;41489:11;41476:12;:25::i;:::-;41457:44;-1:-1:-1;41512:23:0;41538:71;41457:44;41538:33;41560:10;41538:33;:7;41550:4;41538:11;:17::i;:71::-;41628:7;;;;-1:-1:-1;41654:4:0;;-1:-1:-1;40993:674:0;;-1:-1:-1;;;;;;;;;40993:674:0:o;47374:589::-;47524:16;;;47538:1;47524:16;;;;;;;;47500:21;;47524:16;;;;;;;;;;-1:-1:-1;47524:16:0;47500:40;;47569:4;47551;47556:1;47551:7;;;;;;-1:-1:-1;;;47551:7:0;;;;;;;;;-1:-1:-1;;;;;47551:23:0;;;:7;;;;;;;;;;:23;;;;47595:15;;:22;;;-1:-1:-1;;;47595:22:0;;;;:15;;;;;:20;;:22;;;;;47551:7;;47595:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47585:4;47590:1;47585:7;;;;;;-1:-1:-1;;;47585:7:0;;;;;;;;;-1:-1:-1;;;;;47585:32:0;;;:7;;;;;;;;;:32;47662:15;;47630:62;;47647:4;;47662:15;47680:11;47630:8;:62::i;:::-;47731:15;;:224;;-1:-1:-1;;;47731:224:0;;-1:-1:-1;;;;;47731:15:0;;;;:66;;:224;;47812:11;;47731:15;;47882:4;;47909;;47929:15;;47731:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47971:521;48151:15;;48119:62;;48136:4;;-1:-1:-1;;;;;48151:15:0;48169:11;48119:8;:62::i;:::-;48224:15;;:260;;-1:-1:-1;;;48224:260:0;;48296:4;48224:260;;;3177:34:1;3227:18;;;3220:34;;;48224:15:0;3270:18:1;;;3263:34;;;3313:18;;;3306:34;48436:6:0;3356:19:1;;;3349:44;48458:15:0;3409:19:1;;;3402:35;-1:-1:-1;;;;;48224:15:0;;;;:31;;48263:9;;3111:19:1;;48224:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47971:521;;:::o;50892:753::-;51043:15;51073:23;51111:12;51138:23;51176:12;51203:18;51236:16;51266:19;51277:7;51266:10;:19::i;:::-;51028:257;;;;;;;;;;;;;;51314:28;51334:7;51314;:15;51322:6;-1:-1:-1;;;;;51314:15:0;-1:-1:-1;;;;;51314:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;51296:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51371:7;:15;;;;:28;;51391:7;51371:19;:28::i;:::-;-1:-1:-1;;;;;51353:15:0;;;;;;;:7;:15;;;;;;:46;;;;51431:18;;;;;;;:39;;51454:15;51431:22;:39::i;:::-;-1:-1:-1;;;;;51410:18:0;;;;;;:7;:18;;;;;:60;51481:26;51496:10;51481:14;:26::i;:::-;51518:25;51534:8;51518:15;:25::i;:::-;51554:23;51566:4;51572;51554:11;:23::i;:::-;51610:9;-1:-1:-1;;;;;51593:44:0;51602:6;-1:-1:-1;;;;;51593:44:0;;51621:15;51593:44;;;;9740:25:1;;9728:2;9713:18;;9695:76;51593:44:0;;;;;;;;50892:753;;;;;;;;;;:::o;50119:765::-;50268:15;50298:23;50336:12;50363:23;50401:12;50428:18;50461:16;50491:19;50502:7;50491:10;:19::i;:::-;50253:257;;;;;;;;;;;;;;50539:28;50559:7;50539;:15;50547:6;-1:-1:-1;;;;;50539:15:0;-1:-1:-1;;;;;50539:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;50521:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50599:18;;;;;:7;:18;;;;;:39;;50622:15;50599:22;:39::i;:::-;-1:-1:-1;;;;;50578:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50670:7;:18;;;;:39;;50693:15;50670:22;:39::i;49419:692::-;49566:15;49596:23;49634:12;49661:23;49699:12;49726:18;49759:16;49789:19;49800:7;49789:10;:19::i;:::-;49551:257;;;;;;;;;;;;;;49837:28;49857:7;49837;:15;49845:6;-1:-1:-1;;;;;49837:15:0;-1:-1:-1;;;;;49837:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;37263:824::-;37414:15;37444:23;37482:12;37509:23;37547:12;37574:18;37607:16;37637:19;37648:7;37637:10;:19::i;:::-;37399:257;;;;;;;;;;;;;;37685:28;37705:7;37685;:15;37693:6;-1:-1:-1;;;;;37685:15:0;-1:-1:-1;;;;;37685:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;37667:15:0;;;;;;:7;:15;;;;;;;;:46;;;;37742:7;:15;;;;:28;;37762:7;37742:19;:28::i;43356:130::-;43420:7;43447:31;43472:5;43447:20;43459:7;;43447;:11;;:20;;;;:::i;43494:174::-;43591:7;43623:37;43654:5;43623:26;43635:13;;43623:7;:11;;:26;;;;:::i;43676:224::-;43800:15;;43771:7;;-1:-1:-1;;;;;43800:15:0;43796:43;;-1:-1:-1;43838:1:0;;43676:224;-1:-1:-1;43676:224:0:o;43796:43::-;43857:35;43886:5;43857:24;43869:11;;43857:7;:11;;:24;;;;:::i;42460:355::-;42523:19;42545:10;:8;:10::i;:::-;42523:32;-1:-1:-1;42566:18:0;42587:27;:10;42523:32;42587:14;:27::i;:::-;42666:4;42650:22;;;;:7;:22;;;;;;42566:48;;-1:-1:-1;42650:38:0;;42566:48;42650:26;:38::i;:::-;42641:4;42625:22;;;;:7;:22;;;;;;;;:63;;;;42703:11;:26;;;;;;42699:108;;;42785:4;42769:22;;;;:7;:22;;;;;;:38;;42796:10;42769:26;:38::i;:::-;42760:4;42744:22;;;;:7;:22;;;;;:63;42699:108;42460:355;;;:::o;42823:525::-;42889:12;;42885:456;;42918:19;42940:10;:8;:10::i;:::-;42918:32;-1:-1:-1;42965:16:0;42984:25;:8;42918:32;42984:12;:25::i;:::-;43059:15;;-1:-1:-1;;;;;43059:15:0;43051:24;;;;:7;:24;;;;;;42965:44;;-1:-1:-1;43051:38:0;;42965:44;43051:28;:38::i;:::-;43032:15;;;-1:-1:-1;;;;;43032:15:0;;;43024:24;;;;:7;:24;;;;;;;;:65;;;;43120:15;;;;;43108:28;;:11;:28;;;;;;;43104:156;;;43190:15;;-1:-1:-1;;;;;43190:15:0;43182:24;;;;:7;:24;;;;;;:78;;43233:8;43182:28;:78::i;:::-;43163:15;;-1:-1:-1;;;;;43163:15:0;43155:24;;;;:7;:24;;;;;:105;43104:156;43303:15;;-1:-1:-1;;;;;43303:15:0;3601:10;-1:-1:-1;;;;;43280:49:0;;43320:8;43280:49;;;;9740:25:1;;9728:2;9713:18;;9695:76;39432:147:0;39510:7;;:17;;39522:4;39510:11;:17::i;:::-;39500:7;:27;39551:10;;:20;;39566:4;39551:14;:20::i;:::-;39538:10;:33;-1:-1:-1;;39432:147:0:o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:325::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1566:6;1558;1551:22;1513:2;1610:9;1597:23;1629:31;1654:5;1629:31;:::i;:::-;1679:5;1731:2;1716:18;;;;1703:32;;-1:-1:-1;;;1503:238:1:o;1746:190::-;1805:6;1858:2;1846:9;1837:7;1833:23;1829:32;1826:2;;;1879:6;1871;1864:22;1826:2;-1:-1:-1;1907:23:1;;1816:120;-1:-1:-1;1816:120:1:o;1941:361::-;2006:6;2014;2067:2;2055:9;2046:7;2042:23;2038:32;2035:2;;;2088:6;2080;2073:22;2035:2;2129:9;2116:23;2106:33;;2189:2;2178:9;2174:18;2161:32;2236:5;2229:13;2222:21;2215:5;2212:32;2202:2;;2263:6;2255;2248:22;2307:316;2395:6;2403;2411;2464:2;2452:9;2443:7;2439:23;2435:32;2432:2;;;2485:6;2477;2470:22;2432:2;2519:9;2513:16;2503:26;;2569:2;2558:9;2554:18;2548:25;2538:35;;2613:2;2602:9;2598:18;2592:25;2582:35;;2422:201;;;;;:::o;3875:603::-;3987:4;4016:2;4045;4034:9;4027:21;4077:6;4071:13;4120:6;4115:2;4104:9;4100:18;4093:34;4145:4;4158:140;4172:6;4169:1;4166:13;4158:140;;;4267:14;;;4263:23;;4257:30;4233:17;;;4252:2;4229:26;4222:66;4187:10;;4158:140;;;4316:6;4313:1;4310:13;4307:2;;;4386:4;4381:2;4372:6;4361:9;4357:22;4353:31;4346:45;4307:2;-1:-1:-1;4462:2:1;4441:15;-1:-1:-1;;4437:29:1;4422:45;;;;4469:2;4418:54;;3996:482;-1:-1:-1;;;3996:482:1:o;7174:356::-;7376:2;7358:21;;;7395:18;;;7388:30;7454:34;7449:2;7434:18;;7427:62;7521:2;7506:18;;7348:182::o;9776:983::-;10038:4;10086:3;10075:9;10071:19;10117:6;10106:9;10099:25;10143:2;10181:6;10176:2;10165:9;10161:18;10154:34;10224:3;10219:2;10208:9;10204:18;10197:31;10248:6;10283;10277:13;10314:6;10306;10299:22;10352:3;10341:9;10337:19;10330:26;;10391:2;10383:6;10379:15;10365:29;;10412:4;10425:195;10439:6;10436:1;10433:13;10425:195;;;10504:13;;-1:-1:-1;;;;;10500:39:1;10488:52;;10595:15;;;;10560:12;;;;10536:1;10454:9;10425:195;;;-1:-1:-1;;;;;;;10676:32:1;;;;10671:2;10656:18;;10649:60;-1:-1:-1;;;10740:3:1;10725:19;10718:35;10637:3;10047:712;-1:-1:-1;;;10047:712:1:o;11277:128::-;11317:3;11348:1;11344:6;11341:1;11338:13;11335:2;;;11354:18;;:::i;:::-;-1:-1:-1;11390:9:1;;11325:80::o;11410:217::-;11450:1;11476;11466:2;;-1:-1:-1;;;11501:31:1;;11555:4;11552:1;11545:15;11583:4;11508:1;11573:15;11466:2;-1:-1:-1;11612:9:1;;11456:171::o;11632:168::-;11672:7;11738:1;11734;11730:6;11726:14;11723:1;11720:21;11715:1;11708:9;11701:17;11697:45;11694:2;;;11745:18;;:::i;:::-;-1:-1:-1;11785:9:1;;11684:116::o;11805:125::-;11845:4;11873:1;11870;11867:8;11864:2;;;11878:18;;:::i;:::-;-1:-1:-1;11915:9:1;;11854:76::o;11935:380::-;12014:1;12010:12;;;;12057;;;12078:2;;12132:4;12124:6;12120:17;12110:27;;12078:2;12185;12177:6;12174:14;12154:18;12151:38;12148:2;;;12231:10;12226:3;12222:20;12219:1;12212:31;12266:4;12263:1;12256:15;12294:4;12291:1;12284:15;12148:2;;11990:325;;;:::o;12320:135::-;12359:3;-1:-1:-1;;12380:17:1;;12377:2;;;12400:18;;:::i;:::-;-1:-1:-1;12447:1:1;12436:13;;12367:88::o;12460:127::-;12521:10;12516:3;12512:20;12509:1;12502:31;12552:4;12549:1;12542:15;12576:4;12573:1;12566:15;12592:131;-1:-1:-1;;;;;12667:31:1;;12657:42;;12647:2;;12713:1;12710;12703:12
Metadata Hash
6b3cdcd747ccffde0f872c7b21c646b780b2fab45f8bd8c6f4b73570b4a54b65
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.