ETH Price: $2,515.03 (+2.48%)

Token

ShibArmyStrong (SAS)
 

Overview

Max Total Supply

1,000,000,000,000,000,000 SAS

Holders

123 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0xdea...069
Balance
19,195,982,516,607.044341259751327675 SAS

Value
$0.00
0xdead000000000000000042069420694206942069
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

While creating SAS, which adopted the burning of 3 tokens belonging to the shiba inu ecosystem, this burning feature was created in such a way that it could not be canceled.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ShibArmyStrong

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 1 : ShibArmyStrong.sol
// SPDX-License-Identifier: UNLICENSED
// 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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

interface BURNTOKEN {
  function burn(uint256 amount) external;
}


pragma solidity ^0.8.0;

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
}

interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract ShibArmyStrong is Ownable, ERC20('ShibArmyStrong', 'SAS') {
       
    IRouter public Router;
    uint256 public initialSupply;
    uint256 public devFee;
    address public devAddress;
    
    uint256 public burnFee;
    address public burnAddress;
    
    uint256 public shibFee;
    address public ShibCoin;
    
    uint256 public boneFee;
    address public BoneCoin;
    
    uint256 public leashFee;
    address public LeashCoin;
    
    uint256 public swapAtAmount;
    uint256 public swapAtLimitAmount;
    address payable public  marketingWallet;
    address public swapPair;
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => bool) private _isExcludedFromFees;
    
    constructor()  {
       devFee = 2;  // 100 = 1%
       devAddress = 0x23Cc57fdF60e1d35Fc69c34A91630f6818FC3772;

       burnFee = 2; // 100 = 1%
       burnAddress = 0xdEAD000000000000000042069420694206942069;
       
       shibFee = 3; // 100 = 1%
       ShibCoin = 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE;

       boneFee = 2; // 100 = 1%
       BoneCoin = 0x9813037ee2218799597d83D4a5B6F3b6778218d9;

       leashFee = 1; // 100 = 1%
       LeashCoin = 0x27C70Cd1946795B66be9d954418546998b546634;

       marketingWallet = payable(0xf807d447c118AC5fC04b4a757645e50062e518b2);
       initialSupply = 1 * (10**18);
       excludeFromFees(owner(), true);
       excludeFromFees(devAddress, true);
       excludeFromFees(address(this), true);
       excludeFromFees(marketingWallet, true);
       _mint(owner(), initialSupply * (10**18));
       swapAtAmount = totalSupply() * 10 / 1000000;  // .001% 
       swapAtLimitAmount = totalSupply() * 10 / 10000;  // .10% 
       updateSwapRouter(0x03f7724180AA6b939894B5Ca4314783B0b36b329);   
    }
   
     event ExcludeFromFees(address indexed account, bool isExcluded);
     event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    
    function setMarketingWallet(address payable newMarketingWallet) public onlyOwner {
         if (_isExcludedFromFees[marketingWallet] = true) excludeFromFees(marketingWallet, false);
        marketingWallet = newMarketingWallet;
         if (_isExcludedFromFees[marketingWallet] = false) excludeFromFees(marketingWallet, true);
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function _setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
   
    function updateSwapRouter(address newAddress) public onlyOwner {
        require(newAddress != address(Router), "The router already has that address");
        Router = IRouter(newAddress);
        address SASPair = IFactory(Router.factory())
            .getPair(address(this), Router.WETH());
        if(SASPair == address(0)) SASPair = IFactory(Router.factory()).createPair(address(this), Router.WETH());
        if (automatedMarketMakerPairs[SASPair] != true && SASPair != address(0) ){
            _setAutomatedMarketMakerPair(SASPair, true);
        }
          _approve(address(this), address(Router), ~uint256(0));
        
        swapPair = SASPair;
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function setSwapAtAmount(uint256 _newSwapAtAmount) external onlyOwner {
        swapAtAmount = _newSwapAtAmount;
    }
    
    function setSwapAtLimitAmount(uint256 _newSwapAtLimitAmount) external onlyOwner {
        swapAtLimitAmount = _newSwapAtLimitAmount;
    }

    bool private inSwapAndLiquify;
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to])
        {
            require(amount <= swapAtLimitAmount, "ERC20: The transfer amount exceeds the Limit. Choose a lower amount.");
            if(automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]) {

                uint256 burnAmount;
                uint256 devAmount;
                uint256 SBLAmount;
                
                devAmount = (amount * devFee) / 10000;
                super._transfer(from, devAddress, devAmount);
                amount -= devAmount;
                
                burnAmount = (amount * burnFee) / 10000;
                super._transfer(from, burnAddress, burnAmount);
                amount -= burnAmount;
                
                SBLAmount = (amount * (shibFee+boneFee+leashFee)) / 10000;
                super._transfer(from, address(this), SBLAmount);
                amount -= SBLAmount;

                
                
                

                if (balanceOf(address(this)) > swapAtAmount && !inSwapAndLiquify && automatedMarketMakerPairs[to]) SwapFees();
                
            }
            super._transfer(from, to, amount);
        }
        else
        {
            super._transfer(from, to, amount);
        }
   }

    function SwapFees() private lockTheSwap {
       
       uint256 varib;
       uint256 burnAmount;
          address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = Router.WETH();
            varib=balanceOf(address(this))/100;
                Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                    varib,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );

            burnAmount = address(this).balance * shibFee / 100;
            address[] memory path1 = new address[](2);
            path1[0] = Router.WETH();
            path1[1] = ShibCoin;

                Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: burnAmount} (
                    0,
                    path1,
                    address(this),
                    block.timestamp
                );
            varib=ERC20(ShibCoin).balanceOf(address(this))/100;
            ERC20(ShibCoin).transfer(burnAddress, varib);
            
            burnAmount = address(this).balance * boneFee / 100;
            address[] memory path2 = new address[](2);
            path2[0] = Router.WETH();
            path2[1] = BoneCoin;

                Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: burnAmount} (
                    0,
                    path2,
                    address(this),
                    block.timestamp
                );
            varib=ERC20(BoneCoin).balanceOf(address(this))/100;
            ERC20(BoneCoin).transfer(burnAddress, varib);


            burnAmount = address(this).balance * leashFee / 100;
            address[] memory path3 = new address[](2);
            path3[0] = Router.WETH();
            path3[1] = LeashCoin;

                Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: burnAmount} (
                    0,
                    path3,
                    address(this),
                    block.timestamp
                );
            varib=ERC20(LeashCoin).balanceOf(address(this))/100;
            ERC20(LeashCoin).transfer(burnAddress, varib);

    }

        function manualSwapAndBurn() external onlyOwner {
       
       uint256 varib;
       uint256 burnAmount;
          address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = Router.WETH();
            varib=balanceOf(address(this))/100;
                Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                    varib,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );

            burnAmount = address(this).balance * shibFee / 100;
            address[] memory path1 = new address[](2);
            path1[0] = Router.WETH();
            path1[1] = ShibCoin;

                Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: burnAmount} (
                    0,
                    path1,
                    address(this),
                    block.timestamp
                );
            varib=ERC20(ShibCoin).balanceOf(address(this))/100;
            ERC20(ShibCoin).transfer(burnAddress, varib);
            
            burnAmount = address(this).balance * boneFee / 100;
            address[] memory path2 = new address[](2);
            path2[0] = Router.WETH();
            path2[1] = BoneCoin;

                Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: burnAmount} (
                    0,
                    path2,
                    address(this),
                    block.timestamp
                );
            varib=ERC20(BoneCoin).balanceOf(address(this))/100;
            ERC20(BoneCoin).transfer(burnAddress, varib);


            burnAmount = address(this).balance * leashFee / 100;
            address[] memory path3 = new address[](2);
            path3[0] = Router.WETH();
            path3[1] = LeashCoin;

                Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: burnAmount} (
                    0,
                    path3,
                    address(this),
                    block.timestamp
                );
            varib=ERC20(LeashCoin).balanceOf(address(this))/100;
            ERC20(LeashCoin).transfer(burnAddress, varib);

    }

        function withdawlETH() external onlyOwner {
            payable(msg.sender).transfer(address(this).balance);
        }

        function withdrawlToken(address _tokenAddress) external onlyOwner {
            ERC20(_tokenAddress).transfer(msg.sender, ERC20(_tokenAddress).balanceOf(address(this)));
        }   
 

    // to receive Eth From Router when Swapping
    receive() external payable {}
    
    
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"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":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":"BoneCoin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LeashCoin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ShibCoin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"_setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"boneFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwapAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[{"internalType":"address payable","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAtAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAtLimitAmount","type":"uint256"}],"name":"setSwapAtLimitAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shibFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtLimitAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdawlETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawlToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020016d5368696241726d795374726f6e6760901b8152506040518060400160405280600381526020016253415360e81b8152506200006f620000696200028160201b60201c565b62000285565b60046200007d838262000bd9565b5060056200008c828262000bd9565b505060026008819055600980546001600160a01b03199081167323cc57fdf60e1d35fc69c34a91630f6818fc377217909155600a829055600b8054821673dead0000000000000000420694206942069420691790556003600c55600d805482167395ad61b0a150d79219dcf64e1e6cc01f0b64c4ce179055600e91909155600f80548216739813037ee2218799597d83d4a5b6f3b6778218d917905560016010556011805482167327c70cd1946795b66be9d954418546998b5466341790556014805490911673f807d447c118ac5fc04b4a757645e50062e518b217905550670de0b6b3a7640000600755620001966200018e6000546001600160a01b031690565b6001620002d5565b600954620001af906001600160a01b03166001620002d5565b620001bc306001620002d5565b601454620001d5906001600160a01b03166001620002d5565b62000209620001ec6000546001600160a01b031690565b6007546200020390670de0b6b3a764000062000cbb565b620003c7565b620f42406200021760035490565b6200022490600a62000cbb565b62000230919062000cdb565b6012556127106200024060035490565b6200024d90600a62000cbb565b62000259919062000cdb565b6013556200027b7303f7724180aa6b939894b5ca4314783b0b36b329620004ac565b62000d46565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620002df620008b4565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503620003685760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084015b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200041f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200035f565b806003600082825462000433919062000cfe565b90915550506001600160a01b038216600090815260016020526040812080548392906200046290849062000cfe565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b620004b6620008b4565b6006546001600160a01b0390811690821603620005225760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016200035f565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa1580156200057f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005a5919062000d14565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000608573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200062e919062000d14565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156200067a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006a0919062000d14565b90506001600160a01b0381166200082b57600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000705573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200072b919062000d14565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200078e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007b4919062000d14565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000802573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000828919062000d14565b90505b6001600160a01b03811660009081526016602052604090205460ff1615156001148015906200086257506001600160a01b03811615155b1562000875576200087581600162000917565b600654620008919030906001600160a01b031660001962000a0d565b601580546001600160a01b0319166001600160a01b039290921691909117905550565b6000546001600160a01b03163314620009105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200035f565b565b505050565b62000921620008b4565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503620009b95760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016200035f565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831662000a715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200035f565b6001600160a01b03821662000ad45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200035f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000b6057607f821691505b60208210810362000b8157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200091257600081815260208120601f850160051c8101602086101562000bb05750805b601f850160051c820191505b8181101562000bd15782815560010162000bbc565b505050505050565b81516001600160401b0381111562000bf55762000bf562000b35565b62000c0d8162000c06845462000b4b565b8462000b87565b602080601f83116001811462000c45576000841562000c2c5750858301515b600019600386901b1c1916600185901b17855562000bd1565b600085815260208120601f198616915b8281101562000c765788860151825594840194600190910190840162000c55565b508582101562000c955787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000cd55762000cd562000ca5565b92915050565b60008262000cf957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000cd55762000cd562000ca5565b60006020828403121562000d2757600080fd5b81516001600160a01b038116811462000d3f57600080fd5b9392505050565b612eeb8062000d566000396000f3fe6080604052600436106102ca5760003560e01c80637b7d486c11610179578063b62496f5116100d6578063dd62ed3e1161008a578063f2fde38b11610064578063f2fde38b146107b7578063f6d7eade146107d7578063fce589d8146107f757600080fd5b8063dd62ed3e1461073b578063e29e46c514610781578063ed4e385d1461079757600080fd5b8063b98b677f116100bb578063b98b677f146106db578063c0246668146106fb578063d1c12ebc1461071b57600080fd5b8063b62496f514610696578063b9413b51146106c657600080fd5b806397817ad51161012d578063a7f7b36f11610112578063a7f7b36f14610636578063a9059cbb14610656578063ac5cad561461067657600080fd5b806397817ad514610601578063a457c2d71461061657600080fd5b80638da5cb5b1161015e5780638da5cb5b146105b857806393a37908146105d657806395d89b41146105ec57600080fd5b80637b7d486c1461058257806386917524146105a257600080fd5b80633c65b1e21161022757806370a08231116101db578063715018a6116101c0578063715018a61461053757806375f0a8741461054c5780637a7cb5921461056c57600080fd5b806370a08231146104e157806370d5ae051461051757600080fd5b80635d098b381161020c5780635d098b38146104895780636402511e146104ab5780636827e764146104cb57600080fd5b80633c65b1e2146104305780634fbee1931461045057600080fd5b80632eab47011161027e578063378dc3dc11610263578063378dc3dc146103da57806339509351146103f05780633ad10ef61461041057600080fd5b80632eab4701146103a8578063313ce567146103be57600080fd5b806318160ddd116102af57806318160ddd1461033157806323b872dd1461035057806326991cc81461037057600080fd5b806306fdde03146102d6578063095ea7b31461030157600080fd5b366102d157005b600080fd5b3480156102e257600080fd5b506102eb61080d565b6040516102f89190612b48565b60405180910390f35b34801561030d57600080fd5b5061032161031c366004612bc9565b61089f565b60405190151581526020016102f8565b34801561033d57600080fd5b506003545b6040519081526020016102f8565b34801561035c57600080fd5b5061032161036b366004612bf5565b6108b9565b34801561037c57600080fd5b50601554610390906001600160a01b031681565b6040516001600160a01b0390911681526020016102f8565b3480156103b457600080fd5b50610342600e5481565b3480156103ca57600080fd5b50604051601281526020016102f8565b3480156103e657600080fd5b5061034260075481565b3480156103fc57600080fd5b5061032161040b366004612bc9565b6108dd565b34801561041c57600080fd5b50600954610390906001600160a01b031681565b34801561043c57600080fd5b50600d54610390906001600160a01b031681565b34801561045c57600080fd5b5061032161046b366004612c36565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561049557600080fd5b506104a96104a4366004612c36565b61091c565b005b3480156104b757600080fd5b506104a96104c6366004612c5a565b6109a5565b3480156104d757600080fd5b5061034260085481565b3480156104ed57600080fd5b506103426104fc366004612c36565b6001600160a01b031660009081526001602052604090205490565b34801561052357600080fd5b50600b54610390906001600160a01b031681565b34801561054357600080fd5b506104a96109b2565b34801561055857600080fd5b50601454610390906001600160a01b031681565b34801561057857600080fd5b5061034260135481565b34801561058e57600080fd5b50600f54610390906001600160a01b031681565b3480156105ae57600080fd5b5061034260125481565b3480156105c457600080fd5b506000546001600160a01b0316610390565b3480156105e257600080fd5b5061034260105481565b3480156105f857600080fd5b506102eb6109c6565b34801561060d57600080fd5b506104a96109d5565b34801561062257600080fd5b50610321610631366004612bc9565b610a09565b34801561064257600080fd5b506104a9610651366004612c81565b610ab8565b34801561066257600080fd5b50610321610671366004612bc9565b610baa565b34801561068257600080fd5b506104a9610691366004612c36565b610bb8565b3480156106a257600080fd5b506103216106b1366004612c36565b60166020526000908152604090205460ff1681565b3480156106d257600080fd5b506104a9610cbd565b3480156106e757600080fd5b506104a96106f6366004612c36565b61156b565b34801561070757600080fd5b506104a9610716366004612c81565b6119d3565b34801561072757600080fd5b50601154610390906001600160a01b031681565b34801561074757600080fd5b50610342610756366004612cba565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561078d57600080fd5b50610342600c5481565b3480156107a357600080fd5b506104a96107b2366004612c5a565b611ad0565b3480156107c357600080fd5b506104a96107d2366004612c36565b611add565b3480156107e357600080fd5b50600654610390906001600160a01b031681565b34801561080357600080fd5b50610342600a5481565b60606004805461081c90612ce8565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612ce8565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b6000336108ad818585611b6a565b60019150505b92915050565b6000336108c7858285611cc2565b6108d2858585611d54565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906108ad9082908690610917908790612d38565b611b6a565b610924611fbd565b6014546001600160a01b03166000908152601760205260409020805460ff19166001179055601454610960906001600160a01b031660006119d3565b6014805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556000908152601760205260409020805460ff191690555b50565b6109ad611fbd565b601255565b6109ba611fbd565b6109c46000612017565b565b60606005805461081c90612ce8565b6109dd611fbd565b60405133904780156108fc02916000818181858888f193505050501580156109a2573d6000803e3d6000fd5b3360008181526002602090815260408083206001600160a01b038716845290915281205490919083811015610aab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108d28286868403611b6a565b610ac0611fbd565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503610b565760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610aa2565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000336108ad818585611d54565b610bc0611fbd565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190612d4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610c95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb99190612d64565b5050565b610cc5611fbd565b6040805160028082526060820183526000928392839290916020830190803683370190505090503081600081518110610d0057610d00612d81565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612d97565b81600181518110610d9057610d90612d81565b6001600160a01b0390921660209283029190910182015230600090815260019091526040902054606490610dc49190612db4565b6006546040517f791ac9470000000000000000000000000000000000000000000000000000000081529194506001600160a01b03169063791ac94790610e17908690600090869030904290600401612e1a565b600060405180830381600087803b158015610e3157600080fd5b505af1158015610e45573d6000803e3d6000fd5b505050506064600c5447610e599190612e56565b610e639190612db4565b60408051600280825260608201835292945060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef69190612d97565b81600081518110610f0957610f09612d81565b6001600160a01b039283166020918202929092010152600d54825191169082906001908110610f3a57610f3a612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de95908590610f8090600090869030904290600401612e6d565b6000604051808303818588803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b5050600d546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa158015610ffd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110219190612d4b565b61102b9190612db4565b600d54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929650169063a9059cbb906044016020604051808303816000875af1158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612d64565b506064600e54476110b79190612e56565b6110c19190612db4565b60408051600280825260608201835292955060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111549190612d97565b8160008151811061116757611167612d81565b6001600160a01b039283166020918202929092010152600f5482519116908290600190811061119857611198612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de959086906111de90600090869030904290600401612e6d565b6000604051808303818588803b1580156111f757600080fd5b505af115801561120b573d6000803e3d6000fd5b5050600f546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa15801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190612d4b565b6112899190612db4565b600f54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929750169063a9059cbb906044016020604051808303816000875af11580156112e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113049190612d64565b506064601054476113159190612e56565b61131f9190612db4565b60408051600280825260608201835292965060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561138e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b29190612d97565b816000815181106113c5576113c5612d81565b6001600160a01b0392831660209182029290920101526011548251911690829060019081106113f6576113f6612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de9590879061143c90600090869030904290600401612e6d565b6000604051808303818588803b15801561145557600080fd5b505af1158015611469573d6000803e3d6000fd5b50506011546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa1580156114b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dd9190612d4b565b6114e79190612db4565b601154600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929850169063a9059cbb906044016020604051808303816000875af115801561153e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115629190612d64565b50505050505050565b611573611fbd565b6006546001600160a01b03908116908216036115f75760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa158015611679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169d9190612d97565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117239190612d97565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117aa9190612d97565b90506001600160a01b03811661194357600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561180d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118319190612d97565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b79190612d97565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561191c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119409190612d97565b90505b6001600160a01b03811660009081526016602052604090205460ff16151560011480159061197957506001600160a01b03811615155b1561198957611989816001610ab8565b6006546119a39030906001600160a01b0316600019611b6a565b6015805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039290921691909117905550565b6119db611fbd565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503611a715760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611ad8611fbd565b601355565b611ae5611fbd565b6001600160a01b038116611b615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aa2565b6109a281612017565b6001600160a01b038316611be55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b038216611c615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114611d4e5781811015611d415760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610aa2565b611d4e8484848403611b6a565b50505050565b6001600160a01b03831660009081526017602052604090205460ff16158015611d9657506001600160a01b03821660009081526017602052604090205460ff16155b15611fad57601354811115611e3a5760405162461bcd60e51b8152602060048201526044602482018190527f45524332303a20546865207472616e7366657220616d6f756e74206578636565908201527f647320746865204c696d69742e2043686f6f73652061206c6f77657220616d6f60648201527f756e742e00000000000000000000000000000000000000000000000000000000608482015260a401610aa2565b6001600160a01b03821660009081526016602052604090205460ff1680611e7957506001600160a01b03831660009081526016602052604090205460ff165b15611fad57600080600061271060085485611e949190612e56565b611e9e9190612db4565b600954909250611eb99087906001600160a01b031684612074565b611ec38285612ea2565b9350612710600a5485611ed69190612e56565b611ee09190612db4565b600b54909350611efb9087906001600160a01b031685612074565b611f058385612ea2565b9350612710601054600e54600c54611f1d9190612d38565b611f279190612d38565b611f319086612e56565b611f3b9190612db4565b9050611f48863083612074565b611f528185612ea2565b60125430600090815260016020526040902054919550108015611f78575060185460ff16155b8015611f9c57506001600160a01b03851660009081526016602052604090205460ff165b15611fa957611fa961228b565b5050505b611fb8838383612074565b505050565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa2565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120f05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b03821661216c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b038316600090815260016020526040902054818110156121fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290612232908490612d38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161227e91815260200190565b60405180910390a3611d4e565b6018805460ff1916600117905560408051600280825260608201835260009283928392909160208301908036833701905050905030816000815181106122d3576122d3612d81565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561232c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123509190612d97565b8160018151811061236357612363612d81565b6001600160a01b03909216602092830291909101820152306000908152600190915260409020546064906123979190612db4565b6006546040517f791ac9470000000000000000000000000000000000000000000000000000000081529194506001600160a01b03169063791ac947906123ea908690600090869030904290600401612e1a565b600060405180830381600087803b15801561240457600080fd5b505af1158015612418573d6000803e3d6000fd5b505050506064600c544761242c9190612e56565b6124369190612db4565b60408051600280825260608201835292945060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156124a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c99190612d97565b816000815181106124dc576124dc612d81565b6001600160a01b039283166020918202929092010152600d5482519116908290600190811061250d5761250d612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de9590859061255390600090869030904290600401612e6d565b6000604051808303818588803b15801561256c57600080fd5b505af1158015612580573d6000803e3d6000fd5b5050600d546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa1580156125d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f49190612d4b565b6125fe9190612db4565b600d54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929650169063a9059cbb906044016020604051808303816000875af1158015612655573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126799190612d64565b506064600e544761268a9190612e56565b6126949190612db4565b60408051600280825260608201835292955060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015612703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127279190612d97565b8160008151811061273a5761273a612d81565b6001600160a01b039283166020918202929092010152600f5482519116908290600190811061276b5761276b612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de959086906127b190600090869030904290600401612e6d565b6000604051808303818588803b1580156127ca57600080fd5b505af11580156127de573d6000803e3d6000fd5b5050600f546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa15801561282e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128529190612d4b565b61285c9190612db4565b600f54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929750169063a9059cbb906044016020604051808303816000875af11580156128b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d79190612d64565b506064601054476128e89190612e56565b6128f29190612db4565b60408051600280825260608201835292965060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015612961573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129859190612d97565b8160008151811061299857612998612d81565b6001600160a01b0392831660209182029290920101526011548251911690829060019081106129c9576129c9612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de95908790612a0f90600090869030904290600401612e6d565b6000604051808303818588803b158015612a2857600080fd5b505af1158015612a3c573d6000803e3d6000fd5b50506011546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa158015612a8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab09190612d4b565b612aba9190612db4565b601154600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929850169063a9059cbb906044016020604051808303816000875af1158015612b11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b359190612d64565b50506018805460ff191690555050505050565b600060208083528351808285015260005b81811015612b7557858101830151858201604001528201612b59565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b03811681146109a257600080fd5b60008060408385031215612bdc57600080fd5b8235612be781612bb4565b946020939093013593505050565b600080600060608486031215612c0a57600080fd5b8335612c1581612bb4565b92506020840135612c2581612bb4565b929592945050506040919091013590565b600060208284031215612c4857600080fd5b8135612c5381612bb4565b9392505050565b600060208284031215612c6c57600080fd5b5035919050565b80151581146109a257600080fd5b60008060408385031215612c9457600080fd5b8235612c9f81612bb4565b91506020830135612caf81612c73565b809150509250929050565b60008060408385031215612ccd57600080fd5b8235612cd881612bb4565b91506020830135612caf81612bb4565b600181811c90821680612cfc57607f821691505b602082108103612d1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b3576108b3612d22565b600060208284031215612d5d57600080fd5b5051919050565b600060208284031215612d7657600080fd5b8151612c5381612c73565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612da957600080fd5b8151612c5381612bb4565b600082612dd157634e487b7160e01b600052601260045260246000fd5b500490565b600081518084526020808501945080840160005b83811015612e0f5781516001600160a01b031687529582019590820190600101612dea565b509495945050505050565b85815284602082015260a060408201526000612e3960a0830186612dd6565b6001600160a01b0394909416606083015250608001529392505050565b80820281158282048414176108b3576108b3612d22565b848152608060208201526000612e866080830186612dd6565b6001600160a01b03949094166040830152506060015292915050565b818103818111156108b3576108b3612d2256fea2646970667358221220a0d1812d016a24fe4a64ee4834c5cd6c2b583f188839818892d5f8bf7074bbce64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102ca5760003560e01c80637b7d486c11610179578063b62496f5116100d6578063dd62ed3e1161008a578063f2fde38b11610064578063f2fde38b146107b7578063f6d7eade146107d7578063fce589d8146107f757600080fd5b8063dd62ed3e1461073b578063e29e46c514610781578063ed4e385d1461079757600080fd5b8063b98b677f116100bb578063b98b677f146106db578063c0246668146106fb578063d1c12ebc1461071b57600080fd5b8063b62496f514610696578063b9413b51146106c657600080fd5b806397817ad51161012d578063a7f7b36f11610112578063a7f7b36f14610636578063a9059cbb14610656578063ac5cad561461067657600080fd5b806397817ad514610601578063a457c2d71461061657600080fd5b80638da5cb5b1161015e5780638da5cb5b146105b857806393a37908146105d657806395d89b41146105ec57600080fd5b80637b7d486c1461058257806386917524146105a257600080fd5b80633c65b1e21161022757806370a08231116101db578063715018a6116101c0578063715018a61461053757806375f0a8741461054c5780637a7cb5921461056c57600080fd5b806370a08231146104e157806370d5ae051461051757600080fd5b80635d098b381161020c5780635d098b38146104895780636402511e146104ab5780636827e764146104cb57600080fd5b80633c65b1e2146104305780634fbee1931461045057600080fd5b80632eab47011161027e578063378dc3dc11610263578063378dc3dc146103da57806339509351146103f05780633ad10ef61461041057600080fd5b80632eab4701146103a8578063313ce567146103be57600080fd5b806318160ddd116102af57806318160ddd1461033157806323b872dd1461035057806326991cc81461037057600080fd5b806306fdde03146102d6578063095ea7b31461030157600080fd5b366102d157005b600080fd5b3480156102e257600080fd5b506102eb61080d565b6040516102f89190612b48565b60405180910390f35b34801561030d57600080fd5b5061032161031c366004612bc9565b61089f565b60405190151581526020016102f8565b34801561033d57600080fd5b506003545b6040519081526020016102f8565b34801561035c57600080fd5b5061032161036b366004612bf5565b6108b9565b34801561037c57600080fd5b50601554610390906001600160a01b031681565b6040516001600160a01b0390911681526020016102f8565b3480156103b457600080fd5b50610342600e5481565b3480156103ca57600080fd5b50604051601281526020016102f8565b3480156103e657600080fd5b5061034260075481565b3480156103fc57600080fd5b5061032161040b366004612bc9565b6108dd565b34801561041c57600080fd5b50600954610390906001600160a01b031681565b34801561043c57600080fd5b50600d54610390906001600160a01b031681565b34801561045c57600080fd5b5061032161046b366004612c36565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561049557600080fd5b506104a96104a4366004612c36565b61091c565b005b3480156104b757600080fd5b506104a96104c6366004612c5a565b6109a5565b3480156104d757600080fd5b5061034260085481565b3480156104ed57600080fd5b506103426104fc366004612c36565b6001600160a01b031660009081526001602052604090205490565b34801561052357600080fd5b50600b54610390906001600160a01b031681565b34801561054357600080fd5b506104a96109b2565b34801561055857600080fd5b50601454610390906001600160a01b031681565b34801561057857600080fd5b5061034260135481565b34801561058e57600080fd5b50600f54610390906001600160a01b031681565b3480156105ae57600080fd5b5061034260125481565b3480156105c457600080fd5b506000546001600160a01b0316610390565b3480156105e257600080fd5b5061034260105481565b3480156105f857600080fd5b506102eb6109c6565b34801561060d57600080fd5b506104a96109d5565b34801561062257600080fd5b50610321610631366004612bc9565b610a09565b34801561064257600080fd5b506104a9610651366004612c81565b610ab8565b34801561066257600080fd5b50610321610671366004612bc9565b610baa565b34801561068257600080fd5b506104a9610691366004612c36565b610bb8565b3480156106a257600080fd5b506103216106b1366004612c36565b60166020526000908152604090205460ff1681565b3480156106d257600080fd5b506104a9610cbd565b3480156106e757600080fd5b506104a96106f6366004612c36565b61156b565b34801561070757600080fd5b506104a9610716366004612c81565b6119d3565b34801561072757600080fd5b50601154610390906001600160a01b031681565b34801561074757600080fd5b50610342610756366004612cba565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561078d57600080fd5b50610342600c5481565b3480156107a357600080fd5b506104a96107b2366004612c5a565b611ad0565b3480156107c357600080fd5b506104a96107d2366004612c36565b611add565b3480156107e357600080fd5b50600654610390906001600160a01b031681565b34801561080357600080fd5b50610342600a5481565b60606004805461081c90612ce8565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612ce8565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b6000336108ad818585611b6a565b60019150505b92915050565b6000336108c7858285611cc2565b6108d2858585611d54565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906108ad9082908690610917908790612d38565b611b6a565b610924611fbd565b6014546001600160a01b03166000908152601760205260409020805460ff19166001179055601454610960906001600160a01b031660006119d3565b6014805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556000908152601760205260409020805460ff191690555b50565b6109ad611fbd565b601255565b6109ba611fbd565b6109c46000612017565b565b60606005805461081c90612ce8565b6109dd611fbd565b60405133904780156108fc02916000818181858888f193505050501580156109a2573d6000803e3d6000fd5b3360008181526002602090815260408083206001600160a01b038716845290915281205490919083811015610aab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108d28286868403611b6a565b610ac0611fbd565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503610b565760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610aa2565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000336108ad818585611d54565b610bc0611fbd565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190612d4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610c95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb99190612d64565b5050565b610cc5611fbd565b6040805160028082526060820183526000928392839290916020830190803683370190505090503081600081518110610d0057610d00612d81565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612d97565b81600181518110610d9057610d90612d81565b6001600160a01b0390921660209283029190910182015230600090815260019091526040902054606490610dc49190612db4565b6006546040517f791ac9470000000000000000000000000000000000000000000000000000000081529194506001600160a01b03169063791ac94790610e17908690600090869030904290600401612e1a565b600060405180830381600087803b158015610e3157600080fd5b505af1158015610e45573d6000803e3d6000fd5b505050506064600c5447610e599190612e56565b610e639190612db4565b60408051600280825260608201835292945060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef69190612d97565b81600081518110610f0957610f09612d81565b6001600160a01b039283166020918202929092010152600d54825191169082906001908110610f3a57610f3a612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de95908590610f8090600090869030904290600401612e6d565b6000604051808303818588803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b5050600d546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa158015610ffd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110219190612d4b565b61102b9190612db4565b600d54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929650169063a9059cbb906044016020604051808303816000875af1158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612d64565b506064600e54476110b79190612e56565b6110c19190612db4565b60408051600280825260608201835292955060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111549190612d97565b8160008151811061116757611167612d81565b6001600160a01b039283166020918202929092010152600f5482519116908290600190811061119857611198612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de959086906111de90600090869030904290600401612e6d565b6000604051808303818588803b1580156111f757600080fd5b505af115801561120b573d6000803e3d6000fd5b5050600f546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa15801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190612d4b565b6112899190612db4565b600f54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929750169063a9059cbb906044016020604051808303816000875af11580156112e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113049190612d64565b506064601054476113159190612e56565b61131f9190612db4565b60408051600280825260608201835292965060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561138e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b29190612d97565b816000815181106113c5576113c5612d81565b6001600160a01b0392831660209182029290920101526011548251911690829060019081106113f6576113f6612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de9590879061143c90600090869030904290600401612e6d565b6000604051808303818588803b15801561145557600080fd5b505af1158015611469573d6000803e3d6000fd5b50506011546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa1580156114b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dd9190612d4b565b6114e79190612db4565b601154600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929850169063a9059cbb906044016020604051808303816000875af115801561153e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115629190612d64565b50505050505050565b611573611fbd565b6006546001600160a01b03908116908216036115f75760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa158015611679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169d9190612d97565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117239190612d97565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117aa9190612d97565b90506001600160a01b03811661194357600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561180d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118319190612d97565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b79190612d97565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561191c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119409190612d97565b90505b6001600160a01b03811660009081526016602052604090205460ff16151560011480159061197957506001600160a01b03811615155b1561198957611989816001610ab8565b6006546119a39030906001600160a01b0316600019611b6a565b6015805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039290921691909117905550565b6119db611fbd565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503611a715760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611ad8611fbd565b601355565b611ae5611fbd565b6001600160a01b038116611b615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aa2565b6109a281612017565b6001600160a01b038316611be55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b038216611c615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114611d4e5781811015611d415760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610aa2565b611d4e8484848403611b6a565b50505050565b6001600160a01b03831660009081526017602052604090205460ff16158015611d9657506001600160a01b03821660009081526017602052604090205460ff16155b15611fad57601354811115611e3a5760405162461bcd60e51b8152602060048201526044602482018190527f45524332303a20546865207472616e7366657220616d6f756e74206578636565908201527f647320746865204c696d69742e2043686f6f73652061206c6f77657220616d6f60648201527f756e742e00000000000000000000000000000000000000000000000000000000608482015260a401610aa2565b6001600160a01b03821660009081526016602052604090205460ff1680611e7957506001600160a01b03831660009081526016602052604090205460ff165b15611fad57600080600061271060085485611e949190612e56565b611e9e9190612db4565b600954909250611eb99087906001600160a01b031684612074565b611ec38285612ea2565b9350612710600a5485611ed69190612e56565b611ee09190612db4565b600b54909350611efb9087906001600160a01b031685612074565b611f058385612ea2565b9350612710601054600e54600c54611f1d9190612d38565b611f279190612d38565b611f319086612e56565b611f3b9190612db4565b9050611f48863083612074565b611f528185612ea2565b60125430600090815260016020526040902054919550108015611f78575060185460ff16155b8015611f9c57506001600160a01b03851660009081526016602052604090205460ff165b15611fa957611fa961228b565b5050505b611fb8838383612074565b505050565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa2565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120f05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b03821661216c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b038316600090815260016020526040902054818110156121fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610aa2565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290612232908490612d38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161227e91815260200190565b60405180910390a3611d4e565b6018805460ff1916600117905560408051600280825260608201835260009283928392909160208301908036833701905050905030816000815181106122d3576122d3612d81565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561232c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123509190612d97565b8160018151811061236357612363612d81565b6001600160a01b03909216602092830291909101820152306000908152600190915260409020546064906123979190612db4565b6006546040517f791ac9470000000000000000000000000000000000000000000000000000000081529194506001600160a01b03169063791ac947906123ea908690600090869030904290600401612e1a565b600060405180830381600087803b15801561240457600080fd5b505af1158015612418573d6000803e3d6000fd5b505050506064600c544761242c9190612e56565b6124369190612db4565b60408051600280825260608201835292945060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156124a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c99190612d97565b816000815181106124dc576124dc612d81565b6001600160a01b039283166020918202929092010152600d5482519116908290600190811061250d5761250d612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de9590859061255390600090869030904290600401612e6d565b6000604051808303818588803b15801561256c57600080fd5b505af1158015612580573d6000803e3d6000fd5b5050600d546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa1580156125d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f49190612d4b565b6125fe9190612db4565b600d54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929650169063a9059cbb906044016020604051808303816000875af1158015612655573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126799190612d64565b506064600e544761268a9190612e56565b6126949190612db4565b60408051600280825260608201835292955060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015612703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127279190612d97565b8160008151811061273a5761273a612d81565b6001600160a01b039283166020918202929092010152600f5482519116908290600190811061276b5761276b612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de959086906127b190600090869030904290600401612e6d565b6000604051808303818588803b1580156127ca57600080fd5b505af11580156127de573d6000803e3d6000fd5b5050600f546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa15801561282e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128529190612d4b565b61285c9190612db4565b600f54600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929750169063a9059cbb906044016020604051808303816000875af11580156128b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d79190612d64565b506064601054476128e89190612e56565b6128f29190612db4565b60408051600280825260608201835292965060009290916020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015612961573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129859190612d97565b8160008151811061299857612998612d81565b6001600160a01b0392831660209182029290920101526011548251911690829060019081106129c9576129c9612d81565b6001600160a01b03928316602091820292909201015260065460405163b6f9de9560e01b815291169063b6f9de95908790612a0f90600090869030904290600401612e6d565b6000604051808303818588803b158015612a2857600080fd5b505af1158015612a3c573d6000803e3d6000fd5b50506011546040516370a0823160e01b8152306004820152606494506001600160a01b0390911692506370a082319150602401602060405180830381865afa158015612a8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab09190612d4b565b612aba9190612db4565b601154600b5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929850169063a9059cbb906044016020604051808303816000875af1158015612b11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b359190612d64565b50506018805460ff191690555050505050565b600060208083528351808285015260005b81811015612b7557858101830151858201604001528201612b59565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b03811681146109a257600080fd5b60008060408385031215612bdc57600080fd5b8235612be781612bb4565b946020939093013593505050565b600080600060608486031215612c0a57600080fd5b8335612c1581612bb4565b92506020840135612c2581612bb4565b929592945050506040919091013590565b600060208284031215612c4857600080fd5b8135612c5381612bb4565b9392505050565b600060208284031215612c6c57600080fd5b5035919050565b80151581146109a257600080fd5b60008060408385031215612c9457600080fd5b8235612c9f81612bb4565b91506020830135612caf81612c73565b809150509250929050565b60008060408385031215612ccd57600080fd5b8235612cd881612bb4565b91506020830135612caf81612bb4565b600181811c90821680612cfc57607f821691505b602082108103612d1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b3576108b3612d22565b600060208284031215612d5d57600080fd5b5051919050565b600060208284031215612d7657600080fd5b8151612c5381612c73565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612da957600080fd5b8151612c5381612bb4565b600082612dd157634e487b7160e01b600052601260045260246000fd5b500490565b600081518084526020808501945080840160005b83811015612e0f5781516001600160a01b031687529582019590820190600101612dea565b509495945050505050565b85815284602082015260a060408201526000612e3960a0830186612dd6565b6001600160a01b0394909416606083015250608001529392505050565b80820281158282048414176108b3576108b3612d22565b848152608060208201526000612e866080830186612dd6565b6001600160a01b03949094166040830152506060015292915050565b818103818111156108b3576108b3612d2256fea2646970667358221220a0d1812d016a24fe4a64ee4834c5cd6c2b583f188839818892d5f8bf7074bbce64736f6c63430008120033

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.