ERC-20
Overview
Max Total Supply
1,000,000,000,000 MKRAT
Holders
353
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
96,172,034.072368856 MKRATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MuskRat
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-04 */ /* . , (\;/) oo \//, _ ,/_;~ \, / ' "' ( ( \ ! // \ |__.' '~ '~----'' ███╗ ███╗██╗ ██╗███████╗██╗ ██╗██████╗ █████╗ ████████╗ ████╗ ████║██║ ██║██╔════╝██║ ██╔╝██╔══██╗██╔══██╗╚══██╔══╝ ██╔████╔██║██║ ██║███████╗█████╔╝ ██████╔╝███████║ ██║ ██║╚██╔╝██║██║ ██║╚════██║██╔═██╗ ██╔══██╗██╔══██║ ██║ ██║ ╚═╝ ██║╚██████╔╝███████║██║ ██╗██║ ██║██║ ██║ ██║ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ Website: https://www.muskrat.fund/ Telegram: https://t.me/musk_rat */ // SPDX-License-Identifier: Unlicensed 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; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } 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 MuskRat 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 => uint256) public timestamp; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000000000000000; //1,000,000,000,000 uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'MuskRat'; string private _symbol = 'MKRAT'; uint8 private _decimals = 9; uint256 private _taxFee = 0; uint256 private _devFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 private _previousDevFee = _devFee; address payable public _DevWalletAddress; address payable public _marketingWalletAddress; address payable public _LotteryAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwap = false; bool public swapEnabled = true; uint256 public _MaxSellPercentage = 25; uint256 public _PercentOfMaxTx = 10; uint256 public _SellTimeDelay = 120 minutes; uint256 public _maxTxAmount = 1000000000000000000; //0.1% at start bool public tradingEnabled = false; uint256 private _numOfTokensToExchangeForFee = 5000000000000000; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapEnabledUpdated(bool enabled); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor (address payable DevWalletAddress, address payable marketingWalletAddress, address payable LotteryWalletAddress) public { _DevWalletAddress = DevWalletAddress; _marketingWalletAddress = marketingWalletAddress; _LotteryAddress = LotteryWalletAddress; _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[_DevWalletAddress] = true; _isExcludedFromFee[_marketingWalletAddress] = true; _isExcludedFromFee[_LotteryAddress] = true; _isExcludedFromFee[address(this)] = true; _isBlackListedBot[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true; _blackListedBots.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1)); 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 LetTradingBegin(bool _tradingEnabled) external onlyOwner() { tradingEnabled = _tradingEnabled; } function getSwapPercent(uint part, uint whole) public pure returns(uint percent) { uint numerator = part * 1000; require(numerator > part); // overflow. uint temp = numerator / whole + 5; // proper rounding up return temp / 10; } function NextSellTime(address _key) public view returns (uint) { return timestamp[_key]; } 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 isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function isBlackListed(address account) public view returns (bool) { return _isBlackListedBot[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 excludeAccount(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 includeAccount(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 && _devFee == 0) return; _previousTaxFee = _taxFee; _previousDevFee = _devFee; _taxFee = 0; _devFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _devFee = _previousDevFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setMaxSellPercent(uint256 maxSellPercent) external onlyOwner() { _MaxSellPercentage = maxSellPercent; } function setPercentOfMaxTx(uint256 PercentOfMaxTx) external onlyOwner() { _PercentOfMaxTx = PercentOfMaxTx; } function setSellTimeDelay(uint256 SellTimeDelay) external onlyOwner() { _SellTimeDelay = (SellTimeDelay * 1 minutes); } 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"); require(!_isBlackListedBot[recipient], "You are dead to me"); require(!_isBlackListedBot[msg.sender], "You are dead to me"); if(sender != owner() && recipient != owner()) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); //you can't trade this on a dex until trading enabled, just be patient we're probably still in presale if (sender == uniswapV2Pair || recipient == uniswapV2Pair) { require(tradingEnabled, "Trading is not enabled yet");} } // exclude owner and uniswap if(sender != owner() && sender != uniswapV2Pair) { // dont apply below rules to excluded addresses like presale contracts etc if (!_isExcluded[sender]) { //don't apply rules to lottery address if (recipient != _LotteryAddress) { // lets check last sell was more than 90 mins ago require(block.timestamp >= timestamp[sender], "Everyone is vested!"); // lets check here for more than 25% balance per swap - but first check they don't hold a very small amount we could just let through if (getSwapPercent(balanceOf(sender),_maxTxAmount) > _PercentOfMaxTx ){ //now we know user has higher than 10% of max tx allowed, otherwise we can just let them swap as amount is tiny require(getSwapPercent(amount, balanceOf(sender)) <= _MaxSellPercentage, "You cannot trade more than MaxSell per swap"); } //add a 90 minute timestamp to current block until next swap timestamp[sender] = block.timestamp.add(_SellTimeDelay); } } } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap? // also, don't get caught in a circular charity event. // also, don't swap if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForFee; if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) { // We need to swap the current tokens to ETH and send to the fees wallet swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFees(address(this).balance); } } //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 swapTokensForEth(uint256 tokenAmount) private lockTheSwap{ // 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 sendETHToFees(uint256 amount) private { _DevWalletAddress.transfer(amount.div(3)); _marketingWalletAddress.transfer(amount.div(3)); _LotteryAddress.send(amount.div(3)); } // 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() external onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToFees(contractETHBalance); } function setSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } 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 tCharity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeFee(tCharity); _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 tCharity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeFee(uint256 tCharity) private { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rCharity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tCharity); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _getTValues(tAmount, _taxFee, _devFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tCharity); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 devFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tCharity = tAmount.mul(devFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tCharity); return (tTransferAmount, tFee, tCharity); } 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 <= 10, 'taxFee should be in 1 - 10'); _taxFee = taxFee; } function _setDevFee(uint256 devFee) external onlyOwner() { require(devFee >= 1 && devFee <= 11, 'devFee should be in 1 - 11'); _devFee = devFee; } function _setDevWallet(address payable DevWalletAddress) external onlyOwner() { _DevWalletAddress = DevWalletAddress; } function _setLotteryWallet(address payable LotteryWalletAddress) external onlyOwner() { _LotteryAddress = LotteryWalletAddress; } function _setMarketingWallet(address payable MarketingWalletAddress) external onlyOwner() { _marketingWalletAddress = MarketingWalletAddress; } function _setNumFeeTokens(uint256 NumTokens) external onlyOwner() { _numOfTokensToExchangeForFee = NumTokens; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"DevWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"},{"internalType":"address payable","name":"LotteryWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"LetTradingBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_key","type":"address"}],"name":"NextSellTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DevWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_LotteryAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MaxSellPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_PercentOfMaxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SellTimeDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"_setDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"DevWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"LotteryWalletAddress","type":"address"}],"name":"_setLotteryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"MarketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"NumTokens","type":"uint256"}],"name":"_setNumFeeTokens","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":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"part","type":"uint256"},{"internalType":"uint256","name":"whole","type":"uint256"}],"name":"getSwapPercent","outputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","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":"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":"uint256","name":"maxSellPercent","type":"uint256"}],"name":"setMaxSellPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"PercentOfMaxTx","type":"uint256"}],"name":"setPercentOfMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"SellTimeDelay","type":"uint256"}],"name":"setSellTimeDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"address","name":"","type":"address"}],"name":"timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
683635c9adc5dea00000600c556818ce40f6d0219fffff19600d55610100604052600760c081905266135d5cdad4985d60ca1b60e09081526200004691600f919062000502565b50604080518082019091526005808252641352d4905560da1b6020909201918252620000759160109162000502565b506011805460ff1990811660091790915560006012819055601381905560148190556015556018805461ffff60a01b1916600160a81b17905560198055600a601a55611c20601b55670de0b6b3a7640000601c55601d805490911690556611c37937e08000601e55348015620000ea57600080fd5b506040516200518e3803806200518e833981810160405260608110156200011057600080fd5b508051602082015160409092015190919060006200012d620004ef565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601680546001600160a01b038086166001600160a01b031992831617909255601780548584169083161790556018805492841692909116919091179055600d5460036000620001c5620004ef565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023c57600080fd5b505afa15801562000251573d6000803e3d6000fd5b505050506040513d60208110156200026857600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002b957600080fd5b505afa158015620002ce573d6000803e3d6000fd5b505050506040513d6020811015620002e557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200033857600080fd5b505af11580156200034d573d6000803e3d6000fd5b505050506040513d60208110156200036457600080fd5b50516001600160601b0319606091821b811660a0529082901b1660805260016007600062000391620004f3565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556016548216815260078452828120805486166001908117909155601754831682528382208054871682179055601854909216815282812080548616831790553081529182208054851682179055600a9092527f4777d92e592f2fa8390fa48c8824c65e93bffeaaf19b5e78702f374b7185cff180549093168217909255600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b031916737589319ed0fd750017159fb4e4d96c63966173c117905562000498620004ef565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a3505050506200059e565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200054557805160ff191683800117855562000575565b8280016001018555821562000575579182015b828111156200057557825182559160200191906001019062000558565b506200058392915062000587565b5090565b5b8082111562000583576000815560010162000588565b60805160601c60a05160601c614ba3620005eb60003980611796528061358352806135d852806136dc528061394c5250806110105280613d0c5280613deb5280613e125250614ba36000f3fe6080604052600436106103855760003560e01c8063715018a6116101d1578063b048becc11610102578063e47d6060116100a0578063f3063ff61161006f578063f3063ff614610da7578063f429389014610dbc578063f815a84214610dd1578063f84354f114610de65761038c565b8063e47d606014610cd2578063e489918414610d12578063f2cc0c1814610d27578063f2fde38b14610d675761038c565b8063d543dbeb116100dc578063d543dbeb14610c0a578063dd46706414610c34578063dd62ed3e14610c5e578063e01af92c14610ca65761038c565b8063b048becc14610b8b578063b6c5232414610bb5578063cba0e99614610bca5761038c565b80639ce11bad1161016f578063a9059cbb11610149578063a9059cbb14610abc578063ab62304f14610b02578063abdef31d14610b17578063af9549e014610b435761038c565b80639ce11bad14610a21578063a457c2d714610a61578063a69df4b514610aa75761038c565b80637ded4d6a116101ab5780637ded4d6a1461098d5780638da5cb5b146109cd57806395d89b41146109e257806399600de6146109f75761038c565b8063715018a6146109235780637302dacf146109385780637d1db4a5146109785761038c565b80633bd5d173116102b657806351bc3c851161025457806359f1707d1161022357806359f1707d1461086457806362cbe4421461088e5780636ddd1713146108ce57806370a08231146108e35761038c565b806351bc3c85146107bb5780635342acb4146107d05780635880b8731461081057806359992dbc1461083a5761038c565b80634303443d116102905780634303443d1461071f5780634549b0391461075f57806349bd5a5e146107915780634ada218b146107a65761038c565b80633bd5d173146106b65780634144d9e4146106e057806341cc9410146106f55761038c565b806318160ddd116103235780632d838119116102fd5780632d838119146105eb578063313ce567146106155780633498a76c1461064057806339509351146106705761038c565b806318160ddd146105465780631ff53b601461055b57806323b872dd1461059b5761038c565b8063095ea7b31161035f578063095ea7b31461046e5780630a1f8ea8146104c857806313114a9d1461050a5780631694505e146105315761038c565b806303588b6d1461039157806306f103db146103cf57806306fdde03146103e45761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610e26565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156103db57600080fd5b506103a6610e42565b3480156103f057600080fd5b506103f9610e5e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043357818101518382015260200161041b565b50505050905090810190601f1680156104605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047a57600080fd5b506104b46004803603604081101561049157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f12565b604080519115158252519081900360200190f35b3480156104d457600080fd5b50610508600480360360208110156104eb57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610f30565b005b34801561051657600080fd5b5061051f611008565b60408051918252519081900360200190f35b34801561053d57600080fd5b506103a661100e565b34801561055257600080fd5b5061051f611032565b34801561056757600080fd5b506105086004803603602081101561057e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611038565b3480156105a757600080fd5b506104b4600480360360608110156105be57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611110565b3480156105f757600080fd5b5061051f6004803603602081101561060e57600080fd5b50356111b1565b34801561062157600080fd5b5061062a61122d565b6040805160ff9092168252519081900360200190f35b34801561064c57600080fd5b5061051f6004803603604081101561066357600080fd5b5080359060200135611236565b34801561067c57600080fd5b506104b46004803603604081101561069357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561126e565b3480156106c257600080fd5b50610508600480360360208110156106d957600080fd5b50356112c9565b3480156106ec57600080fd5b506103a66113e4565b34801561070157600080fd5b506105086004803603602081101561071857600080fd5b5035611400565b34801561072b57600080fd5b506105086004803603602081101561074257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611496565b34801561076b57600080fd5b5061051f6004803603604081101561078257600080fd5b508035906020013515156116e8565b34801561079d57600080fd5b506103a6611794565b3480156107b257600080fd5b506104b46117b8565b3480156107c757600080fd5b506105086117c1565b3480156107dc57600080fd5b506104b4600480360360208110156107f357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661186b565b34801561081c57600080fd5b506105086004803603602081101561083357600080fd5b5035611896565b34801561084657600080fd5b506105086004803603602081101561085d57600080fd5b50356119a9565b34801561087057600080fd5b506105086004803603602081101561088757600080fd5b5035611a3f565b34801561089a57600080fd5b50610508600480360360208110156108b157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611b52565b3480156108da57600080fd5b506104b4611c2a565b3480156108ef57600080fd5b5061051f6004803603602081101561090657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c4c565b34801561092f57600080fd5b50610508611cd5565b34801561094457600080fd5b5061051f6004803603602081101561095b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611dd5565b34801561098457600080fd5b5061051f611de7565b34801561099957600080fd5b50610508600480360360208110156109b057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611ded565b3480156109d957600080fd5b506103a66120c3565b3480156109ee57600080fd5b506103f96120df565b348015610a0357600080fd5b5061050860048036036020811015610a1a57600080fd5b503561215e565b348015610a2d57600080fd5b5061051f60048036036020811015610a4457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166121f4565b348015610a6d57600080fd5b506104b460048036036040811015610a8457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561221c565b348015610ab357600080fd5b50610508612291565b348015610ac857600080fd5b506104b460048036036040811015610adf57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612404565b348015610b0e57600080fd5b5061051f612418565b348015610b2357600080fd5b5061050860048036036020811015610b3a57600080fd5b5035151561241e565b348015610b4f57600080fd5b5061050860048036036040811015610b6657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013515156124e0565b348015610b9757600080fd5b5061050860048036036020811015610bae57600080fd5b50356125c7565b348015610bc157600080fd5b5061051f612660565b348015610bd657600080fd5b506104b460048036036020811015610bed57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612666565b348015610c1657600080fd5b5061050860048036036020811015610c2d57600080fd5b5035612691565b348015610c4057600080fd5b5061050860048036036020811015610c5757600080fd5b5035612748565b348015610c6a57600080fd5b5061051f60048036036040811015610c8157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612856565b348015610cb257600080fd5b5061050860048036036020811015610cc957600080fd5b5035151561288e565b348015610cde57600080fd5b506104b460048036036020811015610cf557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661296a565b348015610d1e57600080fd5b5061051f612995565b348015610d3357600080fd5b5061050860048036036020811015610d4a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661299b565b348015610d7357600080fd5b5061050860048036036020811015610d8a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612c6e565b348015610db357600080fd5b5061051f612df8565b348015610dc857600080fd5b50610508612dfe565b348015610ddd57600080fd5b5061051f612e99565b348015610df257600080fd5b5061050860048036036020811015610e0957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612e9d565b60165473ffffffffffffffffffffffffffffffffffffffff1681565b60185473ffffffffffffffffffffffffffffffffffffffff1681565b600f8054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f085780601f10610edd57610100808354040283529160200191610f08565b820191906000526020600020905b815481529060010190602001808311610eeb57829003601f168201915b5050505050905090565b6000610f26610f1f61311b565b848461311f565b5060015b92915050565b610f3861311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610fc157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600e5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5490565b61104061311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146110c957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061111d848484613266565b6111a78461112961311b565b6111a285604051806060016040528060288152602001614a1a6028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526005602052604081209061117461311b565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190613a34565b61311f565b5060019392505050565b6000600d5482111561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614934602a913960400191505060405180910390fd5b6000611218613ae5565b90506112248382613b08565b9150505b919050565b60115460ff1690565b60006103e8830283811161124957600080fd5b600083828161125457fe5b046005019050600a818161126457fe5b0495945050505050565b6000610f2661127b61311b565b846111a2856005600061128c61311b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490613b51565b60006112d361311b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090205490915060ff1615611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614afa602c913960400191505060405180910390fd5b600061136083613bc5565b5050505073ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604090205491925061139991905082613c21565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040902055600d546113cc9082613c21565b600d55600e546113dc9084613b51565b600e55505050565b60175473ffffffffffffffffffffffffffffffffffffffff1681565b61140861311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461149157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601e55565b61149e61311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461152757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff821614156115aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614a6b6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090205460ff161561163f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff166000818152600a6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000600c5483111561175b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161177a57600061176b84613bc5565b50939550610f2a945050505050565b600061178584613bc5565b50929550610f2a945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601d5460ff1681565b6117c961311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461185257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600061185d30611c4c565b905061186881613c63565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205460ff1690565b61189e61311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461192757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600181101580156119395750600a8111155b6119a457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601255565b6119b161311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611a3a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601955565b611a4761311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611ad057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60018110158015611ae25750600b8111155b611b4d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6465764665652073686f756c6420626520696e2031202d203131000000000000604482015290519081900360640190fd5b601355565b611b5a61311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611be357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6018547501000000000000000000000000000000000000000000900460ff1681565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604081205460ff1615611ca6575073ffffffffffffffffffffffffffffffffffffffff8116600090815260046020526040902054611228565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054610f2a906111b1565b611cdd61311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611d6657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60066020526000908152604090205481565b601c5481565b611df561311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611e7e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090205460ff16611f1257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b548110156120bf578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110611f4357fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156120b757600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101908110611f9b57fe5b600091825260209091200154600b805473ffffffffffffffffffffffffffffffffffffffff9092169183908110611fce57fe5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559184168152600a9091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600b80548061205a57fe5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556120bf565b600101611f15565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60108054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f085780601f10610edd57610100808354040283529160200191610f08565b61216661311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146121ef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601a55565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b6000610f2661222961311b565b846111a285604051806060016040528060258152602001614b49602591396005600061225361311b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190613a34565b60015473ffffffffffffffffffffffffffffffffffffffff163314612301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614b266023913960400191505060405180910390fd5b600254421161237157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b6001546000805460405173ffffffffffffffffffffffffffffffffffffffff93841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610f2661241161311b565b8484613266565b601b5481565b61242661311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146124af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6124e861311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461257157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6125cf61311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461265857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b603c02601b55565b60025490565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205460ff1690565b61269961311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461272257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b612742606461273c83600c54613f3c90919063ffffffff16565b90613b08565b601c5550565b61275061311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146127d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054600180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff84161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b61289661311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461291f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205460ff1690565b60195481565b6129a361311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612a2c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff82161415612aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ad86022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090205460ff1615612b4457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205415612bc55773ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902054612b9e906111b1565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260086020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b612c7661311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612cff57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612d6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806149896026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b601a5481565b612e0661311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612e8f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b4761186881613faf565b4790565b612ea561311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612f2e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090205460ff16612fc257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6009548110156120bf578173ffffffffffffffffffffffffffffffffffffffff1660098281548110612ff357fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561311357600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811061304b57fe5b6000918252602090912001546009805473ffffffffffffffffffffffffffffffffffffffff909216918390811061307e57fe5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260048252604080822082905560089092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600980548061205a57fe5b600101612fc5565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661318b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ab46024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806149af6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166132d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614a8f6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661333e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806149116023913960400191505060405180910390fd5b60008111613397576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614a426029913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff161561342c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f596f7520617265206465616420746f206d650000000000000000000000000000604482015290519081900360640190fd5b336000908152600a602052604090205460ff16156134ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f596f7520617265206465616420746f206d650000000000000000000000000000604482015290519081900360640190fd5b6134b36120c3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561352157506134f16120c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561369c57601c54811115613581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149d16028913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061362657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561369c57601d5460ff1661369c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b6136a46120c3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561372b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156138d15773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff166138d15760185473ffffffffffffffffffffffffffffffffffffffff8381169116146138d15773ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205442101561381357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f45766572796f6e65206973207665737465642100000000000000000000000000604482015290519081900360640190fd5b601a5461382a61382285611c4c565b601c54611236565b111561389c576019546138458261384086611c4c565b611236565b111561389c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061495e602b913960400191505060405180910390fd5b601b546138aa904290613b51565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260409020555b60006138dc30611c4c565b9050601c5481106138ec5750601c545b601e54601854908210159074010000000000000000000000000000000000000000900460ff1615801561393a57506018547501000000000000000000000000000000000000000000900460ff165b80156139435750805b801561399b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156139bb576139a982613c63565b4780156139b9576139b947613faf565b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604090205460019060ff1680613a17575073ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604090205460ff165b15613a20575060005b613a2c86868684614090565b505050505050565b60008184841115613add576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613aa2578181015183820152602001613a8a565b50505050905090810190601f168015613acf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000613af261426c565b9092509050613b018282613b08565b9250505090565b6000613b4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614403565b9392505050565b600082820183811015613b4a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000613be28a601254601354614478565b9250925092506000613bf2613ae5565b90506000806000613c048e87866144c7565b919e509c509a509598509396509194505050505091939550919395565b6000613b4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a34565b601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560408051600280825260608083018452926020830190803683370190505090503081600081518110613cd057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613d7057600080fd5b505afa158015613d84573d6000803e3d6000fd5b505050506040513d6020811015613d9a57600080fd5b5051815182906001908110613dab57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e10307f00000000000000000000000000000000000000000000000000000000000000008461311f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613ecf578181015183820152602001613eb7565b505050509050019650505050505050600060405180830381600087803b158015613ef857600080fd5b505af1158015613f0c573d6000803e3d6000fd5b5050601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600082613f4b57506000610f2a565b82820282848281613f5857fe5b0414613b4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149f96021913960400191505060405180910390fd5b60165473ffffffffffffffffffffffffffffffffffffffff166108fc613fd6836003613b08565b6040518115909202916000818181858888f19350505050158015613ffe573d6000803e3d6000fd5b5060175473ffffffffffffffffffffffffffffffffffffffff166108fc614026836003613b08565b6040518115909202916000818181858888f1935050505015801561404e573d6000803e3d6000fd5b5060185473ffffffffffffffffffffffffffffffffffffffff166108fc614076836003613b08565b6040518115909202916000818181858888f1505050505050565b8061409d5761409d614503565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff1680156140f8575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b1561410d57614108848484614535565b614259565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16158015614168575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff165b15614178576141088484846146a7565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff161580156141d4575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b156141e457614108848484614777565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16801561423e575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff165b1561424e576141088484846147c8565b614259848484614777565b8061426657614266614855565b50505050565b600d54600c546000918291825b6009548110156143d15782600360006009848154811061429557fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054118061431457508160046000600984815481106142e057fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561432b57600d54600c54945094505050506143ff565b614378600360006009848154811061433f57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548490613c21565b92506143c7600460006009848154811061438e57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548390613c21565b9150600101614279565b50600c54600d546143e191613b08565b8210156143f957600d54600c549350935050506143ff565b90925090505b9091565b6000818361446c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315613aa2578181015183820152602001613a8a565b50600083858161126457fe5b600080808061448c606461273c8989613f3c565b9050600061449f606461273c8a89613f3c565b905060006144b7826144b18b86613c21565b90613c21565b9992985090965090945050505050565b60008080806144d68786613f3c565b905060006144e48787613f3c565b905060006144f28383613c21565b929992985090965090945050505050565b6012541580156145135750601354155b1561451d57614533565b6012805460145560138054601555600091829055555b565b60008060008060008061454787613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b509399509197509550935091506145869088613c21565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460209081526040808320939093556003905220546145c29087613c21565b73ffffffffffffffffffffffffffffffffffffffff808b1660009081526003602052604080822093909355908a16815220546145fe9086613b51565b73ffffffffffffffffffffffffffffffffffffffff891660009081526003602052604090205561462d81614863565b61463784836148ec565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806146b987613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b509399509197509550935091506146f89087613c21565b73ffffffffffffffffffffffffffffffffffffffff808b16600090815260036020908152604080832094909455918b1681526004909152205461473b9084613b51565b73ffffffffffffffffffffffffffffffffffffffff89166000908152600460209081526040808320939093556003905220546145fe9086613b51565b60008060008060008061478987613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b509399509197509550935091506145c29087613c21565b6000806000806000806147da87613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b509399509197509550935091506148199088613c21565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460209081526040808320939093556003905220546146f89087613c21565b601454601255601554601355565b600061486d613ae5565b9050600061487b8383613f3c565b306000908152600360205260409020549091506148989082613b51565b3060009081526003602090815260408083209390935560089052205460ff16156148e757306000908152600460205260409020546148d69084613b51565b306000908152600460205260409020555b505050565b600d546148f99083613c21565b600d55600e546149099082613b51565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e73596f752063616e6e6f74207472616465206d6f7265207468616e204d617853656c6c2070657220737761704f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050a214d720b52d564bfc3e40887180c3bdf06441101abb2994985d9e01bf191764736f6c634300060c0033000000000000000000000000cf032c4c35b22ecfb836a3372f58e370016bbe8100000000000000000000000040024ad46a5b8bfea526285ed1af7875492161e100000000000000000000000012d4644cc106e3da66cd9f3a3e786042a7a81800
Deployed Bytecode
0x6080604052600436106103855760003560e01c8063715018a6116101d1578063b048becc11610102578063e47d6060116100a0578063f3063ff61161006f578063f3063ff614610da7578063f429389014610dbc578063f815a84214610dd1578063f84354f114610de65761038c565b8063e47d606014610cd2578063e489918414610d12578063f2cc0c1814610d27578063f2fde38b14610d675761038c565b8063d543dbeb116100dc578063d543dbeb14610c0a578063dd46706414610c34578063dd62ed3e14610c5e578063e01af92c14610ca65761038c565b8063b048becc14610b8b578063b6c5232414610bb5578063cba0e99614610bca5761038c565b80639ce11bad1161016f578063a9059cbb11610149578063a9059cbb14610abc578063ab62304f14610b02578063abdef31d14610b17578063af9549e014610b435761038c565b80639ce11bad14610a21578063a457c2d714610a61578063a69df4b514610aa75761038c565b80637ded4d6a116101ab5780637ded4d6a1461098d5780638da5cb5b146109cd57806395d89b41146109e257806399600de6146109f75761038c565b8063715018a6146109235780637302dacf146109385780637d1db4a5146109785761038c565b80633bd5d173116102b657806351bc3c851161025457806359f1707d1161022357806359f1707d1461086457806362cbe4421461088e5780636ddd1713146108ce57806370a08231146108e35761038c565b806351bc3c85146107bb5780635342acb4146107d05780635880b8731461081057806359992dbc1461083a5761038c565b80634303443d116102905780634303443d1461071f5780634549b0391461075f57806349bd5a5e146107915780634ada218b146107a65761038c565b80633bd5d173146106b65780634144d9e4146106e057806341cc9410146106f55761038c565b806318160ddd116103235780632d838119116102fd5780632d838119146105eb578063313ce567146106155780633498a76c1461064057806339509351146106705761038c565b806318160ddd146105465780631ff53b601461055b57806323b872dd1461059b5761038c565b8063095ea7b31161035f578063095ea7b31461046e5780630a1f8ea8146104c857806313114a9d1461050a5780631694505e146105315761038c565b806303588b6d1461039157806306f103db146103cf57806306fdde03146103e45761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610e26565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156103db57600080fd5b506103a6610e42565b3480156103f057600080fd5b506103f9610e5e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043357818101518382015260200161041b565b50505050905090810190601f1680156104605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047a57600080fd5b506104b46004803603604081101561049157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f12565b604080519115158252519081900360200190f35b3480156104d457600080fd5b50610508600480360360208110156104eb57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610f30565b005b34801561051657600080fd5b5061051f611008565b60408051918252519081900360200190f35b34801561053d57600080fd5b506103a661100e565b34801561055257600080fd5b5061051f611032565b34801561056757600080fd5b506105086004803603602081101561057e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611038565b3480156105a757600080fd5b506104b4600480360360608110156105be57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611110565b3480156105f757600080fd5b5061051f6004803603602081101561060e57600080fd5b50356111b1565b34801561062157600080fd5b5061062a61122d565b6040805160ff9092168252519081900360200190f35b34801561064c57600080fd5b5061051f6004803603604081101561066357600080fd5b5080359060200135611236565b34801561067c57600080fd5b506104b46004803603604081101561069357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561126e565b3480156106c257600080fd5b50610508600480360360208110156106d957600080fd5b50356112c9565b3480156106ec57600080fd5b506103a66113e4565b34801561070157600080fd5b506105086004803603602081101561071857600080fd5b5035611400565b34801561072b57600080fd5b506105086004803603602081101561074257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611496565b34801561076b57600080fd5b5061051f6004803603604081101561078257600080fd5b508035906020013515156116e8565b34801561079d57600080fd5b506103a6611794565b3480156107b257600080fd5b506104b46117b8565b3480156107c757600080fd5b506105086117c1565b3480156107dc57600080fd5b506104b4600480360360208110156107f357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661186b565b34801561081c57600080fd5b506105086004803603602081101561083357600080fd5b5035611896565b34801561084657600080fd5b506105086004803603602081101561085d57600080fd5b50356119a9565b34801561087057600080fd5b506105086004803603602081101561088757600080fd5b5035611a3f565b34801561089a57600080fd5b50610508600480360360208110156108b157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611b52565b3480156108da57600080fd5b506104b4611c2a565b3480156108ef57600080fd5b5061051f6004803603602081101561090657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c4c565b34801561092f57600080fd5b50610508611cd5565b34801561094457600080fd5b5061051f6004803603602081101561095b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611dd5565b34801561098457600080fd5b5061051f611de7565b34801561099957600080fd5b50610508600480360360208110156109b057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611ded565b3480156109d957600080fd5b506103a66120c3565b3480156109ee57600080fd5b506103f96120df565b348015610a0357600080fd5b5061050860048036036020811015610a1a57600080fd5b503561215e565b348015610a2d57600080fd5b5061051f60048036036020811015610a4457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166121f4565b348015610a6d57600080fd5b506104b460048036036040811015610a8457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561221c565b348015610ab357600080fd5b50610508612291565b348015610ac857600080fd5b506104b460048036036040811015610adf57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612404565b348015610b0e57600080fd5b5061051f612418565b348015610b2357600080fd5b5061050860048036036020811015610b3a57600080fd5b5035151561241e565b348015610b4f57600080fd5b5061050860048036036040811015610b6657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013515156124e0565b348015610b9757600080fd5b5061050860048036036020811015610bae57600080fd5b50356125c7565b348015610bc157600080fd5b5061051f612660565b348015610bd657600080fd5b506104b460048036036020811015610bed57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612666565b348015610c1657600080fd5b5061050860048036036020811015610c2d57600080fd5b5035612691565b348015610c4057600080fd5b5061050860048036036020811015610c5757600080fd5b5035612748565b348015610c6a57600080fd5b5061051f60048036036040811015610c8157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612856565b348015610cb257600080fd5b5061050860048036036020811015610cc957600080fd5b5035151561288e565b348015610cde57600080fd5b506104b460048036036020811015610cf557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661296a565b348015610d1e57600080fd5b5061051f612995565b348015610d3357600080fd5b5061050860048036036020811015610d4a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661299b565b348015610d7357600080fd5b5061050860048036036020811015610d8a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612c6e565b348015610db357600080fd5b5061051f612df8565b348015610dc857600080fd5b50610508612dfe565b348015610ddd57600080fd5b5061051f612e99565b348015610df257600080fd5b5061050860048036036020811015610e0957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612e9d565b60165473ffffffffffffffffffffffffffffffffffffffff1681565b60185473ffffffffffffffffffffffffffffffffffffffff1681565b600f8054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f085780601f10610edd57610100808354040283529160200191610f08565b820191906000526020600020905b815481529060010190602001808311610eeb57829003601f168201915b5050505050905090565b6000610f26610f1f61311b565b848461311f565b5060015b92915050565b610f3861311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610fc157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600e5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5490565b61104061311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146110c957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061111d848484613266565b6111a78461112961311b565b6111a285604051806060016040528060288152602001614a1a6028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526005602052604081209061117461311b565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190613a34565b61311f565b5060019392505050565b6000600d5482111561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614934602a913960400191505060405180910390fd5b6000611218613ae5565b90506112248382613b08565b9150505b919050565b60115460ff1690565b60006103e8830283811161124957600080fd5b600083828161125457fe5b046005019050600a818161126457fe5b0495945050505050565b6000610f2661127b61311b565b846111a2856005600061128c61311b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490613b51565b60006112d361311b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090205490915060ff1615611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614afa602c913960400191505060405180910390fd5b600061136083613bc5565b5050505073ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604090205491925061139991905082613c21565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040902055600d546113cc9082613c21565b600d55600e546113dc9084613b51565b600e55505050565b60175473ffffffffffffffffffffffffffffffffffffffff1681565b61140861311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461149157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601e55565b61149e61311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461152757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff821614156115aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614a6b6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090205460ff161561163f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff166000818152600a6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000600c5483111561175b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161177a57600061176b84613bc5565b50939550610f2a945050505050565b600061178584613bc5565b50929550610f2a945050505050565b7f0000000000000000000000003f3e83c5b04d6d0aa6bfdc9af1d818c2a9cb491f81565b601d5460ff1681565b6117c961311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461185257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600061185d30611c4c565b905061186881613c63565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205460ff1690565b61189e61311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461192757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600181101580156119395750600a8111155b6119a457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601255565b6119b161311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611a3a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601955565b611a4761311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611ad057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60018110158015611ae25750600b8111155b611b4d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6465764665652073686f756c6420626520696e2031202d203131000000000000604482015290519081900360640190fd5b601355565b611b5a61311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611be357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6018547501000000000000000000000000000000000000000000900460ff1681565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604081205460ff1615611ca6575073ffffffffffffffffffffffffffffffffffffffff8116600090815260046020526040902054611228565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054610f2a906111b1565b611cdd61311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611d6657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60066020526000908152604090205481565b601c5481565b611df561311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611e7e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090205460ff16611f1257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b548110156120bf578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110611f4357fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156120b757600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101908110611f9b57fe5b600091825260209091200154600b805473ffffffffffffffffffffffffffffffffffffffff9092169183908110611fce57fe5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559184168152600a9091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600b80548061205a57fe5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556120bf565b600101611f15565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60108054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f085780601f10610edd57610100808354040283529160200191610f08565b61216661311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146121ef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601a55565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b6000610f2661222961311b565b846111a285604051806060016040528060258152602001614b49602591396005600061225361311b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190613a34565b60015473ffffffffffffffffffffffffffffffffffffffff163314612301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614b266023913960400191505060405180910390fd5b600254421161237157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b6001546000805460405173ffffffffffffffffffffffffffffffffffffffff93841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610f2661241161311b565b8484613266565b601b5481565b61242661311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146124af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6124e861311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461257157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6125cf61311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461265857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b603c02601b55565b60025490565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205460ff1690565b61269961311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461272257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b612742606461273c83600c54613f3c90919063ffffffff16565b90613b08565b601c5550565b61275061311b565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146127d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054600180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff84161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b61289661311b565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461291f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205460ff1690565b60195481565b6129a361311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612a2c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff82161415612aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ad86022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090205460ff1615612b4457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205415612bc55773ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902054612b9e906111b1565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260086020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b612c7661311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612cff57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612d6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806149896026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b601a5481565b612e0661311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612e8f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b4761186881613faf565b4790565b612ea561311b565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612f2e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090205460ff16612fc257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6009548110156120bf578173ffffffffffffffffffffffffffffffffffffffff1660098281548110612ff357fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561311357600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811061304b57fe5b6000918252602090912001546009805473ffffffffffffffffffffffffffffffffffffffff909216918390811061307e57fe5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260048252604080822082905560089092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600980548061205a57fe5b600101612fc5565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661318b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ab46024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806149af6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166132d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614a8f6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661333e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806149116023913960400191505060405180910390fd5b60008111613397576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614a426029913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff161561342c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f596f7520617265206465616420746f206d650000000000000000000000000000604482015290519081900360640190fd5b336000908152600a602052604090205460ff16156134ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f596f7520617265206465616420746f206d650000000000000000000000000000604482015290519081900360640190fd5b6134b36120c3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561352157506134f16120c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561369c57601c54811115613581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149d16028913960400191505060405180910390fd5b7f0000000000000000000000003f3e83c5b04d6d0aa6bfdc9af1d818c2a9cb491f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061362657507f0000000000000000000000003f3e83c5b04d6d0aa6bfdc9af1d818c2a9cb491f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561369c57601d5460ff1661369c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b6136a46120c3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561372b57507f0000000000000000000000003f3e83c5b04d6d0aa6bfdc9af1d818c2a9cb491f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156138d15773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff166138d15760185473ffffffffffffffffffffffffffffffffffffffff8381169116146138d15773ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205442101561381357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f45766572796f6e65206973207665737465642100000000000000000000000000604482015290519081900360640190fd5b601a5461382a61382285611c4c565b601c54611236565b111561389c576019546138458261384086611c4c565b611236565b111561389c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061495e602b913960400191505060405180910390fd5b601b546138aa904290613b51565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260409020555b60006138dc30611c4c565b9050601c5481106138ec5750601c545b601e54601854908210159074010000000000000000000000000000000000000000900460ff1615801561393a57506018547501000000000000000000000000000000000000000000900460ff165b80156139435750805b801561399b57507f0000000000000000000000003f3e83c5b04d6d0aa6bfdc9af1d818c2a9cb491f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156139bb576139a982613c63565b4780156139b9576139b947613faf565b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604090205460019060ff1680613a17575073ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604090205460ff165b15613a20575060005b613a2c86868684614090565b505050505050565b60008184841115613add576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613aa2578181015183820152602001613a8a565b50505050905090810190601f168015613acf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000613af261426c565b9092509050613b018282613b08565b9250505090565b6000613b4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614403565b9392505050565b600082820183811015613b4a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000613be28a601254601354614478565b9250925092506000613bf2613ae5565b90506000806000613c048e87866144c7565b919e509c509a509598509396509194505050505091939550919395565b6000613b4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a34565b601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560408051600280825260608083018452926020830190803683370190505090503081600081518110613cd057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613d7057600080fd5b505afa158015613d84573d6000803e3d6000fd5b505050506040513d6020811015613d9a57600080fd5b5051815182906001908110613dab57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e10307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461311f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613ecf578181015183820152602001613eb7565b505050509050019650505050505050600060405180830381600087803b158015613ef857600080fd5b505af1158015613f0c573d6000803e3d6000fd5b5050601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600082613f4b57506000610f2a565b82820282848281613f5857fe5b0414613b4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149f96021913960400191505060405180910390fd5b60165473ffffffffffffffffffffffffffffffffffffffff166108fc613fd6836003613b08565b6040518115909202916000818181858888f19350505050158015613ffe573d6000803e3d6000fd5b5060175473ffffffffffffffffffffffffffffffffffffffff166108fc614026836003613b08565b6040518115909202916000818181858888f1935050505015801561404e573d6000803e3d6000fd5b5060185473ffffffffffffffffffffffffffffffffffffffff166108fc614076836003613b08565b6040518115909202916000818181858888f1505050505050565b8061409d5761409d614503565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff1680156140f8575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b1561410d57614108848484614535565b614259565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16158015614168575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff165b15614178576141088484846146a7565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff161580156141d4575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b156141e457614108848484614777565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16801561423e575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff165b1561424e576141088484846147c8565b614259848484614777565b8061426657614266614855565b50505050565b600d54600c546000918291825b6009548110156143d15782600360006009848154811061429557fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054118061431457508160046000600984815481106142e057fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561432b57600d54600c54945094505050506143ff565b614378600360006009848154811061433f57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548490613c21565b92506143c7600460006009848154811061438e57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548390613c21565b9150600101614279565b50600c54600d546143e191613b08565b8210156143f957600d54600c549350935050506143ff565b90925090505b9091565b6000818361446c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315613aa2578181015183820152602001613a8a565b50600083858161126457fe5b600080808061448c606461273c8989613f3c565b9050600061449f606461273c8a89613f3c565b905060006144b7826144b18b86613c21565b90613c21565b9992985090965090945050505050565b60008080806144d68786613f3c565b905060006144e48787613f3c565b905060006144f28383613c21565b929992985090965090945050505050565b6012541580156145135750601354155b1561451d57614533565b6012805460145560138054601555600091829055555b565b60008060008060008061454787613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b509399509197509550935091506145869088613c21565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460209081526040808320939093556003905220546145c29087613c21565b73ffffffffffffffffffffffffffffffffffffffff808b1660009081526003602052604080822093909355908a16815220546145fe9086613b51565b73ffffffffffffffffffffffffffffffffffffffff891660009081526003602052604090205561462d81614863565b61463784836148ec565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806146b987613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b509399509197509550935091506146f89087613c21565b73ffffffffffffffffffffffffffffffffffffffff808b16600090815260036020908152604080832094909455918b1681526004909152205461473b9084613b51565b73ffffffffffffffffffffffffffffffffffffffff89166000908152600460209081526040808320939093556003905220546145fe9086613b51565b60008060008060008061478987613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b509399509197509550935091506145c29087613c21565b6000806000806000806147da87613bc5565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b509399509197509550935091506148199088613c21565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460209081526040808320939093556003905220546146f89087613c21565b601454601255601554601355565b600061486d613ae5565b9050600061487b8383613f3c565b306000908152600360205260409020549091506148989082613b51565b3060009081526003602090815260408083209390935560089052205460ff16156148e757306000908152600460205260409020546148d69084613b51565b306000908152600460205260409020555b505050565b600d546148f99083613c21565b600d55600e546149099082613b51565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e73596f752063616e6e6f74207472616465206d6f7265207468616e204d617853656c6c2070657220737761704f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050a214d720b52d564bfc3e40887180c3bdf06441101abb2994985d9e01bf191764736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cf032c4c35b22ecfb836a3372f58e370016bbe8100000000000000000000000040024ad46a5b8bfea526285ed1af7875492161e100000000000000000000000012d4644cc106e3da66cd9f3a3e786042a7a81800
-----Decoded View---------------
Arg [0] : DevWalletAddress (address): 0xCF032c4C35b22eCFb836a3372f58E370016BBE81
Arg [1] : marketingWalletAddress (address): 0x40024aD46A5B8Bfea526285ED1Af7875492161E1
Arg [2] : LotteryWalletAddress (address): 0x12D4644CC106E3da66Cd9f3a3E786042A7a81800
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000cf032c4c35b22ecfb836a3372f58e370016bbe81
Arg [1] : 00000000000000000000000040024ad46a5b8bfea526285ed1af7875492161e1
Arg [2] : 00000000000000000000000012d4644cc106e3da66cd9f3a3e786042a7a81800
Deployed Bytecode Sourcemap
27890:24309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29075:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29183:38;;;;;;;;;;;;;:::i;31459:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33040:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33040:173:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51538:141;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51538:141:0;;;;:::i;:::-;;34527:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29234:51;;;;;;;;;;;;;:::i;31772:103::-;;;;;;;;;;;;;:::i;51871:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51871:165:0;;;;:::i;33225:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33225:329:0;;;;;;;;;;;;;;;;;;:::i;35535:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35535:269:0;;:::i;31669:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32029:296;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32029:296:0;;;;;;;:::i;33566:230::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33566:230:0;;;;;;;;;:::i;34634:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34634:405:0;;:::i;29126:46::-;;;;;;;;;;;;;:::i;52057:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52057:133:0;;:::i;36837:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36837:372:0;;;;:::i;35051:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35051:472:0;;;;;;;;;:::i;29296:38::-;;;;;;;;;;;;;:::i;29645:34::-;;;;;;;;;;;;;:::i;44323:168::-;;;;;;;;;;;;;:::i;38156:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38156:131:0;;;;:::i;51152:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51152:181:0;;:::i;38481:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38481:138:0;;:::i;51345:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51345:181:0;;:::i;51700:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51700:151:0;;;;:::i;29377:30::-;;;;;;;;;;;;;:::i;32464:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32464:210:0;;;;:::i;17736:160::-;;;;;;;;;;;;;:::i;28211:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28211:45:0;;;;:::i;29569:49::-;;;;;;;;;;;;;:::i;37221:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37221:540:0;;;;:::i;17034:87::-;;;;;;;;;;;;;:::i;31562:95::-;;;;;;;;;;;;;:::i;38644:135::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38644:135:0;;:::i;32339:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32339:113:0;;;;:::i;33808:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33808:281:0;;;;;;;;;:::i;18835:313::-;;;;;;;;;;;;;:::i;32686:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:179:0;;;;;;;;;:::i;29515:43::-;;;;;;;;;;;;;:::i;31887:129::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31887:129:0;;;;:::i;34370:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34370:145:0;;;;;;;;;;;:::i;38829:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38829:145:0;;:::i;18340:97::-;;;;;;;;;;;;;:::i;34101:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34101:118:0;;;;:::i;38303:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38303:166:0;;:::i;18521:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18521:234:0;;:::i;32877:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32877:151:0;;;;;;;;;;;:::i;44683:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44683:106:0;;;;:::i;34231:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34231:127:0;;;;:::i;29420:38::-;;;;;;;;;;;;;:::i;35816:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35816:475:0;;;;:::i;18068:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18068:260:0;;;;:::i;29469:35::-;;;;;;;;;;;;;:::i;44503:168::-;;;;;;;;;;;;;:::i;51022:118::-;;;;;;;;;;;;;:::i;36303:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36303:522:0;;;;:::i;29075:40::-;;;;;;:::o;29183:38::-;;;;;;:::o;31459:91::-;31533:5;31526:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31496:13;;31526:12;;31533:5;;31526:12;;31533:5;31526:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31459:91;:::o;33040:173::-;33115:4;33136:39;33145:12;:10;:12::i;:::-;33159:7;33168:6;33136:8;:39::i;:::-;-1:-1:-1;33197:4:0;33040:173;;;;;:::o;51538:141::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51631:17:::1;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51538:141::o;34527:95::-;34600:10;;34527:95;:::o;29234:51::-;;;:::o;31772:103::-;31856:7;;31772:103;:::o;51871:165::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51976:23:::1;:48:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51871:165::o;33225:329::-;33323:4;33344:36;33354:6;33362:9;33373:6;33344:9;:36::i;:::-;33395:121;33404:6;33412:12;:10;:12::i;:::-;33426:89;33464:6;33426:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;33446:12;:10;:12::i;:::-;33426:33;;;;;;;;;;;;;-1:-1:-1;33426:33:0;;;:89;:37;:89::i;:::-;33395:8;:121::i;:::-;-1:-1:-1;33538:4:0;33225:329;;;;;:::o;35535:269::-;35601:7;35644;;35633;:18;;35625:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35713:19;35736:10;:8;:10::i;:::-;35713:33;-1:-1:-1;35768:24:0;:7;35713:33;35768:11;:24::i;:::-;35761:31;;;35535:269;;;;:::o;31669:91::-;31739:9;;;;31669:91;:::o;32029:296::-;32096:12;32150:4;32143:11;;32178:16;;;32170:25;;;;;;32225:9;32249:5;32237:9;:17;;;;;;32257:1;32237:21;32225:33;;32310:2;32303:4;:9;;;;;;;32029:296;-1:-1:-1;;;;;32029:296:0:o;33566:230::-;33654:4;33675:83;33684:12;:10;:12::i;:::-;33698:7;33707:50;33746:10;33707:11;:25;33719:12;:10;:12::i;:::-;33707:25;;;;;;;;;;;;;;;;;;-1:-1:-1;33707:25:0;;;:34;;;;;;;;;;;:38;:50::i;34634:405::-;34690:14;34707:12;:10;:12::i;:::-;34743:19;;;;;;;:11;:19;;;;;;34690:29;;-1:-1:-1;34743:19:0;;34742:20;34734:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34827:15;34851:19;34862:7;34851:10;:19::i;:::-;-1:-1:-1;;;;34903:15:0;;;;;;;:7;:15;;;;;;34826:44;;-1:-1:-1;34903:28:0;;:15;-1:-1:-1;34826:44:0;34903:19;:28::i;:::-;34885:15;;;;;;;:7;:15;;;;;:46;34956:7;;:20;;34968:7;34956:11;:20::i;:::-;34946:7;:30;35004:10;;:23;;35019:7;35004:14;:23::i;:::-;34991:10;:36;-1:-1:-1;;;34634:405:0:o;29126:46::-;;;;;;:::o;52057:133::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52138:28:::1;:40:::0;52057:133::o;36837:372::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36936:42:::1;36925:53;::::0;::::1;;;36917:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37043:26;::::0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37042:27;37034:70;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37119:26;;;::::0;;;:17:::1;:26;::::0;;;;:33;;;::::1;37148:4;37119:33:::0;;::::1;::::0;;;37167:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;36837:372::o;35051:472::-;35141:7;35184;;35173;:18;;35165:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35247:17;35242:270;;35286:15;35310:19;35321:7;35310:10;:19::i;:::-;-1:-1:-1;35285:44:0;;-1:-1:-1;35348:14:0;;-1:-1:-1;;;;;35348:14:0;35242:270;35405:23;35436:19;35447:7;35436:10;:19::i;:::-;-1:-1:-1;35403:52:0;;-1:-1:-1;35474:22:0;;-1:-1:-1;;;;;35474:22:0;29296:38;;;:::o;29645:34::-;;;;;;:::o;44323:168::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44381:23:::1;44407:24;44425:4;44407:9;:24::i;:::-;44381:50;;44446:33;44463:15;44446:16;:33::i;:::-;17346:1;44323:168::o:0;38156:131::-;38248:27;;38220:4;38248:27;;;:18;:27;;;;;;;;;38156:131::o;51152:181::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51242:1:::1;51232:6;:11;;:27;;;;;51257:2;51247:6;:12;;51232:27;51224:66;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;51305:7;:16:::0;51152:181::o;38481:138::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38568:18:::1;:35:::0;38481:138::o;51345:181::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51435:1:::1;51425:6;:11;;:27;;;;;51450:2;51440:6;:12;;51425:27;51417:66;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;51498:7;:16:::0;51345:181::o;51700:151::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51801:15:::1;:38:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51700:151::o;29377:30::-;;;;;;;;;:::o;32464:210::-;32558:20;;;32530:7;32558:20;;;:11;:20;;;;;;;;32554:49;;;-1:-1:-1;32587:16:0;;;;;;;:7;:16;;;;;;32580:23;;32554:49;32645:16;;;;;;;:7;:16;;;;;;32625:37;;:19;:37::i;17736:160::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17847:1:::1;17831:6:::0;;17810:40:::1;::::0;::::1;17831:6:::0;;::::1;::::0;17810:40:::1;::::0;17847:1;;17810:40:::1;17882:1;17865:19:::0;;;::::1;::::0;;17736:160::o;28211:45::-;;;;;;;;;;;;;:::o;29569:49::-;;;;:::o;37221:540::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37314:26:::1;::::0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37306:65;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37391:9;37386:364;37410:16;:23:::0;37406:27;::::1;37386:364;;;37486:7;37463:30;;:16;37480:1;37463:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;:30;37459:276;;;37540:16;37557:23:::0;;:27;;;;37540:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37518:16:::1;:19:::0;;37540:45:::1;::::0;;::::1;::::0;37535:1;;37518:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;;::::1;;::::0;;::::1;;::::0;;37608:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;;::::1;::::0;;37665:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;37710:5:::1;;37459:276;37435:3;;37386:364;;;;37221:540:::0;:::o;17034:87::-;17072:7;17103:6;;;17034:87;:::o;31562:95::-;31638:7;31631:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31601:13;;31631:14;;31638:7;;31631:14;;31638:7;31631:14;;;;;;;;;;;;;;;;;;;;;;;;38644:135;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38731:15:::1;:32:::0;38644:135::o;32339:113::-;32425:15;;32396:4;32425:15;;;:9;:15;;;;;;;32339:113::o;33808:281::-;33901:4;33922:129;33931:12;:10;:12::i;:::-;33945:7;33954:96;33993:15;33954:96;;;;;;;;;;;;;;;;;:11;:25;33966:12;:10;:12::i;:::-;33954:25;;;;;;;;;;;;;;;;;;-1:-1:-1;33954:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18835:313::-;18891:14;;:28;:14;18909:10;18891:28;18883:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18988:9;;18982:3;:15;18974:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19083:14;;;19075:6;;19054:44;;19083:14;;;;;19075:6;;;;19054:44;;;19122:14;;;19113:23;;;;19122:14;;;;19113:23;;;;;;18835:313::o;32686:179::-;32764:4;32785:42;32795:12;:10;:12::i;:::-;32809:9;32820:6;32785:9;:42::i;29515:43::-;;;;:::o;31887:129::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31971:14:::1;:32:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;31887:129::o;34370:145::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34465:27:::1;::::0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;34370:145::o;38829:::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38948:9:::1;38932:25;38914:14;:44:::0;38829:145::o;18340:97::-;18416:9;;18340:97;:::o;34101:118::-;34187:20;;34159:4;34187:20;;;:11;:20;;;;;;;;;34101:118::o;38303:166::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38397:60:::1;38441:5;38397:25;38409:12;38397:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;38382:12;:75:::0;-1:-1:-1;38303:166:0:o;18521:234::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18606:6:::1;::::0;;;18589:23;;;;;::::1;18606:6;::::0;::::1;18589:23;::::0;;;18627:19:::1;::::0;;18673:3:::1;:10:::0;::::1;18661:9;:22:::0;18703:40:::1;::::0;18606:6;;18703:40:::1;::::0;18606:6;;18703:40:::1;18521:234:::0;:::o;32877:151::-;32989:18;;;;32958:7;32989:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32877:151::o;44683:106::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44756:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;44683:106::o;34231:127::-;34320:26;;34292:4;34320:26;;;:17;:26;;;;;;;;;34231:127::o;29420:38::-;;;;:::o;35816:475::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35912:42:::1;35901:53;::::0;::::1;;;35893:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36017:20;::::0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36016:21;36008:61;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36087:16;::::0;::::1;36106:1;36087:16:::0;;;:7:::1;:16;::::0;;;;;:20;36084:116:::1;;36167:16;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;36147:37:::1;::::0;:19:::1;:37::i;:::-;36128:16;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;36084:116:::1;36214:20;;;::::0;;;:11:::1;:20;::::0;;;;:27;;;::::1;36237:4;36214:27:::0;;::::1;::::0;;;36256:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;35816:475::o;18068:260::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18161:22:::1;::::0;::::1;18153:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18267:6;::::0;;18246:38:::1;::::0;::::1;::::0;;::::1;::::0;18267:6;::::1;::::0;18246:38:::1;::::0;::::1;18299:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;18068:260::o;29469:35::-;;;;:::o;44503:168::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44590:21:::1;44626:33;44590:21:::0;44626:13:::1;:33::i;51022:118::-:0;51107:21;51022:118;:::o;36303:522::-;17282:12;:10;:12::i;:::-;17272:6;;:22;:6;;;:22;;;17264:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36388:20:::1;::::0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36380:60;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36460:9;36455:359;36479:9;:16:::0;36475:20;::::1;36455:359;;;36541:7;36525:23;;:9;36535:1;36525:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;:23;36521:278;;;36588:9;36598:16:::0;;:20;;;;36588:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;36573:9:::1;:12:::0;;36588:31:::1;::::0;;::::1;::::0;36583:1;;36573:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;;::::1;;::::0;;::::1;;::::0;;36642:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;36685:11:::1;:20:::0;;;;:28;;;::::1;::::0;;36736:9:::1;:15:::0;;;::::1;;;36521:278;36497:3;;36455:359;;1491:114:::0;1583:10;1491:114;:::o;39010:357::-;39107:19;;;39099:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39190:21;;;39182:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39267:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39323:32;;;;;;;;;;;;;;;;;39010:357;;;:::o;39379:3875::-;39480:20;;;39472:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39565:23;;;39557:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39660:1;39651:6;:10;39643:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39731:28;;;;;;;:17;:28;;;;;;;;39730:29;39722:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39824:10;39806:29;;;;:17;:29;;;;;;;;39805:30;39797:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39888:7;:5;:7::i;:::-;39878:17;;:6;:17;;;;:41;;;;;39912:7;:5;:7::i;:::-;39899:20;;:9;:20;;;;39878:41;39875:441;;;39971:12;;39961:6;:22;;39953:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40179:13;40169:23;;:6;:23;;;:53;;;;40209:13;40196:26;;:9;:26;;;40169:53;40165:116;;;40234:14;;;;40226:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40397:7;:5;:7::i;:::-;40387:17;;:6;:17;;;;:44;;;;;40418:13;40408:23;;:6;:23;;;;40387:44;40384:1385;;;40561:19;;;;;;;:11;:19;;;;;;;;40556:1194;;40684:15;;;40671:28;;;40684:15;;40671:28;40667:1054;;40866:17;;;;;;;:9;:17;;;;;;40847:15;:36;;40839:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41152:15;;41103:46;41118:17;41128:6;41118:9;:17::i;:::-;41136:12;;41103:14;:46::i;:::-;:64;41099:397;;;41400:18;;41355:41;41370:6;41378:17;41388:6;41378:9;:17::i;:::-;41355:14;:41::i;:::-;:63;;41347:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41654:14;;41634:35;;:15;;:19;:35::i;:::-;41614:17;;;;;;;:9;:17;;;;;:55;40667:1054;42054:28;42085:24;42103:4;42085:9;:24::i;:::-;42054:55;;42153:12;;42129:20;:36;42126:124;;-1:-1:-1;42222:12:0;;42126:124;42317:28;;42365:6;;42293:52;;;;;42365:6;;;;;42364:7;:22;;;;-1:-1:-1;42375:11:0;;;;;;;42364:22;:45;;;;;42390:19;42364:45;:72;;;;;42423:13;42413:23;;:6;:23;;;;42364:72;42360:436;;;42547:38;42564:20;42547:16;:38::i;:::-;42635:21;42678:22;;42675:106;;42725:36;42739:21;42725:13;:36::i;:::-;42360:436;;43004:26;;;42877:12;43004:26;;;:18;:26;;;;;;42892:4;;43004:26;;;:59;;-1:-1:-1;43034:29:0;;;;;;;:18;:29;;;;;;;;43004:59;43001:113;;;-1:-1:-1;43093:5:0;43001:113;43195:47;43210:6;43217:9;43227:6;43234:7;43195:14;:47::i;:::-;39379:3875;;;;;;:::o;6018:208::-;6104:7;6144:12;6136:6;;;;6128:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6184:5:0;;;6018:208::o;50008:175::-;50049:7;50074:15;50091;50110:19;:17;:19::i;:::-;50073:56;;-1:-1:-1;50073:56:0;-1:-1:-1;50151:20:0;50073:56;;50151:11;:20::i;:::-;50144:27;;;;50008:175;:::o;7548:140::-;7606:7;7637:39;7641:1;7644;7637:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7630:46;7548:140;-1:-1:-1;;;7548:140:0:o;5021:197::-;5079:7;5115:5;;;5143:6;;;;5135:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48754:486;48813:7;48822;48831;48840;48849;48858;48883:23;48908:12;48922:16;48942:38;48954:7;48963;;48972;;48942:11;:38::i;:::-;48882:98;;;;;;48995:19;49018:10;:8;:10::i;:::-;48995:33;;49044:15;49061:23;49086:12;49102:39;49114:7;49123:4;49129:11;49102;:39::i;:::-;49043:98;;-1:-1:-1;49043:98:0;-1:-1:-1;49043:98:0;-1:-1:-1;49196:15:0;;-1:-1:-1;49213:4:0;;-1:-1:-1;49219:8:0;;-1:-1:-1;;;;;48754:486:0;;;;;;;:::o;5536:144::-;5594:7;5625:43;5629:1;5632;5625:43;;;;;;;;;;;;;;;;;:3;:43::i;43266:656::-;29925:6;:13;;;;;;;;43435:16:::1;::::0;;43449:1:::1;43435:16:::0;;;43411:21:::1;43435:16:::0;;::::1;::::0;;43411:21;43435:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;43435:16:0::1;43411:40;;43484:4;43466;43471:1;43466:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;43514:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;43514:22:0;43504:7;;:4;;43509:1:::1;::::0;43504:7;::::1;;;;;;;;;;:32;;;;;;;;;::::0;::::1;43553:62;43570:4;43585:15;43603:11;43553:8;:62::i;:::-;43662:15;:66;;;43747:11;43777:1;43825:4;43856;43880:15;43662:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29969:6:0;:14;;;;;;-1:-1:-1;;;;43266:656:0:o;6520:511::-;6578:7;6839:6;6835:55;;-1:-1:-1;6873:1:0;6866:8;;6835:55;6918:5;;;6922:1;6918;:5;:1;6946:5;;;;;:10;6938:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43934:227;43996:17;;;;:41;44023:13;:6;44034:1;44023:10;:13::i;:::-;43996:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44052:23:0;;;;:47;44085:13;:6;44096:1;44085:10;:13::i;:::-;44052:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44114:15:0;;;;:35;44135:13;:6;44146:1;44135:10;:13::i;:::-;44114:35;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43934:227:0:o;44801:883::-;44917:7;44913:44;;44943:14;:12;:14::i;:::-;44978:19;;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;45002:22:0;;;;;;;:11;:22;;;;;;;;45001:23;44978:46;44974:637;;;45045:48;45067:6;45075:9;45086:6;45045:21;:48::i;:::-;44974:637;;;45120:19;;;;;;;:11;:19;;;;;;;;45119:20;:46;;;;-1:-1:-1;45143:22:0;;;;;;;:11;:22;;;;;;;;45119:46;45115:496;;;45186:46;45206:6;45214:9;45225:6;45186:19;:46::i;45115:496::-;45259:19;;;;;;;:11;:19;;;;;;;;45258:20;:47;;;;-1:-1:-1;45283:22:0;;;;;;;:11;:22;;;;;;;;45282:23;45258:47;45254:357;;;45326:44;45344:6;45352:9;45363:6;45326:17;:44::i;45254:357::-;45396:19;;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;45419:22:0;;;;;;;:11;:22;;;;;;;;45396:45;45392:219;;;45462:48;45484:6;45492:9;45503:6;45462:21;:48::i;45392:219::-;45551:44;45569:6;45577:9;45588:6;45551:17;:44::i;:::-;45631:7;45627:45;;45657:15;:13;:15::i;:::-;44801:883;;;;:::o;50195:595::-;50296:7;;50336;;50245;;;;;50358:305;50382:9;:16;50378:20;;50358:305;;;50452:7;50428;:21;50436:9;50446:1;50436:12;;;;;;;;;;;;;;;;;;;;;;50428:21;;;;;;;;;;;;;:31;;:66;;;50487:7;50463;:21;50471:9;50481:1;50471:12;;;;;;;;;;;;;;;;;;;;;;50463:21;;;;;;;;;;;;;:31;50428:66;50424:97;;;50504:7;;50513;;50496:25;;;;;;;;;50424:97;50550:34;50562:7;:21;50570:9;50580:1;50570:12;;;;;;;;;;;;;;;;;;;;;;50562:21;;;;;;;;;;;;;50550:7;;:11;:34::i;:::-;50540:44;;50613:34;50625:7;:21;50633:9;50643:1;50633:12;;;;;;;;;;;;;;;;;;;;;;50625:21;;;;;;;;;;;;;50613:7;;:11;:34::i;:::-;50603:44;-1:-1:-1;50400:3:0;;50358:305;;;-1:-1:-1;50703:7:0;;50691;;:20;;:11;:20::i;:::-;50681:7;:30;50677:61;;;50721:7;;50730;;50713:25;;;;;;;;50677:61;50761:7;;-1:-1:-1;50770:7:0;-1:-1:-1;50195:595:0;;;:::o;8225:298::-;8311:7;8350:12;8343:5;8335:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8378:9;8394:1;8390;:5;;;;49252:378;49344:7;;;;49401:28;49425:3;49401:19;:7;49413:6;49401:11;:19::i;:28::-;49386:43;-1:-1:-1;49444:16:0;49463:28;49487:3;49463:19;:7;49475:6;49463:11;:19::i;:28::-;49444:47;-1:-1:-1;49506:23:0;49532:31;49444:47;49532:17;:7;49544:4;49532:11;:17::i;:::-;:21;;:31::i;:::-;49506:57;49603:4;;-1:-1:-1;49609:8:0;;-1:-1:-1;49252:378:0;;-1:-1:-1;;;;;49252:378:0:o;49642:354::-;49737:7;;;;49797:24;:7;49809:11;49797;:24::i;:::-;49779:42;-1:-1:-1;49836:12:0;49851:21;:4;49860:11;49851:8;:21::i;:::-;49836:36;-1:-1:-1;49887:23:0;49913:17;:7;49836:36;49913:11;:17::i;:::-;49953:7;;;;-1:-1:-1;49979:4:0;;-1:-1:-1;49642:354:0;;-1:-1:-1;;;;;49642:354:0:o;37773:234::-;37823:7;;:12;:28;;;;-1:-1:-1;37839:7:0;;:12;37823:28;37820:40;;;37853:7;;37820:40;37894:7;;;37876:15;:25;37934:7;;;37916:15;:25;-1:-1:-1;37958:11:0;;;;37984;37773:234;:::o;46837:585::-;46944:15;46961:23;46986:12;47000:23;47025:12;47039:16;47059:19;47070:7;47059:10;:19::i;:::-;47111:15;;;;;;;:7;:15;;;;;;46943:135;;-1:-1:-1;46943:135:0;;-1:-1:-1;46943:135:0;;-1:-1:-1;46943:135:0;-1:-1:-1;46943:135:0;-1:-1:-1;46943:135:0;-1:-1:-1;47111:28:0;;47131:7;47111:19;:28::i;:::-;47093:15;;;;;;;:7;:15;;;;;;;;:46;;;;47172:7;:15;;;;:28;;47192:7;47172:19;:28::i;:::-;47154:15;;;;;;;;:7;:15;;;;;;:46;;;;47236:18;;;;;;;:39;;47259:15;47236:22;:39::i;:::-;47215:18;;;;;;;:7;:18;;;;;:60;47290:18;47299:8;47290;:18::i;:::-;47323:23;47335:4;47341;47323:11;:23::i;:::-;47383:9;47366:44;;47375:6;47366:44;;;47394:15;47366:44;;;;;;;;;;;;;;;;;;46837:585;;;;;;;;;:::o;46228:597::-;46333:15;46350:23;46375:12;46389:23;46414:12;46428:16;46448:19;46459:7;46448:10;:19::i;:::-;46500:15;;;;;;;:7;:15;;;;;;46332:135;;-1:-1:-1;46332:135:0;;-1:-1:-1;46332:135:0;;-1:-1:-1;46332:135:0;-1:-1:-1;46332:135:0;-1:-1:-1;46332:135:0;-1:-1:-1;46500:28:0;;46332:135;46500:19;:28::i;:::-;46482:15;;;;;;;;:7;:15;;;;;;;;:46;;;;46564:18;;;;;:7;:18;;;;;:39;;46587:15;46564:22;:39::i;:::-;46543:18;;;;;;;:7;:18;;;;;;;;:60;;;;46639:7;:18;;;;:39;;46662:15;46639:22;:39::i;45696:520::-;45799:15;45816:23;45841:12;45855:23;45880:12;45894:16;45914:19;45925:7;45914:10;:19::i;:::-;45966:15;;;;;;;:7;:15;;;;;;45798:135;;-1:-1:-1;45798:135:0;;-1:-1:-1;45798:135:0;;-1:-1:-1;45798:135:0;-1:-1:-1;45798:135:0;-1:-1:-1;45798:135:0;-1:-1:-1;45966:28:0;;45798:135;45966:19;:28::i;47434:660::-;47541:15;47558:23;47583:12;47597:23;47622:12;47636:16;47656:19;47667:7;47656:10;:19::i;:::-;47708:15;;;;;;;:7;:15;;;;;;47540:135;;-1:-1:-1;47540:135:0;;-1:-1:-1;47540:135:0;;-1:-1:-1;47540:135:0;-1:-1:-1;47540:135:0;-1:-1:-1;47540:135:0;-1:-1:-1;47708:28:0;;47728:7;47708:19;:28::i;:::-;47690:15;;;;;;;:7;:15;;;;;;;;:46;;;;47769:7;:15;;;;:28;;47789:7;47769:19;:28::i;38019:125::-;38077:15;;38067:7;:25;38117:15;;38107:7;:25;38019:125::o;48106:363::-;48165:19;48188:10;:8;:10::i;:::-;48165:33;-1:-1:-1;48213:16:0;48232:25;:8;48165:33;48232:12;:25::i;:::-;48313:4;48297:22;;;;:7;:22;;;;;;48213:44;;-1:-1:-1;48297:36:0;;48213:44;48297:26;:36::i;:::-;48288:4;48272:22;;;;:7;:22;;;;;;;;:61;;;;48351:11;:26;;;;;;48348:109;;;48437:4;48421:22;;;;:7;:22;;;;;;:36;;48448:8;48421:26;:36::i;:::-;48412:4;48396:22;;;;:7;:22;;;;;:61;48348:109;48106:363;;;:::o;48481:159::-;48563:7;;:17;;48575:4;48563:11;:17::i;:::-;48553:7;:27;48608:10;;:20;;48623:4;48608:14;:20::i;:::-;48595:10;:33;-1:-1:-1;;48481:159:0:o
Swarm Source
ipfs://50a214d720b52d564bfc3e40887180c3bdf06441101abb2994985d9e01bf1917
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.