ERC-20
Overview
Max Total Supply
998,951,041,993,657.926724746 MINE
Holders
1,099
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
27,358,450,980 MINEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheOfficialMINEToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** POWERED BY * __ ________ ________ __ ____ _______ __ / |/ / _/ | / / ____/ _/_/ / __ \___ / ____(_)___ _____ / /_ / /|_/ // // |/ / __/ _/_/ / / / / _ \/ /_ / / __ `/ __ \/ __/ / / / // // /| / /___ _/_/ / /_/ / __/ __/ / / /_/ / / / / /_ /_/ /_/___/_/ |_/_____/ /_/ /_____/\___/_/ /_/\__,_/_/ /_/\__/ t.me/mcuentryportal t.me/defianthub TheOfficialMineToken.io linkre.ee/DeFiant_Platform */ pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 import "./SafeMath.sol"; import "./Address.sol"; import "./RewardsToken.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Router.sol"; import "./IUniswapV2Pair.sol"; import "./IRewardsTracker.sol"; contract TheOfficialMINEToken is RewardsToken { using SafeMath for uint256; using Address for address; uint256 private constant REWARDS_TRACKER_IDENTIFIER = 3; uint256 private constant TOTAL_SUPPLY = 1000000000000000 * (10**9); uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); uint256 private platformFee = 0; uint256 private _previousPlatformFee = platformFee; uint256 public devFee = 600; uint256 public sellDevFee = 600; uint256 private _previousDevFee = devFee; uint256 public rewardsFee = 600; uint256 public sellRewardsFee = 600; uint256 private _previousRewardsFee = rewardsFee; uint256 public launchSellFee = 1200; uint256 private _previousLaunchSellFee = launchSellFee; uint256 public burnFee = 100; uint256 public sellburnFee = 100; uint256 private _previousBurnFee = burnFee; mapping(address => bool) public uniswapv2contracts; address payable private constant _platformWalletAddress = payable(0xAf323b073057266C036E75cf0FfD336985428f3a); address payable private _devWalletAddress = payable(0x83800411295DB36af4B2DF5a04d32543464780ab); uint256 private blacklistDeadline = 0; uint256 private launchSellFeeDeadline = 0; IRewardsTracker private _rewardsTracker; bool private useGenericTransfer = true; bool private preparedForLaunch = false; mapping(address => bool) private isBlacklisted; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcludedFromMaxTx; mapping(address => bool) private burnAddresses; IUniswapV2Router public uniswapV2Router; address public uniswapV2Pair; bool currentlySwapping; bool public swapAndRedirectEthFeesEnabled = true; uint256 private minTokensBeforeSwap = 100000000000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndRedirectEthFeesUpdated(bool enabled); event OnSwapAndRedirectEthFees( uint256 tokensSwapped, uint256 ethToDevWallet ); event MaxTxAmountUpdated(uint256 maxTxAmount); event GenericTransferChanged(bool useGenericTransfer); event ExcludeFromFees(address wallet); event IncludeInFees(address wallet); event DevWalletUpdated(address newDevWallet); event RewardsTrackerUpdated(address newRewardsTracker); event RouterUpdated(address newRouterAddress); event FeesChanged( uint256 newDevFee, uint256 newSellDevFee, uint256 newRewardsFee, uint256 newSellRewardsFee, uint256 newburnFee, uint256 newSellburnFee ); event LaunchFeeUpdated(uint256 newLaunchSellFee); modifier lockTheSwap() { currentlySwapping = true; _; currentlySwapping = false; } constructor() ERC20("The Official MINE Token", "MINE") { IUniswapV2Router _uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _mint(owner(), TOTAL_SUPPLY); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromMaxTx[owner()] = true; _isExcludedFromMaxTx[address(this)] = true; excludeFromRewards(address(this)); excludeFromRewards(owner()); excludeFromRewards(address(0xdead)); excludeFromRewards(uniswapV2Pair); uniswapv2contracts[uniswapV2Pair] = true; } function decimals() public view virtual override returns (uint8) { return 9; } function _transfer( address from, address to, uint256 amount ) internal virtual override { require(preparedForLaunch || _msgSender() == owner(), "Contract has not been prepared for launch and user is not owner"); require( !isBlacklisted[from] && !isBlacklisted[to], "Blacklisted address" ); if(useGenericTransfer){ super._transfer(from, to, amount); return; } if (!uniswapv2contracts[from] && !uniswapv2contracts[to] && !burnAddresses[to]) { super._transfer(from, to, amount); return; } if ( !_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount" ); } uint256 baseRewardsFee = rewardsFee; uint256 baseDevFee = devFee; uint256 baseBurnFee = burnFee; if (to == uniswapV2Pair) { devFee = sellDevFee; rewardsFee = sellRewardsFee; burnFee = sellburnFee; if (launchSellFeeDeadline >= block.timestamp) { devFee = devFee.add(launchSellFee); } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; if ( overMinTokenBalance && !currentlySwapping && from != uniswapV2Pair && swapAndRedirectEthFeesEnabled ) { swapAndRedirectEthFees(contractTokenBalance); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { removeAllFee(); } (uint256 tTransferAmount, uint256 tFee) = _getValues(amount); _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(tTransferAmount); _takeFee(tFee); if(trueBurn){ uint256 burnFeeTotal = calculateBurnFee(amount); _burn(address(this), burnFeeTotal); } if(burnAddresses[to]){ uint256 burnamount = tTransferAmount - 1; _burn(to, burnamount); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { restoreAllFee(); } devFee = baseDevFee; rewardsFee = baseRewardsFee; burnFee = baseBurnFee; emit Transfer(from, to, tTransferAmount); } receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tFee = calculateFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _takeFee(uint256 fee) private { _balances[address(this)] = _balances[address(this)].add(fee); } function calculateFee(uint256 _amount) private view returns (uint256) { uint256 totalFee = devFee.add(rewardsFee).add(platformFee).add(burnFee); return _amount.mul(totalFee).div(10000); } function removeAllFee() private { if (devFee == 0 && rewardsFee == 0 && platformFee == 0 && burnFee == 0) return; _previousPlatformFee = platformFee; _previousDevFee = devFee; _previousRewardsFee = rewardsFee; _previousBurnFee = burnFee; platformFee = 0; devFee = 0; rewardsFee = 0; burnFee = 0; } function restoreAllFee() private { platformFee = _previousPlatformFee; devFee = _previousDevFee; rewardsFee = _previousRewardsFee; burnFee = _previousBurnFee; } function swapAndRedirectEthFees(uint256 contractTokenBalance) private lockTheSwap { uint256 totalRedirectFee = devFee.add(rewardsFee).add(platformFee); if (totalRedirectFee == 0) return; uint256 initialBalance = address(this).balance; swapTokensForEth(contractTokenBalance); uint256 newBalance = address(this).balance.sub(initialBalance); if (newBalance > 0) { uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee); sendEthToWallet(_platformWalletAddress, platformBalance); uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee); if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) { try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {} } uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee); sendEthToWallet(_devWalletAddress, devBalance); emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance); } } function sendEthToWallet(address wallet, uint256 amount) private { if (amount > 0) { payable(wallet).transfer(amount); } } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function prepareForLaunch() external onlyOwner { require(!preparedForLaunch, "Already prepared for launch"); preparedForLaunch = true; blacklistDeadline = block.timestamp + 24 hours; launchSellFeeDeadline = block.timestamp + 7 days; } function setUseGenericTransfer(bool genericTransfer) external onlyOwner { useGenericTransfer = genericTransfer; emit GenericTransferChanged(genericTransfer); } function blacklistAddress(address account, bool value) public onlyOwner { if (value) { require(block.timestamp < blacklistDeadline, "The ability to blacklist accounts has been disabled."); } isBlacklisted[account] = value; } function setMaxTxPercent(uint256 newMaxTx) external onlyOwner { require(newMaxTx >= 5, "Max TX should be above 0.5%"); maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000); emit MaxTxAmountUpdated(maxTxAmount); } function isExcludedFromFee(address account) external view returns (bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) external onlyOwner { _isExcludedFromFee[account] = true; emit ExcludeFromFees(account); } function includeInFee(address account) external onlyOwner { _isExcludedFromFee[account] = false; emit IncludeInFees(account); } function setFees( uint256 newPlatformFee, uint256 newDevFee, uint256 newSellDevFee, uint256 newRewardsFee, uint256 newSellRewardsFee, uint256 newburnFee, uint256 newSellburnFee ) external onlyOwner { require( newPlatformFee <= 1000 && newDevFee <= 1000 && newSellDevFee <= 1000 && newRewardsFee <= 1000 && newSellRewardsFee <= 1000 && newburnFee <= 1000 && newSellburnFee <= 1000, "Fees exceed maximum allowed value" ); platformFee = newPlatformFee; devFee = newDevFee; sellDevFee = newSellDevFee; rewardsFee = newRewardsFee; sellRewardsFee = newSellRewardsFee; burnFee = newburnFee; sellburnFee = newSellburnFee; emit FeesChanged(newDevFee, newSellDevFee, newRewardsFee, newSellRewardsFee, newburnFee, newSellburnFee); } function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner { require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%"); launchSellFee = newLaunchSellFee; emit LaunchFeeUpdated(newLaunchSellFee); } function setDevWallet(address payable newDevWallet) external onlyOwner { _devWalletAddress = newDevWallet; emit DevWalletUpdated(newDevWallet); } function setRewardsTracker(address payable newRewardsTracker) external onlyOwner { _rewardsTracker = IRewardsTracker(newRewardsTracker); emit RewardsTrackerUpdated(newRewardsTracker); } function setRouterAddress(address newRouter) external onlyOwner { IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter); uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()) .createPair(address(this), _newUniswapRouter.WETH()); uniswapV2Router = _newUniswapRouter; } function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner { swapAndRedirectEthFeesEnabled = enabled; emit SwapAndRedirectEthFeesUpdated(enabled); } function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner { minTokensBeforeSwap = minTokens * 10**9; emit MinTokensBeforeSwapUpdated(minTokens); } function manualSwap() external onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() external onlyOwner { uint256 contractEthBalance = address(this).balance; sendEthToWallet(_devWalletAddress, contractEthBalance); } bool private trueBurn = false; function calculateBurnFee(uint256 _amount) internal view returns(uint256) { return _amount.mul(burnFee).div(10000); } function changeTrueBurn(bool value) private onlyOwner{ trueBurn = value; } function addPairAddress(address _newPair, bool value) public onlyOwner{ uniswapv2contracts[_newPair] = value; } function addBurnAddress(address _wallet, bool value) public onlyOwner{ burnAddresses[_wallet] = value; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 interface IRewardsTracker { function addAllocation(uint identifier) external payable; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.8.17; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 import "./ERC20.sol"; import "./Ownable.sol"; abstract contract RewardsToken is ERC20, Ownable { address[] private excludedFromRewards; mapping(address => bool) private isAddressExcluded; event ExcludeFromRewards(address wallet); event IncludeInRewards(address wallet); function deleteExcluded(uint index) internal { require(index < excludedFromRewards.length, "Index is greater than array length"); excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1]; excludedFromRewards.pop(); } function getExcludedBalances() internal view returns (uint256) { uint256 totalExcludedHoldings = 0; for (uint i = 0; i < excludedFromRewards.length; i++) { totalExcludedHoldings += balanceOf(excludedFromRewards[i]); } return totalExcludedHoldings; } function excludeFromRewards(address wallet) public onlyOwner { require(!isAddressExcluded[wallet], "Address is already excluded from rewards"); excludedFromRewards.push(wallet); isAddressExcluded[wallet] = true; emit ExcludeFromRewards(wallet); } function includeInRewards(address wallet) external onlyOwner { require(isAddressExcluded[wallet], "Address is not excluded from rewards"); for (uint i = 0; i < excludedFromRewards.length; i++) { if (excludedFromRewards[i] == wallet) { isAddressExcluded[wallet] = false; deleteExcluded(i); break; } } emit IncludeInRewards(wallet); } function isExcludedFromRewards(address wallet) external view returns (bool) { return isAddressExcluded[wallet]; } function getAllExcludedFromRewards() external view returns (address[] memory) { return excludedFromRewards; } function getRewardsSupply() public view returns (uint256) { return _totalSupply - getExcludedBalances(); } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.17; // 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 generally not needed starting with Solidity 0.8, since 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; } } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./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. */ 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() external virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) external virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; import "./SafeMath.sol"; import "./Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; using Address for address; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ 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; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { 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); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newburnFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","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":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnFee","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":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","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":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"prepareForLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellburnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPlatformFee","type":"uint256"},{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newburnFee","type":"uint256"},{"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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 IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapv2contracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052620000446103e862000030600269d3c21bcecceda1000000620004b460201b620019a71790919060201c565b620004cb60201b620019ba1790919060201c565b60085560006009819055600a819055610258600b819055600c819055600d819055600e819055600f8190556010556104b06011819055601255606460138190556014819055601555601780546001600160a01b0319167383800411295db36af4b2df5a04d32543464780ab1790556018819055601955601a805461ffff60a01b1916600160a01b1790556020805460ff60a81b1916600160a81b17905568056bc75e2d631000006021556022805460ff191690553480156200010557600080fd5b506040518060400160405280601781526020017f546865204f6666696369616c204d494e4520546f6b656e000000000000000000815250604051806040016040528060048152602001634d494e4560e01b81525081600390816200016a919062000806565b50600462000179828262000806565b50505060006200018e620004d960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a9190620008d2565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ce9190620008d2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200031c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003429190620008d2565b602080546001600160a01b03199081166001600160a01b0393841617909155601f805490911683831617905560055462000388911669d3c21bcecceda1000000620004dd565b6001601c6000620003a16005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601c909252812080549092166001908117909255601d90620003fa6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252601d9093522080549092166001179091556200044690620005dd565b620004636200045d6005546001600160a01b031690565b620005dd565b6200047061dead620005dd565b60205462000487906001600160a01b0316620005dd565b50602080546001600160a01b03166000908152601690915260409020805460ff191660011790556200096d565b6000620004c282846200091a565b90505b92915050565b6000620004c2828462000934565b3390565b6001600160a01b038216620005395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000555816002546200075460201b620019c61790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000588918390620019c662000754821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000530565b6001600160a01b03811660009081526007602052604090205460ff1615620006b55760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b606482015260840162000530565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b505050565b6000620004c2828462000957565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200078d57607f821691505b602082108103620007ae57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200074f57600081815260208120601f850160051c81016020861015620007dd5750805b601f850160051c820191505b81811015620007fe57828155600101620007e9565b505050505050565b81516001600160401b0381111562000822576200082262000762565b6200083a8162000833845462000778565b84620007b4565b602080601f831160018114620008725760008415620008595750858301515b600019600386901b1c1916600185901b178555620007fe565b600085815260208120601f198616915b82811015620008a35788860151825594840194600190910190840162000882565b5085821015620008c25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008e557600080fd5b81516001600160a01b0381168114620008fd57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004c557620004c562000904565b6000826200095257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004c557620004c562000904565b612d1d806200097d6000396000f3fe6080604052600436106102b25760003560e01c80636827e76411610175578063ada46d0a116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461089f578063f4293890146108bf578063fce589d8146108d4578063fffa1dd9146108ea57600080fd5b8063dd62ed3e14610819578063e89bcca21461085f578063ea2f0b371461087f57600080fd5b8063ada46d0a14610761578063b609995e14610783578063ba385abb146107a3578063bb8d5131146107c3578063d543dbeb146107d9578063da2e3bad146107f957600080fd5b8063903cdec01161012e578063903cdec0146106c157806395d89b41146106e1578063a0d82dc5146106f6578063a1ab19a31461070c578063a457c2d714610721578063a9059cbb1461074157600080fd5b80636827e7641461060c57806370a0823114610622578063715018a6146106585780638421b5071461066d5780638c0b5e221461068d5780638da5cb5b146106a357600080fd5b8063313ce56711610219578063455a4396116101d2578063455a43961461054857806348a464731461056857806349bd5a5e1461058857806351bc3c85146105a85780635342acb4146105bd57806354959363146105f657600080fd5b8063313ce5671461047c578063393344b61461049857806339509351146104b857806341cb87fc146104d85780634337ac5b146104f8578063437823ec1461052857600080fd5b80631694505e1161026b5780631694505e146103b957806318160ddd146103f15780631f53ac021461040657806323b872dd1461042657806326b6308d146104465780632bb14e1d1461046657600080fd5b806306fdde03146102be578063095ea7b3146102e95780630e83227314610319578063111e037614610352578063113201fa1461037457806312ee302d1461039557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108ff565b6040516102e0919061288f565b60405180910390f35b3480156102f557600080fd5b506103096103043660046128f2565b610991565b60405190151581526020016102e0565b34801561032557600080fd5b5061030961033436600461291e565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561035e57600080fd5b5061037261036d36600461291e565b6109a8565b005b34801561038057600080fd5b5060205461030990600160a81b900460ff1681565b3480156103a157600080fd5b506103ab60145481565b6040519081526020016102e0565b3480156103c557600080fd5b50601f546103d9906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103fd57600080fd5b506002546103ab565b34801561041257600080fd5b5061037261042136600461291e565b610af0565b34801561043257600080fd5b5061030961044136600461293b565b610b68565b34801561045257600080fd5b50610372610461366004612991565b610bd1565b34801561047257600080fd5b506103ab600e5481565b34801561048857600080fd5b50604051600981526020016102e0565b3480156104a457600080fd5b506103726104b33660046129ac565b610c45565b3480156104c457600080fd5b506103096104d33660046128f2565b610c9a565b3480156104e457600080fd5b506103726104f336600461291e565b610cd0565b34801561050457600080fd5b5061030961051336600461291e565b60166020526000908152604090205460ff1681565b34801561053457600080fd5b5061037261054336600461291e565b610e75565b34801561055457600080fd5b506103726105633660046129ac565b610ef3565b34801561057457600080fd5b506103726105833660046129e1565b610fbc565b34801561059457600080fd5b506020546103d9906001600160a01b031681565b3480156105b457600080fd5b50610372611027565b3480156105c957600080fd5b506103096105d836600461291e565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561060257600080fd5b506103ab60115481565b34801561061857600080fd5b506103ab600b5481565b34801561062e57600080fd5b506103ab61063d36600461291e565b6001600160a01b031660009081526020819052604090205490565b34801561066457600080fd5b5061037261106d565b34801561067957600080fd5b506103726106883660046129e1565b6110e1565b34801561069957600080fd5b506103ab60085481565b3480156106af57600080fd5b506005546001600160a01b03166103d9565b3480156106cd57600080fd5b506103726106dc3660046129ac565b611192565b3480156106ed57600080fd5b506102d36111e7565b34801561070257600080fd5b506103ab600c5481565b34801561071857600080fd5b506103726111f6565b34801561072d57600080fd5b5061030961073c3660046128f2565b6112af565b34801561074d57600080fd5b5061030961075c3660046128f2565b6112fe565b34801561076d57600080fd5b5061077661130b565b6040516102e09190612a3e565b34801561078f57600080fd5b5061037261079e36600461291e565b61136c565b3480156107af57600080fd5b506103726107be36600461291e565b6114c8565b3480156107cf57600080fd5b506103ab600f5481565b3480156107e557600080fd5b506103726107f43660046129e1565b611540565b34801561080557600080fd5b50610372610814366004612a51565b611610565b34801561082557600080fd5b506103ab610834366004612a9d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561086b57600080fd5b5061037261087a366004612991565b61176c565b34801561088b57600080fd5b5061037261089a36600461291e565b6117e3565b3480156108ab57600080fd5b506103726108ba36600461291e565b61185e565b3480156108cb57600080fd5b50610372611949565b3480156108e057600080fd5b506103ab60135481565b3480156108f657600080fd5b506103ab61198b565b60606003805461090e90612ad6565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612ad6565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b600061099e3384846119d2565b5060015b92915050565b6005546001600160a01b031633146109db5760405162461bcd60e51b81526004016109d290612b0a565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610a555760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016109d2565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610b1a5760405162461bcd60e51b81526004016109d290612b0a565b601780546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610ae5565b6000610b75848484611af7565b610bc78433610bc285604051806060016040528060288152602001612c9b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ff9565b6119d2565b5060019392505050565b6005546001600160a01b03163314610bfb5760405162461bcd60e51b81526004016109d290612b0a565b6020805460ff60a81b1916600160a81b8315159081029190911782556040519081527fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b99101610ae5565b6005546001600160a01b03163314610c6f5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161099e918590610bc290866119c6565b6005546001600160a01b03163314610cfa5760405162461bcd60e51b81526004016109d290612b0a565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d619190612b3f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd29190612b3f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e439190612b3f565b602080546001600160a01b039283166001600160a01b031991821617909155601f805493909216921691909117905550565b6005546001600160a01b03163314610e9f5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b0381166000818152601c6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610ae5565b6005546001600160a01b03163314610f1d5760405162461bcd60e51b81526004016109d290612b0a565b8015610f91576018544210610f915760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b60648201526084016109d2565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fe65760405162461bcd60e51b81526004016109d290612b0a565b610ff481633b9aca00612b72565b6021556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610ae5565b6005546001600160a01b031633146110515760405162461bcd60e51b81526004016109d290612b0a565b3060009081526020819052604090205461106a81612025565b50565b6005546001600160a01b031633146110975760405162461bcd60e51b81526004016109d290612b0a565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461110b5760405162461bcd60e51b81526004016109d290612b0a565b6109c481111561115d5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016109d2565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610ae5565b6005546001600160a01b031633146111bc5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b60606004805461090e90612ad6565b6005546001600160a01b031633146112205760405162461bcd60e51b81526004016109d290612b0a565b601a54600160a81b900460ff161561127a5760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e6368000000000060448201526064016109d2565b601a805460ff60a81b1916600160a81b17905561129a4262015180612b89565b6018556112aa4262093a80612b89565b601955565b600061099e3384610bc285604051806060016040528060258152602001612cc3602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ff9565b600061099e338484611af7565b6060600680548060200260200160405190810160405280929190818152602001828054801561098757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611345575050505050905090565b6005546001600160a01b031633146113965760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b03811660009081526007602052604090205460ff1661140a5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016109d2565b60005b60065481101561148e57816001600160a01b03166006828154811061143457611434612b9c565b6000918252602090912001546001600160a01b03160361147c576001600160a01b0382166000908152600760205260409020805460ff191690556114778161217f565b61148e565b8061148681612bb2565b91505061140d565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610ae5565b6005546001600160a01b031633146114f25760405162461bcd60e51b81526004016109d290612b0a565b601a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610ae5565b6005546001600160a01b0316331461156a5760405162461bcd60e51b81526004016109d290612b0a565b60058110156115bb5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016109d2565b6115db6103e86115d569d3c21bcecceda1000000846119a7565b906119ba565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610ae5565b6005546001600160a01b0316331461163a5760405162461bcd60e51b81526004016109d290612b0a565b6103e8871115801561164e57506103e88611155b801561165c57506103e88511155b801561166a57506103e88411155b801561167857506103e88311155b801561168657506103e88211155b801561169457506103e88111155b6116ea5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016109d2565b6009879055600b869055600c859055600e849055600f839055601382905560148190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a150505050505050565b6005546001600160a01b031633146117965760405162461bcd60e51b81526004016109d290612b0a565b601a8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610ae590831515815260200190565b6005546001600160a01b0316331461180d5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b0381166000818152601c6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610ae5565b6005546001600160a01b031633146118885760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b0381166118ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146119735760405162461bcd60e51b81526004016109d290612b0a565b601754479061106a906001600160a01b03168261228b565b60006119956122cb565b6002546119a29190612bcb565b905090565b60006119b38284612b72565b9392505050565b60006119b38284612bde565b60006119b38284612b89565b6001600160a01b038316611a345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109d2565b6001600160a01b038216611a955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109d2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601a54600160a81b900460ff1680611b1957506005546001600160a01b031633145b611b8b5760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e65720060648201526084016109d2565b6001600160a01b0383166000908152601b602052604090205460ff16158015611bcd57506001600160a01b0382166000908152601b602052604090205460ff16155b611c0f5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b60448201526064016109d2565b601a54600160a01b900460ff1615611c3157611c2c838383612338565b505050565b6001600160a01b03831660009081526016602052604090205460ff16158015611c7357506001600160a01b03821660009081526016602052604090205460ff16155b8015611c9857506001600160a01b0382166000908152601e602052604090205460ff16155b15611ca857611c2c838383612338565b6001600160a01b0383166000908152601d602052604090205460ff16158015611cea57506001600160a01b0382166000908152601d602052604090205460ff16155b15611d5157600854811115611d515760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016109d2565b600e54600b546013546020546001600160a01b0390811690861603611d9e57600c54600b55600f54600e556014546013556019544211611d9e57601154600b54611d9a916119c6565b600b555b3060009081526020819052604090205460215481108015908190611dcc5750602054600160a01b900460ff16155b8015611de657506020546001600160a01b03898116911614155b8015611dfb5750602054600160a81b900460ff165b15611e0957611e09826124bb565b6001600160a01b0388166000908152601c602052604090205460ff1680611e4857506001600160a01b0387166000908152601c602052604090205460ff165b15611e5557611e55612674565b600080611e61886126cf565b6001600160a01b038c166000908152602081905260409020549193509150611e8990896126f6565b6001600160a01b03808c1660009081526020819052604080822093909355908b1681522054611eb890836119c6565b6001600160a01b038a16600090815260208190526040902055611eda81612702565b60225460ff1615611efe576000611ef08961272f565b9050611efc308261274c565b505b6001600160a01b0389166000908152601e602052604090205460ff1615611f3a576000611f2c600184612bcb565b9050611f388a8261274c565b505b6001600160a01b038a166000908152601c602052604090205460ff1680611f7957506001600160a01b0389166000908152601c602052604090205460ff165b15611f9b57611f9b600a54600955600d54600b55601054600e55601554601355565b600b869055600e87905560138590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b6000818484111561201d5760405162461bcd60e51b81526004016109d2919061288f565b505050900390565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061205a5761205a612b9c565b6001600160a01b03928316602091820292909201810191909152601f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156120b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d79190612b3f565b816001815181106120ea576120ea612b9c565b6001600160a01b039283166020918202929092010152601f5461211091309116846119d2565b601f5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612149908590600090869030904290600401612c00565b600060405180830381600087803b15801561216357600080fd5b505af1158015612177573d6000803e3d6000fd5b505050505050565b60065481106121db5760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016109d2565b600680546121eb90600190612bcb565b815481106121fb576121fb612b9c565b600091825260209091200154600680546001600160a01b03909216918390811061222757612227612b9c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061226657612266612c3c565b600082815260209020810160001990810180546001600160a01b031916905501905550565b80156122c7576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c2c573d6000803e3d6000fd5b5050565b600080805b60065481101561233257612314600682815481106122f0576122f0612b9c565b60009182526020808320909101546001600160a01b03168252819052604090205490565b61231e9083612b89565b91508061232a81612bb2565b9150506122d0565b50919050565b6001600160a01b03831661239c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109d2565b6001600160a01b0382166123fe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109d2565b61243b81604051806060016040528060268152602001612c75602691396001600160a01b0386166000908152602081905260409020549190611ff9565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461246a90826119c6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611aea565b6020805460ff60a01b1916600160a01b179055600954600e54600b546000926124ef9290916124e9916119c6565b906119c6565b9050806000036124ff5750612664565b4761250983612025565b600061251547836126f6565b90508015612660576000612538846115d5600954856119a790919063ffffffff16565b905061255873af323b073057266c036e75cf0ffd336985428f3a8261228b565b6000612573856115d5600e54866119a790919063ffffffff16565b905060008111801561258f5750601a546001600160a01b031615155b156125ef57601a5460405163febd221b60e01b8152600360048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b1580156125db57600080fd5b505af1935050505080156125ed575060015b505b600061260a866115d5600b54876119a790919063ffffffff16565b601754909150612623906001600160a01b03168261228b565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506020805460ff60a01b19169055565b600b541580156126845750600e54155b80156126905750600954155b801561269c5750601354155b156126a357565b60098054600a55600b8054600d55600e8054601055601380546015556000938490559183905582905555565b60008060006126dd84612857565b905060006126eb85836126f6565b959194509092505050565b60006119b38284612bcb565b3060009081526020819052604090205461271c90826119c6565b3060009081526020819052604090205550565b60006109a26127106115d5601354856119a790919063ffffffff16565b6001600160a01b0382166127ac5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109d2565b6127e981604051806060016040528060228152602001612c53602291396001600160a01b0385166000908152602081905260409020549190611ff9565b6001600160a01b03831660009081526020819052604090205560025461280f90826126f6565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008061287d6013546124e96009546124e9600e54600b546119c690919063ffffffff16565b90506119b36127106115d585846119a7565b600060208083528351808285015260005b818110156128bc578581018301518582016040015282016128a0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461106a57600080fd5b6000806040838503121561290557600080fd5b8235612910816128dd565b946020939093013593505050565b60006020828403121561293057600080fd5b81356119b3816128dd565b60008060006060848603121561295057600080fd5b833561295b816128dd565b9250602084013561296b816128dd565b929592945050506040919091013590565b8035801515811461298c57600080fd5b919050565b6000602082840312156129a357600080fd5b6119b38261297c565b600080604083850312156129bf57600080fd5b82356129ca816128dd565b91506129d86020840161297c565b90509250929050565b6000602082840312156129f357600080fd5b5035919050565b600081518084526020808501945080840160005b83811015612a335781516001600160a01b031687529582019590820190600101612a0e565b509495945050505050565b6020815260006119b360208301846129fa565b600080600080600080600060e0888a031215612a6c57600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060408385031215612ab057600080fd5b8235612abb816128dd565b91506020830135612acb816128dd565b809150509250929050565b600181811c90821680612aea57607f821691505b60208210810361233257634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612b5157600080fd5b81516119b3816128dd565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109a2576109a2612b5c565b808201808211156109a2576109a2612b5c565b634e487b7160e01b600052603260045260246000fd5b600060018201612bc457612bc4612b5c565b5060010190565b818103818111156109a2576109a2612b5c565b600082612bfb57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612c1f60a08301866129fa565b6001600160a01b0394909416606083015250608001529392505050565b634e487b7160e01b600052603160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e0cc421670789b0988453632cc041f88a94406f3410bbf5e3689e1cdf23b2d4c64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102b25760003560e01c80636827e76411610175578063ada46d0a116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461089f578063f4293890146108bf578063fce589d8146108d4578063fffa1dd9146108ea57600080fd5b8063dd62ed3e14610819578063e89bcca21461085f578063ea2f0b371461087f57600080fd5b8063ada46d0a14610761578063b609995e14610783578063ba385abb146107a3578063bb8d5131146107c3578063d543dbeb146107d9578063da2e3bad146107f957600080fd5b8063903cdec01161012e578063903cdec0146106c157806395d89b41146106e1578063a0d82dc5146106f6578063a1ab19a31461070c578063a457c2d714610721578063a9059cbb1461074157600080fd5b80636827e7641461060c57806370a0823114610622578063715018a6146106585780638421b5071461066d5780638c0b5e221461068d5780638da5cb5b146106a357600080fd5b8063313ce56711610219578063455a4396116101d2578063455a43961461054857806348a464731461056857806349bd5a5e1461058857806351bc3c85146105a85780635342acb4146105bd57806354959363146105f657600080fd5b8063313ce5671461047c578063393344b61461049857806339509351146104b857806341cb87fc146104d85780634337ac5b146104f8578063437823ec1461052857600080fd5b80631694505e1161026b5780631694505e146103b957806318160ddd146103f15780631f53ac021461040657806323b872dd1461042657806326b6308d146104465780632bb14e1d1461046657600080fd5b806306fdde03146102be578063095ea7b3146102e95780630e83227314610319578063111e037614610352578063113201fa1461037457806312ee302d1461039557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108ff565b6040516102e0919061288f565b60405180910390f35b3480156102f557600080fd5b506103096103043660046128f2565b610991565b60405190151581526020016102e0565b34801561032557600080fd5b5061030961033436600461291e565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561035e57600080fd5b5061037261036d36600461291e565b6109a8565b005b34801561038057600080fd5b5060205461030990600160a81b900460ff1681565b3480156103a157600080fd5b506103ab60145481565b6040519081526020016102e0565b3480156103c557600080fd5b50601f546103d9906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103fd57600080fd5b506002546103ab565b34801561041257600080fd5b5061037261042136600461291e565b610af0565b34801561043257600080fd5b5061030961044136600461293b565b610b68565b34801561045257600080fd5b50610372610461366004612991565b610bd1565b34801561047257600080fd5b506103ab600e5481565b34801561048857600080fd5b50604051600981526020016102e0565b3480156104a457600080fd5b506103726104b33660046129ac565b610c45565b3480156104c457600080fd5b506103096104d33660046128f2565b610c9a565b3480156104e457600080fd5b506103726104f336600461291e565b610cd0565b34801561050457600080fd5b5061030961051336600461291e565b60166020526000908152604090205460ff1681565b34801561053457600080fd5b5061037261054336600461291e565b610e75565b34801561055457600080fd5b506103726105633660046129ac565b610ef3565b34801561057457600080fd5b506103726105833660046129e1565b610fbc565b34801561059457600080fd5b506020546103d9906001600160a01b031681565b3480156105b457600080fd5b50610372611027565b3480156105c957600080fd5b506103096105d836600461291e565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561060257600080fd5b506103ab60115481565b34801561061857600080fd5b506103ab600b5481565b34801561062e57600080fd5b506103ab61063d36600461291e565b6001600160a01b031660009081526020819052604090205490565b34801561066457600080fd5b5061037261106d565b34801561067957600080fd5b506103726106883660046129e1565b6110e1565b34801561069957600080fd5b506103ab60085481565b3480156106af57600080fd5b506005546001600160a01b03166103d9565b3480156106cd57600080fd5b506103726106dc3660046129ac565b611192565b3480156106ed57600080fd5b506102d36111e7565b34801561070257600080fd5b506103ab600c5481565b34801561071857600080fd5b506103726111f6565b34801561072d57600080fd5b5061030961073c3660046128f2565b6112af565b34801561074d57600080fd5b5061030961075c3660046128f2565b6112fe565b34801561076d57600080fd5b5061077661130b565b6040516102e09190612a3e565b34801561078f57600080fd5b5061037261079e36600461291e565b61136c565b3480156107af57600080fd5b506103726107be36600461291e565b6114c8565b3480156107cf57600080fd5b506103ab600f5481565b3480156107e557600080fd5b506103726107f43660046129e1565b611540565b34801561080557600080fd5b50610372610814366004612a51565b611610565b34801561082557600080fd5b506103ab610834366004612a9d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561086b57600080fd5b5061037261087a366004612991565b61176c565b34801561088b57600080fd5b5061037261089a36600461291e565b6117e3565b3480156108ab57600080fd5b506103726108ba36600461291e565b61185e565b3480156108cb57600080fd5b50610372611949565b3480156108e057600080fd5b506103ab60135481565b3480156108f657600080fd5b506103ab61198b565b60606003805461090e90612ad6565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612ad6565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b600061099e3384846119d2565b5060015b92915050565b6005546001600160a01b031633146109db5760405162461bcd60e51b81526004016109d290612b0a565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610a555760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016109d2565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610b1a5760405162461bcd60e51b81526004016109d290612b0a565b601780546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610ae5565b6000610b75848484611af7565b610bc78433610bc285604051806060016040528060288152602001612c9b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ff9565b6119d2565b5060019392505050565b6005546001600160a01b03163314610bfb5760405162461bcd60e51b81526004016109d290612b0a565b6020805460ff60a81b1916600160a81b8315159081029190911782556040519081527fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b99101610ae5565b6005546001600160a01b03163314610c6f5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161099e918590610bc290866119c6565b6005546001600160a01b03163314610cfa5760405162461bcd60e51b81526004016109d290612b0a565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d619190612b3f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd29190612b3f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e439190612b3f565b602080546001600160a01b039283166001600160a01b031991821617909155601f805493909216921691909117905550565b6005546001600160a01b03163314610e9f5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b0381166000818152601c6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610ae5565b6005546001600160a01b03163314610f1d5760405162461bcd60e51b81526004016109d290612b0a565b8015610f91576018544210610f915760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b60648201526084016109d2565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fe65760405162461bcd60e51b81526004016109d290612b0a565b610ff481633b9aca00612b72565b6021556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610ae5565b6005546001600160a01b031633146110515760405162461bcd60e51b81526004016109d290612b0a565b3060009081526020819052604090205461106a81612025565b50565b6005546001600160a01b031633146110975760405162461bcd60e51b81526004016109d290612b0a565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461110b5760405162461bcd60e51b81526004016109d290612b0a565b6109c481111561115d5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016109d2565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610ae5565b6005546001600160a01b031633146111bc5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b60606004805461090e90612ad6565b6005546001600160a01b031633146112205760405162461bcd60e51b81526004016109d290612b0a565b601a54600160a81b900460ff161561127a5760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e6368000000000060448201526064016109d2565b601a805460ff60a81b1916600160a81b17905561129a4262015180612b89565b6018556112aa4262093a80612b89565b601955565b600061099e3384610bc285604051806060016040528060258152602001612cc3602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ff9565b600061099e338484611af7565b6060600680548060200260200160405190810160405280929190818152602001828054801561098757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611345575050505050905090565b6005546001600160a01b031633146113965760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b03811660009081526007602052604090205460ff1661140a5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016109d2565b60005b60065481101561148e57816001600160a01b03166006828154811061143457611434612b9c565b6000918252602090912001546001600160a01b03160361147c576001600160a01b0382166000908152600760205260409020805460ff191690556114778161217f565b61148e565b8061148681612bb2565b91505061140d565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610ae5565b6005546001600160a01b031633146114f25760405162461bcd60e51b81526004016109d290612b0a565b601a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610ae5565b6005546001600160a01b0316331461156a5760405162461bcd60e51b81526004016109d290612b0a565b60058110156115bb5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016109d2565b6115db6103e86115d569d3c21bcecceda1000000846119a7565b906119ba565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610ae5565b6005546001600160a01b0316331461163a5760405162461bcd60e51b81526004016109d290612b0a565b6103e8871115801561164e57506103e88611155b801561165c57506103e88511155b801561166a57506103e88411155b801561167857506103e88311155b801561168657506103e88211155b801561169457506103e88111155b6116ea5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016109d2565b6009879055600b869055600c859055600e849055600f839055601382905560148190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a150505050505050565b6005546001600160a01b031633146117965760405162461bcd60e51b81526004016109d290612b0a565b601a8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610ae590831515815260200190565b6005546001600160a01b0316331461180d5760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b0381166000818152601c6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610ae5565b6005546001600160a01b031633146118885760405162461bcd60e51b81526004016109d290612b0a565b6001600160a01b0381166118ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146119735760405162461bcd60e51b81526004016109d290612b0a565b601754479061106a906001600160a01b03168261228b565b60006119956122cb565b6002546119a29190612bcb565b905090565b60006119b38284612b72565b9392505050565b60006119b38284612bde565b60006119b38284612b89565b6001600160a01b038316611a345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109d2565b6001600160a01b038216611a955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109d2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601a54600160a81b900460ff1680611b1957506005546001600160a01b031633145b611b8b5760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e65720060648201526084016109d2565b6001600160a01b0383166000908152601b602052604090205460ff16158015611bcd57506001600160a01b0382166000908152601b602052604090205460ff16155b611c0f5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b60448201526064016109d2565b601a54600160a01b900460ff1615611c3157611c2c838383612338565b505050565b6001600160a01b03831660009081526016602052604090205460ff16158015611c7357506001600160a01b03821660009081526016602052604090205460ff16155b8015611c9857506001600160a01b0382166000908152601e602052604090205460ff16155b15611ca857611c2c838383612338565b6001600160a01b0383166000908152601d602052604090205460ff16158015611cea57506001600160a01b0382166000908152601d602052604090205460ff16155b15611d5157600854811115611d515760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016109d2565b600e54600b546013546020546001600160a01b0390811690861603611d9e57600c54600b55600f54600e556014546013556019544211611d9e57601154600b54611d9a916119c6565b600b555b3060009081526020819052604090205460215481108015908190611dcc5750602054600160a01b900460ff16155b8015611de657506020546001600160a01b03898116911614155b8015611dfb5750602054600160a81b900460ff165b15611e0957611e09826124bb565b6001600160a01b0388166000908152601c602052604090205460ff1680611e4857506001600160a01b0387166000908152601c602052604090205460ff165b15611e5557611e55612674565b600080611e61886126cf565b6001600160a01b038c166000908152602081905260409020549193509150611e8990896126f6565b6001600160a01b03808c1660009081526020819052604080822093909355908b1681522054611eb890836119c6565b6001600160a01b038a16600090815260208190526040902055611eda81612702565b60225460ff1615611efe576000611ef08961272f565b9050611efc308261274c565b505b6001600160a01b0389166000908152601e602052604090205460ff1615611f3a576000611f2c600184612bcb565b9050611f388a8261274c565b505b6001600160a01b038a166000908152601c602052604090205460ff1680611f7957506001600160a01b0389166000908152601c602052604090205460ff165b15611f9b57611f9b600a54600955600d54600b55601054600e55601554601355565b600b869055600e87905560138590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b6000818484111561201d5760405162461bcd60e51b81526004016109d2919061288f565b505050900390565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061205a5761205a612b9c565b6001600160a01b03928316602091820292909201810191909152601f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156120b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d79190612b3f565b816001815181106120ea576120ea612b9c565b6001600160a01b039283166020918202929092010152601f5461211091309116846119d2565b601f5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612149908590600090869030904290600401612c00565b600060405180830381600087803b15801561216357600080fd5b505af1158015612177573d6000803e3d6000fd5b505050505050565b60065481106121db5760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016109d2565b600680546121eb90600190612bcb565b815481106121fb576121fb612b9c565b600091825260209091200154600680546001600160a01b03909216918390811061222757612227612b9c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061226657612266612c3c565b600082815260209020810160001990810180546001600160a01b031916905501905550565b80156122c7576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c2c573d6000803e3d6000fd5b5050565b600080805b60065481101561233257612314600682815481106122f0576122f0612b9c565b60009182526020808320909101546001600160a01b03168252819052604090205490565b61231e9083612b89565b91508061232a81612bb2565b9150506122d0565b50919050565b6001600160a01b03831661239c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109d2565b6001600160a01b0382166123fe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109d2565b61243b81604051806060016040528060268152602001612c75602691396001600160a01b0386166000908152602081905260409020549190611ff9565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461246a90826119c6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611aea565b6020805460ff60a01b1916600160a01b179055600954600e54600b546000926124ef9290916124e9916119c6565b906119c6565b9050806000036124ff5750612664565b4761250983612025565b600061251547836126f6565b90508015612660576000612538846115d5600954856119a790919063ffffffff16565b905061255873af323b073057266c036e75cf0ffd336985428f3a8261228b565b6000612573856115d5600e54866119a790919063ffffffff16565b905060008111801561258f5750601a546001600160a01b031615155b156125ef57601a5460405163febd221b60e01b8152600360048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b1580156125db57600080fd5b505af1935050505080156125ed575060015b505b600061260a866115d5600b54876119a790919063ffffffff16565b601754909150612623906001600160a01b03168261228b565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506020805460ff60a01b19169055565b600b541580156126845750600e54155b80156126905750600954155b801561269c5750601354155b156126a357565b60098054600a55600b8054600d55600e8054601055601380546015556000938490559183905582905555565b60008060006126dd84612857565b905060006126eb85836126f6565b959194509092505050565b60006119b38284612bcb565b3060009081526020819052604090205461271c90826119c6565b3060009081526020819052604090205550565b60006109a26127106115d5601354856119a790919063ffffffff16565b6001600160a01b0382166127ac5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109d2565b6127e981604051806060016040528060228152602001612c53602291396001600160a01b0385166000908152602081905260409020549190611ff9565b6001600160a01b03831660009081526020819052604090205560025461280f90826126f6565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008061287d6013546124e96009546124e9600e54600b546119c690919063ffffffff16565b90506119b36127106115d585846119a7565b600060208083528351808285015260005b818110156128bc578581018301518582016040015282016128a0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461106a57600080fd5b6000806040838503121561290557600080fd5b8235612910816128dd565b946020939093013593505050565b60006020828403121561293057600080fd5b81356119b3816128dd565b60008060006060848603121561295057600080fd5b833561295b816128dd565b9250602084013561296b816128dd565b929592945050506040919091013590565b8035801515811461298c57600080fd5b919050565b6000602082840312156129a357600080fd5b6119b38261297c565b600080604083850312156129bf57600080fd5b82356129ca816128dd565b91506129d86020840161297c565b90509250929050565b6000602082840312156129f357600080fd5b5035919050565b600081518084526020808501945080840160005b83811015612a335781516001600160a01b031687529582019590820190600101612a0e565b509495945050505050565b6020815260006119b360208301846129fa565b600080600080600080600060e0888a031215612a6c57600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060408385031215612ab057600080fd5b8235612abb816128dd565b91506020830135612acb816128dd565b809150509250929050565b600181811c90821680612aea57607f821691505b60208210810361233257634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612b5157600080fd5b81516119b3816128dd565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109a2576109a2612b5c565b808201808211156109a2576109a2612b5c565b634e487b7160e01b600052603260045260246000fd5b600060018201612bc457612bc4612b5c565b5060010190565b818103818111156109a2576109a2612b5c565b600082612bfb57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612c1f60a08301866129fa565b6001600160a01b0394909416606083015250608001529392505050565b634e487b7160e01b600052603160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e0cc421670789b0988453632cc041f88a94406f3410bbf5e3689e1cdf23b2d4c64736f6c63430008110033
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.