ERC-20
Overview
Max Total Supply
1,000,000,000,000 SIS
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
450,000,000 SISValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
StepSisterDoge
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-02 */ /* */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // 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, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract StepSisterDoge is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; 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 = 1000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Step Sister Doge"; string private _symbol = "SIS"; uint8 private _decimals = 9; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 5; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 public _maxTxAmount = 1000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 300 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // 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), _msgSender(), _tTotal); } 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) = _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); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //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 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); 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 calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } 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"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // 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)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } 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 owner(), 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) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _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) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _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) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","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":"includeInFee","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":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","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
683635c9adc5dea000006009556818ce40f6d0219fffff19600a55610100604052601060c08190526f537465702053697374657220446f676560801b60e09081526200004f91600c9190620003b4565b506040805180820190915260038082526253495360e81b60209092019182526200007c91600d91620003b4565b50600e805460ff191660091790556005600f819055601081905560118190556012556013805461ff0019169055683635c9adc5dea00000601455670429d069189e0000601555348015620000cf57600080fd5b506000620000dc620003a1565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a546003600062000137620003a1565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ae57600080fd5b505afa158015620001c3573d6000803e3d6000fd5b505050506040513d6020811015620001da57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200022b57600080fd5b505afa15801562000240573d6000803e3d6000fd5b505050506040513d60208110156200025757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002aa57600080fd5b505af1158015620002bf573d6000803e3d6000fd5b505050506040513d6020811015620002d657600080fd5b50516001600160601b0319606091821b811660a0529082901b1660805260016006600062000303620003a5565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200034d620003a1565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000450565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f757805160ff191683800117855562000427565b8280016001018555821562000427579182015b82811115620004275782518255916020019190600101906200040a565b506200043592915062000439565b5090565b5b808211156200043557600081556001016200043a565b60805160601c60a05160601c61280e6200049860003980610e4552806117cd52508061092c5280611f8952806120415280612068528061214e5280612175525061280e6000f3fe6080604052600436106101fd5760003560e01c806352390c021161010d5780638ee88c53116100a0578063c49b9a801161006f578063c49b9a801461071c578063d543dbeb14610748578063dd62ed3e14610772578063ea2f0b37146107ad578063f2fde38b146107e057610204565b80638ee88c531461066b57806395d89b4114610695578063a457c2d7146106aa578063a9059cbb146106e357610204565b8063715018a6116100dc578063715018a6146105f95780637d1db4a51461060e57806388f82020146106235780638da5cb5b1461065657610204565b806352390c021461054b5780635342acb41461057e5780636bc87c3a146105b157806370a08231146105c657610204565b8063313ce567116101905780633bd5d1731161015f5780633bd5d17314610492578063437823ec146104bc5780634549b039146104ef57806349bd5a5e146105215780634a74bb021461053657610204565b8063313ce567146103e65780633685d4191461041157806339509351146104445780633b124fe71461047d57610204565b80631694505e116101cc5780631694505e1461033357806318160ddd1461036457806323b872dd146103795780632d838119146103bc57610204565b8063061c82d01461020957806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c57610204565b3661020457005b600080fd5b34801561021557600080fd5b506102336004803603602081101561022c57600080fd5b5035610813565b005b34801561024157600080fd5b5061024a610870565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b038135169060200135610906565b604080519115158252519081900360200190f35b34801561031857600080fd5b50610321610924565b60408051918252519081900360200190f35b34801561033f57600080fd5b5061034861092a565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b5061032161094e565b34801561038557600080fd5b506102f86004803603606081101561039c57600080fd5b506001600160a01b03813581169160208101359091169060400135610954565b3480156103c857600080fd5b50610321600480360360208110156103df57600080fd5b50356109db565b3480156103f257600080fd5b506103fb610a3d565b6040805160ff9092168252519081900360200190f35b34801561041d57600080fd5b506102336004803603602081101561043457600080fd5b50356001600160a01b0316610a46565b34801561045057600080fd5b506102f86004803603604081101561046757600080fd5b506001600160a01b038135169060200135610c07565b34801561048957600080fd5b50610321610c55565b34801561049e57600080fd5b50610233600480360360208110156104b557600080fd5b5035610c5b565b3480156104c857600080fd5b50610233600480360360208110156104df57600080fd5b50356001600160a01b0316610d35565b3480156104fb57600080fd5b506103216004803603604081101561051257600080fd5b50803590602001351515610db1565b34801561052d57600080fd5b50610348610e43565b34801561054257600080fd5b506102f8610e67565b34801561055757600080fd5b506102336004803603602081101561056e57600080fd5b50356001600160a01b0316610e75565b34801561058a57600080fd5b506102f8600480360360208110156105a157600080fd5b50356001600160a01b0316610ffb565b3480156105bd57600080fd5b50610321611019565b3480156105d257600080fd5b50610321600480360360208110156105e957600080fd5b50356001600160a01b031661101f565b34801561060557600080fd5b50610233611081565b34801561061a57600080fd5b50610321611123565b34801561062f57600080fd5b506102f86004803603602081101561064657600080fd5b50356001600160a01b0316611129565b34801561066257600080fd5b50610348611147565b34801561067757600080fd5b506102336004803603602081101561068e57600080fd5b5035611156565b3480156106a157600080fd5b5061024a6111b3565b3480156106b657600080fd5b506102f8600480360360408110156106cd57600080fd5b506001600160a01b038135169060200135611214565b3480156106ef57600080fd5b506102f86004803603604081101561070657600080fd5b506001600160a01b03813516906020013561127c565b34801561072857600080fd5b506102336004803603602081101561073f57600080fd5b50351515611290565b34801561075457600080fd5b506102336004803603602081101561076b57600080fd5b5035611337565b34801561077e57600080fd5b506103216004803603604081101561079557600080fd5b506001600160a01b03813581169160200135166113b5565b3480156107b957600080fd5b50610233600480360360208110156107d057600080fd5b50356001600160a01b03166113e0565b3480156107ec57600080fd5b506102336004803603602081101561080357600080fd5b50356001600160a01b0316611459565b61081b611551565b6000546001600160a01b0390811691161461086b576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091a610913611551565b8484611555565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6000610961848484611641565b6109d18461096d611551565b6109cc856040518060600160405280602881526020016126ce602891396001600160a01b038a166000908152600560205260408120906109ab611551565b6001600160a01b031681526020810191909152604001600020549190611887565b611555565b5060019392505050565b6000600a54821115610a1e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612613602a913960400191505060405180910390fd5b6000610a2861191e565b9050610a348382611941565b9150505b919050565b600e5460ff1690565b610a4e611551565b6000546001600160a01b03908116911614610a9e576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610b0b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610c0357816001600160a01b031660088281548110610b2f57fe5b6000918252602090912001546001600160a01b03161415610bfb57600880546000198101908110610b5c57fe5b600091825260209091200154600880546001600160a01b039092169183908110610b8257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610bd457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c03565b600101610b0e565b5050565b600061091a610c14611551565b846109cc8560056000610c25611551565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061198a565b600f5481565b6000610c65611551565b6001600160a01b03811660009081526007602052604090205490915060ff1615610cc05760405162461bcd60e51b815260040180806020018281038252602c815260200180612788602c913960400191505060405180910390fd5b6000610ccb836119e4565b505050506001600160a01b038416600090815260036020526040902054919250610cf791905082611a33565b6001600160a01b038316600090815260036020526040902055600a54610d1d9082611a33565b600a55600b54610d2d908461198a565b600b55505050565b610d3d611551565b6000546001600160a01b03908116911614610d8d576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610e0a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e29576000610e1a846119e4565b5093955061091e945050505050565b6000610e34846119e4565b5092955061091e945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601354610100900460ff1681565b610e7d611551565b6000546001600160a01b03908116911614610ecd576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610f3b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415610f95576001600160a01b038116600090815260036020526040902054610f7b906109db565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561105f57506001600160a01b038116600090815260046020526040902054610a38565b6001600160a01b03821660009081526003602052604090205461091e906109db565b611089611551565b6000546001600160a01b039081169116146110d9576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61115e611551565b6000546001600160a01b039081169116146111ae576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b600061091a611221611551565b846109cc856040518060600160405280602581526020016127b4602591396005600061124b611551565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611887565b600061091a611289611551565b8484611641565b611298611551565b6000546001600160a01b039081169116146112e8576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61133f611551565b6000546001600160a01b0390811691161461138f576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6113af60646113a983600954611a7590919063ffffffff16565b90611941565b60145550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6113e8611551565b6000546001600160a01b03908116911614611438576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611461611551565b6000546001600160a01b039081169116146114b1576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166114f65760405162461bcd60e51b815260040180806020018281038252602681526020018061263d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661159a5760405162461bcd60e51b81526004018080602001828103825260248152602001806127646024913960400191505060405180910390fd5b6001600160a01b0382166115df5760405162461bcd60e51b81526004018080602001828103825260228152602001806126636022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166116865760405162461bcd60e51b815260040180806020018281038252602581526020018061273f6025913960400191505060405180910390fd5b6001600160a01b0382166116cb5760405162461bcd60e51b81526004018080602001828103825260238152602001806125f06023913960400191505060405180910390fd5b6000811161170a5760405162461bcd60e51b81526004018080602001828103825260298152602001806127166029913960400191505060405180910390fd5b611712611147565b6001600160a01b0316836001600160a01b03161415801561174c5750611736611147565b6001600160a01b0316826001600160a01b031614155b15611792576014548111156117925760405162461bcd60e51b81526004018080602001828103825260288152602001806126856028913960400191505060405180910390fd5b600061179d3061101f565b905060145481106117ad57506014545b601554811080159081906117c4575060135460ff16155b801561180257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156118155750601354610100900460ff165b1561182857601554915061182882611ace565b6001600160a01b03851660009081526006602052604090205460019060ff168061186a57506001600160a01b03851660009081526006602052604090205460ff165b15611873575060005b61187f86868684611b6b565b505050505050565b600081848411156119165760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118db5781810151838201526020016118c3565b50505050905090810190601f1680156119085780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061192b611cdf565b909250905061193a8282611941565b9250505090565b600061198383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e42565b9392505050565b600082820183811015611983576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006119fb8a611ea7565b9250925092506000806000611a198d8686611a1461191e565b611ee9565b919f909e50909c50959a5093985091965092945050505050565b600061198383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611887565b600082611a845750600061091e565b82820282848281611a9157fe5b04146119835760405162461bcd60e51b81526004018080602001828103825260218152602001806126ad6021913960400191505060405180910390fd5b6013805460ff191660011790556000611ae8826002611941565b90506000611af68383611a33565b905047611b0283611f39565b6000611b0e4783611a33565b9050611b1a8382612148565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611b7857611b78612246565b6001600160a01b03841660009081526007602052604090205460ff168015611bb957506001600160a01b03831660009081526007602052604090205460ff16155b15611bce57611bc9848484612278565b611ccc565b6001600160a01b03841660009081526007602052604090205460ff16158015611c0f57506001600160a01b03831660009081526007602052604090205460ff165b15611c1f57611bc984848461239c565b6001600160a01b03841660009081526007602052604090205460ff16158015611c6157506001600160a01b03831660009081526007602052604090205460ff16155b15611c7157611bc9848484612445565b6001600160a01b03841660009081526007602052604090205460ff168015611cb157506001600160a01b03831660009081526007602052604090205460ff165b15611cc157611bc9848484612489565b611ccc848484612445565b80611cd957611cd96124fc565b50505050565b600a546009546000918291825b600854811015611e1057826003600060088481548110611d0857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611d6d5750816004600060088481548110611d4657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611d8457600a5460095494509450505050611e3e565b611dc46003600060088481548110611d9857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611a33565b9250611e066004600060088481548110611dda57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611a33565b9150600101611cec565b50600954600a54611e2091611941565b821015611e3857600a54600954935093505050611e3e565b90925090505b9091565b60008183611e915760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156118db5781810151838201526020016118c3565b506000838581611e9d57fe5b0495945050505050565b600080600080611eb68561250a565b90506000611ec386612526565b90506000611edb82611ed58986611a33565b90611a33565b979296509094509092505050565b6000808080611ef88886611a75565b90506000611f068887611a75565b90506000611f148888611a75565b90506000611f2682611ed58686611a33565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611f6757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611fe057600080fd5b505afa158015611ff4573d6000803e3d6000fd5b505050506040513d602081101561200a57600080fd5b505181518290600190811061201b57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612066307f000000000000000000000000000000000000000000000000000000000000000084611555565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561210b5781810151838201526020016120f3565b505050509050019650505050505050600060405180830381600087803b15801561213457600080fd5b505af115801561187f573d6000803e3d6000fd5b612173307f000000000000000000000000000000000000000000000000000000000000000084611555565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806121b0611147565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b50505050506040513d6060811015611cd957600080fd5b600f541580156122565750601154155b1561226057612276565b600f805460105560118054601255600091829055555b565b60008060008060008061228a876119e4565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506122bc9088611a33565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546122eb9087611a33565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461231a908661198a565b6001600160a01b03891660009081526003602052604090205561233c81612542565b61234684836125cb565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806123ae876119e4565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506123e09087611a33565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612416908461198a565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461231a908661198a565b600080600080600080612457876119e4565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506122eb9087611a33565b60008060008060008061249b876119e4565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506124cd9088611a33565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546123e09087611a33565b601054600f55601254601155565b600061091e60646113a9600f5485611a7590919063ffffffff16565b600061091e60646113a960115485611a7590919063ffffffff16565b600061254c61191e565b9050600061255a8383611a75565b30600090815260036020526040902054909150612577908261198a565b3060009081526003602090815260408083209390935560079052205460ff16156125c657306000908152600460205260409020546125b5908461198a565b306000908152600460205260409020555b505050565b600a546125d89083611a33565b600a55600b546125e8908261198a565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ee1430a10a0547385602e655f37b9244805819f4a664a711f19e3e6d3b092a264736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806352390c021161010d5780638ee88c53116100a0578063c49b9a801161006f578063c49b9a801461071c578063d543dbeb14610748578063dd62ed3e14610772578063ea2f0b37146107ad578063f2fde38b146107e057610204565b80638ee88c531461066b57806395d89b4114610695578063a457c2d7146106aa578063a9059cbb146106e357610204565b8063715018a6116100dc578063715018a6146105f95780637d1db4a51461060e57806388f82020146106235780638da5cb5b1461065657610204565b806352390c021461054b5780635342acb41461057e5780636bc87c3a146105b157806370a08231146105c657610204565b8063313ce567116101905780633bd5d1731161015f5780633bd5d17314610492578063437823ec146104bc5780634549b039146104ef57806349bd5a5e146105215780634a74bb021461053657610204565b8063313ce567146103e65780633685d4191461041157806339509351146104445780633b124fe71461047d57610204565b80631694505e116101cc5780631694505e1461033357806318160ddd1461036457806323b872dd146103795780632d838119146103bc57610204565b8063061c82d01461020957806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c57610204565b3661020457005b600080fd5b34801561021557600080fd5b506102336004803603602081101561022c57600080fd5b5035610813565b005b34801561024157600080fd5b5061024a610870565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b038135169060200135610906565b604080519115158252519081900360200190f35b34801561031857600080fd5b50610321610924565b60408051918252519081900360200190f35b34801561033f57600080fd5b5061034861092a565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b5061032161094e565b34801561038557600080fd5b506102f86004803603606081101561039c57600080fd5b506001600160a01b03813581169160208101359091169060400135610954565b3480156103c857600080fd5b50610321600480360360208110156103df57600080fd5b50356109db565b3480156103f257600080fd5b506103fb610a3d565b6040805160ff9092168252519081900360200190f35b34801561041d57600080fd5b506102336004803603602081101561043457600080fd5b50356001600160a01b0316610a46565b34801561045057600080fd5b506102f86004803603604081101561046757600080fd5b506001600160a01b038135169060200135610c07565b34801561048957600080fd5b50610321610c55565b34801561049e57600080fd5b50610233600480360360208110156104b557600080fd5b5035610c5b565b3480156104c857600080fd5b50610233600480360360208110156104df57600080fd5b50356001600160a01b0316610d35565b3480156104fb57600080fd5b506103216004803603604081101561051257600080fd5b50803590602001351515610db1565b34801561052d57600080fd5b50610348610e43565b34801561054257600080fd5b506102f8610e67565b34801561055757600080fd5b506102336004803603602081101561056e57600080fd5b50356001600160a01b0316610e75565b34801561058a57600080fd5b506102f8600480360360208110156105a157600080fd5b50356001600160a01b0316610ffb565b3480156105bd57600080fd5b50610321611019565b3480156105d257600080fd5b50610321600480360360208110156105e957600080fd5b50356001600160a01b031661101f565b34801561060557600080fd5b50610233611081565b34801561061a57600080fd5b50610321611123565b34801561062f57600080fd5b506102f86004803603602081101561064657600080fd5b50356001600160a01b0316611129565b34801561066257600080fd5b50610348611147565b34801561067757600080fd5b506102336004803603602081101561068e57600080fd5b5035611156565b3480156106a157600080fd5b5061024a6111b3565b3480156106b657600080fd5b506102f8600480360360408110156106cd57600080fd5b506001600160a01b038135169060200135611214565b3480156106ef57600080fd5b506102f86004803603604081101561070657600080fd5b506001600160a01b03813516906020013561127c565b34801561072857600080fd5b506102336004803603602081101561073f57600080fd5b50351515611290565b34801561075457600080fd5b506102336004803603602081101561076b57600080fd5b5035611337565b34801561077e57600080fd5b506103216004803603604081101561079557600080fd5b506001600160a01b03813581169160200135166113b5565b3480156107b957600080fd5b50610233600480360360208110156107d057600080fd5b50356001600160a01b03166113e0565b3480156107ec57600080fd5b506102336004803603602081101561080357600080fd5b50356001600160a01b0316611459565b61081b611551565b6000546001600160a01b0390811691161461086b576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091a610913611551565b8484611555565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6000610961848484611641565b6109d18461096d611551565b6109cc856040518060600160405280602881526020016126ce602891396001600160a01b038a166000908152600560205260408120906109ab611551565b6001600160a01b031681526020810191909152604001600020549190611887565b611555565b5060019392505050565b6000600a54821115610a1e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612613602a913960400191505060405180910390fd5b6000610a2861191e565b9050610a348382611941565b9150505b919050565b600e5460ff1690565b610a4e611551565b6000546001600160a01b03908116911614610a9e576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610b0b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610c0357816001600160a01b031660088281548110610b2f57fe5b6000918252602090912001546001600160a01b03161415610bfb57600880546000198101908110610b5c57fe5b600091825260209091200154600880546001600160a01b039092169183908110610b8257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610bd457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c03565b600101610b0e565b5050565b600061091a610c14611551565b846109cc8560056000610c25611551565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061198a565b600f5481565b6000610c65611551565b6001600160a01b03811660009081526007602052604090205490915060ff1615610cc05760405162461bcd60e51b815260040180806020018281038252602c815260200180612788602c913960400191505060405180910390fd5b6000610ccb836119e4565b505050506001600160a01b038416600090815260036020526040902054919250610cf791905082611a33565b6001600160a01b038316600090815260036020526040902055600a54610d1d9082611a33565b600a55600b54610d2d908461198a565b600b55505050565b610d3d611551565b6000546001600160a01b03908116911614610d8d576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610e0a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e29576000610e1a846119e4565b5093955061091e945050505050565b6000610e34846119e4565b5092955061091e945050505050565b7f000000000000000000000000e342b93a251239dafb2d0fb7a03888c33a33267d81565b601354610100900460ff1681565b610e7d611551565b6000546001600160a01b03908116911614610ecd576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610f3b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415610f95576001600160a01b038116600090815260036020526040902054610f7b906109db565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561105f57506001600160a01b038116600090815260046020526040902054610a38565b6001600160a01b03821660009081526003602052604090205461091e906109db565b611089611551565b6000546001600160a01b039081169116146110d9576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61115e611551565b6000546001600160a01b039081169116146111ae576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b600061091a611221611551565b846109cc856040518060600160405280602581526020016127b4602591396005600061124b611551565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611887565b600061091a611289611551565b8484611641565b611298611551565b6000546001600160a01b039081169116146112e8576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61133f611551565b6000546001600160a01b0390811691161461138f576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6113af60646113a983600954611a7590919063ffffffff16565b90611941565b60145550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6113e8611551565b6000546001600160a01b03908116911614611438576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611461611551565b6000546001600160a01b039081169116146114b1576040805162461bcd60e51b815260206004820181905260248201526000805160206126f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166114f65760405162461bcd60e51b815260040180806020018281038252602681526020018061263d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661159a5760405162461bcd60e51b81526004018080602001828103825260248152602001806127646024913960400191505060405180910390fd5b6001600160a01b0382166115df5760405162461bcd60e51b81526004018080602001828103825260228152602001806126636022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166116865760405162461bcd60e51b815260040180806020018281038252602581526020018061273f6025913960400191505060405180910390fd5b6001600160a01b0382166116cb5760405162461bcd60e51b81526004018080602001828103825260238152602001806125f06023913960400191505060405180910390fd5b6000811161170a5760405162461bcd60e51b81526004018080602001828103825260298152602001806127166029913960400191505060405180910390fd5b611712611147565b6001600160a01b0316836001600160a01b03161415801561174c5750611736611147565b6001600160a01b0316826001600160a01b031614155b15611792576014548111156117925760405162461bcd60e51b81526004018080602001828103825260288152602001806126856028913960400191505060405180910390fd5b600061179d3061101f565b905060145481106117ad57506014545b601554811080159081906117c4575060135460ff16155b801561180257507f000000000000000000000000e342b93a251239dafb2d0fb7a03888c33a33267d6001600160a01b0316856001600160a01b031614155b80156118155750601354610100900460ff165b1561182857601554915061182882611ace565b6001600160a01b03851660009081526006602052604090205460019060ff168061186a57506001600160a01b03851660009081526006602052604090205460ff165b15611873575060005b61187f86868684611b6b565b505050505050565b600081848411156119165760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118db5781810151838201526020016118c3565b50505050905090810190601f1680156119085780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061192b611cdf565b909250905061193a8282611941565b9250505090565b600061198383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e42565b9392505050565b600082820183811015611983576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006119fb8a611ea7565b9250925092506000806000611a198d8686611a1461191e565b611ee9565b919f909e50909c50959a5093985091965092945050505050565b600061198383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611887565b600082611a845750600061091e565b82820282848281611a9157fe5b04146119835760405162461bcd60e51b81526004018080602001828103825260218152602001806126ad6021913960400191505060405180910390fd5b6013805460ff191660011790556000611ae8826002611941565b90506000611af68383611a33565b905047611b0283611f39565b6000611b0e4783611a33565b9050611b1a8382612148565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611b7857611b78612246565b6001600160a01b03841660009081526007602052604090205460ff168015611bb957506001600160a01b03831660009081526007602052604090205460ff16155b15611bce57611bc9848484612278565b611ccc565b6001600160a01b03841660009081526007602052604090205460ff16158015611c0f57506001600160a01b03831660009081526007602052604090205460ff165b15611c1f57611bc984848461239c565b6001600160a01b03841660009081526007602052604090205460ff16158015611c6157506001600160a01b03831660009081526007602052604090205460ff16155b15611c7157611bc9848484612445565b6001600160a01b03841660009081526007602052604090205460ff168015611cb157506001600160a01b03831660009081526007602052604090205460ff165b15611cc157611bc9848484612489565b611ccc848484612445565b80611cd957611cd96124fc565b50505050565b600a546009546000918291825b600854811015611e1057826003600060088481548110611d0857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611d6d5750816004600060088481548110611d4657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611d8457600a5460095494509450505050611e3e565b611dc46003600060088481548110611d9857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611a33565b9250611e066004600060088481548110611dda57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611a33565b9150600101611cec565b50600954600a54611e2091611941565b821015611e3857600a54600954935093505050611e3e565b90925090505b9091565b60008183611e915760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156118db5781810151838201526020016118c3565b506000838581611e9d57fe5b0495945050505050565b600080600080611eb68561250a565b90506000611ec386612526565b90506000611edb82611ed58986611a33565b90611a33565b979296509094509092505050565b6000808080611ef88886611a75565b90506000611f068887611a75565b90506000611f148888611a75565b90506000611f2682611ed58686611a33565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611f6757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611fe057600080fd5b505afa158015611ff4573d6000803e3d6000fd5b505050506040513d602081101561200a57600080fd5b505181518290600190811061201b57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612066307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611555565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561210b5781810151838201526020016120f3565b505050509050019650505050505050600060405180830381600087803b15801561213457600080fd5b505af115801561187f573d6000803e3d6000fd5b612173307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611555565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806121b0611147565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b50505050506040513d6060811015611cd957600080fd5b600f541580156122565750601154155b1561226057612276565b600f805460105560118054601255600091829055555b565b60008060008060008061228a876119e4565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506122bc9088611a33565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546122eb9087611a33565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461231a908661198a565b6001600160a01b03891660009081526003602052604090205561233c81612542565b61234684836125cb565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806123ae876119e4565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506123e09087611a33565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612416908461198a565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461231a908661198a565b600080600080600080612457876119e4565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506122eb9087611a33565b60008060008060008061249b876119e4565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506124cd9088611a33565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546123e09087611a33565b601054600f55601254601155565b600061091e60646113a9600f5485611a7590919063ffffffff16565b600061091e60646113a960115485611a7590919063ffffffff16565b600061254c61191e565b9050600061255a8383611a75565b30600090815260036020526040902054909150612577908261198a565b3060009081526003602090815260408083209390935560079052205460ff16156125c657306000908152600460205260409020546125b5908461198a565b306000908152600460205260409020555b505050565b600a546125d89083611a33565b600a55600b546125e8908261198a565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ee1430a10a0547385602e655f37b9244805819f4a664a711f19e3e6d3b092a264736f6c634300060c0033
Deployed Bytecode Sourcemap
24871:18371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32337:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32337:98:0;;:::i;:::-;;27270:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28182:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28182:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29303:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25838:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25838:51:0;;;;;;;;;;;;;;27547:95;;;;;;;;;;;;;:::i;28351:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28351:313:0;;;;;;;;;;;;;;;;;:::i;30227:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30227:253:0;;:::i;27456:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30943:481;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30943:481:0;-1:-1:-1;;;;;30943:481:0;;:::i;28672:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28672:218:0;;;;;;;;:::i;25650:26::-;;;;;;;;;;;;;:::i;29398:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29398:377:0;;:::i;32092:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32092:111:0;-1:-1:-1;;;;;32092:111:0;;:::i;29783:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29783:436:0;;;;;;;;;:::i;25896:38::-;;;;;;;;;;;;;:::i;25975:41::-;;;;;;;;;;;;;:::i;30488:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30488:447:0;-1:-1:-1;;;;;30488:447:0;;:::i;36234:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36234:123:0;-1:-1:-1;;;;;36234:123:0;;:::i;25737:32::-;;;;;;;;;;;;;:::i;27650:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27650:198:0;-1:-1:-1;;;;;27650:198:0;;:::i;16220:148::-;;;;;;;;;;;;;:::i;26029:53::-;;;;;;;;;;;;;:::i;29175:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29175:120:0;-1:-1:-1;;;;;29175:120:0;;:::i;15577:79::-;;;;;;;;;;;;;:::i;32447:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32447:122:0;;:::i;27361:87::-;;;;;;;;;;;;;:::i;28898:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28898:269:0;;;;;;;;:::i;27856:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27856:167:0;;;;;;;;:::i;32750:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32750:171:0;;;;:::i;32580:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32580:162:0;;:::i;28031:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28031:143:0;;;;;;;;;;:::i;32215:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32215:110:0;-1:-1:-1;;;;;32215:110:0;;:::i;16523:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16523:244:0;-1:-1:-1;;;;;16523:244:0;;:::i;32337:98::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;32411:7:::1;:16:::0;32337:98::o;27270:83::-;27340:5;27333:12;;;;;;;;-1:-1:-1;;27333:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27307:13;;27333:12;;27340:5;;27333:12;;27340:5;27333:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27270:83;:::o;28182:161::-;28257:4;28274:39;28283:12;:10;:12::i;:::-;28297:7;28306:6;28274:8;:39::i;:::-;-1:-1:-1;28331:4:0;28182:161;;;;;:::o;29303:87::-;29372:10;;29303:87;:::o;25838:51::-;;;:::o;27547:95::-;27627:7;;27547:95;:::o;28351:313::-;28449:4;28466:36;28476:6;28484:9;28495:6;28466:9;:36::i;:::-;28513:121;28522:6;28530:12;:10;:12::i;:::-;28544:89;28582:6;28544:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28544:19:0;;;;;;:11;:19;;;;;;28564:12;:10;:12::i;:::-;-1:-1:-1;;;;;28544:33:0;;;;;;;;;;;;-1:-1:-1;28544:33:0;;;:89;:37;:89::i;:::-;28513:8;:121::i;:::-;-1:-1:-1;28652:4:0;28351:313;;;;;:::o;30227:253::-;30293:7;30332;;30321;:18;;30313:73;;;;-1:-1:-1;;;30313:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30397:19;30420:10;:8;:10::i;:::-;30397:33;-1:-1:-1;30448:24:0;:7;30397:33;30448:11;:24::i;:::-;30441:31;;;30227:253;;;;:::o;27456:83::-;27522:9;;;;27456:83;:::o;30943:481::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31025:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31017:60;;;::::0;;-1:-1:-1;;;31017:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31093:9;31088:329;31112:9;:16:::0;31108:20;::::1;31088:329;;;31170:7;-1:-1:-1::0;;;;;31154:23:0::1;:9;31164:1;31154:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31154:12:0::1;:23;31150:256;;;31213:9;31223:16:::0;;-1:-1:-1;;31223:20:0;;;31213:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31198:9:::1;:12:::0;;-1:-1:-1;;;;;31213:31:0;;::::1;::::0;31208:1;;31198:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31198:46:0::1;-1:-1:-1::0;;;;;31198:46:0;;::::1;;::::0;;31263:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;31302:11:::1;:20:::0;;;;:28;;-1:-1:-1;;31302:28:0::1;::::0;;31349:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;31349:15:0;;;;;-1:-1:-1;;;;;;31349:15:0::1;::::0;;;;;31385:5:::1;;31150:256;31130:3;;31088:329;;;;30943:481:::0;:::o;28672:218::-;28760:4;28777:83;28786:12;:10;:12::i;:::-;28800:7;28809:50;28848:10;28809:11;:25;28821:12;:10;:12::i;:::-;-1:-1:-1;;;;;28809:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28809:25:0;;;:34;;;;;;;;;;;:38;:50::i;25650:26::-;;;;:::o;29398:377::-;29450:14;29467:12;:10;:12::i;:::-;-1:-1:-1;;;;;29499:19:0;;;;;;:11;:19;;;;;;29450:29;;-1:-1:-1;29499:19:0;;29498:20;29490:77;;;;-1:-1:-1;;;29490:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29579:15;29603:19;29614:7;29603:10;:19::i;:::-;-1:-1:-1;;;;;;;;;29651:15:0;;;;;;:7;:15;;;;;;29578:44;;-1:-1:-1;29651:28:0;;:15;-1:-1:-1;29578:44:0;29651:19;:28::i;:::-;-1:-1:-1;;;;;29633:15:0;;;;;;:7;:15;;;;;:46;29700:7;;:20;;29712:7;29700:11;:20::i;:::-;29690:7;:30;29744:10;;:23;;29759:7;29744:14;:23::i;:::-;29731:10;:36;-1:-1:-1;;;29398:377:0:o;32092:111::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32161:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;32161:34:0::1;32191:4;32161:34;::::0;;32092:111::o;29783:436::-;29873:7;29912;;29901;:18;;29893:62;;;;;-1:-1:-1;;;29893:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29971:17;29966:246;;30006:15;30030:19;30041:7;30030:10;:19::i;:::-;-1:-1:-1;30005:44:0;;-1:-1:-1;30064:14:0;;-1:-1:-1;;;;;30064:14:0;29966:246;30113:23;30144:19;30155:7;30144:10;:19::i;:::-;-1:-1:-1;30111:52:0;;-1:-1:-1;30178:22:0;;-1:-1:-1;;;;;30178:22:0;25896:38;;;:::o;25975:41::-;;;;;;;;;:::o;30488:447::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30685:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30684:21;30676:61;;;::::0;;-1:-1:-1;;;30676:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;30751:16:0;::::1;30770:1;30751:16:::0;;;:7:::1;:16;::::0;;;;;:20;30748:108:::1;;-1:-1:-1::0;;;;;30827:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;30807:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;30788:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;30748:108:::1;-1:-1:-1::0;;;;;30866:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;30866:27:0::1;30889:4;30866:27:::0;;::::1;::::0;;;30904:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;30904:23:0::1;::::0;;::::1;::::0;;30488:447::o;36234:123::-;-1:-1:-1;;;;;36322:27:0;36298:4;36322:27;;;:18;:27;;;;;;;;;36234:123::o;25737:32::-;;;;:::o;27650:198::-;-1:-1:-1;;;;;27740:20:0;;27716:7;27740:20;;;:11;:20;;;;;;;;27736:49;;;-1:-1:-1;;;;;;27769:16:0;;;;;;:7;:16;;;;;;27762:23;;27736:49;-1:-1:-1;;;;;27823:16:0;;;;;;:7;:16;;;;;;27803:37;;:19;:37::i;16220:148::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;16327:1:::1;16311:6:::0;;16290:40:::1;::::0;-1:-1:-1;;;;;16311:6:0;;::::1;::::0;16290:40:::1;::::0;16327:1;;16290:40:::1;16358:1;16341:19:::0;;-1:-1:-1;;;;;;16341:19:0::1;::::0;;16220:148::o;26029:53::-;;;;:::o;29175:120::-;-1:-1:-1;;;;;29267:20:0;29243:4;29267:20;;;:11;:20;;;;;;;;;29175:120::o;15577:79::-;15615:7;15642:6;-1:-1:-1;;;;;15642:6:0;15577:79;:::o;32447:122::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;32533:13:::1;:28:::0;32447:122::o;27361:87::-;27433:7;27426:14;;;;;;;;-1:-1:-1;;27426:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27400:13;;27426:14;;27433:7;;27426:14;;27433:7;27426:14;;;;;;;;;;;;;;;;;;;;;;;;28898:269;28991:4;29008:129;29017:12;:10;:12::i;:::-;29031:7;29040:96;29079:15;29040:96;;;;;;;;;;;;;;;;;:11;:25;29052:12;:10;:12::i;:::-;-1:-1:-1;;;;;29040:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29040:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;27856:167::-;27934:4;27951:42;27961:12;:10;:12::i;:::-;27975:9;27986:6;27951:9;:42::i;32750:171::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;32827:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;32827:32:0;;::::1;::::0;;;::::1;::::0;;;32875:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;32750:171:::0;:::o;32580:162::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;32674:60:::1;32718:5;32674:25;32686:12;32674:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;32659:12;:75:::0;-1:-1:-1;32580:162:0:o;28031:143::-;-1:-1:-1;;;;;28139:18:0;;;28112:7;28139:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28031:143::o;32215:110::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32282:27:0::1;32312:5;32282:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;32282:35:0::1;::::0;;32215:110::o;16523:244::-;15799:12;:10;:12::i;:::-;15789:6;;-1:-1:-1;;;;;15789:6:0;;;:22;;;15781:67;;;;;-1:-1:-1;;;15781:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15781:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16612:22:0;::::1;16604:73;;;;-1:-1:-1::0;;;16604:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16714:6;::::0;;16693:38:::1;::::0;-1:-1:-1;;;;;16693:38:0;;::::1;::::0;16714:6;::::1;::::0;16693:38:::1;::::0;::::1;16742:6;:17:::0;;-1:-1:-1;;;;;;16742:17:0::1;-1:-1:-1::0;;;;;16742:17:0;;;::::1;::::0;;;::::1;::::0;;16523:244::o;7985:106::-;8073:10;7985:106;:::o;36365:337::-;-1:-1:-1;;;;;36458:19:0;;36450:68;;;;-1:-1:-1;;;36450:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36537:21:0;;36529:68;;;;-1:-1:-1;;;36529:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36610:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36662:32;;;;;;;;;;;;;;;;;36365:337;;;:::o;36710:1813::-;-1:-1:-1;;;;;36832:18:0;;36824:68;;;;-1:-1:-1;;;36824:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36911:16:0;;36903:64;;;;-1:-1:-1;;;36903:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36995:1;36986:6;:10;36978:64;;;;-1:-1:-1;;;36978:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37064:7;:5;:7::i;:::-;-1:-1:-1;;;;;37056:15:0;:4;-1:-1:-1;;;;;37056:15:0;;;:32;;;;;37081:7;:5;:7::i;:::-;-1:-1:-1;;;;;37075:13:0;:2;-1:-1:-1;;;;;37075:13:0;;;37056:32;37053:125;;;37121:12;;37111:6;:22;;37103:75;;;;-1:-1:-1;;;37103:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37473:28;37504:24;37522:4;37504:9;:24::i;:::-;37473:55;;37576:12;;37552:20;:36;37549:112;;-1:-1:-1;37637:12:0;;37549:112;37732:29;;37708:53;;;;;;;37790;;-1:-1:-1;37827:16:0;;;;37826:17;37790:53;:91;;;;;37868:13;-1:-1:-1;;;;;37860:21:0;:4;-1:-1:-1;;;;;37860:21:0;;;37790:91;:129;;;;-1:-1:-1;37898:21:0;;;;;;;37790:129;37772:318;;;37969:29;;37946:52;;38042:36;38057:20;38042:14;:36::i;:::-;-1:-1:-1;;;;;38298:24:0;;38171:12;38298:24;;;:18;:24;;;;;;38186:4;;38298:24;;;:50;;-1:-1:-1;;;;;;38326:22:0;;;;;;:18;:22;;;;;;;;38298:50;38295:96;;;-1:-1:-1;38374:5:0;38295:96;38477:38;38492:4;38497:2;38500:6;38507:7;38477:14;:38::i;:::-;36710:1813;;;;;;:::o;4395:192::-;4481:7;4517:12;4509:6;;;;4501:29;;;;-1:-1:-1;;;4501:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4553:5:0;;;4395:192::o;34384:163::-;34425:7;34446:15;34463;34482:19;:17;:19::i;:::-;34445:56;;-1:-1:-1;34445:56:0;-1:-1:-1;34519:20:0;34445:56;;34519:11;:20::i;:::-;34512:27;;;;34384:163;:::o;5793:132::-;5851:7;5878:39;5882:1;5885;5878:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5871:46;5793:132;-1:-1:-1;;;5793:132:0:o;3492:181::-;3550:7;3582:5;;;3606:6;;;;3598:46;;;;;-1:-1:-1;;;3598:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33182:419;33241:7;33250;33259;33268;33277;33286;33307:23;33332:12;33346:18;33368:20;33380:7;33368:11;:20::i;:::-;33306:82;;;;;;33400:15;33417:23;33442:12;33458:50;33470:7;33479:4;33485:10;33497;:8;:10::i;:::-;33458:11;:50::i;:::-;33399:109;;;;-1:-1:-1;33399:109:0;;-1:-1:-1;33559:15:0;;-1:-1:-1;33576:4:0;;-1:-1:-1;33582:10:0;;-1:-1:-1;33182:419:0;;-1:-1:-1;;;;;33182:419:0:o;3956:136::-;4014:7;4041:43;4045:1;4048;4041:43;;;;;;;;;;;;;;;;;:3;:43::i;4846:471::-;4904:7;5149:6;5145:47;;-1:-1:-1;5179:1:0;5172:8;;5145:47;5216:5;;;5220:1;5216;:5;:1;5240:5;;;;;:10;5232:56;;;;-1:-1:-1;;;5232:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38531:985;26463:16;:23;;-1:-1:-1;;26463:23:0;26482:4;26463:23;;;:16;38682:27:::1;:20:::0;38707:1:::1;38682:24;:27::i;:::-;38667:42:::0;-1:-1:-1;38720:17:0::1;38740:30;:20:::0;38667:42;38740:24:::1;:30::i;:::-;38720:50:::0;-1:-1:-1;39073:21:0::1;39139:22;39156:4:::0;39139:16:::1;:22::i;:::-;39292:18;39313:41;:21;39339:14:::0;39313:25:::1;:41::i;:::-;39292:62;;39404:35;39417:9;39428:10;39404:12;:35::i;:::-;39465:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;26509:16:0;:24;;-1:-1:-1;;26509:24:0;;;-1:-1:-1;;;38531:985:0:o;40715:834::-;40826:7;40822:40;;40848:14;:12;:14::i;:::-;-1:-1:-1;;;;;40887:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;40911:22:0;;;;;;:11;:22;;;;;;;;40910:23;40887:46;40883:597;;;40950:48;40972:6;40980:9;40991:6;40950:21;:48::i;:::-;40883:597;;;-1:-1:-1;;;;;41021:19:0;;;;;;:11;:19;;;;;;;;41020:20;:46;;;;-1:-1:-1;;;;;;41044:22:0;;;;;;:11;:22;;;;;;;;41020:46;41016:464;;;41083:46;41103:6;41111:9;41122:6;41083:19;:46::i;41016:464::-;-1:-1:-1;;;;;41152:19:0;;;;;;:11;:19;;;;;;;;41151:20;:47;;;;-1:-1:-1;;;;;;41176:22:0;;;;;;:11;:22;;;;;;;;41175:23;41151:47;41147:333;;;41215:44;41233:6;41241:9;41252:6;41215:17;:44::i;41147:333::-;-1:-1:-1;;;;;41281:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41304:22:0;;;;;;:11;:22;;;;;;;;41281:45;41277:203;;;41343:48;41365:6;41373:9;41384:6;41343:21;:48::i;41277:203::-;41424:44;41442:6;41450:9;41461:6;41424:17;:44::i;:::-;41504:7;41500:41;;41526:15;:13;:15::i;:::-;40715:834;;;;:::o;34555:561::-;34652:7;;34688;;34605;;;;;34712:289;34736:9;:16;34732:20;;34712:289;;;34802:7;34778;:21;34786:9;34796:1;34786:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34786:12:0;34778:21;;;;;;;;;;;;;:31;;:66;;;34837:7;34813;:21;34821:9;34831:1;34821:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34821:12:0;34813:21;;;;;;;;;;;;;:31;34778:66;34774:97;;;34854:7;;34863;;34846:25;;;;;;;;;34774:97;34896:34;34908:7;:21;34916:9;34926:1;34916:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34916:12:0;34908:21;;;;;;;;;;;;;34896:7;;:11;:34::i;:::-;34886:44;;34955:34;34967:7;:21;34975:9;34985:1;34975:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34975:12:0;34967:21;;;;;;;;;;;;;34955:7;;:11;:34::i;:::-;34945:44;-1:-1:-1;34754:3:0;;34712:289;;;-1:-1:-1;35037:7:0;;35025;;:20;;:11;:20::i;:::-;35015:7;:30;35011:61;;;35055:7;;35064;;35047:25;;;;;;;;35011:61;35091:7;;-1:-1:-1;35100:7:0;-1:-1:-1;34555:561:0;;;:::o;6421:278::-;6507:7;6542:12;6535:5;6527:28;;;;-1:-1:-1;;;6527:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6566:9;6582:1;6578;:5;;;;;;;6421:278;-1:-1:-1;;;;;6421:278:0:o;33609:330::-;33669:7;33678;33687;33707:12;33722:24;33738:7;33722:15;:24::i;:::-;33707:39;;33757:18;33778:30;33800:7;33778:21;:30::i;:::-;33757:51;-1:-1:-1;33819:23:0;33845:33;33757:51;33845:17;:7;33857:4;33845:11;:17::i;:::-;:21;;:33::i;:::-;33819:59;33914:4;;-1:-1:-1;33920:10:0;;-1:-1:-1;33609:330:0;;-1:-1:-1;;;33609:330:0:o;33947:429::-;34062:7;;;;34118:24;:7;34130:11;34118;:24::i;:::-;34100:42;-1:-1:-1;34153:12:0;34168:21;:4;34177:11;34168:8;:21::i;:::-;34153:36;-1:-1:-1;34200:18:0;34221:27;:10;34236:11;34221:14;:27::i;:::-;34200:48;-1:-1:-1;34259:23:0;34285:33;34200:48;34285:17;:7;34297:4;34285:11;:17::i;:33::-;34337:7;;;;-1:-1:-1;34363:4:0;;-1:-1:-1;33947:429:0;;-1:-1:-1;;;;;;;33947:429:0:o;39524:589::-;39674:16;;;39688:1;39674:16;;;39650:21;39674:16;;;;;39650:21;39674:16;;;;;;;;;;-1:-1:-1;39674:16:0;39650:40;;39719:4;39701;39706:1;39701:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;39701:23:0;;;-1:-1:-1;;;;;39701:23:0;;;;;39745:15;-1:-1:-1;;;;;39745:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39745:22:0;39735:7;;:4;;39740:1;;39735:7;;;;;;;;;;;:32;-1:-1:-1;;;;;39735:32:0;;;-1:-1:-1;;;;;39735:32:0;;;;;39780:62;39797:4;39812:15;39830:11;39780:8;:62::i;:::-;39881:15;-1:-1:-1;;;;;39881:66:0;;39962:11;39988:1;40032:4;40059;40079:15;39881:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39881:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40121:513;40269:62;40286:4;40301:15;40319:11;40269:8;:62::i;:::-;40374:15;-1:-1:-1;;;;;40374:31:0;;40413:9;40446:4;40466:11;40492:1;40535;40578:7;:5;:7::i;:::-;40600:15;40374:252;;;;;;;;;;;;;-1:-1:-1;;;;;40374:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40374:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35835:250;35881:7;;:12;:34;;;;-1:-1:-1;35897:13:0;;:18;35881:34;35878:46;;;35917:7;;35878:46;35962:7;;;35944:15;:25;36004:13;;;35980:21;:37;-1:-1:-1;36038:11:0;;;;36060:17;35835:250;:::o;42661:566::-;42764:15;42781:23;42806:12;42820:23;42845:12;42859:18;42881:19;42892:7;42881:10;:19::i;:::-;-1:-1:-1;;;;;42929:15:0;;;;;;:7;:15;;;;;;42763:137;;-1:-1:-1;42763:137:0;;-1:-1:-1;42763:137:0;;-1:-1:-1;42763:137:0;-1:-1:-1;42763:137:0;-1:-1:-1;42763:137:0;-1:-1:-1;42929:28:0;;42949:7;42929:19;:28::i;:::-;-1:-1:-1;;;;;42911:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42986:7;:15;;;;:28;;43006:7;42986:19;:28::i;:::-;-1:-1:-1;;;;;42968:15:0;;;;;;;:7;:15;;;;;;:46;;;;43046:18;;;;;;;:39;;43069:15;43046:22;:39::i;:::-;-1:-1:-1;;;;;43025:18:0;;;;;;:7;:18;;;;;:60;43099:26;43114:10;43099:14;:26::i;:::-;43136:23;43148:4;43154;43136:11;:23::i;:::-;43192:9;-1:-1:-1;;;;;43175:44:0;43184:6;-1:-1:-1;;;;;43175:44:0;;43203:15;43175:44;;;;;;;;;;;;;;;;;;42661:566;;;;;;;;;:::o;42067:586::-;42168:15;42185:23;42210:12;42224:23;42249:12;42263:18;42285:19;42296:7;42285:10;:19::i;:::-;-1:-1:-1;;;;;42333:15:0;;;;;;:7;:15;;;;;;42167:137;;-1:-1:-1;42167:137:0;;-1:-1:-1;42167:137:0;;-1:-1:-1;42167:137:0;-1:-1:-1;42167:137:0;-1:-1:-1;42167:137:0;-1:-1:-1;42333:28:0;;42167:137;42333:19;:28::i;:::-;-1:-1:-1;;;;;42315:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42393:18;;;;;:7;:18;;;;;:39;;42416:15;42393:22;:39::i;:::-;-1:-1:-1;;;;;42372:18:0;;;;;;:7;:18;;;;;;;;:60;;;;42464:7;:18;;;;:39;;42487:15;42464:22;:39::i;41557:502::-;41656:15;41673:23;41698:12;41712:23;41737:12;41751:18;41773:19;41784:7;41773:10;:19::i;:::-;-1:-1:-1;;;;;41821:15:0;;;;;;:7;:15;;;;;;41655:137;;-1:-1:-1;41655:137:0;;-1:-1:-1;41655:137:0;;-1:-1:-1;41655:137:0;-1:-1:-1;41655:137:0;-1:-1:-1;41655:137:0;-1:-1:-1;41821:28:0;;41655:137;41821:19;:28::i;31434:642::-;31537:15;31554:23;31579:12;31593:23;31618:12;31632:18;31654:19;31665:7;31654:10;:19::i;:::-;-1:-1:-1;;;;;31702:15:0;;;;;;:7;:15;;;;;;31536:137;;-1:-1:-1;31536:137:0;;-1:-1:-1;31536:137:0;;-1:-1:-1;31536:137:0;-1:-1:-1;31536:137:0;-1:-1:-1;31536:137:0;-1:-1:-1;31702:28:0;;31722:7;31702:19;:28::i;:::-;-1:-1:-1;;;;;31684:15:0;;;;;;:7;:15;;;;;;;;:46;;;;31759:7;:15;;;;:28;;31779:7;31759:19;:28::i;36097:125::-;36151:15;;36141:7;:25;36193:21;;36177:13;:37;36097:125::o;35495:154::-;35559:7;35586:55;35625:5;35586:20;35598:7;;35586;:11;;:20;;;;:::i;35657:166::-;35727:7;35754:61;35799:5;35754:26;35766:13;;35754:7;:11;;:26;;;;:::i;35128:355::-;35191:19;35214:10;:8;:10::i;:::-;35191:33;-1:-1:-1;35235:18:0;35256:27;:10;35191:33;35256:14;:27::i;:::-;35335:4;35319:22;;;;:7;:22;;;;;;35235:48;;-1:-1:-1;35319:38:0;;35235:48;35319:26;:38::i;:::-;35310:4;35294:22;;;;:7;:22;;;;;;;;:63;;;;35371:11;:26;;;;;;35368:107;;;35453:4;35437:22;;;;:7;:22;;;;;;:38;;35464:10;35437:26;:38::i;:::-;35428:4;35412:22;;;;:7;:22;;;;;:63;35368:107;35128:355;;;:::o;33027:147::-;33105:7;;:17;;33117:4;33105:11;:17::i;:::-;33095:7;:27;33146:10;;:20;;33161:4;33146:14;:20::i;:::-;33133:10;:33;-1:-1:-1;;33027:147:0:o
Swarm Source
ipfs://7ee1430a10a0547385602e655f37b9244805819f4a664a711f19e3e6d3b092a2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.