ERC-20
Overview
Max Total Supply
99,559,843,619,441.575536871 MCU
Holders
585
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,466,510,931 MCUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MemeCoinUniverse
Compiler Version
v0.8.4+commit.c7e474f2
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 \\ // memecoinuniverse.io linktr.ee/DeFiant_Platform \\ //==================================================================================================================================\\ pragma solidity ^0.8.4; // 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 MemeCoinUniverse is RewardsToken { using SafeMath for uint256; using Address for address; uint256 private constant REWARDS_TRACKER_IDENTIFIER = 7; uint256 private constant TOTAL_SUPPLY = 100000000000000 * (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 = 0; uint256 public sellburnFee = 0; uint256 private _previousBurnFee = burnFee; mapping(address => bool) public uniswapv2contracts; address payable private _platformWalletAddress = payable(0x337d7D5f79663846fB9e240fE7D800778b7b4458); address payable private _devWalletAddress = payable(0x0d3a36f0A7Be309883e0E4460A09bED144F3B49D); uint256 public blacklistDeadline = 0; uint256 public launchSellFeeDeadline = 0; IRewardsTracker private _rewardsTracker; bool public useGenericTransfer = true; bool private preparedForLaunch = false; mapping(address => bool) public 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 = 200000000000 * 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("MemeCoin Universe", "MCU") { 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(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) public 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.4; // SPDX-License-Identifier: Apache-2.0 interface IRewardsTracker { function addAllocation(uint identifier) external payable; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity ^0.8.4; // 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.4; // SPDX-License-Identifier: MIT interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
pragma solidity ^0.8.4; // 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.4; // 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); } } } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.8.4; // 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.4; // 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.4; // 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.4; // 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":"blacklistDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"changeTrueBurn","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"launchSellFeeDeadline","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"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052620000446103e862000030600269152d02c7e14af6800000620004e960201b62001b471790919060201c565b6200057d60201b62001bcd1790919060201c565b60085560006009819055600a819055610258600b819055600c819055600d819055600e819055600f8190556010556104b06011819055601255601381905560148190556015819055601780546001600160a01b031990811673337d7d5f79663846fb9e240fe7d800778b7b44581790915560188054909116730d3a36f0a7be309883e0e4460a09bed144f3b49d1790556019819055601a55601b805461ffff60a01b1916600160a01b1790556021805460ff60a81b1916600160a81b179055680ad78ebc5ac62000006022556023805460ff191690553480156200012757600080fd5b50604051806040016040528060118152602001704d656d65436f696e20556e69766572736560781b815250604051806040016040528060038152602001624d435560e81b815250816003908051906020019062000186929190620008d8565b5080516200019c906004906020840190620008d8565b5050506000620001b1620005c760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025257600080fd5b505afa15801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d91906200097e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d657600080fd5b505afa158015620002eb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031191906200097e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200035a57600080fd5b505af11580156200036f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039591906200097e565b602180546001600160a01b03199081166001600160a01b039384161790915560208054909116838316179055600554620003db911669152d02c7e14af6800000620005cb565b6001601d6000620003f46005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601d909252812080549092166001908117909255601e906200044d6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252601e9093522080549092166001179091556200049990620006c7565b620004a661dead620006c7565b602154620004bd906001600160a01b0316620006c7565b506021546001600160a01b03166000908152601660205260409020805460ff1916600117905562000aae565b600082620004fa5750600062000577565b600062000508838562000a39565b90508262000517858362000a18565b14620005745760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b60006200057483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200083960201b60201c565b3390565b6001600160a01b038216620006235760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200056b565b6200063f816002546200087560201b62001c0f1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200067291839062001c0f62000875821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620007235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200056b565b6001600160a01b03811660009081526007602052604090205460ff16156200079f5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016200056b565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b600081836200085d5760405162461bcd60e51b81526004016200056b9190620009a7565b5060006200086c848662000a18565b95945050505050565b600080620008848385620009fd565b905083811015620005745760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200056b565b828054620008e69062000a5b565b90600052602060002090601f0160209004810192826200090a576000855562000955565b82601f106200092557805160ff191683800117855562000955565b8280016001018555821562000955579182015b828111156200095557825182559160200191906001019062000938565b506200096392915062000967565b5090565b5b8082111562000963576000815560010162000968565b60006020828403121562000990578081fd5b81516001600160a01b038116811462000574578182fd5b6000602080835283518082850152825b81811015620009d557858101830151858201604001528201620009b7565b81811115620009e75783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111562000a135762000a1362000a98565b500190565b60008262000a3457634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000a565762000a5662000a98565b500290565b600181811c9082168062000a7057607f821691505b6020821081141562000a9257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6130668062000abe6000396000f3fe6080604052600436106103395760003560e01c806373e7714a116101ab578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f4293890146109b3578063fce589d8146109c8578063fe575a87146109de578063fffa1dd914610a0e57600080fd5b8063e89bcca214610953578063ea2f0b3714610973578063f2fde38b1461099357600080fd5b8063cf0c018b116100d1578063cf0c018b146108b7578063d543dbeb146108cd578063da2e3bad146108ed578063dd62ed3e1461090d57600080fd5b8063b609995e14610861578063ba385abb14610881578063bb8d5131146108a157600080fd5b806398850b6411610164578063a457c2d71161013e578063a457c2d7146107e9578063a9059cbb14610809578063ada46d0a14610829578063af01f2b21461084b57600080fd5b806398850b641461079d578063a0d82dc5146107be578063a1ab19a3146107d457600080fd5b806373e7714a146106f45780638421b507146107145780638c0b5e22146107345780638da5cb5b1461074a578063903cdec01461076857806395d89b411461078857600080fd5b8063393344b61161028557806349bd5a5e1161022357806354959363116101fd578063549593631461067d5780636827e7641461069357806370a08231146106a9578063715018a6146106df57600080fd5b806349bd5a5e1461060f57806351bc3c851461062f5780635342acb41461064457600080fd5b80634337ac5b1161025f5780634337ac5b1461057f578063437823ec146105af578063455a4396146105cf57806348a46473146105ef57600080fd5b8063393344b61461051f578063395093511461053f57806341cb87fc1461055f57600080fd5b80631694505e116102f257806323b872dd116102cc57806323b872dd146104ad57806326b6308d146104cd5780632bb14e1d146104ed578063313ce5671461050357600080fd5b80631694505e1461044057806318160ddd146104785780631f53ac021461048d57600080fd5b806306fdde0314610345578063095ea7b3146103705780630e832273146103a0578063111e0376146103d9578063113201fa146103fb57806312ee302d1461041c57600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a23565b6040516103679190612dee565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612cf0565b610ab5565b6040519015158152602001610367565b3480156103ac57600080fd5b506103906103bb366004612c0c565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156103e557600080fd5b506103f96103f4366004612c0c565b610acc565b005b34801561040757600080fd5b5060215461039090600160a81b900460ff1681565b34801561042857600080fd5b5061043260145481565b604051908152602001610367565b34801561044c57600080fd5b50602054610460906001600160a01b031681565b6040516001600160a01b039091168152602001610367565b34801561048457600080fd5b50600254610432565b34801561049957600080fd5b506103f96104a8366004612c0c565b610c14565b3480156104b957600080fd5b506103906104c8366004612c7c565b610c8c565b3480156104d957600080fd5b506103f96104e8366004612d1b565b610cf5565b3480156104f957600080fd5b50610432600e5481565b34801561050f57600080fd5b5060405160098152602001610367565b34801561052b57600080fd5b506103f961053a366004612cbc565b610d6c565b34801561054b57600080fd5b5061039061055a366004612cf0565b610dc1565b34801561056b57600080fd5b506103f961057a366004612c0c565b610df7565b34801561058b57600080fd5b5061039061059a366004612c0c565b60166020526000908152604090205460ff1681565b3480156105bb57600080fd5b506103f96105ca366004612c0c565b610fc9565b3480156105db57600080fd5b506103f96105ea366004612cbc565b611047565b3480156105fb57600080fd5b506103f961060a366004612d35565b611110565b34801561061b57600080fd5b50602154610460906001600160a01b031681565b34801561063b57600080fd5b506103f961117b565b34801561065057600080fd5b5061039061065f366004612c0c565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561068957600080fd5b5061043260115481565b34801561069f57600080fd5b50610432600b5481565b3480156106b557600080fd5b506104326106c4366004612c0c565b6001600160a01b031660009081526020819052604090205490565b3480156106eb57600080fd5b506103f96111c1565b34801561070057600080fd5b506103f961070f366004612d1b565b611235565b34801561072057600080fd5b506103f961072f366004612d35565b611272565b34801561074057600080fd5b5061043260085481565b34801561075657600080fd5b506005546001600160a01b0316610460565b34801561077457600080fd5b506103f9610783366004612cbc565b611323565b34801561079457600080fd5b5061035a611378565b3480156107a957600080fd5b50601b5461039090600160a01b900460ff1681565b3480156107ca57600080fd5b50610432600c5481565b3480156107e057600080fd5b506103f9611387565b3480156107f557600080fd5b50610390610804366004612cf0565b611440565b34801561081557600080fd5b50610390610824366004612cf0565b61148f565b34801561083557600080fd5b5061083e61149c565b6040516103679190612ddb565b34801561085757600080fd5b50610432601a5481565b34801561086d57600080fd5b506103f961087c366004612c0c565b6114fd565b34801561088d57600080fd5b506103f961089c366004612c0c565b611668565b3480156108ad57600080fd5b50610432600f5481565b3480156108c357600080fd5b5061043260195481565b3480156108d957600080fd5b506103f96108e8366004612d35565b6116e0565b3480156108f957600080fd5b506103f9610908366004612d4d565b6117b0565b34801561091957600080fd5b50610432610928366004612c44565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095f57600080fd5b506103f961096e366004612d1b565b61190c565b34801561097f57600080fd5b506103f961098e366004612c0c565b611983565b34801561099f57600080fd5b506103f96109ae366004612c0c565b6119fe565b3480156109bf57600080fd5b506103f9611ae9565b3480156109d457600080fd5b5061043260135481565b3480156109ea57600080fd5b506103906109f9366004612c0c565b601c6020526000908152604090205460ff1681565b348015610a1a57600080fd5b50610432611b2b565b606060038054610a3290612f20565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5e90612f20565b8015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b5050505050905090565b6000610ac2338484611c6e565b5060015b92915050565b6005546001600160a01b03163314610aff5760405162461bcd60e51b8152600401610af690612e41565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610b795760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610af6565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610af690612e41565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610c09565b6000610c99848484611d93565b610ceb8433610ce685604051806060016040528060288152602001612fe4602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612295565b611c6e565b5060019392505050565b6005546001600160a01b03163314610d1f5760405162461bcd60e51b8152600401610af690612e41565b60218054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610c0990831515815260200190565b6005546001600160a01b03163314610d965760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac2918590610ce69086611c0f565b6005546001600160a01b03163314610e215760405162461bcd60e51b8152600401610af690612e41565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610e5f57600080fd5b505afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e979190612c28565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610edf57600080fd5b505afa158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f179190612c28565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610f5f57600080fd5b505af1158015610f73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f979190612c28565b602180546001600160a01b039283166001600160a01b0319918216179091556020805493909216921691909117905550565b6005546001600160a01b03163314610ff35760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b0381166000818152601d6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610c09565b6005546001600160a01b031633146110715760405162461bcd60e51b8152600401610af690612e41565b80156110e55760195442106110e55760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b6064820152608401610af6565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461113a5760405162461bcd60e51b8152600401610af690612e41565b61114881633b9aca00612eea565b6022556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610c09565b6005546001600160a01b031633146111a55760405162461bcd60e51b8152600401610af690612e41565b306000908152602081905260409020546111be816122cf565b50565b6005546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610af690612e41565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461125f5760405162461bcd60e51b8152600401610af690612e41565b6023805460ff1916911515919091179055565b6005546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610af690612e41565b6109c48111156112ee5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610af6565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610c09565b6005546001600160a01b0316331461134d5760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b606060048054610a3290612f20565b6005546001600160a01b031633146113b15760405162461bcd60e51b8152600401610af690612e41565b601b54600160a81b900460ff161561140b5760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e636800000000006044820152606401610af6565b601b805460ff60a81b1916600160a81b17905561142b4262015180612eb2565b60195561143b4262093a80612eb2565b601a55565b6000610ac23384610ce68560405180606001604052806025815260200161300c602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612295565b6000610ac2338484611d93565b60606006805480602002602001604051908101604052809291908181526020018280548015610aab57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116114d6575050505050905090565b6005546001600160a01b031633146115275760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b03811660009081526007602052604090205460ff1661159b5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610af6565b60005b60065481101561162e57816001600160a01b0316600682815481106115d357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561161c576001600160a01b0382166000908152600760205260409020805460ff1916905561161781612455565b61162e565b8061162681612f55565b91505061159e565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610c09565b6005546001600160a01b031633146116925760405162461bcd60e51b8152600401610af690612e41565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610c09565b6005546001600160a01b0316331461170a5760405162461bcd60e51b8152600401610af690612e41565b600581101561175b5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610af6565b61177b6103e861177569152d02c7e14af680000084611b47565b90611bcd565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610c09565b6005546001600160a01b031633146117da5760405162461bcd60e51b8152600401610af690612e41565b6103e887111580156117ee57506103e88611155b80156117fc57506103e88511155b801561180a57506103e88411155b801561181857506103e88311155b801561182657506103e88211155b801561183457506103e88111155b61188a5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610af6565b6009879055600b869055600c859055600e849055600f839055601382905560148190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a150505050505050565b6005546001600160a01b031633146119365760405162461bcd60e51b8152600401610af690612e41565b601b8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610c0990831515815260200190565b6005546001600160a01b031633146119ad5760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b0381166000818152601d6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610c09565b6005546001600160a01b03163314611a285760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b038116611a8d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611b135760405162461bcd60e51b8152600401610af690612e41565b60185447906111be906001600160a01b03168261258b565b6000611b356125cb565b600254611b429190612f09565b905090565b600082611b5657506000610ac6565b6000611b628385612eea565b905082611b6f8583612eca565b14611bc65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610af6565b9392505050565b6000611bc683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612646565b600080611c1c8385612eb2565b905083811015611bc65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610af6565b6001600160a01b038316611cd05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610af6565b6001600160a01b038216611d315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610af6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601b54600160a81b900460ff1680611db557506005546001600160a01b031633145b611e275760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e6572006064820152608401610af6565b6001600160a01b0383166000908152601c602052604090205460ff16158015611e6957506001600160a01b0382166000908152601c602052604090205460ff16155b611eab5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610af6565b601b54600160a01b900460ff1615611ecd57611ec8838383612674565b505050565b6001600160a01b03831660009081526016602052604090205460ff16158015611f0f57506001600160a01b03821660009081526016602052604090205460ff16155b8015611f3457506001600160a01b0382166000908152601f602052604090205460ff16155b15611f4457611ec8838383612674565b6001600160a01b0383166000908152601e602052604090205460ff16158015611f8657506001600160a01b0382166000908152601e602052604090205460ff16155b15611fed57600854811115611fed5760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610af6565b600e54600b546013546021546001600160a01b038681169116141561203a57600c54600b55600f54600e55601454601355601a54421161203a57601154600b5461203691611c0f565b600b555b30600090815260208190526040902054602254811080159081906120685750602154600160a01b900460ff16155b801561208257506021546001600160a01b03898116911614155b80156120975750602154600160a81b900460ff165b156120a5576120a5826127f7565b6001600160a01b0388166000908152601d602052604090205460ff16806120e457506001600160a01b0387166000908152601d602052604090205460ff165b156120f1576120f16129a6565b6000806120fd88612a01565b6001600160a01b038c1660009081526020819052604090205491935091506121259089612a28565b6001600160a01b03808c1660009081526020819052604080822093909355908b16815220546121549083611c0f565b6001600160a01b038a1660009081526020819052604090205561217681612a6a565b60235460ff161561219a57600061218c89612a97565b90506121983082612ab4565b505b6001600160a01b0389166000908152601f602052604090205460ff16156121d65760006121c8600184612f09565b90506121d48a82612ab4565b505b6001600160a01b038a166000908152601d602052604090205460ff168061221557506001600160a01b0389166000908152601d602052604090205460ff165b1561223757612237600a54600955600d54600b55601054600e55601554601355565b600b869055600e87905560138590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b600081848411156122b95760405162461bcd60e51b8152600401610af69190612dee565b5060006122c68486612f09565b95945050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061231257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092018101919091528054604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561236557600080fd5b505afa158015612379573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239d9190612c28565b816001815181106123be57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152546123e69130911684611c6e565b60205460405163791ac94760e01b81526001600160a01b039091169063791ac9479061241f908590600090869030904290600401612e76565b600060405180830381600087803b15801561243957600080fd5b505af115801561244d573d6000803e3d6000fd5b505050505050565b60065481106124b15760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610af6565b600680546124c190600190612f09565b815481106124df57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b03909216918390811061251957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061256657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b80156125c7576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611ec8573d6000803e3d6000fd5b5050565b600080805b60065481101561264057612622600682815481106125fe57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b61262c9083612eb2565b91508061263881612f55565b9150506125d0565b50919050565b600081836126675760405162461bcd60e51b8152600401610af69190612dee565b5060006122c68486612eca565b6001600160a01b0383166126d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610af6565b6001600160a01b03821661273a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610af6565b61277781604051806060016040528060268152602001612fbe602691396001600160a01b0386166000908152602081905260409020549190612295565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546127a69082611c0f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611d86565b6021805460ff60a01b1916600160a01b179055600954600e54600b5460009261282b92909161282591611c0f565b90611c0f565b9050806128385750612996565b47612842836122cf565b600061284e4783612a28565b905080156129925760006128718461177560095485611b4790919063ffffffff16565b60175490915061288a906001600160a01b03168261258b565b60006128a585611775600e5486611b4790919063ffffffff16565b90506000811180156128c15750601b546001600160a01b031615155b1561292157601b5460405163febd221b60e01b8152600760048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b15801561290d57600080fd5b505af19350505050801561291f575060015b505b600061293c86611775600b5487611b4790919063ffffffff16565b601854909150612955906001600160a01b03168261258b565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506021805460ff60a01b19169055565b600b541580156129b65750600e54155b80156129c25750600954155b80156129ce5750601354155b156129d557565b60098054600a55600b8054600d55600e8054601055601380546015556000938490559183905582905555565b6000806000612a0f84612bbf565b90506000612a1d8583612a28565b959194509092505050565b6000611bc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612295565b30600090815260208190526040902054612a849082611c0f565b3060009081526020819052604090205550565b6000610ac661271061177560135485611b4790919063ffffffff16565b6001600160a01b038216612b145760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610af6565b612b5181604051806060016040528060228152602001612f9c602291396001600160a01b0385166000908152602081905260409020549190612295565b6001600160a01b038316600090815260208190526040902055600254612b779082612a28565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080612be5601354612825600954612825600e54600b54611c0f90919063ffffffff16565b9050611bc66127106117758584611b47565b80358015158114612c0757600080fd5b919050565b600060208284031215612c1d578081fd5b8135611bc681612f86565b600060208284031215612c39578081fd5b8151611bc681612f86565b60008060408385031215612c56578081fd5b8235612c6181612f86565b91506020830135612c7181612f86565b809150509250929050565b600080600060608486031215612c90578081fd5b8335612c9b81612f86565b92506020840135612cab81612f86565b929592945050506040919091013590565b60008060408385031215612cce578182fd5b8235612cd981612f86565b9150612ce760208401612bf7565b90509250929050565b60008060408385031215612d02578182fd5b8235612d0d81612f86565b946020939093013593505050565b600060208284031215612d2c578081fd5b611bc682612bf7565b600060208284031215612d46578081fd5b5035919050565b600080600080600080600060e0888a031215612d67578283fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b6000815180845260208085019450808401835b83811015612dd05781516001600160a01b031687529582019590820190600101612dab565b509495945050505050565b602081526000611bc66020830184612d98565b6000602080835283518082850152825b81811015612e1a57858101830151858201604001528201612dfe565b81811115612e2b5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a060408201526000612e9560a0830186612d98565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612ec557612ec5612f70565b500190565b600082612ee557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612f0457612f04612f70565b500290565b600082821015612f1b57612f1b612f70565b500390565b600181811c90821680612f3457607f821691505b6020821081141561264057634e487b7160e01b600052602260045260246000fd5b6000600019821415612f6957612f69612f70565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146111be57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e773e93d9b921c299b474de76224a2f9809d1aa9b4b2458cff9a83d305e4ad4964736f6c63430008040033
Deployed Bytecode
0x6080604052600436106103395760003560e01c806373e7714a116101ab578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f4293890146109b3578063fce589d8146109c8578063fe575a87146109de578063fffa1dd914610a0e57600080fd5b8063e89bcca214610953578063ea2f0b3714610973578063f2fde38b1461099357600080fd5b8063cf0c018b116100d1578063cf0c018b146108b7578063d543dbeb146108cd578063da2e3bad146108ed578063dd62ed3e1461090d57600080fd5b8063b609995e14610861578063ba385abb14610881578063bb8d5131146108a157600080fd5b806398850b6411610164578063a457c2d71161013e578063a457c2d7146107e9578063a9059cbb14610809578063ada46d0a14610829578063af01f2b21461084b57600080fd5b806398850b641461079d578063a0d82dc5146107be578063a1ab19a3146107d457600080fd5b806373e7714a146106f45780638421b507146107145780638c0b5e22146107345780638da5cb5b1461074a578063903cdec01461076857806395d89b411461078857600080fd5b8063393344b61161028557806349bd5a5e1161022357806354959363116101fd578063549593631461067d5780636827e7641461069357806370a08231146106a9578063715018a6146106df57600080fd5b806349bd5a5e1461060f57806351bc3c851461062f5780635342acb41461064457600080fd5b80634337ac5b1161025f5780634337ac5b1461057f578063437823ec146105af578063455a4396146105cf57806348a46473146105ef57600080fd5b8063393344b61461051f578063395093511461053f57806341cb87fc1461055f57600080fd5b80631694505e116102f257806323b872dd116102cc57806323b872dd146104ad57806326b6308d146104cd5780632bb14e1d146104ed578063313ce5671461050357600080fd5b80631694505e1461044057806318160ddd146104785780631f53ac021461048d57600080fd5b806306fdde0314610345578063095ea7b3146103705780630e832273146103a0578063111e0376146103d9578063113201fa146103fb57806312ee302d1461041c57600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a23565b6040516103679190612dee565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612cf0565b610ab5565b6040519015158152602001610367565b3480156103ac57600080fd5b506103906103bb366004612c0c565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156103e557600080fd5b506103f96103f4366004612c0c565b610acc565b005b34801561040757600080fd5b5060215461039090600160a81b900460ff1681565b34801561042857600080fd5b5061043260145481565b604051908152602001610367565b34801561044c57600080fd5b50602054610460906001600160a01b031681565b6040516001600160a01b039091168152602001610367565b34801561048457600080fd5b50600254610432565b34801561049957600080fd5b506103f96104a8366004612c0c565b610c14565b3480156104b957600080fd5b506103906104c8366004612c7c565b610c8c565b3480156104d957600080fd5b506103f96104e8366004612d1b565b610cf5565b3480156104f957600080fd5b50610432600e5481565b34801561050f57600080fd5b5060405160098152602001610367565b34801561052b57600080fd5b506103f961053a366004612cbc565b610d6c565b34801561054b57600080fd5b5061039061055a366004612cf0565b610dc1565b34801561056b57600080fd5b506103f961057a366004612c0c565b610df7565b34801561058b57600080fd5b5061039061059a366004612c0c565b60166020526000908152604090205460ff1681565b3480156105bb57600080fd5b506103f96105ca366004612c0c565b610fc9565b3480156105db57600080fd5b506103f96105ea366004612cbc565b611047565b3480156105fb57600080fd5b506103f961060a366004612d35565b611110565b34801561061b57600080fd5b50602154610460906001600160a01b031681565b34801561063b57600080fd5b506103f961117b565b34801561065057600080fd5b5061039061065f366004612c0c565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561068957600080fd5b5061043260115481565b34801561069f57600080fd5b50610432600b5481565b3480156106b557600080fd5b506104326106c4366004612c0c565b6001600160a01b031660009081526020819052604090205490565b3480156106eb57600080fd5b506103f96111c1565b34801561070057600080fd5b506103f961070f366004612d1b565b611235565b34801561072057600080fd5b506103f961072f366004612d35565b611272565b34801561074057600080fd5b5061043260085481565b34801561075657600080fd5b506005546001600160a01b0316610460565b34801561077457600080fd5b506103f9610783366004612cbc565b611323565b34801561079457600080fd5b5061035a611378565b3480156107a957600080fd5b50601b5461039090600160a01b900460ff1681565b3480156107ca57600080fd5b50610432600c5481565b3480156107e057600080fd5b506103f9611387565b3480156107f557600080fd5b50610390610804366004612cf0565b611440565b34801561081557600080fd5b50610390610824366004612cf0565b61148f565b34801561083557600080fd5b5061083e61149c565b6040516103679190612ddb565b34801561085757600080fd5b50610432601a5481565b34801561086d57600080fd5b506103f961087c366004612c0c565b6114fd565b34801561088d57600080fd5b506103f961089c366004612c0c565b611668565b3480156108ad57600080fd5b50610432600f5481565b3480156108c357600080fd5b5061043260195481565b3480156108d957600080fd5b506103f96108e8366004612d35565b6116e0565b3480156108f957600080fd5b506103f9610908366004612d4d565b6117b0565b34801561091957600080fd5b50610432610928366004612c44565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095f57600080fd5b506103f961096e366004612d1b565b61190c565b34801561097f57600080fd5b506103f961098e366004612c0c565b611983565b34801561099f57600080fd5b506103f96109ae366004612c0c565b6119fe565b3480156109bf57600080fd5b506103f9611ae9565b3480156109d457600080fd5b5061043260135481565b3480156109ea57600080fd5b506103906109f9366004612c0c565b601c6020526000908152604090205460ff1681565b348015610a1a57600080fd5b50610432611b2b565b606060038054610a3290612f20565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5e90612f20565b8015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b5050505050905090565b6000610ac2338484611c6e565b5060015b92915050565b6005546001600160a01b03163314610aff5760405162461bcd60e51b8152600401610af690612e41565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610b795760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610af6565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610af690612e41565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610c09565b6000610c99848484611d93565b610ceb8433610ce685604051806060016040528060288152602001612fe4602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612295565b611c6e565b5060019392505050565b6005546001600160a01b03163314610d1f5760405162461bcd60e51b8152600401610af690612e41565b60218054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610c0990831515815260200190565b6005546001600160a01b03163314610d965760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac2918590610ce69086611c0f565b6005546001600160a01b03163314610e215760405162461bcd60e51b8152600401610af690612e41565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610e5f57600080fd5b505afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e979190612c28565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610edf57600080fd5b505afa158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f179190612c28565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610f5f57600080fd5b505af1158015610f73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f979190612c28565b602180546001600160a01b039283166001600160a01b0319918216179091556020805493909216921691909117905550565b6005546001600160a01b03163314610ff35760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b0381166000818152601d6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610c09565b6005546001600160a01b031633146110715760405162461bcd60e51b8152600401610af690612e41565b80156110e55760195442106110e55760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b6064820152608401610af6565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461113a5760405162461bcd60e51b8152600401610af690612e41565b61114881633b9aca00612eea565b6022556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610c09565b6005546001600160a01b031633146111a55760405162461bcd60e51b8152600401610af690612e41565b306000908152602081905260409020546111be816122cf565b50565b6005546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610af690612e41565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461125f5760405162461bcd60e51b8152600401610af690612e41565b6023805460ff1916911515919091179055565b6005546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610af690612e41565b6109c48111156112ee5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610af6565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610c09565b6005546001600160a01b0316331461134d5760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b606060048054610a3290612f20565b6005546001600160a01b031633146113b15760405162461bcd60e51b8152600401610af690612e41565b601b54600160a81b900460ff161561140b5760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e636800000000006044820152606401610af6565b601b805460ff60a81b1916600160a81b17905561142b4262015180612eb2565b60195561143b4262093a80612eb2565b601a55565b6000610ac23384610ce68560405180606001604052806025815260200161300c602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612295565b6000610ac2338484611d93565b60606006805480602002602001604051908101604052809291908181526020018280548015610aab57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116114d6575050505050905090565b6005546001600160a01b031633146115275760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b03811660009081526007602052604090205460ff1661159b5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610af6565b60005b60065481101561162e57816001600160a01b0316600682815481106115d357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561161c576001600160a01b0382166000908152600760205260409020805460ff1916905561161781612455565b61162e565b8061162681612f55565b91505061159e565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610c09565b6005546001600160a01b031633146116925760405162461bcd60e51b8152600401610af690612e41565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610c09565b6005546001600160a01b0316331461170a5760405162461bcd60e51b8152600401610af690612e41565b600581101561175b5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610af6565b61177b6103e861177569152d02c7e14af680000084611b47565b90611bcd565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610c09565b6005546001600160a01b031633146117da5760405162461bcd60e51b8152600401610af690612e41565b6103e887111580156117ee57506103e88611155b80156117fc57506103e88511155b801561180a57506103e88411155b801561181857506103e88311155b801561182657506103e88211155b801561183457506103e88111155b61188a5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610af6565b6009879055600b869055600c859055600e849055600f839055601382905560148190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a150505050505050565b6005546001600160a01b031633146119365760405162461bcd60e51b8152600401610af690612e41565b601b8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610c0990831515815260200190565b6005546001600160a01b031633146119ad5760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b0381166000818152601d6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610c09565b6005546001600160a01b03163314611a285760405162461bcd60e51b8152600401610af690612e41565b6001600160a01b038116611a8d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611b135760405162461bcd60e51b8152600401610af690612e41565b60185447906111be906001600160a01b03168261258b565b6000611b356125cb565b600254611b429190612f09565b905090565b600082611b5657506000610ac6565b6000611b628385612eea565b905082611b6f8583612eca565b14611bc65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610af6565b9392505050565b6000611bc683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612646565b600080611c1c8385612eb2565b905083811015611bc65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610af6565b6001600160a01b038316611cd05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610af6565b6001600160a01b038216611d315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610af6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601b54600160a81b900460ff1680611db557506005546001600160a01b031633145b611e275760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e6572006064820152608401610af6565b6001600160a01b0383166000908152601c602052604090205460ff16158015611e6957506001600160a01b0382166000908152601c602052604090205460ff16155b611eab5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610af6565b601b54600160a01b900460ff1615611ecd57611ec8838383612674565b505050565b6001600160a01b03831660009081526016602052604090205460ff16158015611f0f57506001600160a01b03821660009081526016602052604090205460ff16155b8015611f3457506001600160a01b0382166000908152601f602052604090205460ff16155b15611f4457611ec8838383612674565b6001600160a01b0383166000908152601e602052604090205460ff16158015611f8657506001600160a01b0382166000908152601e602052604090205460ff16155b15611fed57600854811115611fed5760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610af6565b600e54600b546013546021546001600160a01b038681169116141561203a57600c54600b55600f54600e55601454601355601a54421161203a57601154600b5461203691611c0f565b600b555b30600090815260208190526040902054602254811080159081906120685750602154600160a01b900460ff16155b801561208257506021546001600160a01b03898116911614155b80156120975750602154600160a81b900460ff165b156120a5576120a5826127f7565b6001600160a01b0388166000908152601d602052604090205460ff16806120e457506001600160a01b0387166000908152601d602052604090205460ff165b156120f1576120f16129a6565b6000806120fd88612a01565b6001600160a01b038c1660009081526020819052604090205491935091506121259089612a28565b6001600160a01b03808c1660009081526020819052604080822093909355908b16815220546121549083611c0f565b6001600160a01b038a1660009081526020819052604090205561217681612a6a565b60235460ff161561219a57600061218c89612a97565b90506121983082612ab4565b505b6001600160a01b0389166000908152601f602052604090205460ff16156121d65760006121c8600184612f09565b90506121d48a82612ab4565b505b6001600160a01b038a166000908152601d602052604090205460ff168061221557506001600160a01b0389166000908152601d602052604090205460ff165b1561223757612237600a54600955600d54600b55601054600e55601554601355565b600b869055600e87905560138590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b600081848411156122b95760405162461bcd60e51b8152600401610af69190612dee565b5060006122c68486612f09565b95945050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061231257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092018101919091528054604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561236557600080fd5b505afa158015612379573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239d9190612c28565b816001815181106123be57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152546123e69130911684611c6e565b60205460405163791ac94760e01b81526001600160a01b039091169063791ac9479061241f908590600090869030904290600401612e76565b600060405180830381600087803b15801561243957600080fd5b505af115801561244d573d6000803e3d6000fd5b505050505050565b60065481106124b15760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610af6565b600680546124c190600190612f09565b815481106124df57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b03909216918390811061251957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061256657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b80156125c7576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611ec8573d6000803e3d6000fd5b5050565b600080805b60065481101561264057612622600682815481106125fe57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b61262c9083612eb2565b91508061263881612f55565b9150506125d0565b50919050565b600081836126675760405162461bcd60e51b8152600401610af69190612dee565b5060006122c68486612eca565b6001600160a01b0383166126d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610af6565b6001600160a01b03821661273a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610af6565b61277781604051806060016040528060268152602001612fbe602691396001600160a01b0386166000908152602081905260409020549190612295565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546127a69082611c0f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611d86565b6021805460ff60a01b1916600160a01b179055600954600e54600b5460009261282b92909161282591611c0f565b90611c0f565b9050806128385750612996565b47612842836122cf565b600061284e4783612a28565b905080156129925760006128718461177560095485611b4790919063ffffffff16565b60175490915061288a906001600160a01b03168261258b565b60006128a585611775600e5486611b4790919063ffffffff16565b90506000811180156128c15750601b546001600160a01b031615155b1561292157601b5460405163febd221b60e01b8152600760048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b15801561290d57600080fd5b505af19350505050801561291f575060015b505b600061293c86611775600b5487611b4790919063ffffffff16565b601854909150612955906001600160a01b03168261258b565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506021805460ff60a01b19169055565b600b541580156129b65750600e54155b80156129c25750600954155b80156129ce5750601354155b156129d557565b60098054600a55600b8054600d55600e8054601055601380546015556000938490559183905582905555565b6000806000612a0f84612bbf565b90506000612a1d8583612a28565b959194509092505050565b6000611bc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612295565b30600090815260208190526040902054612a849082611c0f565b3060009081526020819052604090205550565b6000610ac661271061177560135485611b4790919063ffffffff16565b6001600160a01b038216612b145760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610af6565b612b5181604051806060016040528060228152602001612f9c602291396001600160a01b0385166000908152602081905260409020549190612295565b6001600160a01b038316600090815260208190526040902055600254612b779082612a28565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080612be5601354612825600954612825600e54600b54611c0f90919063ffffffff16565b9050611bc66127106117758584611b47565b80358015158114612c0757600080fd5b919050565b600060208284031215612c1d578081fd5b8135611bc681612f86565b600060208284031215612c39578081fd5b8151611bc681612f86565b60008060408385031215612c56578081fd5b8235612c6181612f86565b91506020830135612c7181612f86565b809150509250929050565b600080600060608486031215612c90578081fd5b8335612c9b81612f86565b92506020840135612cab81612f86565b929592945050506040919091013590565b60008060408385031215612cce578182fd5b8235612cd981612f86565b9150612ce760208401612bf7565b90509250929050565b60008060408385031215612d02578182fd5b8235612d0d81612f86565b946020939093013593505050565b600060208284031215612d2c578081fd5b611bc682612bf7565b600060208284031215612d46578081fd5b5035919050565b600080600080600080600060e0888a031215612d67578283fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b6000815180845260208085019450808401835b83811015612dd05781516001600160a01b031687529582019590820190600101612dab565b509495945050505050565b602081526000611bc66020830184612d98565b6000602080835283518082850152825b81811015612e1a57858101830151858201604001528201612dfe565b81811115612e2b5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a060408201526000612e9560a0830186612d98565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612ec557612ec5612f70565b500190565b600082612ee557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612f0457612f04612f70565b500290565b600082821015612f1b57612f1b612f70565b500390565b600181811c90821680612f3457607f821691505b6020821081141561264057634e487b7160e01b600052602260045260246000fd5b6000600019821415612f6957612f69612f70565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146111be57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e773e93d9b921c299b474de76224a2f9809d1aa9b4b2458cff9a83d305e4ad4964736f6c63430008040033
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.