ERC-20
DeFi
Overview
Max Total Supply
78,982,336 $0xS
Holders
798 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH
Onchain Market Cap
$140,495.36
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,450.297483917668502828 $0xSValue
$6.14 ( ~0.00210771579021913 Eth) [0.0044%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZeroXShibarium
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion, Audited
Contract Source Code (Solidity Standard Json-Input format)Audit Report
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; contract ZeroXShibarium is Context, ERC20, Ownable { using SafeERC20 for IERC20; using Address for address; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; _ZeroXShibariumWallets public ZeroXShibariumWallets; _burnData public burnData; _buyTaxes public buyTaxes; _sellTaxes public sellTaxes; mapping(address => bool) public pair; mapping (address => bool) public _isExcludedFromFees; uint256 private start; uint256 private end; uint256 public swapTokensAtAmount; bool public swapping; bool public taxDisabled; uint256 private maxWalletTimer; uint256 private started; uint256 private maxWallet; uint256 private _supply; // @dev All wallets are multi-sig gnosis safe's struct _ZeroXShibariumWallets { address payable cexWallet; address payable marketingWallet; address payable devWallet; address payable platformWallet; } struct _burnData { uint256 burnCounter; uint256 amountToBurn; uint256 burnRemaining; uint256[] burnMilestones; bool burning; } struct _buyTaxes { uint256 devFee; uint256 marketingFee; uint256 totalBuyFees; } struct _sellTaxes { uint256 devFee; uint256 marketingFee; uint256 totalSellFees; } event swapRouterUpdated( address newRouter ); event TaxesSent( address taxWallet, uint256 ETHAmount ); event FeesUpdated( uint256 DevFee, uint256 MarketingFee ); event TradingPairAdded( address indexed newPair ); event TokensBurned( address indexed burner, uint256 amount ); event BurnFailed(); constructor(address payable _cexWallet, address payable _marketingWallet, address payable _devWallet, address payable _platformWallet, uint256 _end, uint256 _maxWalletTimer) ERC20("0xS", "$0xS") { uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Router address for Uniswap address _pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); pair[_pair] = true; uniswapV2Pair = address(0); setBuyFees(20,30); setSellFees(20,30); ZeroXShibariumWallets.cexWallet = payable(_cexWallet); ZeroXShibariumWallets.marketingWallet = payable(_marketingWallet); ZeroXShibariumWallets.devWallet = payable(_devWallet); ZeroXShibariumWallets.platformWallet = payable(_platformWallet); _supply = 1 * 10 ** 8 * 10 ** decimals(); started = block.timestamp; end = _end; maxWallet = ((_supply * 75) / 10000); // Max wallet of 0.75% of total supply maxWalletTimer = _maxWalletTimer; swapTokensAtAmount = ((_supply * 25) / 10000); // Swap 0.25% of total supply burnData.burnCounter = 0; burnData.burning = true; burnData.burnRemaining = ((_supply * 200) / 1000); // Total amount to be burnt burnData.amountToBurn = burnData.burnRemaining / 4; burnData.burnMilestones = [(1000000 * 1e18), (2000000 * 1e18), (4000000 * 1e18), (6000000 * 1e18)]; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[owner()] = true; _mint(owner(), ((_supply * 500) / 1000)); // 55% of total supply for initial liquidity _mint(_marketingWallet, ((_supply * 50) / 1000)); // Tokens to be sent to marketing wallet 5% of total supply _mint(_cexWallet, ((_supply * 100) / 1000)); // Tokens to be sent to development wallet 10& of total supply _mint(_platformWallet, ((_supply * 150) / 1000)); // Tokens to be sent to platform wallet 15% of total supply _mint(address(this), burnData.burnRemaining); // Tokens reserved in contract to be automatically burnt over time 40% of total supply } receive() external payable { } function setBuyFees( uint256 _devFee, uint256 _marketingFee ) public onlyOwner { require((_devFee + _marketingFee) <= 50, "Taxes cannot exceed 5%"); buyTaxes.devFee = _devFee; buyTaxes.marketingFee = _marketingFee; buyTaxes.totalBuyFees = (_devFee + _marketingFee); emit FeesUpdated(_devFee, _marketingFee); } function setSellFees( uint256 _devFee, uint256 _marketingFee ) public onlyOwner { require((_devFee + _marketingFee) <= 50, "Taxes cannot exceed 5%"); sellTaxes.devFee = _devFee; sellTaxes.marketingFee = _marketingFee; sellTaxes.totalSellFees = (_devFee + _marketingFee); emit FeesUpdated(_devFee, _marketingFee); } function burn(uint256 amount) public { _burn(msg.sender, amount * 10 ** decimals()); } function addPair(address toPair) public onlyOwner { if(uniswapV2Pair == address(0)) { uniswapV2Pair = toPair; start = block.number; } else { require(!pair[toPair], "This pair already exists"); pair[toPair] = true; } emit TradingPairAdded(toPair); } function updateRouterAddress(address _router) public onlyOwner { require(_router != address(uniswapV2Router), "This is already the router address"); uniswapV2Router = IUniswapV2Router02(_router); emit swapRouterUpdated(_router); } function getPriceInUSD() public view returns (uint256) { // Import the Chainlink AggregatorV3Interface contract AggregatorV3Interface ethUsdPriceFeed = AggregatorV3Interface(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419); // ETH/USD Price Feed address pairAddress = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH()); (uint112 reserve0, uint112 reserve1, ) = IUniswapV2Pair(pairAddress).getReserves(); // Ensure non-zero reserves require(reserve0 > 0 && reserve1 > 0, "Reserves are zero"); uint256 tokenPriceInETH; if (address(this) < uniswapV2Router.WETH()) { // token is token0 tokenPriceInETH = (uint256(reserve1) * 10**decimals()) / reserve0; } else { // token is token1 tokenPriceInETH = (uint256(reserve0) * 10**decimals()) / reserve1; } // Get the price of ETH in USD from Chainlink (, int price,, ,) = ethUsdPriceFeed.latestRoundData(); uint8 chainlinkDecimals = ethUsdPriceFeed.decimals(); // Adjust for Chainlink's decimals uint256 adjustedEthPriceInUSD = uint256(price) * 10**(decimals() - chainlinkDecimals); uint256 tokenPrice = (tokenPriceInETH * adjustedEthPriceInUSD) / 10**decimals(); // Calculate the MC in USD uint256 mcUsd = ((tokenPrice * totalSupply()) / 10 ** decimals()); return mcUsd; } function burnTokensAtMC() private { if(burnData.burning && burnData.burnCounter < burnData.burnMilestones.length) { uint256 mcUSD = getPriceInUSD(); if(mcUSD > burnData.burnMilestones[burnData.burnCounter]) { uint256 amount = burnData.amountToBurn; _burn(address(this), amount); burnData.burnRemaining -= amount; burnData.burnCounter++; emit TokensBurned(address(this), amount); if(burnData.burnRemaining == 0) { burnData.burning = false; } } } } function burnRemaining() public onlyOwner { // Function to burn remaining tokens in case of issue at higher MC require(burnData.burning, "Burning is already completed"); uint256 amount = burnData.burnRemaining; _burn(address(this), amount); burnData.burnRemaining = 0; burnData.burning = false; emit TokensBurned(address(this), amount); } function updateSwapAmount(uint256 newSwapAmount) public onlyOwner { swapTokensAtAmount = newSwapAmount * 10 ** decimals(); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(uniswapV2Pair != address(0)) { burnTokensAtMC(); } if(uniswapV2Pair == address(0) && from != owner() && to != owner()) { revert("Trading is not yet active"); } uint256 current = block.number; if((block.timestamp < (started + maxWalletTimer)) && to != address(0) && to != uniswapV2Pair && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) { uint256 balance = balanceOf(to); require(balance + amount <= maxWallet, "Transfer amount exceeds maximum wallet"); } uint256 contractTokenBalance = (balanceOf(address(this)) - burnData.burnRemaining); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if(canSwap && !swapping && pair[to] && from != address(uniswapV2Router) && from != owner() && to != owner() && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) { contractTokenBalance = swapTokensAtAmount; swapping = true; if (sellTaxes.totalSellFees > 0) { swapTokensForEth(contractTokenBalance); if (sellTaxes.devFee > 0) { uint256 devAmount = ((address(this).balance * sellTaxes.devFee) / sellTaxes.totalSellFees); (bool success, ) = address(ZeroXShibariumWallets.devWallet).call{value: devAmount}(""); require(success, "Failed to send dev fee"); emit TaxesSent(address(ZeroXShibariumWallets.devWallet), devAmount); } if (sellTaxes.marketingFee > 0) { uint256 marketingAmount = address(this).balance; (bool success, ) = address(ZeroXShibariumWallets.marketingWallet).call{value: marketingAmount}(""); require(success, "Failed to send marketing fee"); emit TaxesSent(address(ZeroXShibariumWallets.marketingWallet), marketingAmount); } } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; super._transfer(from, to, amount); } else if(current <= start + end && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !pair[to]) { require(tx.gasprice <= block.basefee + 7 gwei, "Gas price too high"); uint256 balance = balanceOf(to); require(balance + amount <= ((totalSupply() * 5) / 1000), "Transfer amount exceeds maximum wallet"); } else if(!pair[to] && !pair[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { takeFee = false; super._transfer(from, to, amount); } if(takeFee) { uint256 BuyFees = ((amount * buyTaxes.totalBuyFees) / 1000); uint256 SellFees = ((amount * sellTaxes.totalSellFees) / 1000); // if sell if(pair[to] && sellTaxes.totalSellFees > 0) { amount -= SellFees; super._transfer(from, address(this), SellFees); super._transfer(from, to, amount); } // if buy transfer else if(pair[from] && buyTaxes.totalBuyFees > 0) { amount -= BuyFees; super._transfer(from, address(this), BuyFees); super._transfer(from, to, amount); } else { super._transfer(from, to, amount); } } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
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.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- Solid Proof - Aug 17th, 2023 - Security Audit Report
[{"inputs":[{"internalType":"address payable","name":"_cexWallet","type":"address"},{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address payable","name":"_platformWallet","type":"address"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_maxWalletTimer","type":"uint256"}],"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":[],"name":"BurnFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"DevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"MarketingFee","type":"uint256"}],"name":"FeesUpdated","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":"taxWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"ETHAmount","type":"uint256"}],"name":"TaxesSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPair","type":"address"}],"name":"TradingPairAdded","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouter","type":"address"}],"name":"swapRouterUpdated","type":"event"},{"inputs":[],"name":"ZeroXShibariumWallets","outputs":[{"internalType":"address payable","name":"cexWallet","type":"address"},{"internalType":"address payable","name":"marketingWallet","type":"address"},{"internalType":"address payable","name":"devWallet","type":"address"},{"internalType":"address payable","name":"platformWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnData","outputs":[{"internalType":"uint256","name":"burnCounter","type":"uint256"},{"internalType":"uint256","name":"amountToBurn","type":"uint256"},{"internalType":"uint256","name":"burnRemaining","type":"uint256"},{"internalType":"bool","name":"burning","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRemaining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"totalBuyFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPriceInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"totalSellFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","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":"taxDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"updateRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"updateSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620032c3380380620032c383398101604081905262000034916200084b565b6040518060400160405280600381526020016230785360e81b815250604051806040016040528060048152602001632430785360e01b81525081600390816200007e91906200096b565b5060046200008d82826200096b565b505050620000aa620000a4620004eb60201b60201c565b620004ef565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa15801562000112573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000138919062000a37565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c1919062000a37565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000235919062000a37565b6001600160a01b0381166000908152601760205260409020805460ff19166001179055600780546001600160a01b03191690559050620002786014601e62000541565b620002866014601e620005f3565b600880546001600160a01b03199081166001600160a01b038a811691909117909255600980548216898416179055600a80548216888416179055600b80549091169186169190911790556012620002df90600a62000b73565b620002ef906305f5e10062000b84565b602081905542601e55601a849055612710906200030e90604b62000b84565b6200031a919062000ba6565b601f55601d829055602054612710906200033690601962000b84565b62000342919062000ba6565b601b556000600c556010805460ff191660011790556020546103e8906200036b9060c862000b84565b62000377919062000ba6565b600e8190556200038a9060049062000ba6565b600d556040805160808101825269d3c21bcecceda100000081526a01a784379d99db4200000060208201526a034f086f3b33b684000000918101919091526a04f68ca6d8cd91c60000006060820152620003e990600f906004620007c0565b503060009081526018602081905260408220805460ff19166001908117909155916200041d6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620004836200045c6005546001600160a01b031690565b6103e86020546101f462000471919062000b84565b6200047d919062000ba6565b6200069a565b6200049c866103e8602054603262000471919062000b84565b620004b5876103e8602054606462000471919062000b84565b620004ce846103e8602054609662000471919062000b84565b600e54620004de9030906200069a565b5050505050505062000be4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200054b6200075d565b603262000559828462000bc9565b1115620005ad5760405162461bcd60e51b815260206004820152601660248201527f54617865732063616e6e6f74206578636565642035250000000000000000000060448201526064015b60405180910390fd5b60118290556012819055620005c3818362000bc9565b6013556040805183815260208101839052600080516020620032a383398151915291015b60405180910390a15050565b620005fd6200075d565b60326200060b828462000bc9565b11156200065b5760405162461bcd60e51b815260206004820152601660248201527f54617865732063616e6e6f7420657863656564203525000000000000000000006044820152606401620005a4565b6014829055601581905562000671818362000bc9565b6016556040805183815260208101839052600080516020620032a38339815191529101620005e7565b6001600160a01b038216620006f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005a4565b806002600082825462000706919062000bc9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620007b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620005a4565b565b505050565b82805482825590600052602060002090810192821562000809579160200282015b828111156200080957825182906001600160581b0316905591602001919060010190620007e1565b50620008179291506200081b565b5090565b5b808211156200081757600081556001016200081c565b6001600160a01b03811681146200084857600080fd5b50565b60008060008060008060c087890312156200086557600080fd5b8651620008728162000832565b6020880151909650620008858162000832565b6040880151909550620008988162000832565b6060880151909450620008ab8162000832565b809350506080870151915060a087015190509295509295509295565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008f257607f821691505b6020821081036200091357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007bb57600081815260208120601f850160051c81016020861015620009425750805b601f850160051c820191505b8181101562000963578281556001016200094e565b505050505050565b81516001600160401b03811115620009875762000987620008c7565b6200099f81620009988454620008dd565b8462000919565b602080601f831160018114620009d75760008415620009be5750858301515b600019600386901b1c1916600185901b17855562000963565b600085815260208120601f198616915b8281101562000a0857888601518255948401946001909101908401620009e7565b508582101562000a275787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a4a57600080fd5b815162000a578162000832565b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000ab557816000190482111562000a995762000a9962000a5e565b8085161562000aa757918102915b93841c939080029062000a79565b509250929050565b60008262000ace5750600162000b6d565b8162000add5750600062000b6d565b816001811462000af6576002811462000b015762000b21565b600191505062000b6d565b60ff84111562000b155762000b1562000a5e565b50506001821b62000b6d565b5060208310610133831016604e8410600b841016171562000b46575081810a62000b6d565b62000b52838362000a74565b806000190482111562000b695762000b6962000a5e565b0290505b92915050565b600062000a5760ff84168362000abd565b600081600019048311821515161562000ba15762000ba162000a5e565b500290565b60008262000bc457634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000bdf5762000bdf62000a5e565b500190565b6126af8062000bf46000396000f3fe6080604052600436106101f15760003560e01c8063864701a51161010d578063b2d8f208116100a0578063e0bf7fd11161006f578063e0bf7fd114610631578063e1aa603614610661578063e2f4560514610676578063f2fde38b1461068c578063f66895a3146106ac57600080fd5b8063b2d8f208146105bc578063c2b7bbb6146105dc578063d6a78004146105fc578063dd62ed3e1461061157600080fd5b80639fd8234e116100dc5780639fd8234e1461053c578063a457c2d71461055c578063a9059cbb1461057c578063ab3b55451461059c57600080fd5b8063864701a5146104b05780638da5cb5b146104ea57806395d89b41146105085780639a07579a1461051d57600080fd5b80633950935111610185578063710bcce011610154578063710bcce0146103bd578063715018a6146104235780637c06aabc146104385780637fb992f71461048057600080fd5b8063395093511461032757806342966c681461034757806349bd5a5e1461036757806370a082311461038757600080fd5b80631732cded116101c15780631732cded146102b257806318160ddd146102cc57806323b872dd146102eb578063313ce5671461030b57600080fd5b8062e6be7b146101fd57806306fdde031461021f578063095ea7b31461024a5780631694505e1461027a57600080fd5b366101f857005b600080fd5b34801561020957600080fd5b5061021d6102183660046120c5565b6106cb565b005b34801561022b57600080fd5b50610234610795565b60405161024191906120e9565b60405180910390f35b34801561025657600080fd5b5061026a61026536600461213e565b610827565b6040519015158152602001610241565b34801561028657600080fd5b5060065461029a906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b3480156102be57600080fd5b50601c5461026a9060ff1681565b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b5061026a61030636600461216a565b610841565b34801561031757600080fd5b5060405160128152602001610241565b34801561033357600080fd5b5061026a61034236600461213e565b610865565b34801561035357600080fd5b5061021d6103623660046121ab565b610887565b34801561037357600080fd5b5060075461029a906001600160a01b031681565b34801561039357600080fd5b506102dd6103a23660046120c5565b6001600160a01b031660009081526020819052604090205490565b3480156103c957600080fd5b50600854600954600a54600b546103f0936001600160a01b03908116938116928116911684565b604080516001600160a01b0395861681529385166020850152918416918301919091529091166060820152608001610241565b34801561042f57600080fd5b5061021d6108a9565b34801561044457600080fd5b50600c54600d54600e5460105461045e9392919060ff1684565b6040805194855260208501939093529183015215156060820152608001610241565b34801561048c57600080fd5b5061026a61049b3660046120c5565b60176020526000908152604090205460ff1681565b3480156104bc57600080fd5b506011546012546013546104cf92919083565b60408051938452602084019290925290820152606001610241565b3480156104f657600080fd5b506005546001600160a01b031661029a565b34801561051457600080fd5b506102346108bd565b34801561052957600080fd5b50601c5461026a90610100900460ff1681565b34801561054857600080fd5b5061021d6105573660046121c4565b6108cc565b34801561056857600080fd5b5061026a61057736600461213e565b61097c565b34801561058857600080fd5b5061026a61059736600461213e565b6109f7565b3480156105a857600080fd5b5061021d6105b73660046121ab565b610a05565b3480156105c857600080fd5b5061021d6105d73660046121c4565b610a29565b3480156105e857600080fd5b5061021d6105f73660046120c5565b610ad1565b34801561060857600080fd5b5061021d610bd1565b34801561061d57600080fd5b506102dd61062c3660046121e6565b610c7f565b34801561063d57600080fd5b5061026a61064c3660046120c5565b60186020526000908152604090205460ff1681565b34801561066d57600080fd5b506102dd610caa565b34801561068257600080fd5b506102dd601b5481565b34801561069857600080fd5b5061021d6106a73660046120c5565b61113a565b3480156106b857600080fd5b506014546015546016546104cf92919083565b6106d36111b0565b6006546001600160a01b03908116908216036107415760405162461bcd60e51b815260206004820152602260248201527f5468697320697320616c72656164792074686520726f75746572206164647265604482015261737360f01b60648201526084015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fa79cc4a77481b31a63408675cc7119625f3ef6c7199b441710296a0cc785433b9060200160405180910390a150565b6060600380546107a49061221f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d09061221f565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b60003361083581858561120a565b60019150505b92915050565b60003361084f85828561132f565b61085a8585856113a9565b506001949350505050565b6000336108358185856108788383610c7f565b610882919061226f565b61120a565b6108a6336108976012600a61236b565b6108a1908461237a565b611bd7565b50565b6108b16111b0565b6108bb6000611d01565b565b6060600480546107a49061221f565b6108d46111b0565b60326108e0828461226f565b11156109275760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610738565b6014829055601581905561093b818361226f565b60165560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6000338161098a8286610c7f565b9050838110156109ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610738565b61085a828686840361120a565b6000336108358185856113a9565b610a0d6111b0565b610a196012600a61236b565b610a23908261237a565b601b5550565b610a316111b0565b6032610a3d828461226f565b1115610a845760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610738565b60118290556012819055610a98818361226f565b60135560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a19101610970565b610ad96111b0565b6007546001600160a01b0316610b0d57600780546001600160a01b0319166001600160a01b03831617905543601955610b9a565b6001600160a01b03811660009081526017602052604090205460ff1615610b765760405162461bcd60e51b815260206004820152601860248201527f54686973207061697220616c72656164792065786973747300000000000000006044820152606401610738565b6001600160a01b0381166000908152601760205260409020805460ff191660011790555b6040516001600160a01b038216907f8b100428088c24d83fb53c36f9e0d15fbacd418536208a138837b7b90d9ae2e990600090a250565b610bd96111b0565b60105460ff16610c2b5760405162461bcd60e51b815260206004820152601c60248201527f4275726e696e6720697320616c726561647920636f6d706c65746564000000006044820152606401610738565b600e54610c383082611bd7565b6000600e556010805460ff1916905560405181815230907ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb69060200160405180910390a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080735f4ec3df9cbd43714fe2740f5e3616155c5b841990506000600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d9190612399565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc39190612399565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610e0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e329190612399565b9050600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9991906123d2565b50915091506000826001600160701b0316118015610ec057506000816001600160701b0316115b610f005760405162461bcd60e51b8152602060048201526011602482015270526573657276657320617265207a65726f60781b6044820152606401610738565b600654604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c46489160048083019260209291908290030181865afa158015610f4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6e9190612399565b6001600160a01b0316301015610fb8576001600160701b038316610f946012600a61236b565b610fa7906001600160701b03851661237a565b610fb19190612422565b9050610fee565b6001600160701b038216610fce6012600a61236b565b610fe1906001600160701b03861661237a565b610feb9190612422565b90505b6000856001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561102e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611052919061245e565b5050509150506000866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611098573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bc91906124ae565b905060006110cb8260126124d1565b6110d690600a61236b565b6110e0908461237a565b905060006110f06012600a61236b565b6110fa838761237a565b6111049190612422565b905060006111146012600a61236b565b600254611121908461237a565b61112b9190612422565b9b9a5050505050505050505050565b6111426111b0565b6001600160a01b0381166111a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610738565b6108a681611d01565b6005546001600160a01b031633146108bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610738565b6001600160a01b03831661126c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610738565b6001600160a01b0382166112cd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610738565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061133b8484610c7f565b905060001981146113a357818110156113965760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610738565b6113a3848484840361120a565b50505050565b6001600160a01b0383166113cf5760405162461bcd60e51b8152600401610738906124f4565b6001600160a01b0382166113f55760405162461bcd60e51b815260040161073890612539565b6007546001600160a01b03161561140e5761140e611d53565b6007546001600160a01b031615801561143557506005546001600160a01b03848116911614155b801561144f57506005546001600160a01b03838116911614155b1561149c5760405162461bcd60e51b815260206004820152601960248201527f54726164696e67206973206e6f742079657420616374697665000000000000006044820152606401610738565b601d54601e5443916114ad9161226f565b421080156114c357506001600160a01b03831615155b80156114dd57506007546001600160a01b03848116911614155b801561150257506001600160a01b03831660009081526018602052604090205460ff16155b801561152757506001600160a01b03841660009081526018602052604090205460ff16155b15611572576001600160a01b038316600090815260208190526040902054601f54611552848361226f565b11156115705760405162461bcd60e51b81526004016107389061257c565b505b600e54306000908152602081905260408120549091611590916125c2565b601b54909150811080159081906115aa5750601c5460ff16155b80156115ce57506001600160a01b03851660009081526017602052604090205460ff165b80156115e857506006546001600160a01b03878116911614155b801561160257506005546001600160a01b03878116911614155b801561161c57506005546001600160a01b03868116911614155b801561164157506001600160a01b03851660009081526018602052604090205460ff16155b801561166657506001600160a01b03861660009081526018602052604090205460ff16155b156118a257601b54601c805460ff19166001179055601654909250156118975761168f82611e2c565b6014541561179f57601654601454600091906116ab904761237a565b6116b59190612422565b600a546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611707576040519150601f19603f3d011682016040523d82523d6000602084013e61170c565b606091505b50509050806117565760405162461bcd60e51b81526020600482015260166024820152754661696c656420746f2073656e64206465762066656560501b6044820152606401610738565b600a54604080516001600160a01b039092168252602082018490527ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa333910160405180910390a150505b601554156118975760095460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146117f8576040519150601f19603f3d011682016040523d82523d6000602084013e6117fd565b606091505b505090508061184e5760405162461bcd60e51b815260206004820152601c60248201527f4661696c656420746f2073656e64206d61726b6574696e6720666565000000006044820152606401610738565b600954604080516001600160a01b039092168252602082018490527ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa333910160405180910390a150505b601c805460ff191690555b601c546001600160a01b03871660009081526018602052604090205460ff918216159116806118e957506001600160a01b03861660009081526018602052604090205460ff165b15611901575060006118fc878787611f86565b611add565b601a54601954611911919061226f565b841115801561193957506001600160a01b03871660009081526018602052604090205460ff16155b801561195e57506001600160a01b03861660009081526018602052604090205460ff16155b801561198357506001600160a01b03861660009081526017602052604090205460ff16155b15611a3e57611997486401a13b860061226f565b3a11156119db5760405162461bcd60e51b815260206004820152601260248201527108ec2e640e0e4d2c6ca40e8dede40d0d2ced60731b6044820152606401610738565b6001600160a01b0386166000908152602081905260409020546002546103e890611a0690600561237a565b611a109190612422565b611a1a878361226f565b1115611a385760405162461bcd60e51b81526004016107389061257c565b50611add565b6001600160a01b03861660009081526017602052604090205460ff16158015611a8057506001600160a01b03871660009081526017602052604090205460ff16155b8015611aa557506001600160a01b03871660009081526018602052604090205460ff16155b8015611aca57506001600160a01b03861660009081526018602052604090205460ff16155b15611add57506000611add878787611f86565b8015611bce576013546000906103e890611af7908861237a565b611b019190612422565b905060006103e860146002015488611b19919061237a565b611b239190612422565b6001600160a01b03891660009081526017602052604090205490915060ff168015611b4f575060165415155b15611b7b57611b5e81886125c2565b9650611b6b893083611f86565b611b76898989611f86565b611bcb565b6001600160a01b03891660009081526017602052604090205460ff168015611ba4575060135415155b15611bc057611bb382886125c2565b9650611b6b893084611f86565b611bcb898989611f86565b50505b50505050505050565b6001600160a01b038216611c375760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610738565b6001600160a01b03821660009081526020819052604090205481811015611cab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610738565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611322565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60105460ff168015611d685750600f54600c54105b156108bb576000611d77610caa565b600c54600f8054929350918110611d9057611d906125d9565b90600052602060002001548111156108a657600d54611daf3082611bd7565b80600c6002016000828254611dc491906125c2565b9091555050600c8054906000611dd9836125ef565b909155505060405181815230907ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb69060200160405180910390a2600e54600003611e28576010805460ff191690555b5050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e6157611e616125d9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611eba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ede9190612399565b81600181518110611ef157611ef16125d9565b6001600160a01b039283166020918202929092010152600654611f17913091168461120a565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f50908590600090869030904290600401612608565b600060405180830381600087803b158015611f6a57600080fd5b505af1158015611f7e573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611fac5760405162461bcd60e51b8152600401610738906124f4565b6001600160a01b038216611fd25760405162461bcd60e51b815260040161073890612539565b6001600160a01b0383166000908152602081905260409020548181101561204a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610738565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36113a3565b6001600160a01b03811681146108a657600080fd5b6000602082840312156120d757600080fd5b81356120e2816120b0565b9392505050565b600060208083528351808285015260005b81811015612116578581018301518582016040015282016120fa565b81811115612128576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561215157600080fd5b823561215c816120b0565b946020939093013593505050565b60008060006060848603121561217f57600080fd5b833561218a816120b0565b9250602084013561219a816120b0565b929592945050506040919091013590565b6000602082840312156121bd57600080fd5b5035919050565b600080604083850312156121d757600080fd5b50508035926020909101359150565b600080604083850312156121f957600080fd5b8235612204816120b0565b91506020830135612214816120b0565b809150509250929050565b600181811c9082168061223357607f821691505b60208210810361225357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561228257612282612259565b500190565b600181815b808511156122c25781600019048211156122a8576122a8612259565b808516156122b557918102915b93841c939080029061228c565b509250929050565b6000826122d95750600161083b565b816122e65750600061083b565b81600181146122fc576002811461230657612322565b600191505061083b565b60ff84111561231757612317612259565b50506001821b61083b565b5060208310610133831016604e8410600b8410161715612345575081810a61083b565b61234f8383612287565b806000190482111561236357612363612259565b029392505050565b60006120e260ff8416836122ca565b600081600019048311821515161561239457612394612259565b500290565b6000602082840312156123ab57600080fd5b81516120e2816120b0565b80516001600160701b03811681146123cd57600080fd5b919050565b6000806000606084860312156123e757600080fd5b6123f0846123b6565b92506123fe602085016123b6565b9150604084015163ffffffff8116811461241757600080fd5b809150509250925092565b60008261243f57634e487b7160e01b600052601260045260246000fd5b500490565b805169ffffffffffffffffffff811681146123cd57600080fd5b600080600080600060a0868803121561247657600080fd5b61247f86612444565b94506020860151935060408601519250606086015191506124a260808701612444565b90509295509295909350565b6000602082840312156124c057600080fd5b815160ff811681146120e257600080fd5b600060ff821660ff8416808210156124eb576124eb612259565b90039392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d206040820152651dd85b1b195d60d21b606082015260800190565b6000828210156125d4576125d4612259565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161260157612601612259565b5060010190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126585784516001600160a01b031683529383019391830191600101612633565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e39a32fa93a7141781ec0a091bb3cb11cdfa2be1baaf4cebd973e5e471f1753964736f6c634300080f00335c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a1000000000000000000000000ba5b4d2ac5e13dfcafc5418dfa0c01ee595174cf000000000000000000000000e27cf06b1df3d129921b2d5516b2a2e35f4ed620000000000000000000000000eb7f0be32c87a55205cb0d2bffb21f4fbeac8f1e0000000000000000000000000937af884cba1a4cd6e68f733047dadb0bec52fa00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000015180
Deployed Bytecode
0x6080604052600436106101f15760003560e01c8063864701a51161010d578063b2d8f208116100a0578063e0bf7fd11161006f578063e0bf7fd114610631578063e1aa603614610661578063e2f4560514610676578063f2fde38b1461068c578063f66895a3146106ac57600080fd5b8063b2d8f208146105bc578063c2b7bbb6146105dc578063d6a78004146105fc578063dd62ed3e1461061157600080fd5b80639fd8234e116100dc5780639fd8234e1461053c578063a457c2d71461055c578063a9059cbb1461057c578063ab3b55451461059c57600080fd5b8063864701a5146104b05780638da5cb5b146104ea57806395d89b41146105085780639a07579a1461051d57600080fd5b80633950935111610185578063710bcce011610154578063710bcce0146103bd578063715018a6146104235780637c06aabc146104385780637fb992f71461048057600080fd5b8063395093511461032757806342966c681461034757806349bd5a5e1461036757806370a082311461038757600080fd5b80631732cded116101c15780631732cded146102b257806318160ddd146102cc57806323b872dd146102eb578063313ce5671461030b57600080fd5b8062e6be7b146101fd57806306fdde031461021f578063095ea7b31461024a5780631694505e1461027a57600080fd5b366101f857005b600080fd5b34801561020957600080fd5b5061021d6102183660046120c5565b6106cb565b005b34801561022b57600080fd5b50610234610795565b60405161024191906120e9565b60405180910390f35b34801561025657600080fd5b5061026a61026536600461213e565b610827565b6040519015158152602001610241565b34801561028657600080fd5b5060065461029a906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b3480156102be57600080fd5b50601c5461026a9060ff1681565b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b5061026a61030636600461216a565b610841565b34801561031757600080fd5b5060405160128152602001610241565b34801561033357600080fd5b5061026a61034236600461213e565b610865565b34801561035357600080fd5b5061021d6103623660046121ab565b610887565b34801561037357600080fd5b5060075461029a906001600160a01b031681565b34801561039357600080fd5b506102dd6103a23660046120c5565b6001600160a01b031660009081526020819052604090205490565b3480156103c957600080fd5b50600854600954600a54600b546103f0936001600160a01b03908116938116928116911684565b604080516001600160a01b0395861681529385166020850152918416918301919091529091166060820152608001610241565b34801561042f57600080fd5b5061021d6108a9565b34801561044457600080fd5b50600c54600d54600e5460105461045e9392919060ff1684565b6040805194855260208501939093529183015215156060820152608001610241565b34801561048c57600080fd5b5061026a61049b3660046120c5565b60176020526000908152604090205460ff1681565b3480156104bc57600080fd5b506011546012546013546104cf92919083565b60408051938452602084019290925290820152606001610241565b3480156104f657600080fd5b506005546001600160a01b031661029a565b34801561051457600080fd5b506102346108bd565b34801561052957600080fd5b50601c5461026a90610100900460ff1681565b34801561054857600080fd5b5061021d6105573660046121c4565b6108cc565b34801561056857600080fd5b5061026a61057736600461213e565b61097c565b34801561058857600080fd5b5061026a61059736600461213e565b6109f7565b3480156105a857600080fd5b5061021d6105b73660046121ab565b610a05565b3480156105c857600080fd5b5061021d6105d73660046121c4565b610a29565b3480156105e857600080fd5b5061021d6105f73660046120c5565b610ad1565b34801561060857600080fd5b5061021d610bd1565b34801561061d57600080fd5b506102dd61062c3660046121e6565b610c7f565b34801561063d57600080fd5b5061026a61064c3660046120c5565b60186020526000908152604090205460ff1681565b34801561066d57600080fd5b506102dd610caa565b34801561068257600080fd5b506102dd601b5481565b34801561069857600080fd5b5061021d6106a73660046120c5565b61113a565b3480156106b857600080fd5b506014546015546016546104cf92919083565b6106d36111b0565b6006546001600160a01b03908116908216036107415760405162461bcd60e51b815260206004820152602260248201527f5468697320697320616c72656164792074686520726f75746572206164647265604482015261737360f01b60648201526084015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fa79cc4a77481b31a63408675cc7119625f3ef6c7199b441710296a0cc785433b9060200160405180910390a150565b6060600380546107a49061221f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d09061221f565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b60003361083581858561120a565b60019150505b92915050565b60003361084f85828561132f565b61085a8585856113a9565b506001949350505050565b6000336108358185856108788383610c7f565b610882919061226f565b61120a565b6108a6336108976012600a61236b565b6108a1908461237a565b611bd7565b50565b6108b16111b0565b6108bb6000611d01565b565b6060600480546107a49061221f565b6108d46111b0565b60326108e0828461226f565b11156109275760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610738565b6014829055601581905561093b818361226f565b60165560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6000338161098a8286610c7f565b9050838110156109ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610738565b61085a828686840361120a565b6000336108358185856113a9565b610a0d6111b0565b610a196012600a61236b565b610a23908261237a565b601b5550565b610a316111b0565b6032610a3d828461226f565b1115610a845760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610738565b60118290556012819055610a98818361226f565b60135560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a19101610970565b610ad96111b0565b6007546001600160a01b0316610b0d57600780546001600160a01b0319166001600160a01b03831617905543601955610b9a565b6001600160a01b03811660009081526017602052604090205460ff1615610b765760405162461bcd60e51b815260206004820152601860248201527f54686973207061697220616c72656164792065786973747300000000000000006044820152606401610738565b6001600160a01b0381166000908152601760205260409020805460ff191660011790555b6040516001600160a01b038216907f8b100428088c24d83fb53c36f9e0d15fbacd418536208a138837b7b90d9ae2e990600090a250565b610bd96111b0565b60105460ff16610c2b5760405162461bcd60e51b815260206004820152601c60248201527f4275726e696e6720697320616c726561647920636f6d706c65746564000000006044820152606401610738565b600e54610c383082611bd7565b6000600e556010805460ff1916905560405181815230907ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb69060200160405180910390a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080735f4ec3df9cbd43714fe2740f5e3616155c5b841990506000600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d9190612399565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc39190612399565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610e0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e329190612399565b9050600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9991906123d2565b50915091506000826001600160701b0316118015610ec057506000816001600160701b0316115b610f005760405162461bcd60e51b8152602060048201526011602482015270526573657276657320617265207a65726f60781b6044820152606401610738565b600654604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c46489160048083019260209291908290030181865afa158015610f4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6e9190612399565b6001600160a01b0316301015610fb8576001600160701b038316610f946012600a61236b565b610fa7906001600160701b03851661237a565b610fb19190612422565b9050610fee565b6001600160701b038216610fce6012600a61236b565b610fe1906001600160701b03861661237a565b610feb9190612422565b90505b6000856001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561102e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611052919061245e565b5050509150506000866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611098573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bc91906124ae565b905060006110cb8260126124d1565b6110d690600a61236b565b6110e0908461237a565b905060006110f06012600a61236b565b6110fa838761237a565b6111049190612422565b905060006111146012600a61236b565b600254611121908461237a565b61112b9190612422565b9b9a5050505050505050505050565b6111426111b0565b6001600160a01b0381166111a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610738565b6108a681611d01565b6005546001600160a01b031633146108bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610738565b6001600160a01b03831661126c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610738565b6001600160a01b0382166112cd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610738565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061133b8484610c7f565b905060001981146113a357818110156113965760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610738565b6113a3848484840361120a565b50505050565b6001600160a01b0383166113cf5760405162461bcd60e51b8152600401610738906124f4565b6001600160a01b0382166113f55760405162461bcd60e51b815260040161073890612539565b6007546001600160a01b03161561140e5761140e611d53565b6007546001600160a01b031615801561143557506005546001600160a01b03848116911614155b801561144f57506005546001600160a01b03838116911614155b1561149c5760405162461bcd60e51b815260206004820152601960248201527f54726164696e67206973206e6f742079657420616374697665000000000000006044820152606401610738565b601d54601e5443916114ad9161226f565b421080156114c357506001600160a01b03831615155b80156114dd57506007546001600160a01b03848116911614155b801561150257506001600160a01b03831660009081526018602052604090205460ff16155b801561152757506001600160a01b03841660009081526018602052604090205460ff16155b15611572576001600160a01b038316600090815260208190526040902054601f54611552848361226f565b11156115705760405162461bcd60e51b81526004016107389061257c565b505b600e54306000908152602081905260408120549091611590916125c2565b601b54909150811080159081906115aa5750601c5460ff16155b80156115ce57506001600160a01b03851660009081526017602052604090205460ff165b80156115e857506006546001600160a01b03878116911614155b801561160257506005546001600160a01b03878116911614155b801561161c57506005546001600160a01b03868116911614155b801561164157506001600160a01b03851660009081526018602052604090205460ff16155b801561166657506001600160a01b03861660009081526018602052604090205460ff16155b156118a257601b54601c805460ff19166001179055601654909250156118975761168f82611e2c565b6014541561179f57601654601454600091906116ab904761237a565b6116b59190612422565b600a546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611707576040519150601f19603f3d011682016040523d82523d6000602084013e61170c565b606091505b50509050806117565760405162461bcd60e51b81526020600482015260166024820152754661696c656420746f2073656e64206465762066656560501b6044820152606401610738565b600a54604080516001600160a01b039092168252602082018490527ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa333910160405180910390a150505b601554156118975760095460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146117f8576040519150601f19603f3d011682016040523d82523d6000602084013e6117fd565b606091505b505090508061184e5760405162461bcd60e51b815260206004820152601c60248201527f4661696c656420746f2073656e64206d61726b6574696e6720666565000000006044820152606401610738565b600954604080516001600160a01b039092168252602082018490527ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa333910160405180910390a150505b601c805460ff191690555b601c546001600160a01b03871660009081526018602052604090205460ff918216159116806118e957506001600160a01b03861660009081526018602052604090205460ff165b15611901575060006118fc878787611f86565b611add565b601a54601954611911919061226f565b841115801561193957506001600160a01b03871660009081526018602052604090205460ff16155b801561195e57506001600160a01b03861660009081526018602052604090205460ff16155b801561198357506001600160a01b03861660009081526017602052604090205460ff16155b15611a3e57611997486401a13b860061226f565b3a11156119db5760405162461bcd60e51b815260206004820152601260248201527108ec2e640e0e4d2c6ca40e8dede40d0d2ced60731b6044820152606401610738565b6001600160a01b0386166000908152602081905260409020546002546103e890611a0690600561237a565b611a109190612422565b611a1a878361226f565b1115611a385760405162461bcd60e51b81526004016107389061257c565b50611add565b6001600160a01b03861660009081526017602052604090205460ff16158015611a8057506001600160a01b03871660009081526017602052604090205460ff16155b8015611aa557506001600160a01b03871660009081526018602052604090205460ff16155b8015611aca57506001600160a01b03861660009081526018602052604090205460ff16155b15611add57506000611add878787611f86565b8015611bce576013546000906103e890611af7908861237a565b611b019190612422565b905060006103e860146002015488611b19919061237a565b611b239190612422565b6001600160a01b03891660009081526017602052604090205490915060ff168015611b4f575060165415155b15611b7b57611b5e81886125c2565b9650611b6b893083611f86565b611b76898989611f86565b611bcb565b6001600160a01b03891660009081526017602052604090205460ff168015611ba4575060135415155b15611bc057611bb382886125c2565b9650611b6b893084611f86565b611bcb898989611f86565b50505b50505050505050565b6001600160a01b038216611c375760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610738565b6001600160a01b03821660009081526020819052604090205481811015611cab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610738565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611322565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60105460ff168015611d685750600f54600c54105b156108bb576000611d77610caa565b600c54600f8054929350918110611d9057611d906125d9565b90600052602060002001548111156108a657600d54611daf3082611bd7565b80600c6002016000828254611dc491906125c2565b9091555050600c8054906000611dd9836125ef565b909155505060405181815230907ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb69060200160405180910390a2600e54600003611e28576010805460ff191690555b5050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e6157611e616125d9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611eba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ede9190612399565b81600181518110611ef157611ef16125d9565b6001600160a01b039283166020918202929092010152600654611f17913091168461120a565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f50908590600090869030904290600401612608565b600060405180830381600087803b158015611f6a57600080fd5b505af1158015611f7e573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611fac5760405162461bcd60e51b8152600401610738906124f4565b6001600160a01b038216611fd25760405162461bcd60e51b815260040161073890612539565b6001600160a01b0383166000908152602081905260409020548181101561204a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610738565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36113a3565b6001600160a01b03811681146108a657600080fd5b6000602082840312156120d757600080fd5b81356120e2816120b0565b9392505050565b600060208083528351808285015260005b81811015612116578581018301518582016040015282016120fa565b81811115612128576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561215157600080fd5b823561215c816120b0565b946020939093013593505050565b60008060006060848603121561217f57600080fd5b833561218a816120b0565b9250602084013561219a816120b0565b929592945050506040919091013590565b6000602082840312156121bd57600080fd5b5035919050565b600080604083850312156121d757600080fd5b50508035926020909101359150565b600080604083850312156121f957600080fd5b8235612204816120b0565b91506020830135612214816120b0565b809150509250929050565b600181811c9082168061223357607f821691505b60208210810361225357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561228257612282612259565b500190565b600181815b808511156122c25781600019048211156122a8576122a8612259565b808516156122b557918102915b93841c939080029061228c565b509250929050565b6000826122d95750600161083b565b816122e65750600061083b565b81600181146122fc576002811461230657612322565b600191505061083b565b60ff84111561231757612317612259565b50506001821b61083b565b5060208310610133831016604e8410600b8410161715612345575081810a61083b565b61234f8383612287565b806000190482111561236357612363612259565b029392505050565b60006120e260ff8416836122ca565b600081600019048311821515161561239457612394612259565b500290565b6000602082840312156123ab57600080fd5b81516120e2816120b0565b80516001600160701b03811681146123cd57600080fd5b919050565b6000806000606084860312156123e757600080fd5b6123f0846123b6565b92506123fe602085016123b6565b9150604084015163ffffffff8116811461241757600080fd5b809150509250925092565b60008261243f57634e487b7160e01b600052601260045260246000fd5b500490565b805169ffffffffffffffffffff811681146123cd57600080fd5b600080600080600060a0868803121561247657600080fd5b61247f86612444565b94506020860151935060408601519250606086015191506124a260808701612444565b90509295509295909350565b6000602082840312156124c057600080fd5b815160ff811681146120e257600080fd5b600060ff821660ff8416808210156124eb576124eb612259565b90039392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d206040820152651dd85b1b195d60d21b606082015260800190565b6000828210156125d4576125d4612259565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161260157612601612259565b5060010190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126585784516001600160a01b031683529383019391830191600101612633565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e39a32fa93a7141781ec0a091bb3cb11cdfa2be1baaf4cebd973e5e471f1753964736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ba5b4d2ac5e13dfcafc5418dfa0c01ee595174cf000000000000000000000000e27cf06b1df3d129921b2d5516b2a2e35f4ed620000000000000000000000000eb7f0be32c87a55205cb0d2bffb21f4fbeac8f1e0000000000000000000000000937af884cba1a4cd6e68f733047dadb0bec52fa00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000015180
-----Decoded View---------------
Arg [0] : _cexWallet (address): 0xbA5b4D2aC5E13dfCaFc5418dfA0C01ee595174cf
Arg [1] : _marketingWallet (address): 0xe27CF06B1df3d129921b2D5516b2A2E35f4eD620
Arg [2] : _devWallet (address): 0xeB7f0bE32c87a55205CB0D2BFfb21F4FBeaC8f1e
Arg [3] : _platformWallet (address): 0x0937aF884Cba1a4cd6E68f733047DaDb0bEc52Fa
Arg [4] : _end (uint256): 100
Arg [5] : _maxWalletTimer (uint256): 86400
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000ba5b4d2ac5e13dfcafc5418dfa0c01ee595174cf
Arg [1] : 000000000000000000000000e27cf06b1df3d129921b2d5516b2a2e35f4ed620
Arg [2] : 000000000000000000000000eb7f0be32c87a55205cb0d2bffb21f4fbeac8f1e
Arg [3] : 0000000000000000000000000937af884cba1a4cd6e68f733047dadb0bec52fa
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000015180
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.