ERC-20
Overview
Max Total Supply
1,000,000 NOTREAD
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AntiBotLiquidityGeneratorToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-07 */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // Dependency file: contracts/interfaces/IUniswapV2Router02.sol // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // Dependency file: contracts/interfaces/IUniswapV2Factory.sol // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // Dependency file: contracts/interfaces/IPinkAntiBot.sol // pragma solidity >=0.5.0; interface IPinkAntiBot { function setTokenOwner(address owner) external; function onPreTransferCheck( address from, address to, uint256 amount ) external; } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/liquidity-generator/AntiBotLiquidityGeneratorToken.sol pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "contracts/interfaces/IUniswapV2Router02.sol"; // import "contracts/interfaces/IUniswapV2Factory.sol"; // import "contracts/interfaces/IPinkAntiBot.sol"; // import "contracts/BaseToken.sol"; contract AntiBotLiquidityGeneratorToken is IERC20, Ownable, BaseToken { using SafeMath for uint256; using Address for address; uint256 public constant VERSION = 1; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name; string private _symbol; uint8 private _decimals; uint256 public _taxFee; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public _charityFee; uint256 private _previousCharityFee = _charityFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public _charityAddress; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled; uint256 private numTokensSellToAddToLiquidity; IPinkAntiBot public pinkAntiBot; bool public enableAntiBot; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor( string memory name_, string memory symbol_, uint256 totalSupply_, address router_, address charityAddress_, uint16 taxFeeBps_, uint16 liquidityFeeBps_, uint16 charityFeeBps_, address pinkAntiBot_, address serviceFeeReceiver_, uint256 serviceFee_ ) payable { require(taxFeeBps_ >= 0, "Invalid tax fee"); require(liquidityFeeBps_ >= 0, "Invalid liquidity fee"); require(charityFeeBps_ >= 0, "Invalid charity fee"); if (charityAddress_ == address(0)) { require( charityFeeBps_ == 0, "Cant set both charity address to address 0 and charity percent more than 0" ); } require( taxFeeBps_ + liquidityFeeBps_ + charityFeeBps_ <= 10**4 / 4, "Total fee is over 25%" ); pinkAntiBot = IPinkAntiBot(pinkAntiBot_); pinkAntiBot.setTokenOwner(owner()); enableAntiBot = true; _name = name_; _symbol = symbol_; _decimals = 9; _tTotal = totalSupply_; _rTotal = (MAX - (MAX % _tTotal)); _taxFee = taxFeeBps_; _previousTaxFee = _taxFee; _liquidityFee = liquidityFeeBps_; _previousLiquidityFee = _liquidityFee; _charityAddress = charityAddress_; _charityFee = charityFeeBps_; _previousCharityFee = _charityFee; numTokensSellToAddToLiquidity = totalSupply_.mul(5).div(10**4); // 0.05% swapAndLiquifyEnabled = true; _rOwned[owner()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), owner(), _tTotal); emit TokenCreated( owner(), address(this), TokenType.antiBotLiquidityGenerator, VERSION ); payable(serviceFeeReceiver_).transfer(serviceFee_); } function setEnableAntiBot(bool _enable) external onlyOwner { enableAntiBot = _enable; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); (uint256 rAmount, , , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFeeBps) external onlyOwner { _taxFee = taxFeeBps; require( _taxFee + _liquidityFee + _charityFee <= 10**4 / 4, "Total fee is over 25%" ); } function setLiquidityFeePercent(uint256 liquidityFeeBps) external onlyOwner { _liquidityFee = liquidityFeeBps; require( _taxFee + _liquidityFee + _charityFee <= 10**4 / 4, "Total fee is over 25%" ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256, uint256 ) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tCharity, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tCharity ); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tCharityFee = calculateCharityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub( tCharityFee ); return (tTransferAmount, tFee, tLiquidity, tCharityFee); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rCharity = tCharity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub( rCharity ); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeCharityFee(uint256 tCharity) private { if (tCharity > 0) { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity); if (_isExcluded[_charityAddress]) _tOwned[_charityAddress] = _tOwned[_charityAddress].add( tCharity ); emit Transfer(_msgSender(), _charityAddress, tCharity); } } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**4); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**4); } function calculateCharityFee(uint256 _amount) private view returns (uint256) { if (_charityAddress == address(0)) return 0; return _amount.mul(_charityFee).div(10**4); } function removeAllFee() private { if (_taxFee == 0 && _liquidityFee == 0 && _charityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _previousCharityFee = _charityFee; _taxFee = 0; _liquidityFee = 0; _charityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _charityFee = _previousCharityFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (enableAntiBot) { pinkAntiBot.onPreTransferCheck(from, to, amount); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"internalType":"address","name":"charityAddress_","type":"address"},{"internalType":"uint16","name":"taxFeeBps_","type":"uint16"},{"internalType":"uint16","name":"liquidityFeeBps_","type":"uint16"},{"internalType":"uint16","name":"charityFeeBps_","type":"uint16"},{"internalType":"address","name":"pinkAntiBot_","type":"address"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pinkAntiBot","outputs":[{"internalType":"contract IPinkAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFeeBps","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFeeBps","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600d54600e55600f54601055601154601255604051620031433803806200314383398101604081905262000038916200084f565b620000433362000636565b62000052565b60405180910390fd5b6001600160a01b038716620000ee5761ffff841615620000ee5760405162461bcd60e51b815260206004820152604a60248201527f43616e742073657420626f74682063686172697479206164647265737320746f60448201527f2061646472657373203020616e6420636861726974792070657263656e74206d60648201526906f7265207468616e20360b41b608482015260a40162000049565b6109c484620000fe878962000982565b6200010a919062000982565b61ffff1611156200015e5760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f766572203235250000000000000000000000604482015260640162000049565b601780546001600160a01b0319166001600160a01b0385169081179091556318e02bd9620001946000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620001d657600080fd5b505af1158015620001eb573d6000803e3d6000fd5b50506017805460ff60a01b1916600160a01b17905550508a516200021790600a9060208e0190620006a9565b5089516200022d90600b9060208d0190620006a9565b50600c805460ff1916600917905560078990556200024e8960001962000a3b565b6200025c90600019620009e4565b60085561ffff868116600d819055600e55858116600f819055601055601580546001600160a01b0319166001600160a01b038a1617905584166011819055601255620002d1612710620002bd8b600562000686602090811b620011a217901c565b6200069b60201b620011ae1790919060201c565b6016556015805460ff60a81b1916600160a81b17905560085460016000620003016000546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000889050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036457600080fd5b505afa15801562000379573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039f919062000832565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003e857600080fd5b505afa158015620003fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000423919062000832565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200046c57600080fd5b505af115801562000481573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a7919062000832565b601480546001600160a01b03199081166001600160a01b039384161790915560138054909116918316919091179055600160046000620004ef6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620005426000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200058a91815260200190565b60405180910390a330620005a66000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260036001604051620005e492919062000955565b60405180910390a36040516001600160a01b0384169083156108fc029084906000818181858888f1935050505015801562000623573d6000803e3d6000fd5b5050505050505050505050505062000a94565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620006948284620009c2565b9392505050565b6000620006948284620009ab565b828054620006b790620009fe565b90600052602060002090601f016020900481019282620006db576000855562000726565b82601f10620006f657805160ff191683800117855562000726565b8280016001018555821562000726579182015b828111156200072657825182559160200191906001019062000709565b506200073492915062000738565b5090565b5b8082111562000734576000815560010162000739565b80516001600160a01b03811681146200076757600080fd5b919050565b600082601f8301126200077d578081fd5b81516001600160401b03808211156200079a576200079a62000a7e565b604051601f8301601f19908116603f01168101908282118183101715620007c557620007c562000a7e565b81604052838152602092508683858801011115620007e1578485fd5b8491505b83821015620008045785820183015181830184015290820190620007e5565b838211156200081557848385830101525b9695505050505050565b805161ffff811681146200076757600080fd5b60006020828403121562000844578081fd5b62000694826200074f565b60008060008060008060008060008060006101608c8e03121562000871578687fd5b8b516001600160401b0381111562000887578788fd5b620008958e828f016200076c565b60208e0151909c5090506001600160401b03811115620008b3578788fd5b620008c18e828f016200076c565b9a505060408c01519850620008d960608d016200074f565b9750620008e960808d016200074f565b9650620008f960a08d016200081f565b95506200090960c08d016200081f565b94506200091960e08d016200081f565b93506200092a6101008d016200074f565b92506200093b6101208d016200074f565b91506101408c015190509295989b509295989b9093969950565b60408101600884106200097857634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600061ffff808316818516808303821115620009a257620009a262000a52565b01949350505050565b600082620009bd57620009bd62000a68565b500490565b6000816000190483118215151615620009df57620009df62000a52565b500290565b600082821015620009f957620009f962000a52565b500390565b600181811c9082168062000a1357607f821691505b6020821081141562000a3557634e487b7160e01b600052602260045260246000fd5b50919050565b60008262000a4d5762000a4d62000a68565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61269f8062000aa46000396000f3fe6080604052600436106102295760003560e01c80634549b039116101235780638da5cb5b116100ab578063c49b9a801161006f578063c49b9a801461067e578063dd62ed3e1461069e578063ea2f0b37146106e4578063f2fde38b14610704578063ffa1ad741461072457600080fd5b80638da5cb5b146105eb5780638ee88c531461060957806395d89b4114610629578063a457c2d71461063e578063a9059cbb1461065e57600080fd5b80635342acb4116100f25780635342acb41461052e5780636bc87c3a1461056757806370a082311461057d578063715018a61461059d57806388f82020146105b257600080fd5b80634549b039146104ad57806349bd5a5e146104cd5780634a74bb02146104ed57806352390c021461050e57600080fd5b8063241ec3be116101b15780633b124fe7116101755780633b124fe7146104215780633bd5d17314610437578063407133d21461045757806340f8007a14610477578063437823ec1461048d57600080fd5b8063241ec3be1461037e5780632d8381191461039f578063313ce567146103bf5780633685d419146103e1578063395093511461040157600080fd5b80631694505e116101f85780631694505e146102d157806318160ddd1461030957806319a8ac9e1461031e5780631f46b1c61461033e57806323b872dd1461035e57600080fd5b8063061c82d01461023557806306fdde0314610257578063095ea7b31461028257806313114a9d146102b257600080fd5b3661023057005b600080fd5b34801561024157600080fd5b506102556102503660046123c5565b610739565b005b34801561026357600080fd5b5061026c6107d9565b6040516102799190612435565b60405180910390f35b34801561028e57600080fd5b506102a261029d366004612380565b61086b565b6040519015158152602001610279565b3480156102be57600080fd5b506009545b604051908152602001610279565b3480156102dd57600080fd5b506013546102f1906001600160a01b031681565b6040516001600160a01b039091168152602001610279565b34801561031557600080fd5b506007546102c3565b34801561032a57600080fd5b506015546102f1906001600160a01b031681565b34801561034a57600080fd5b506102556103593660046123ab565b610882565b34801561036a57600080fd5b506102a2610379366004612340565b6108ca565b34801561038a57600080fd5b506017546102a290600160a01b900460ff1681565b3480156103ab57600080fd5b506102c36103ba3660046123c5565b610933565b3480156103cb57600080fd5b50600c5460405160ff9091168152602001610279565b3480156103ed57600080fd5b506102556103fc3660046122d0565b6109b7565b34801561040d57600080fd5b506102a261041c366004612380565b610ba6565b34801561042d57600080fd5b506102c3600d5481565b34801561044357600080fd5b506102556104523660046123c5565b610bdc565b34801561046357600080fd5b506017546102f1906001600160a01b031681565b34801561048357600080fd5b506102c360115481565b34801561049957600080fd5b506102556104a83660046122d0565b610cc8565b3480156104b957600080fd5b506102c36104c83660046123dd565b610d16565b3480156104d957600080fd5b506014546102f1906001600160a01b031681565b3480156104f957600080fd5b506015546102a290600160a81b900460ff1681565b34801561051a57600080fd5b506102556105293660046122d0565b610da5565b34801561053a57600080fd5b506102a26105493660046122d0565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561057357600080fd5b506102c3600f5481565b34801561058957600080fd5b506102c36105983660046122d0565b610ef8565b3480156105a957600080fd5b50610255610f57565b3480156105be57600080fd5b506102a26105cd3660046122d0565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105f757600080fd5b506000546001600160a01b03166102f1565b34801561061557600080fd5b506102556106243660046123c5565b610f8d565b34801561063557600080fd5b5061026c610fd2565b34801561064a57600080fd5b506102a2610659366004612380565b610fe1565b34801561066a57600080fd5b506102a2610679366004612380565b611030565b34801561068a57600080fd5b506102556106993660046123ab565b61103d565b3480156106aa57600080fd5b506102c36106b9366004612308565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156106f057600080fd5b506102556106ff3660046122d0565b6110bf565b34801561071057600080fd5b5061025561071f3660046122d0565b61110a565b34801561073057600080fd5b506102c3600181565b6000546001600160a01b0316331461076c5760405162461bcd60e51b815260040161076390612488565b60405180910390fd5b600d819055601154600f546109c49190610786908461252d565b610790919061252d565b11156107d65760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610763565b50565b6060600a80546107e89061259b565b80601f01602080910402602001604051908101604052809291908181526020018280546108149061259b565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b60006108783384846111ba565b5060015b92915050565b6000546001600160a01b031633146108ac5760405162461bcd60e51b815260040161076390612488565b60178054911515600160a01b0260ff60a01b19909216919091179055565b60006108d78484846112df565b61092984336109248560405180606001604052806028815260200161261d602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611555565b6111ba565b5060019392505050565b600060085482111561099a5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610763565b60006109a4611581565b90506109b083826111ae565b9392505050565b6000546001600160a01b031633146109e15760405162461bcd60e51b815260040161076390612488565b6001600160a01b03811660009081526005602052604090205460ff16610a495760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610763565b60005b600654811015610ba257816001600160a01b031660068281548110610a8157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b905760068054610aac90600190612584565b81548110610aca57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610b0457634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610b6a57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b9a816125d6565b915050610a4c565b5050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161087891859061092490866115a4565b3360008181526005602052604090205460ff1615610c515760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610763565b6000610c5c836115b0565b5050506001600160a01b038616600090815260016020526040902054939450610c8a9392508491505061160b565b6001600160a01b038316600090815260016020526040902055600854610cb0908261160b565b600855600954610cc090846115a4565b600955505050565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161076390612488565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610d6a5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610763565b81610d8a576000610d7a846115b0565b5094965061087c95505050505050565b6000610d95846115b0565b5093965061087c95505050505050565b6000546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161076390612488565b6001600160a01b03811660009081526005602052604090205460ff1615610e385760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610763565b6001600160a01b03811660009081526001602052604090205415610e92576001600160a01b038116600090815260016020526040902054610e7890610933565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604081205460ff1615610f3557506001600160a01b031660009081526002602052604090205490565b6001600160a01b03821660009081526001602052604090205461087c90610933565b6000546001600160a01b03163314610f815760405162461bcd60e51b815260040161076390612488565b610f8b6000611617565b565b6000546001600160a01b03163314610fb75760405162461bcd60e51b815260040161076390612488565b600f819055601154600d546109c4919061078690849061252d565b6060600b80546107e89061259b565b6000610878338461092485604051806060016040528060258152602001612645602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611555565b60006108783384846112df565b6000546001600160a01b031633146110675760405162461bcd60e51b815260040161076390612488565b60158054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906110b490831515815260200190565b60405180910390a150565b6000546001600160a01b031633146110e95760405162461bcd60e51b815260040161076390612488565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b031633146111345760405162461bcd60e51b815260040161076390612488565b6001600160a01b0381166111995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610763565b6107d681611617565b60006109b08284612565565b60006109b08284612545565b6001600160a01b03831661121c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610763565b6001600160a01b03821661127d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610763565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113435760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610763565b6001600160a01b0382166113a55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610763565b600081116114075760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610763565b601754600160a01b900460ff16156114885760175460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b15801561146f57600080fd5b505af1158015611483573d6000803e3d6000fd5b505050505b600061149330610ef8565b601654909150811080159081906114b45750601554600160a01b900460ff16155b80156114ce57506014546001600160a01b03868116911614155b80156114e35750601554600160a81b900460ff165b156114f65760165491506114f682611667565b6001600160a01b03851660009081526004602052604090205460019060ff168061153857506001600160a01b03851660009081526004602052604090205460ff165b15611541575060005b61154d8686868461170e565b505050505050565b600081848411156115795760405162461bcd60e51b81526004016107639190612435565b505050900390565b600080600061158e611891565b909250905061159d82826111ae565b9250505090565b60006109b0828461252d565b60008060008060008060008060008060006115ca8c611a4b565b935093509350935060008060006115eb8f8787876115e6611581565b611aa0565b919f509d509b509599509397509195509350505050919395979092949650565b60006109b08284612584565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6015805460ff60a01b1916600160a01b17905560006116878260026111ae565b90506000611695838361160b565b9050476116a183611b02565b60006116ad478361160b565b90506116b98382611c7f565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061171b5761171b611d63565b6001600160a01b03841660009081526005602052604090205460ff16801561175c57506001600160a01b03831660009081526005602052604090205460ff16155b156117715761176c848484611da8565b61186f565b6001600160a01b03841660009081526005602052604090205460ff161580156117b257506001600160a01b03831660009081526005602052604090205460ff165b156117c25761176c848484611eee565b6001600160a01b03841660009081526005602052604090205460ff1615801561180457506001600160a01b03831660009081526005602052604090205460ff16155b156118145761176c848484611fad565b6001600160a01b03841660009081526005602052604090205460ff16801561185457506001600160a01b03831660009081526005602052604090205460ff165b156118645761176c848484612007565b61186f848484611fad565b8061188b5761188b600e54600d55601054600f55601254601155565b50505050565b6008546007546000918291825b600654811015611a1b578260016000600684815481106118ce57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611947575081600260006006848154811061192057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561195d57600854600754945094505050509091565b6119b1600160006006848154811061198557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061160b565b9250611a0760026000600684815481106119db57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061160b565b915080611a13816125d6565b91505061189e565b50600754600854611a2b916111ae565b821015611a42576008546007549350935050509091565b90939092509050565b6000806000806000611a5c86612090565b90506000611a69876120b3565b90506000611a76886120d0565b90506000611a9082611a8a85818d8961160b565b9061160b565b9993985091965094509092505050565b6000808080611aaf89866111a2565b90506000611abd89876111a2565b90506000611acb89886111a2565b90506000611ad989896111a2565b90506000611aed82611a8a8581898961160b565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b4557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611b9957600080fd5b505afa158015611bad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd191906122ec565b81600181518110611bf257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354611c1891309116846111ba565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac94790611c519085906000908690309042906004016124bd565b600060405180830381600087803b158015611c6b57600080fd5b505af115801561154d573d6000803e3d6000fd5b601354611c979030906001600160a01b0316846111ba565b6013546001600160a01b031663f305d719823085600080611cc06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015611d2357600080fd5b505af1158015611d37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d5c9190612408565b5050505050565b600d54158015611d735750600f54155b8015611d7f5750601154155b15611d8657565b600d8054600e55600f8054601055601180546012556000928390559082905555565b6000806000806000806000611dbc886115b0565b9650965096509650965096509650611e0288600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611e31908861160b565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054611e6090876115a4565b6001600160a01b038a16600090815260016020526040902055611e8282612106565b611e8b8161218f565b611e958584612297565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611eda91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611f02886115b0565b9650965096509650965096509650611f4887600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054611f7e90856115a4565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611e6090876115a4565b6000806000806000806000611fc1886115b0565b9650965096509650965096509650611e3187600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b600080600080600080600061201b886115b0565b965096509650965096509650965061206188600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611f48908861160b565b600061087c6127106120ad600d54856111a290919063ffffffff16565b906111ae565b600061087c6127106120ad600f54856111a290919063ffffffff16565b6015546000906001600160a01b03166120eb57506000919050565b61087c6127106120ad601154856111a290919063ffffffff16565b6000612110611581565b9050600061211e83836111a2565b3060009081526001602052604090205490915061213b90826115a4565b3060009081526001602090815260408083209390935560059052205460ff161561218a573060009081526002602052604090205461217990846115a4565b306000908152600260205260409020555b505050565b80156107d657600061219f611581565b905060006121ad83836111a2565b6015546001600160a01b03166000908152600160205260409020549091506121d590826115a4565b601580546001600160a01b03908116600090815260016020908152604080832095909555925490911681526005909152205460ff1615612250576015546001600160a01b031660009081526002602052604090205461223490846115a4565b6015546001600160a01b03166000908152600260205260409020555b6015546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516112d291815260200190565b6008546122a4908361160b565b6008556009546122b490826115a4565b6009555050565b803580151581146122cb57600080fd5b919050565b6000602082840312156122e1578081fd5b81356109b081612607565b6000602082840312156122fd578081fd5b81516109b081612607565b6000806040838503121561231a578081fd5b823561232581612607565b9150602083013561233581612607565b809150509250929050565b600080600060608486031215612354578081fd5b833561235f81612607565b9250602084013561236f81612607565b929592945050506040919091013590565b60008060408385031215612392578182fd5b823561239d81612607565b946020939093013593505050565b6000602082840312156123bc578081fd5b6109b0826122bb565b6000602082840312156123d6578081fd5b5035919050565b600080604083850312156123ef578182fd5b823591506123ff602084016122bb565b90509250929050565b60008060006060848603121561241c578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561246157858101830151858201604001528201612445565b818111156124725783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561250c5784516001600160a01b0316835293830193918301916001016124e7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612540576125406125f1565b500190565b60008261256057634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561257f5761257f6125f1565b500290565b600082821015612596576125966125f1565b500390565b600181811c908216806125af57607f821691505b602082108114156125d057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125ea576125ea6125f1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146107d657600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dec5963019c439179c0bda56f346075bb975068e972ae1d6c1710d731c8db74664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002a0fac6806eb693e91f2819c43369245916268f7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca350000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000014444f4e54205452454144204f4e204d452053454300000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f545245414400000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102295760003560e01c80634549b039116101235780638da5cb5b116100ab578063c49b9a801161006f578063c49b9a801461067e578063dd62ed3e1461069e578063ea2f0b37146106e4578063f2fde38b14610704578063ffa1ad741461072457600080fd5b80638da5cb5b146105eb5780638ee88c531461060957806395d89b4114610629578063a457c2d71461063e578063a9059cbb1461065e57600080fd5b80635342acb4116100f25780635342acb41461052e5780636bc87c3a1461056757806370a082311461057d578063715018a61461059d57806388f82020146105b257600080fd5b80634549b039146104ad57806349bd5a5e146104cd5780634a74bb02146104ed57806352390c021461050e57600080fd5b8063241ec3be116101b15780633b124fe7116101755780633b124fe7146104215780633bd5d17314610437578063407133d21461045757806340f8007a14610477578063437823ec1461048d57600080fd5b8063241ec3be1461037e5780632d8381191461039f578063313ce567146103bf5780633685d419146103e1578063395093511461040157600080fd5b80631694505e116101f85780631694505e146102d157806318160ddd1461030957806319a8ac9e1461031e5780631f46b1c61461033e57806323b872dd1461035e57600080fd5b8063061c82d01461023557806306fdde0314610257578063095ea7b31461028257806313114a9d146102b257600080fd5b3661023057005b600080fd5b34801561024157600080fd5b506102556102503660046123c5565b610739565b005b34801561026357600080fd5b5061026c6107d9565b6040516102799190612435565b60405180910390f35b34801561028e57600080fd5b506102a261029d366004612380565b61086b565b6040519015158152602001610279565b3480156102be57600080fd5b506009545b604051908152602001610279565b3480156102dd57600080fd5b506013546102f1906001600160a01b031681565b6040516001600160a01b039091168152602001610279565b34801561031557600080fd5b506007546102c3565b34801561032a57600080fd5b506015546102f1906001600160a01b031681565b34801561034a57600080fd5b506102556103593660046123ab565b610882565b34801561036a57600080fd5b506102a2610379366004612340565b6108ca565b34801561038a57600080fd5b506017546102a290600160a01b900460ff1681565b3480156103ab57600080fd5b506102c36103ba3660046123c5565b610933565b3480156103cb57600080fd5b50600c5460405160ff9091168152602001610279565b3480156103ed57600080fd5b506102556103fc3660046122d0565b6109b7565b34801561040d57600080fd5b506102a261041c366004612380565b610ba6565b34801561042d57600080fd5b506102c3600d5481565b34801561044357600080fd5b506102556104523660046123c5565b610bdc565b34801561046357600080fd5b506017546102f1906001600160a01b031681565b34801561048357600080fd5b506102c360115481565b34801561049957600080fd5b506102556104a83660046122d0565b610cc8565b3480156104b957600080fd5b506102c36104c83660046123dd565b610d16565b3480156104d957600080fd5b506014546102f1906001600160a01b031681565b3480156104f957600080fd5b506015546102a290600160a81b900460ff1681565b34801561051a57600080fd5b506102556105293660046122d0565b610da5565b34801561053a57600080fd5b506102a26105493660046122d0565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561057357600080fd5b506102c3600f5481565b34801561058957600080fd5b506102c36105983660046122d0565b610ef8565b3480156105a957600080fd5b50610255610f57565b3480156105be57600080fd5b506102a26105cd3660046122d0565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105f757600080fd5b506000546001600160a01b03166102f1565b34801561061557600080fd5b506102556106243660046123c5565b610f8d565b34801561063557600080fd5b5061026c610fd2565b34801561064a57600080fd5b506102a2610659366004612380565b610fe1565b34801561066a57600080fd5b506102a2610679366004612380565b611030565b34801561068a57600080fd5b506102556106993660046123ab565b61103d565b3480156106aa57600080fd5b506102c36106b9366004612308565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156106f057600080fd5b506102556106ff3660046122d0565b6110bf565b34801561071057600080fd5b5061025561071f3660046122d0565b61110a565b34801561073057600080fd5b506102c3600181565b6000546001600160a01b0316331461076c5760405162461bcd60e51b815260040161076390612488565b60405180910390fd5b600d819055601154600f546109c49190610786908461252d565b610790919061252d565b11156107d65760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610763565b50565b6060600a80546107e89061259b565b80601f01602080910402602001604051908101604052809291908181526020018280546108149061259b565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b60006108783384846111ba565b5060015b92915050565b6000546001600160a01b031633146108ac5760405162461bcd60e51b815260040161076390612488565b60178054911515600160a01b0260ff60a01b19909216919091179055565b60006108d78484846112df565b61092984336109248560405180606001604052806028815260200161261d602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611555565b6111ba565b5060019392505050565b600060085482111561099a5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610763565b60006109a4611581565b90506109b083826111ae565b9392505050565b6000546001600160a01b031633146109e15760405162461bcd60e51b815260040161076390612488565b6001600160a01b03811660009081526005602052604090205460ff16610a495760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610763565b60005b600654811015610ba257816001600160a01b031660068281548110610a8157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b905760068054610aac90600190612584565b81548110610aca57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610b0457634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610b6a57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b9a816125d6565b915050610a4c565b5050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161087891859061092490866115a4565b3360008181526005602052604090205460ff1615610c515760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610763565b6000610c5c836115b0565b5050506001600160a01b038616600090815260016020526040902054939450610c8a9392508491505061160b565b6001600160a01b038316600090815260016020526040902055600854610cb0908261160b565b600855600954610cc090846115a4565b600955505050565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161076390612488565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610d6a5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610763565b81610d8a576000610d7a846115b0565b5094965061087c95505050505050565b6000610d95846115b0565b5093965061087c95505050505050565b6000546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161076390612488565b6001600160a01b03811660009081526005602052604090205460ff1615610e385760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610763565b6001600160a01b03811660009081526001602052604090205415610e92576001600160a01b038116600090815260016020526040902054610e7890610933565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604081205460ff1615610f3557506001600160a01b031660009081526002602052604090205490565b6001600160a01b03821660009081526001602052604090205461087c90610933565b6000546001600160a01b03163314610f815760405162461bcd60e51b815260040161076390612488565b610f8b6000611617565b565b6000546001600160a01b03163314610fb75760405162461bcd60e51b815260040161076390612488565b600f819055601154600d546109c4919061078690849061252d565b6060600b80546107e89061259b565b6000610878338461092485604051806060016040528060258152602001612645602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611555565b60006108783384846112df565b6000546001600160a01b031633146110675760405162461bcd60e51b815260040161076390612488565b60158054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906110b490831515815260200190565b60405180910390a150565b6000546001600160a01b031633146110e95760405162461bcd60e51b815260040161076390612488565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b031633146111345760405162461bcd60e51b815260040161076390612488565b6001600160a01b0381166111995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610763565b6107d681611617565b60006109b08284612565565b60006109b08284612545565b6001600160a01b03831661121c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610763565b6001600160a01b03821661127d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610763565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113435760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610763565b6001600160a01b0382166113a55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610763565b600081116114075760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610763565b601754600160a01b900460ff16156114885760175460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b15801561146f57600080fd5b505af1158015611483573d6000803e3d6000fd5b505050505b600061149330610ef8565b601654909150811080159081906114b45750601554600160a01b900460ff16155b80156114ce57506014546001600160a01b03868116911614155b80156114e35750601554600160a81b900460ff165b156114f65760165491506114f682611667565b6001600160a01b03851660009081526004602052604090205460019060ff168061153857506001600160a01b03851660009081526004602052604090205460ff165b15611541575060005b61154d8686868461170e565b505050505050565b600081848411156115795760405162461bcd60e51b81526004016107639190612435565b505050900390565b600080600061158e611891565b909250905061159d82826111ae565b9250505090565b60006109b0828461252d565b60008060008060008060008060008060006115ca8c611a4b565b935093509350935060008060006115eb8f8787876115e6611581565b611aa0565b919f509d509b509599509397509195509350505050919395979092949650565b60006109b08284612584565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6015805460ff60a01b1916600160a01b17905560006116878260026111ae565b90506000611695838361160b565b9050476116a183611b02565b60006116ad478361160b565b90506116b98382611c7f565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061171b5761171b611d63565b6001600160a01b03841660009081526005602052604090205460ff16801561175c57506001600160a01b03831660009081526005602052604090205460ff16155b156117715761176c848484611da8565b61186f565b6001600160a01b03841660009081526005602052604090205460ff161580156117b257506001600160a01b03831660009081526005602052604090205460ff165b156117c25761176c848484611eee565b6001600160a01b03841660009081526005602052604090205460ff1615801561180457506001600160a01b03831660009081526005602052604090205460ff16155b156118145761176c848484611fad565b6001600160a01b03841660009081526005602052604090205460ff16801561185457506001600160a01b03831660009081526005602052604090205460ff165b156118645761176c848484612007565b61186f848484611fad565b8061188b5761188b600e54600d55601054600f55601254601155565b50505050565b6008546007546000918291825b600654811015611a1b578260016000600684815481106118ce57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611947575081600260006006848154811061192057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561195d57600854600754945094505050509091565b6119b1600160006006848154811061198557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061160b565b9250611a0760026000600684815481106119db57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061160b565b915080611a13816125d6565b91505061189e565b50600754600854611a2b916111ae565b821015611a42576008546007549350935050509091565b90939092509050565b6000806000806000611a5c86612090565b90506000611a69876120b3565b90506000611a76886120d0565b90506000611a9082611a8a85818d8961160b565b9061160b565b9993985091965094509092505050565b6000808080611aaf89866111a2565b90506000611abd89876111a2565b90506000611acb89886111a2565b90506000611ad989896111a2565b90506000611aed82611a8a8581898961160b565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b4557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611b9957600080fd5b505afa158015611bad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd191906122ec565b81600181518110611bf257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354611c1891309116846111ba565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac94790611c519085906000908690309042906004016124bd565b600060405180830381600087803b158015611c6b57600080fd5b505af115801561154d573d6000803e3d6000fd5b601354611c979030906001600160a01b0316846111ba565b6013546001600160a01b031663f305d719823085600080611cc06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015611d2357600080fd5b505af1158015611d37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d5c9190612408565b5050505050565b600d54158015611d735750600f54155b8015611d7f5750601154155b15611d8657565b600d8054600e55600f8054601055601180546012556000928390559082905555565b6000806000806000806000611dbc886115b0565b9650965096509650965096509650611e0288600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611e31908861160b565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054611e6090876115a4565b6001600160a01b038a16600090815260016020526040902055611e8282612106565b611e8b8161218f565b611e958584612297565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611eda91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611f02886115b0565b9650965096509650965096509650611f4887600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054611f7e90856115a4565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611e6090876115a4565b6000806000806000806000611fc1886115b0565b9650965096509650965096509650611e3187600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b600080600080600080600061201b886115b0565b965096509650965096509650965061206188600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461160b90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611f48908861160b565b600061087c6127106120ad600d54856111a290919063ffffffff16565b906111ae565b600061087c6127106120ad600f54856111a290919063ffffffff16565b6015546000906001600160a01b03166120eb57506000919050565b61087c6127106120ad601154856111a290919063ffffffff16565b6000612110611581565b9050600061211e83836111a2565b3060009081526001602052604090205490915061213b90826115a4565b3060009081526001602090815260408083209390935560059052205460ff161561218a573060009081526002602052604090205461217990846115a4565b306000908152600260205260409020555b505050565b80156107d657600061219f611581565b905060006121ad83836111a2565b6015546001600160a01b03166000908152600160205260409020549091506121d590826115a4565b601580546001600160a01b03908116600090815260016020908152604080832095909555925490911681526005909152205460ff1615612250576015546001600160a01b031660009081526002602052604090205461223490846115a4565b6015546001600160a01b03166000908152600260205260409020555b6015546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516112d291815260200190565b6008546122a4908361160b565b6008556009546122b490826115a4565b6009555050565b803580151581146122cb57600080fd5b919050565b6000602082840312156122e1578081fd5b81356109b081612607565b6000602082840312156122fd578081fd5b81516109b081612607565b6000806040838503121561231a578081fd5b823561232581612607565b9150602083013561233581612607565b809150509250929050565b600080600060608486031215612354578081fd5b833561235f81612607565b9250602084013561236f81612607565b929592945050506040919091013590565b60008060408385031215612392578182fd5b823561239d81612607565b946020939093013593505050565b6000602082840312156123bc578081fd5b6109b0826122bb565b6000602082840312156123d6578081fd5b5035919050565b600080604083850312156123ef578182fd5b823591506123ff602084016122bb565b90509250929050565b60008060006060848603121561241c578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561246157858101830151858201604001528201612445565b818111156124725783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561250c5784516001600160a01b0316835293830193918301916001016124e7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612540576125406125f1565b500190565b60008261256057634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561257f5761257f6125f1565b500290565b600082821015612596576125966125f1565b500390565b600181811c908216806125af57607f821691505b602082108114156125d057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125ea576125ea6125f1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146107d657600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dec5963019c439179c0bda56f346075bb975068e972ae1d6c1710d731c8db74664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002a0fac6806eb693e91f2819c43369245916268f7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca350000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000014444f4e54205452454144204f4e204d452053454300000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f545245414400000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): DONT TREAD ON ME SEC
Arg [1] : symbol_ (string): NOTREAD
Arg [2] : totalSupply_ (uint256): 1000000000000000
Arg [3] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [4] : charityAddress_ (address): 0x2A0Fac6806Eb693E91f2819c43369245916268f7
Arg [5] : taxFeeBps_ (uint16): 0
Arg [6] : liquidityFeeBps_ (uint16): 1000
Arg [7] : charityFeeBps_ (uint16): 500
Arg [8] : pinkAntiBot_ (address): 0xf4f071EB637b64fC78C9eA87DaCE4445D119CA35
Arg [9] : serviceFeeReceiver_ (address): 0x4B04213C2774f77e60702880654206B116D00508
Arg [10] : serviceFee_ (uint256): 10000000000000000
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000002a0fac6806eb693e91f2819c43369245916268f7
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [8] : 000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35
Arg [9] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [10] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [12] : 444f4e54205452454144204f4e204d4520534543000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [14] : 4e4f545245414400000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
29077:23325:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39206:234;;;;;;;;;;-1:-1:-1;39206:234:0;;;;;:::i;:::-;;:::i;:::-;;33369:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34354:193;;;;;;;;;;-1:-1:-1;34354:193:0;;;;;:::i;:::-;;:::i;:::-;;;4250:14:1;;4243:22;4225:41;;4213:2;4198:18;34354:193:0;4180:92:1;35853:87:0;;;;;;;;;;-1:-1:-1;35922:10:0;;35853:87;;;10181:25:1;;;10169:2;10154:18;35853:87:0;10136:76:1;30085:41:0;;;;;;;;;;-1:-1:-1;30085:41:0;;;;-1:-1:-1;;;;;30085:41:0;;;;;;-1:-1:-1;;;;;3049:32:1;;;3031:51;;3019:2;3004:18;30085:41:0;2986:102:1;33646:95:0;;;;;;;;;;-1:-1:-1;33726:7:0;;33646:95;;30168:30;;;;;;;;;;-1:-1:-1;30168:30:0;;;;-1:-1:-1;;;;;30168:30:0;;;33260:101;;;;;;;;;;-1:-1:-1;33260:101:0;;;;;:::i;:::-;;:::i;34555:446::-;;;;;;;;;;-1:-1:-1;34555:446:0;;;;;:::i;:::-;;:::i;30369:25::-;;;;;;;;;;-1:-1:-1;30369:25:0;;;;-1:-1:-1;;;30369:25:0;;;;;;36868:322;;;;;;;;;;-1:-1:-1;36868:322:0;;;;;:::i;:::-;;:::i;33555:83::-;;;;;;;;;;-1:-1:-1;33621:9:0;;33555:83;;33621:9;;;;11671:36:1;;11659:2;11644:18;33555:83:0;11626:87:1;37652:477:0;;;;;;;;;;-1:-1:-1;37652:477:0;;;;;:::i;:::-;;:::i;35009:300::-;;;;;;;;;;-1:-1:-1;35009:300:0;;;;;:::i;:::-;;:::i;29818:22::-;;;;;;;;;;;;;;;;35948:421;;;;;;;;;;-1:-1:-1;35948:421:0;;;;;:::i;:::-;;:::i;30331:31::-;;;;;;;;;;-1:-1:-1;30331:31:0;;;;-1:-1:-1;;;;;30331:31:0;;;29994:26;;;;;;;;;;;;;;;;38969:111;;;;;;;;;;-1:-1:-1;38969:111:0;;;;;:::i;:::-;;:::i;36377:483::-;;;;;;;;;;-1:-1:-1;36377:483:0;;;;;:::i;:::-;;:::i;30133:28::-;;;;;;;;;;-1:-1:-1;30133:28:0;;;;-1:-1:-1;;;;;30133:28:0;;;30235:33;;;;;;;;;;-1:-1:-1;30235:33:0;;;;-1:-1:-1;;;30235:33:0;;;;;;37198:446;;;;;;;;;;-1:-1:-1;37198:446:0;;;;;:::i;:::-;;:::i;44995:124::-;;;;;;;;;;-1:-1:-1;44995:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;45084:27:0;45060:4;45084:27;;;:18;:27;;;;;;;;;44995:124;29897:28;;;;;;;;;;;;;;;;33749:198;;;;;;;;;;-1:-1:-1;33749:198:0;;;;;:::i;:::-;;:::i;5454:94::-;;;;;;;;;;;;;:::i;35725:120::-;;;;;;;;;;-1:-1:-1;35725:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;35817:20:0;35793:4;35817:20;;;:11;:20;;;;;;;;;35725:120;4803:87;;;;;;;;;;-1:-1:-1;4849:7:0;4876:6;-1:-1:-1;;;;;4876:6:0;4803:87;;39448:281;;;;;;;;;;-1:-1:-1;39448:281:0;;;;;:::i;:::-;;:::i;33460:87::-;;;;;;;;;;;;;:::i;35317:400::-;;;;;;;;;;-1:-1:-1;35317:400:0;;;;;:::i;:::-;;:::i;33955:199::-;;;;;;;;;;-1:-1:-1;33955:199:0;;;;;:::i;:::-;;:::i;39737:171::-;;;;;;;;;;-1:-1:-1;39737:171:0;;;;;:::i;:::-;;:::i;34162:184::-;;;;;;;;;;-1:-1:-1;34162:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;34311:18:0;;;34279:7;34311:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34162:184;39088:110;;;;;;;;;;-1:-1:-1;39088:110:0;;;;;:::i;:::-;;:::i;5703:192::-;;;;;;;;;;-1:-1:-1;5703:192:0;;;;;:::i;:::-;;:::i;29221:35::-;;;;;;;;;;;;29255:1;29221:35;;39206:234;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;;;;;;;;;39281:7:::1;:19:::0;;;39359:11:::1;::::0;39343:13:::1;::::0;39374:9:::1;::::0;39359:11;39333:23:::1;::::0;39291:9;39333:23:::1;:::i;:::-;:37;;;;:::i;:::-;:50;;39311:121;;;::::0;-1:-1:-1;;;39311:121:0;;7532:2:1;39311:121:0::1;::::0;::::1;7514:21:1::0;7571:2;7551:18;;;7544:30;-1:-1:-1;;;7590:18:1;;;7583:51;7651:18;;39311:121:0::1;7504:171:1::0;39311:121:0::1;39206:234:::0;:::o;33369:83::-;33406:13;33439:5;33432:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33369:83;:::o;34354:193::-;34456:4;34478:39;3601:10;34501:7;34510:6;34478:8;:39::i;:::-;-1:-1:-1;34535:4:0;34354:193;;;;;:::o;33260:101::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;33330:13:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;33330:23:0::1;-1:-1:-1::0;;;;33330:23:0;;::::1;::::0;;;::::1;::::0;;33260:101::o;34555:446::-;34687:4;34704:36;34714:6;34722:9;34733:6;34704:9;:36::i;:::-;34751:220;34774:6;3601:10;34822:138;34878:6;34822:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34822:19:0;;;;;;:11;:19;;;;;;;;3601:10;34822:33;;;;;;;;;;:37;:138::i;:::-;34751:8;:220::i;:::-;-1:-1:-1;34989:4:0;34555:446;;;;;:::o;36868:322::-;36962:7;37020;;37009;:18;;36987:110;;;;-1:-1:-1;;;36987:110:0;;5955:2:1;36987:110:0;;;5937:21:1;5994:2;5974:18;;;5967:30;6033:34;6013:18;;;6006:62;-1:-1:-1;;;6084:18:1;;;6077:40;6134:19;;36987:110:0;5927:232:1;36987:110:0;37108:19;37130:10;:8;:10::i;:::-;37108:32;-1:-1:-1;37158:24:0;:7;37108:32;37158:11;:24::i;:::-;37151:31;36868:322;-1:-1:-1;;;36868:322:0:o;37652:477::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37732:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37724:60;;;::::0;-1:-1:-1;;;37724:60:0;;7176:2:1;37724:60:0::1;::::0;::::1;7158:21:1::0;7215:2;7195:18;;;7188:30;7254:29;7234:18;;;7227:57;7301:18;;37724:60:0::1;7148:177:1::0;37724:60:0::1;37800:9;37795:327;37819:9;:16:::0;37815:20;::::1;37795:327;;;37877:7;-1:-1:-1::0;;;;;37861:23:0::1;:9;37871:1;37861:12;;;;;;-1:-1:-1::0;;;37861:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37861:12:0::1;:23;37857:254;;;37920:9;37930:16:::0;;:20:::1;::::0;37949:1:::1;::::0;37930:20:::1;:::i;:::-;37920:31;;;;;;-1:-1:-1::0;;;37920:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37905:9:::1;:12:::0;;-1:-1:-1;;;;;37920:31:0;;::::1;::::0;37915:1;;37905:12;::::1;;;-1:-1:-1::0;;;37905:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;37905:46:0::1;-1:-1:-1::0;;;;;37905:46:0;;::::1;;::::0;;37970:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;38009:11:::1;:20:::0;;;;:28;;-1:-1:-1;;38009:28:0::1;::::0;;38056:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;38056:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38056:15:0;;;;;-1:-1:-1;;;;;;38056:15:0::1;::::0;;;;;37795:327:::1;37652:477:::0;:::o;37857:254::-:1;37837:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37795:327;;;;37652:477:::0;:::o;35009:300::-;3601:10;35124:4;35218:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35218:34:0;;;;;;;;;;35124:4;;35146:133;;35196:7;;35218:50;;35257:10;35218:38;:50::i;35948:421::-;3601:10;36000:14;36063:19;;;:11;:19;;;;;;;;36062:20;36040:114;;;;-1:-1:-1;;;36040:114:0;;9824:2:1;36040:114:0;;;9806:21:1;9863:2;9843:18;;;9836:30;9902:34;9882:18;;;9875:62;-1:-1:-1;;;9953:18:1;;;9946:42;10005:19;;36040:114:0;9796:234:1;36040:114:0;36166:15;36197:19;36208:7;36197:10;:19::i;:::-;-1:-1:-1;;;;;;;;36245:15:0;;;;;;:7;:15;;;;;;36165:51;;-1:-1:-1;36245:28:0;;:15;-1:-1:-1;36165:51:0;;-1:-1:-1;;36245:19:0;:28::i;:::-;-1:-1:-1;;;;;36227:15:0;;;;;;:7;:15;;;;;:46;36294:7;;:20;;36306:7;36294:11;:20::i;:::-;36284:7;:30;36338:10;;:23;;36353:7;36338:14;:23::i;:::-;36325:10;:36;-1:-1:-1;;;35948:421:0:o;38969:111::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39038:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;39038:34:0::1;39068:4;39038:34;::::0;;38969:111::o;36377:483::-;36495:7;36539;;36528;:18;;36520:62;;;;-1:-1:-1;;;36520:62:0;;7882:2:1;36520:62:0;;;7864:21:1;7921:2;7901:18;;;7894:30;7960:33;7940:18;;;7933:61;8011:18;;36520:62:0;7854:181:1;36520:62:0;36598:17;36593:260;;36633:15;36664:19;36675:7;36664:10;:19::i;:::-;-1:-1:-1;36632:51:0;;-1:-1:-1;36698:14:0;;-1:-1:-1;;;;;;36698:14:0;36593:260;36748:23;36785:19;36796:7;36785:10;:19::i;:::-;-1:-1:-1;36745:59:0;;-1:-1:-1;36819:22:0;;-1:-1:-1;;;;;;36819:22:0;37198:446;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37393:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37392:21;37384:61;;;::::0;-1:-1:-1;;;37384:61:0;;7176:2:1;37384:61:0::1;::::0;::::1;7158:21:1::0;7215:2;7195:18;;;7188:30;7254:29;7234:18;;;7227:57;7301:18;;37384:61:0::1;7148:177:1::0;37384:61:0::1;-1:-1:-1::0;;;;;37460:16:0;::::1;37479:1;37460:16:::0;;;:7:::1;:16;::::0;;;;;:20;37456:109:::1;;-1:-1:-1::0;;;;;37536:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;37516:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;37497:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;37456:109:::1;-1:-1:-1::0;;;;;37575:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;37575:27:0::1;37598:4;37575:27:::0;;::::1;::::0;;;37613:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37613:23:0::1;::::0;;::::1;::::0;;37198:446::o;33749:198::-;-1:-1:-1;;;;;33839:20:0;;33815:7;33839:20;;;:11;:20;;;;;;;;33835:49;;;-1:-1:-1;;;;;;33868:16:0;;;;;:7;:16;;;;;;;33749:198::o;33835:49::-;-1:-1:-1;;;;;33922:16:0;;;;;;:7;:16;;;;;;33902:37;;:19;:37::i;5454:94::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;5519:21:::1;5537:1;5519:9;:21::i;:::-;5454:94::o:0;39448:281::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;39558:13:::1;:31:::0;;;39648:11:::1;::::0;39622:7:::1;::::0;39663:9:::1;::::0;39648:11;39622:23:::1;::::0;39574:15;;39622:23:::1;:::i;33460:87::-:0;33499:13;33532:7;33525:14;;;;;:::i;35317:400::-;35437:4;35459:228;3601:10;35509:7;35531:145;35588:15;35531:145;;;;;;;;;;;;;;;;;3601:10;35531:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35531:34:0;;;;;;;;;;;;:38;:145::i;33955:199::-;34060:4;34082:42;3601:10;34106:9;34117:6;34082:9;:42::i;39737:171::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;39814:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;39814:32:0::1;-1:-1:-1::0;;;;39814:32:0;;::::1;;::::0;;39862:38:::1;::::0;::::1;::::0;::::1;::::0;39838:8;4250:14:1;4243:22;4225:41;;4213:2;4198:18;;4180:92;39862:38:0::1;;;;;;;;39737:171:::0;:::o;39088:110::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39155:27:0::1;39185:5;39155:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;39155:35:0::1;::::0;;39088:110::o;5703:192::-;4849:7;4876:6;-1:-1:-1;;;;;4876:6:0;3601:10;5023:23;5015:68;;;;-1:-1:-1;;;5015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5792:22:0;::::1;5784:73;;;::::0;-1:-1:-1;;;5784:73:0;;6366:2:1;5784:73:0::1;::::0;::::1;6348:21:1::0;6405:2;6385:18;;;6378:30;6444:34;6424:18;;;6417:62;-1:-1:-1;;;6495:18:1;;;6488:36;6541:19;;5784:73:0::1;6338:228:1::0;5784:73:0::1;5868:19;5878:8;5868:9;:19::i;9627:98::-:0;9685:7;9712:5;9716:1;9712;:5;:::i;10026:98::-;10084:7;10111:5;10115:1;10111;:5;:::i;45127:371::-;-1:-1:-1;;;;;45254:19:0;;45246:68;;;;-1:-1:-1;;;45246:68:0;;9419:2:1;45246:68:0;;;9401:21:1;9458:2;9438:18;;;9431:30;9497:34;9477:18;;;9470:62;-1:-1:-1;;;9548:18:1;;;9541:34;9592:19;;45246:68:0;9391:226:1;45246:68:0;-1:-1:-1;;;;;45333:21:0;;45325:68;;;;-1:-1:-1;;;45325:68:0;;6773:2:1;45325:68:0;;;6755:21:1;6812:2;6792:18;;;6785:30;6851:34;6831:18;;;6824:62;-1:-1:-1;;;6902:18:1;;;6895:32;6944:19;;45325:68:0;6745:224:1;45325:68:0;-1:-1:-1;;;;;45406:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;45458:32;;10181:25:1;;;45458:32:0;;10154:18:1;45458:32:0;;;;;;;;45127:371;;;:::o;45506:1637::-;-1:-1:-1;;;;;45628:18:0;;45620:68;;;;-1:-1:-1;;;45620:68:0;;9013:2:1;45620:68:0;;;8995:21:1;9052:2;9032:18;;;9025:30;9091:34;9071:18;;;9064:62;-1:-1:-1;;;9142:18:1;;;9135:35;9187:19;;45620:68:0;8985:227:1;45620:68:0;-1:-1:-1;;;;;45707:16:0;;45699:64;;;;-1:-1:-1;;;45699:64:0;;5551:2:1;45699:64:0;;;5533:21:1;5590:2;5570:18;;;5563:30;5629:34;5609:18;;;5602:62;-1:-1:-1;;;5680:18:1;;;5673:33;5723:19;;45699:64:0;5523:225:1;45699:64:0;45791:1;45782:6;:10;45774:64;;;;-1:-1:-1;;;45774:64:0;;8603:2:1;45774:64:0;;;8585:21:1;8642:2;8622:18;;;8615:30;8681:34;8661:18;;;8654:62;-1:-1:-1;;;8732:18:1;;;8725:39;8781:19;;45774:64:0;8575:231:1;45774:64:0;45855:13;;-1:-1:-1;;;45855:13:0;;;;45851:94;;;45885:11;;:48;;-1:-1:-1;;;45885:48:0;;-1:-1:-1;;;;;3351:15:1;;;45885:48:0;;;3333:34:1;3403:15;;;3383:18;;;3376:43;3435:18;;;3428:34;;;45885:11:0;;;;:30;;3268:18:1;;45885:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45851:94;46239:28;46270:24;46288:4;46270:9;:24::i;:::-;46371:29;;46239:55;;-1:-1:-1;46334:66:0;;;;;;;46429:53;;-1:-1:-1;46466:16:0;;-1:-1:-1;;;46466:16:0;;;;46465:17;46429:53;:91;;;;-1:-1:-1;46507:13:0;;-1:-1:-1;;;;;46499:21:0;;;46507:13;;46499:21;;46429:91;:129;;;;-1:-1:-1;46537:21:0;;-1:-1:-1;;;46537:21:0;;;;46429:129;46411:318;;;46608:29;;46585:52;;46681:36;46696:20;46681:14;:36::i;:::-;-1:-1:-1;;;;;46922:24:0;;46802:12;46922:24;;;:18;:24;;;;;;46817:4;;46922:24;;;:50;;-1:-1:-1;;;;;;46950:22:0;;;;;;:18;:22;;;;;;;;46922:50;46918:98;;;-1:-1:-1;46999:5:0;46918:98;47094:41;47109:4;47115:2;47119:6;47127:7;47094:14;:41::i;:::-;45506:1637;;;;;;:::o;11168:240::-;11288:7;11349:12;11341:6;;;;11333:29;;;;-1:-1:-1;;;11333:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11384:5:0;;;11168:240::o;42252:164::-;42294:7;42315:15;42332;42351:19;:17;:19::i;:::-;42314:56;;-1:-1:-1;42314:56:0;-1:-1:-1;42388:20:0;42314:56;;42388:11;:20::i;:::-;42381:27;;;;42252:164;:::o;8889:98::-;8947:7;8974:5;8978:1;8974;:5;:::i;40164:841::-;40264:7;40286;40308;40330;40352;40374;40396;40446:23;40484:12;40511:18;40544:16;40574:20;40586:7;40574:11;:20::i;:::-;40431:163;;;;;;;;40606:15;40623:23;40648:12;40664:136;40690:7;40712:4;40731:10;40756:8;40779:10;:8;:10::i;:::-;40664:11;:136::i;:::-;40605:195;;-1:-1:-1;40605:195:0;-1:-1:-1;40605:195:0;-1:-1:-1;40904:15:0;;-1:-1:-1;40934:4:0;;-1:-1:-1;40953:10:0;;-1:-1:-1;40978:8:0;-1:-1:-1;;;;40164:841:0;;;;;;;;;:::o;9270:98::-;9328:7;9355:5;9359:1;9355;:5;:::i;5903:173::-;5959:16;5978:6;;-1:-1:-1;;;;;5995:17:0;;;-1:-1:-1;;;;;;5995:17:0;;;;;;6028:40;;5978:6;;;;;;;6028:40;;5959:16;6028:40;5903:173;;:::o;47151:977::-;30695:16;:23;;-1:-1:-1;;;;30695:23:0;-1:-1:-1;;;30695:23:0;;;;47302:27:::1;:20:::0;47327:1:::1;47302:24;:27::i;:::-;47287:42:::0;-1:-1:-1;47340:17:0::1;47360:30;:20:::0;47287:42;47360:24:::1;:30::i;:::-;47340:50:::0;-1:-1:-1;47693:21:0::1;47759:22;47776:4:::0;47759:16:::1;:22::i;:::-;47912:18;47933:41;:21;47959:14:::0;47933:25:::1;:41::i;:::-;47912:62;;48024:35;48037:9;48048:10;48024:12;:35::i;:::-;48077:43;::::0;;11407:25:1;;;11463:2;11448:18;;11441:34;;;11491:18;;;11484:34;;;48077:43:0::1;::::0;11395:2:1;11380:18;48077:43:0::1;;;;;;;-1:-1:-1::0;;30741:16:0;:24;;-1:-1:-1;;;;30741:24:0;;;-1:-1:-1;;;47151:977:0:o;49327:838::-;49483:7;49478:28;;49492:14;:12;:14::i;:::-;-1:-1:-1;;;;;49523:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;49547:22:0;;;;;;:11;:22;;;;;;;;49546:23;49523:46;49519:597;;;49586:48;49608:6;49616:9;49627:6;49586:21;:48::i;:::-;49519:597;;;-1:-1:-1;;;;;49657:19:0;;;;;;:11;:19;;;;;;;;49656:20;:46;;;;-1:-1:-1;;;;;;49680:22:0;;;;;;:11;:22;;;;;;;;49656:46;49652:464;;;49719:46;49739:6;49747:9;49758:6;49719:19;:46::i;49652:464::-;-1:-1:-1;;;;;49788:19:0;;;;;;:11;:19;;;;;;;;49787:20;:47;;;;-1:-1:-1;;;;;;49812:22:0;;;;;;:11;:22;;;;;;;;49811:23;49787:47;49783:333;;;49851:44;49869:6;49877:9;49888:6;49851:17;:44::i;49783:333::-;-1:-1:-1;;;;;49917:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49940:22:0;;;;;;:11;:22;;;;;;;;49917:45;49913:203;;;49979:48;50001:6;50009:9;50020:6;49979:21;:48::i;49913:203::-;50060:44;50078:6;50086:9;50097:6;50060:17;:44::i;:::-;50133:7;50128:29;;50142:15;44872;;44862:7;:25;44914:21;;44898:13;:37;44960:19;;44946:11;:33;44818:169;50142:15;49327:838;;;;:::o;42424:605::-;42522:7;;42558;;42475;;;;;42576:338;42600:9;:16;42596:20;;42576:338;;;42684:7;42660;:21;42668:9;42678:1;42668:12;;;;;;-1:-1:-1;;;42668:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42668:12:0;42660:21;;;;;;;;;;;;;:31;;:83;;;42736:7;42712;:21;42720:9;42730:1;42720:12;;;;;;-1:-1:-1;;;42720:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42720:12:0;42712:21;;;;;;;;;;;;;:31;42660:83;42638:146;;;42767:7;;42776;;42759:25;;;;;;;42424:605;;:::o;42638:146::-;42809:34;42821:7;:21;42829:9;42839:1;42829:12;;;;;;-1:-1:-1;;;42829:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42829:12:0;42821:21;;;;;;;;;;;;;42809:7;;:11;:34::i;:::-;42799:44;;42868:34;42880:7;:21;42888:9;42898:1;42888:12;;;;;;-1:-1:-1;;;42888:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42888:12:0;42880:21;;;;;;;;;;;;;42868:7;;:11;:34::i;:::-;42858:44;-1:-1:-1;42618:3:0;;;;:::i;:::-;;;;42576:338;;;-1:-1:-1;42950:7:0;;42938;;:20;;:11;:20::i;:::-;42928:7;:30;42924:61;;;42968:7;;42977;;42960:25;;;;;;42424:605;;:::o;42924:61::-;43004:7;;43013;;-1:-1:-1;42424:605:0;-1:-1:-1;42424:605:0:o;41013:549::-;41114:7;41136;41158;41180;41215:12;41230:24;41246:7;41230:15;:24::i;:::-;41215:39;;41265:18;41286:30;41308:7;41286:21;:30::i;:::-;41265:51;;41327:19;41349:28;41369:7;41349:19;:28::i;:::-;41327:50;-1:-1:-1;41388:23:0;41414:74;41327:50;41414:33;41436:10;41414:33;:7;41426:4;41414:11;:17::i;:::-;:21;;:33::i;:74::-;41388:100;41524:4;;-1:-1:-1;41530:10:0;;-1:-1:-1;41530:10:0;-1:-1:-1;41013:549:0;;-1:-1:-1;;;41013:549:0:o;41570:674::-;41796:7;;;;41893:24;:7;41905:11;41893;:24::i;:::-;41875:42;-1:-1:-1;41928:12:0;41943:21;:4;41952:11;41943:8;:21::i;:::-;41928:36;-1:-1:-1;41975:18:0;41996:27;:10;42011:11;41996:14;:27::i;:::-;41975:48;-1:-1:-1;42034:16:0;42053:25;:8;42066:11;42053:12;:25::i;:::-;42034:44;-1:-1:-1;42089:23:0;42115:71;42034:44;42115:33;42137:10;42115:33;:7;42127:4;42115:11;:17::i;:71::-;42205:7;;;;-1:-1:-1;42231:4:0;;-1:-1:-1;41570:674:0;;-1:-1:-1;;;;;;;;;41570:674:0:o;48136:589::-;48286:16;;;48300:1;48286:16;;;;;;;;48262:21;;48286:16;;;;;;;;;;-1:-1:-1;48286:16:0;48262:40;;48331:4;48313;48318:1;48313:7;;;;;;-1:-1:-1;;;48313:7:0;;;;;;;;;-1:-1:-1;;;;;48313:23:0;;;:7;;;;;;;;;;:23;;;;48357:15;;:22;;;-1:-1:-1;;;48357:22:0;;;;:15;;;;;:20;;:22;;;;;48313:7;;48357:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48347:4;48352:1;48347:7;;;;;;-1:-1:-1;;;48347:7:0;;;;;;;;;-1:-1:-1;;;;;48347:32:0;;;:7;;;;;;;;;:32;48424:15;;48392:62;;48409:4;;48424:15;48442:11;48392:8;:62::i;:::-;48493:15;;:224;;-1:-1:-1;;;48493:224:0;;-1:-1:-1;;;;;48493:15:0;;;;:66;;:224;;48574:11;;48493:15;;48644:4;;48671;;48691:15;;48493:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48733:513;48913:15;;48881:62;;48898:4;;-1:-1:-1;;;;;48913:15:0;48931:11;48881:8;:62::i;:::-;48986:15;;-1:-1:-1;;;;;48986:15:0;:31;49025:9;49058:4;49078:11;48986:15;;49190:7;4849;4876:6;-1:-1:-1;;;;;4876:6:0;;4803:87;49190:7;48986:252;;;;;;-1:-1:-1;;;;;;48986:252:0;;;-1:-1:-1;;;;;3832:15:1;;;48986:252:0;;;3814:34:1;3864:18;;;3857:34;;;;3907:18;;;3900:34;;;;3950:18;;;3943:34;4014:15;;;3993:19;;;3986:44;49212:15:0;4046:19:1;;;4039:35;3748:19;;48986:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48733:513;;:::o;44485:325::-;44532:7;;:12;:34;;;;-1:-1:-1;44548:13:0;;:18;44532:34;:54;;;;-1:-1:-1;44570:11:0;;:16;44532:54;44528:67;;;44485:325::o;44528:67::-;44625:7;;;44607:15;:25;44667:13;;;44643:21;:37;44713:11;;;44691:19;:33;-1:-1:-1;44737:11:0;;;;44759:17;;;;44787:15;44485:325::o;51646:753::-;51797:15;51827:23;51865:12;51892:23;51930:12;51957:18;51990:16;52020:19;52031:7;52020:10;:19::i;:::-;51782:257;;;;;;;;;;;;;;52068:28;52088:7;52068;:15;52076:6;-1:-1:-1;;;;;52068:15:0;-1:-1:-1;;;;;52068:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;52050:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52125:7;:15;;;;:28;;52145:7;52125:19;:28::i;:::-;-1:-1:-1;;;;;52107:15:0;;;;;;;:7;:15;;;;;;:46;;;;52185:18;;;;;;;:39;;52208:15;52185:22;:39::i;:::-;-1:-1:-1;;;;;52164:18:0;;;;;;:7;:18;;;;;:60;52235:26;52250:10;52235:14;:26::i;:::-;52272:25;52288:8;52272:15;:25::i;:::-;52308:23;52320:4;52326;52308:11;:23::i;:::-;52364:9;-1:-1:-1;;;;;52347:44:0;52356:6;-1:-1:-1;;;;;52347:44:0;;52375:15;52347:44;;;;10181:25:1;;10169:2;10154:18;;10136:76;52347:44:0;;;;;;;;51646:753;;;;;;;;;;:::o;50873:765::-;51022:15;51052:23;51090:12;51117:23;51155:12;51182:18;51215:16;51245:19;51256:7;51245:10;:19::i;:::-;51007:257;;;;;;;;;;;;;;51293:28;51313:7;51293;:15;51301:6;-1:-1:-1;;;;;51293:15:0;-1:-1:-1;;;;;51293:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;51275:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;51353:18;;;;;:7;:18;;;;;:39;;51376:15;51353:22;:39::i;:::-;-1:-1:-1;;;;;51332:18:0;;;;;;:7;:18;;;;;;;;:60;;;;51424:7;:18;;;;:39;;51447:15;51424:22;:39::i;50173:692::-;50320:15;50350:23;50388:12;50415:23;50453:12;50480:18;50513:16;50543:19;50554:7;50543:10;:19::i;:::-;50305:257;;;;;;;;;;;;;;50591:28;50611:7;50591;:15;50599:6;-1:-1:-1;;;;;50591:15:0;-1:-1:-1;;;;;50591:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;38137:824::-;38288:15;38318:23;38356:12;38383:23;38421:12;38448:18;38481:16;38511:19;38522:7;38511:10;:19::i;:::-;38273:257;;;;;;;;;;;;;;38559:28;38579:7;38559;:15;38567:6;-1:-1:-1;;;;;38559:15:0;-1:-1:-1;;;;;38559:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;38541:15:0;;;;;;:7;:15;;;;;;;;:46;;;;38616:7;:15;;;;:28;;38636:7;38616:19;:28::i;43933:130::-;43997:7;44024:31;44049:5;44024:20;44036:7;;44024;:11;;:20;;;;:::i;:::-;:24;;:31::i;44071:174::-;44168:7;44200:37;44231:5;44200:26;44212:13;;44200:7;:11;;:26;;;;:::i;44253:224::-;44377:15;;44348:7;;-1:-1:-1;;;;;44377:15:0;44373:43;;-1:-1:-1;44415:1:0;;44253:224;-1:-1:-1;44253:224:0:o;44373:43::-;44434:35;44463:5;44434:24;44446:11;;44434:7;:11;;:24;;;;:::i;43037:355::-;43100:19;43122:10;:8;:10::i;:::-;43100:32;-1:-1:-1;43143:18:0;43164:27;:10;43100:32;43164:14;:27::i;:::-;43243:4;43227:22;;;;:7;:22;;;;;;43143:48;;-1:-1:-1;43227:38:0;;43143:48;43227:26;:38::i;:::-;43218:4;43202:22;;;;:7;:22;;;;;;;;:63;;;;43280:11;:26;;;;;;43276:108;;;43362:4;43346:22;;;;:7;:22;;;;;;:38;;43373:10;43346:26;:38::i;:::-;43337:4;43321:22;;;;:7;:22;;;;;:63;43276:108;43037:355;;;:::o;43400:525::-;43466:12;;43462:456;;43495:19;43517:10;:8;:10::i;:::-;43495:32;-1:-1:-1;43542:16:0;43561:25;:8;43495:32;43561:12;:25::i;:::-;43636:15;;-1:-1:-1;;;;;43636:15:0;43628:24;;;;:7;:24;;;;;;43542:44;;-1:-1:-1;43628:38:0;;43542:44;43628:28;:38::i;:::-;43609:15;;;-1:-1:-1;;;;;43609:15:0;;;43601:24;;;;:7;:24;;;;;;;;:65;;;;43697:15;;;;;43685:28;;:11;:28;;;;;;;43681:156;;;43767:15;;-1:-1:-1;;;;;43767:15:0;43759:24;;;;:7;:24;;;;;;:78;;43810:8;43759:28;:78::i;:::-;43740:15;;-1:-1:-1;;;;;43740:15:0;43732:24;;;;:7;:24;;;;;:105;43681:156;43880:15;;-1:-1:-1;;;;;43880:15:0;3601:10;-1:-1:-1;;;;;43857:49:0;;43897:8;43857:49;;;;10181:25:1;;10169:2;10154:18;;10136:76;40009:147:0;40087:7;;:17;;40099:4;40087:11;:17::i;:::-;40077:7;:27;40128:10;;:20;;40143:4;40128:14;:20::i;:::-;40115:10;:33;-1:-1:-1;;40009:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1649:6;1657;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1775:9;1762:23;1794:31;1819:5;1794:31;:::i;:::-;1844:5;1896:2;1881:18;;;;1868:32;;-1:-1:-1;;;1668:238:1:o;1911:190::-;1967:6;2020:2;2008:9;1999:7;1995:23;1991:32;1988:2;;;2041:6;2033;2026:22;1988:2;2069:26;2085:9;2069:26;:::i;2106:190::-;2165:6;2218:2;2206:9;2197:7;2193:23;2189:32;2186:2;;;2239:6;2231;2224:22;2186:2;-1:-1:-1;2267:23:1;;2176:120;-1:-1:-1;2176:120:1:o;2301:258::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:2;;;2448:6;2440;2433:22;2395:2;2489:9;2476:23;2466:33;;2518:35;2549:2;2538:9;2534:18;2518:35;:::i;:::-;2508:45;;2385:174;;;;;:::o;2564:316::-;2652:6;2660;2668;2721:2;2709:9;2700:7;2696:23;2692:32;2689:2;;;2742:6;2734;2727:22;2689:2;2776:9;2770:16;2760:26;;2826:2;2815:9;2811:18;2805:25;2795:35;;2870:2;2859:9;2855:18;2849:25;2839:35;;2679:201;;;;;:::o;4741:603::-;4853:4;4882:2;4911;4900:9;4893:21;4943:6;4937:13;4986:6;4981:2;4970:9;4966:18;4959:34;5011:4;5024:140;5038:6;5035:1;5032:13;5024:140;;;5133:14;;;5129:23;;5123:30;5099:17;;;5118:2;5095:26;5088:66;5053:10;;5024:140;;;5182:6;5179:1;5176:13;5173:2;;;5252:4;5247:2;5238:6;5227:9;5223:22;5219:31;5212:45;5173:2;-1:-1:-1;5328:2:1;5307:15;-1:-1:-1;;5303:29:1;5288:45;;;;5335:2;5284:54;;4862:482;-1:-1:-1;;;4862:482:1:o;8040:356::-;8242:2;8224:21;;;8261:18;;;8254:30;8320:34;8315:2;8300:18;;8293:62;8387:2;8372:18;;8214:182::o;10217:983::-;10479:4;10527:3;10516:9;10512:19;10558:6;10547:9;10540:25;10584:2;10622:6;10617:2;10606:9;10602:18;10595:34;10665:3;10660:2;10649:9;10645:18;10638:31;10689:6;10724;10718:13;10755:6;10747;10740:22;10793:3;10782:9;10778:19;10771:26;;10832:2;10824:6;10820:15;10806:29;;10853:4;10866:195;10880:6;10877:1;10874:13;10866:195;;;10945:13;;-1:-1:-1;;;;;10941:39:1;10929:52;;11036:15;;;;11001:12;;;;10977:1;10895:9;10866:195;;;-1:-1:-1;;;;;;;11117:32:1;;;;11112:2;11097:18;;11090:60;-1:-1:-1;;;11181:3:1;11166:19;11159:35;11078:3;10488:712;-1:-1:-1;;;10488:712:1:o;11718:128::-;11758:3;11789:1;11785:6;11782:1;11779:13;11776:2;;;11795:18;;:::i;:::-;-1:-1:-1;11831:9:1;;11766:80::o;11851:217::-;11891:1;11917;11907:2;;-1:-1:-1;;;11942:31:1;;11996:4;11993:1;11986:15;12024:4;11949:1;12014:15;11907:2;-1:-1:-1;12053:9:1;;11897:171::o;12073:168::-;12113:7;12179:1;12175;12171:6;12167:14;12164:1;12161:21;12156:1;12149:9;12142:17;12138:45;12135:2;;;12186:18;;:::i;:::-;-1:-1:-1;12226:9:1;;12125:116::o;12246:125::-;12286:4;12314:1;12311;12308:8;12305:2;;;12319:18;;:::i;:::-;-1:-1:-1;12356:9:1;;12295:76::o;12376:380::-;12455:1;12451:12;;;;12498;;;12519:2;;12573:4;12565:6;12561:17;12551:27;;12519:2;12626;12618:6;12615:14;12595:18;12592:38;12589:2;;;12672:10;12667:3;12663:20;12660:1;12653:31;12707:4;12704:1;12697:15;12735:4;12732:1;12725:15;12589:2;;12431:325;;;:::o;12761:135::-;12800:3;-1:-1:-1;;12821:17:1;;12818:2;;;12841:18;;:::i;:::-;-1:-1:-1;12888:1:1;12877:13;;12808:88::o;12901:127::-;12962:10;12957:3;12953:20;12950:1;12943:31;12993:4;12990:1;12983:15;13017:4;13014:1;13007:15;13033:131;-1:-1:-1;;;;;13108:31:1;;13098:42;;13088:2;;13154:1;13151;13144:12
Swarm Source
ipfs://dec5963019c439179c0bda56f346075bb975068e972ae1d6c1710d731c8db746
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.