ETH Price: $3,313.63 (-1.84%)

Contract

0xBcA400a0B69E0336213d2D6164AC59C645bC4A53
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve175029692023-06-18 0:01:47583 days ago1687046507IN
0xBcA400a0...645bC4A53
0 ETH0.0006417413.68211217
Approve175029352023-06-17 23:54:47583 days ago1687046087IN
0xBcA400a0...645bC4A53
0 ETH0.0008765318.56435817
Approve175029332023-06-17 23:54:23583 days ago1687046063IN
0xBcA400a0...645bC4A53
0 ETH0.0007908616.74992549
Approve175029292023-06-17 23:53:35583 days ago1687046015IN
0xBcA400a0...645bC4A53
0 ETH0.0006380813.51412708
Renounce Ownersh...175029262023-06-17 23:52:59583 days ago1687045979IN
0xBcA400a0...645bC4A53
0 ETH0.0003117113.27291106

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TaxToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : TaxToken.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.11;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Context, Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol";

contract TaxToken is Context, IERC20, Ownable {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 100000000 * 10 ** 18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _redisFeeOnBuy = 0;
    uint256 private _taxFeeOnBuy = 0;
    uint256 private _redisFeeOnSell = 0;
    uint256 private _taxFeeOnSell = 15;

    //Original Fee
    uint256 private _redisFee = _redisFeeOnSell;
    uint256 private _taxFee = _taxFeeOnSell;

    uint256 private _previousredisFee = _redisFee;
    uint256 private _previoustaxFee = _taxFee;

    mapping(address => bool) public bots;
    mapping(address => uint256) public _buyMap;
    address payable private _developmentAddress;
    address payable private _marketingAddress;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private inSwap = false;
    bool private swapEnabled = true;

    uint256 public _swapTokensAtAmount = 1000 * 10 ** 18;

    event MaxTxAmountUpdated(uint256 _maxTxAmount);
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(string memory __name, string memory __symbol) {
        _name = __name;
        _symbol = __symbol;
        _rOwned[_msgSender()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        _developmentAddress = payable(msg.sender);
        _marketingAddress = payable(msg.sender);

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_developmentAddress] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

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

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

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

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

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

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

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

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

    function tokenFromReflection(
        uint256 rAmount
    ) private view returns (uint256) {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function _removeAllFee() private {
        if (_redisFee == 0 && _taxFee == 0) return;

        _previousredisFee = _redisFee;
        _previoustaxFee = _taxFee;

        _redisFee = 0;
        _taxFee = 0;
    }

    function _restoreAllFee() private {
        _redisFee = _previousredisFee;
        _taxFee = _previoustaxFee;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

        if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;

            if (
                canSwap &&
                !inSwap &&
                from != uniswapV2Pair &&
                swapEnabled &&
                !_isExcludedFromFee[from] &&
                !_isExcludedFromFee[to]
            ) {
                swapTokensForEth(contractTokenBalance);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        bool takeFee = true;

        //Transfer Tokens
        if (
            (_isExcludedFromFee[from] || _isExcludedFromFee[to]) ||
            (from != uniswapV2Pair && to != uniswapV2Pair)
        ) {
            takeFee = false;
        } else {
            //Set Fee for Buys
            if (from == uniswapV2Pair && to != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnBuy;
                _taxFee = _taxFeeOnBuy;
            }

            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnSell;
                _taxFee = _taxFeeOnSell;
            }
        }

        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendETHToFee(uint256 amount) private {
        _marketingAddress.transfer(amount);
    }

    function manualswap() external {
        require(
            _msgSender() == _developmentAddress ||
                _msgSender() == _marketingAddress
        );
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualsend() external {
        require(
            _msgSender() == _developmentAddress ||
                _msgSender() == _marketingAddress
        );
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) _removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) _restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeTeam(tTeam);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeTeam(uint256 tTeam) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tTeam.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    receive() external payable {}

    function _getValues(
        uint256 tAmount
    )
        private
        view
        returns (uint256, uint256, uint256, uint256, uint256, uint256)
    {
        (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(
            tAmount,
            _redisFee,
            _taxFee
        );
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tTeam,
            currentRate
        );
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

    function _getTValues(
        uint256 tAmount,
        uint256 redisFee,
        uint256 taxFee
    ) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(redisFee).div(100);
        uint256 tTeam = tAmount.mul(taxFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
        return (tTransferAmount, tFee, tTeam);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tTeam,
        uint256 currentRate
    ) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTeam = tTeam.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function setFee(
        uint256 redisFeeOnBuy,
        uint256 redisFeeOnSell,
        uint256 taxFeeOnBuy,
        uint256 taxFeeOnSell
    ) public onlyOwner {
        require(
            redisFeeOnBuy >= 0 && redisFeeOnBuy <= 4,
            "Buy rewards must be between 0% and 4%"
        );
        require(
            taxFeeOnBuy >= 0 && taxFeeOnBuy <= 99,
            "Buy tax must be between 0% and 99%"
        );
        require(
            redisFeeOnSell >= 0 && redisFeeOnSell <= 4,
            "Sell rewards must be between 0% and 4%"
        );
        require(
            taxFeeOnSell >= 0 && taxFeeOnSell <= 99,
            "Sell tax must be between 0% and 99%"
        );

        _redisFeeOnBuy = redisFeeOnBuy;
        _redisFeeOnSell = redisFeeOnSell;
        _taxFeeOnBuy = taxFeeOnBuy;
        _taxFeeOnSell = taxFeeOnSell;
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 4 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 7 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.11;

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

File 7 of 7 : IUniswapV2Router02.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.11;

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"__name","type":"string"},{"internalType":"string","name":"__symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redisFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"redisFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnSell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a52b7d2dcc80cd2e40000006000196200001f919062000817565b6000196200002e91906200087e565b60075560006009556000600a556000600b55600f600c55600b54600d55600c54600e55600d54600f55600e546010556000601660146101000a81548160ff0219169083151502179055506001601660156101000a81548160ff021916908315150217905550683635c9adc5dea00000601755348015620000ad57600080fd5b5060405162003a3538038062003a358339818101604052810190620000d3919062000a56565b620000f3620000e76200063960201b60201c565b6200064160201b60201c565b81600190805190602001906200010b9291906200072e565b508060029080519060200190620001249291906200072e565b50600754600360006200013c6200063960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000220573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000246919062000b40565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d4919062000b40565b6040518363ffffffff1660e01b8152600401620002f392919062000b83565b6020604051808303816000875af115801562000313573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000339919062000b40565b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160066000620004116200070560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005be6200063960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a52b7d2dcc80cd2e400000060405162000628919062000bc1565b60405180910390a350505062000c43565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200073c9062000c0d565b90600052602060002090601f016020900481019282620007605760008555620007ac565b82601f106200077b57805160ff1916838001178555620007ac565b82800160010185558215620007ac579182015b82811115620007ab5782518255916020019190600101906200078e565b5b509050620007bb9190620007bf565b5090565b5b80821115620007da576000816000905550600101620007c0565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200082482620007de565b91506200083183620007de565b925082620008445762000843620007e8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200088b82620007de565b91506200089883620007de565b925082821015620008ae57620008ad6200084f565b5b828203905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200092282620008d7565b810181811067ffffffffffffffff82111715620009445762000943620008e8565b5b80604052505050565b600062000959620008b9565b905062000967828262000917565b919050565b600067ffffffffffffffff8211156200098a5762000989620008e8565b5b6200099582620008d7565b9050602081019050919050565b60005b83811015620009c2578082015181840152602081019050620009a5565b83811115620009d2576000848401525b50505050565b6000620009ef620009e9846200096c565b6200094d565b90508281526020810184848401111562000a0e5762000a0d620008d2565b5b62000a1b848285620009a2565b509392505050565b600082601f83011262000a3b5762000a3a620008cd565b5b815162000a4d848260208601620009d8565b91505092915050565b6000806040838503121562000a705762000a6f620008c3565b5b600083015167ffffffffffffffff81111562000a915762000a90620008c8565b5b62000a9f8582860162000a23565b925050602083015167ffffffffffffffff81111562000ac35762000ac2620008c8565b5b62000ad18582860162000a23565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b088262000adb565b9050919050565b62000b1a8162000afb565b811462000b2657600080fd5b50565b60008151905062000b3a8162000b0f565b92915050565b60006020828403121562000b595762000b58620008c3565b5b600062000b698482850162000b29565b91505092915050565b62000b7d8162000afb565b82525050565b600060408201905062000b9a600083018562000b72565b62000ba9602083018462000b72565b9392505050565b62000bbb81620007de565b82525050565b600060208201905062000bd8600083018462000bb0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c2657607f821691505b6020821081141562000c3d5762000c3c62000bde565b5b50919050565b612de28062000c536000396000f3fe6080604052600436106101235760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb146103d2578063bfd792841461040f578063c3c8cd801461044c578063dd62ed3e14610463578063f2fde38b146104a05761012a565b8063715018a6146102ff5780637f2feddc146103165780638da5cb5b1461035357806395d89b411461037e578063a2a957bb146103a95761012a565b80632fd689e3116100e75780632fd689e31461022a578063313ce5671461025557806349bd5a5e146102805780636fc3eaec146102ab57806370a08231146102c25761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101446104c9565b6040516101519190611fae565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190612069565b61055b565b60405161018e91906120c4565b60405180910390f35b3480156101a357600080fd5b506101ac610579565b6040516101b9919061213e565b60405180910390f35b3480156101ce57600080fd5b506101d761059f565b6040516101e49190612168565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f9190612183565b6105b2565b60405161022191906120c4565b60405180910390f35b34801561023657600080fd5b5061023f61068b565b60405161024c9190612168565b60405180910390f35b34801561026157600080fd5b5061026a610691565b60405161027791906121f2565b60405180910390f35b34801561028c57600080fd5b5061029561069a565b6040516102a2919061221c565b60405180910390f35b3480156102b757600080fd5b506102c06106c0565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190612237565b610791565b6040516102f69190612168565b60405180910390f35b34801561030b57600080fd5b506103146107e2565b005b34801561032257600080fd5b5061033d60048036038101906103389190612237565b6107f6565b60405161034a9190612168565b60405180910390f35b34801561035f57600080fd5b5061036861080e565b604051610375919061221c565b60405180910390f35b34801561038a57600080fd5b50610393610837565b6040516103a09190611fae565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612264565b6108c9565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612069565b610a37565b60405161040691906120c4565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612237565b610a55565b60405161044391906120c4565b60405180910390f35b34801561045857600080fd5b50610461610a75565b005b34801561046f57600080fd5b5061048a600480360381019061048591906122cb565b610b4e565b6040516104979190612168565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190612237565b610bd5565b005b6060600180546104d89061233a565b80601f01602080910402602001604051908101604052809291908181526020018280546105049061233a565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b5050505050905090565b600061056f610568610c59565b8484610c61565b6001905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006a52b7d2dcc80cd2e4000000905090565b60006105bf848484610e2c565b610680846105cb610c59565b61067b85604051806060016040528060288152602001612d8560289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610631610c59565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114739092919063ffffffff16565b610c61565b600190509392505050565b60175481565b60006012905090565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610701610c59565b73ffffffffffffffffffffffffffffffffffffffff1614806107775750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661075f610c59565b73ffffffffffffffffffffffffffffffffffffffff16145b61078057600080fd5b600047905061078e816114c8565b50565b60006107db600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611534565b9050919050565b6107ea6115a2565b6107f46000611620565b565b60126020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546108469061233a565b80601f01602080910402602001604051908101604052809291908181526020018280546108729061233a565b80156108bf5780601f10610894576101008083540402835291602001916108bf565b820191906000526020600020905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b6108d16115a2565b600084101580156108e3575060048411155b610922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610919906123de565b60405180910390fd5b60008210158015610934575060638211155b610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90612470565b60405180910390fd5b60008310158015610985575060048311155b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90612502565b60405180910390fd5b600081101580156109d6575060638111155b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90612594565b60405180910390fd5b8360098190555082600b8190555081600a8190555080600c8190555050505050565b6000610a4b610a44610c59565b8484610e2c565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ab6610c59565b73ffffffffffffffffffffffffffffffffffffffff161480610b2c5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b14610c59565b73ffffffffffffffffffffffffffffffffffffffff16145b610b3557600080fd5b6000610b4030610791565b9050610b4b816116e4565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bdd6115a2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490612626565b60405180910390fd5b610c5681611620565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906126b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d389061274a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e1f9190612168565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906127dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061286e565b60405180910390fd5b60008111610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690612900565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610ff35750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561117257600061100330610791565b9050600060175482101590508080156110295750601660149054906101000a900460ff16155b80156110835750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561109b5750601660159054906101000a900460ff165b80156110f15750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111475750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561116f57611155826116e4565b6000479050600081111561116d5761116c476114c8565b5b505b50505b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112195750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112cc5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156112cb5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b156112da5760009050611461565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156113855750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561139d57600954600d81905550600a54600e819055505b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156114485750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561146057600b54600d81905550600c54600e819055505b5b61146d8484848461195d565b50505050565b60008383111582906114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b29190611fae565b60405180910390fd5b5082840390509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611530573d6000803e3d6000fd5b5050565b600060075482111561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290612992565b60405180910390fd5b600061158561198a565b905061159a81846119b590919063ffffffff16565b915050919050565b6115aa610c59565b73ffffffffffffffffffffffffffffffffffffffff166115c861080e565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906129fe565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601660146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561171c5761171b612a1e565b5b60405190808252806020026020018201604052801561174a5781602001602082028036833780820191505090505b509050308160008151811061176257611761612a4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061182d9190612a91565b8160018151811061184157611840612a4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506118a830601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c61565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161190c959493929190612bb7565b600060405180830381600087803b15801561192657600080fd5b505af115801561193a573d6000803e3d6000fd5b50505050506000601660146101000a81548160ff02191690831515021790555050565b8061196b5761196a6119cb565b5b611976848484611a0e565b8061198457611983611bd9565b5b50505050565b6000806000611997611bed565b915091506119ae81836119b590919063ffffffff16565b9250505090565b600081836119c39190612c6f565b905092915050565b6000600d541480156119df57506000600e54145b156119e957611a0c565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080611a2087611c55565b955095509550955095509550611a7e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cbd90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b1385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd390919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5f81611ce9565b611b698483611da6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611bc69190612168565b60405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b6000806000600754905060006a52b7d2dcc80cd2e40000009050611c276a52b7d2dcc80cd2e40000006007546119b590919063ffffffff16565b821015611c48576007546a52b7d2dcc80cd2e4000000935093505050611c51565b81819350935050505b9091565b6000806000806000806000806000611c728a600d54600e54611de0565b9250925092506000611c8261198a565b90506000806000611c958e878787611e76565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60008183611ccb9190612ca0565b905092915050565b60008183611ce19190612cd4565b905092915050565b6000611cf361198a565b90506000611d0a8284611eff90919063ffffffff16565b9050611d5e81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd390919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611dbb82600754611cbd90919063ffffffff16565b600781905550611dd681600854611cd390919063ffffffff16565b6008819055505050565b600080600080611e0c6064611dfe888a611eff90919063ffffffff16565b6119b590919063ffffffff16565b90506000611e366064611e28888b611eff90919063ffffffff16565b6119b590919063ffffffff16565b90506000611e5f82611e51858c611cbd90919063ffffffff16565b611cbd90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080611e8f8589611eff90919063ffffffff16565b90506000611ea68689611eff90919063ffffffff16565b90506000611ebd8789611eff90919063ffffffff16565b90506000611ee682611ed88587611cbd90919063ffffffff16565b611cbd90919063ffffffff16565b9050838184965096509650505050509450945094915050565b60008183611f0d9190612d2a565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f4f578082015181840152602081019050611f34565b83811115611f5e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611f8082611f15565b611f8a8185611f20565b9350611f9a818560208601611f31565b611fa381611f64565b840191505092915050565b60006020820190508181036000830152611fc88184611f75565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061200082611fd5565b9050919050565b61201081611ff5565b811461201b57600080fd5b50565b60008135905061202d81612007565b92915050565b6000819050919050565b61204681612033565b811461205157600080fd5b50565b6000813590506120638161203d565b92915050565b600080604083850312156120805761207f611fd0565b5b600061208e8582860161201e565b925050602061209f85828601612054565b9150509250929050565b60008115159050919050565b6120be816120a9565b82525050565b60006020820190506120d960008301846120b5565b92915050565b6000819050919050565b60006121046120ff6120fa84611fd5565b6120df565b611fd5565b9050919050565b6000612116826120e9565b9050919050565b60006121288261210b565b9050919050565b6121388161211d565b82525050565b6000602082019050612153600083018461212f565b92915050565b61216281612033565b82525050565b600060208201905061217d6000830184612159565b92915050565b60008060006060848603121561219c5761219b611fd0565b5b60006121aa8682870161201e565b93505060206121bb8682870161201e565b92505060406121cc86828701612054565b9150509250925092565b600060ff82169050919050565b6121ec816121d6565b82525050565b600060208201905061220760008301846121e3565b92915050565b61221681611ff5565b82525050565b6000602082019050612231600083018461220d565b92915050565b60006020828403121561224d5761224c611fd0565b5b600061225b8482850161201e565b91505092915050565b6000806000806080858703121561227e5761227d611fd0565b5b600061228c87828801612054565b945050602061229d87828801612054565b93505060406122ae87828801612054565b92505060606122bf87828801612054565b91505092959194509250565b600080604083850312156122e2576122e1611fd0565b5b60006122f08582860161201e565b92505060206123018582860161201e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061235257607f821691505b602082108114156123665761236561230b565b5b50919050565b7f4275792072657761726473206d757374206265206265747765656e203025206160008201527f6e64203425000000000000000000000000000000000000000000000000000000602082015250565b60006123c8602583611f20565b91506123d38261236c565b604082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f42757920746178206d757374206265206265747765656e20302520616e64203960008201527f3925000000000000000000000000000000000000000000000000000000000000602082015250565b600061245a602283611f20565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f53656c6c2072657761726473206d757374206265206265747765656e2030252060008201527f616e642034250000000000000000000000000000000000000000000000000000602082015250565b60006124ec602683611f20565b91506124f782612490565b604082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b7f53656c6c20746178206d757374206265206265747765656e20302520616e642060008201527f3939250000000000000000000000000000000000000000000000000000000000602082015250565b600061257e602383611f20565b915061258982612522565b604082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612610602683611f20565b915061261b826125b4565b604082019050919050565b6000602082019050818103600083015261263f81612603565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126a2602483611f20565b91506126ad82612646565b604082019050919050565b600060208201905081810360008301526126d181612695565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612734602283611f20565b915061273f826126d8565b604082019050919050565b6000602082019050818103600083015261276381612727565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127c6602583611f20565b91506127d18261276a565b604082019050919050565b600060208201905081810360008301526127f5816127b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612858602383611f20565b9150612863826127fc565b604082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006128ea602983611f20565b91506128f58261288e565b604082019050919050565b60006020820190508181036000830152612919816128dd565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b600061297c602a83611f20565b915061298782612920565b604082019050919050565b600060208201905081810360008301526129ab8161296f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129e8602083611f20565b91506129f3826129b2565b602082019050919050565b60006020820190508181036000830152612a17816129db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612a8b81612007565b92915050565b600060208284031215612aa757612aa6611fd0565b5b6000612ab584828501612a7c565b91505092915050565b6000819050919050565b6000612ae3612ade612ad984612abe565b6120df565b612033565b9050919050565b612af381612ac8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b2e81611ff5565b82525050565b6000612b408383612b25565b60208301905092915050565b6000602082019050919050565b6000612b6482612af9565b612b6e8185612b04565b9350612b7983612b15565b8060005b83811015612baa578151612b918882612b34565b9750612b9c83612b4c565b925050600181019050612b7d565b5085935050505092915050565b600060a082019050612bcc6000830188612159565b612bd96020830187612aea565b8181036040830152612beb8186612b59565b9050612bfa606083018561220d565b612c076080830184612159565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c7a82612033565b9150612c8583612033565b925082612c9557612c94612c11565b5b828204905092915050565b6000612cab82612033565b9150612cb683612033565b925082821015612cc957612cc8612c40565b5b828203905092915050565b6000612cdf82612033565b9150612cea83612033565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d1f57612d1e612c40565b5b828201905092915050565b6000612d3582612033565b9150612d4083612033565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7957612d78612c40565b5b82820290509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220945095eb65235e9d2e4f7415db79d3da26618e51305f3663e6862ef1d9e6e47364736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d576520417265205368656570730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348454550000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101235760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb146103d2578063bfd792841461040f578063c3c8cd801461044c578063dd62ed3e14610463578063f2fde38b146104a05761012a565b8063715018a6146102ff5780637f2feddc146103165780638da5cb5b1461035357806395d89b411461037e578063a2a957bb146103a95761012a565b80632fd689e3116100e75780632fd689e31461022a578063313ce5671461025557806349bd5a5e146102805780636fc3eaec146102ab57806370a08231146102c25761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101446104c9565b6040516101519190611fae565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190612069565b61055b565b60405161018e91906120c4565b60405180910390f35b3480156101a357600080fd5b506101ac610579565b6040516101b9919061213e565b60405180910390f35b3480156101ce57600080fd5b506101d761059f565b6040516101e49190612168565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f9190612183565b6105b2565b60405161022191906120c4565b60405180910390f35b34801561023657600080fd5b5061023f61068b565b60405161024c9190612168565b60405180910390f35b34801561026157600080fd5b5061026a610691565b60405161027791906121f2565b60405180910390f35b34801561028c57600080fd5b5061029561069a565b6040516102a2919061221c565b60405180910390f35b3480156102b757600080fd5b506102c06106c0565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190612237565b610791565b6040516102f69190612168565b60405180910390f35b34801561030b57600080fd5b506103146107e2565b005b34801561032257600080fd5b5061033d60048036038101906103389190612237565b6107f6565b60405161034a9190612168565b60405180910390f35b34801561035f57600080fd5b5061036861080e565b604051610375919061221c565b60405180910390f35b34801561038a57600080fd5b50610393610837565b6040516103a09190611fae565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612264565b6108c9565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612069565b610a37565b60405161040691906120c4565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612237565b610a55565b60405161044391906120c4565b60405180910390f35b34801561045857600080fd5b50610461610a75565b005b34801561046f57600080fd5b5061048a600480360381019061048591906122cb565b610b4e565b6040516104979190612168565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190612237565b610bd5565b005b6060600180546104d89061233a565b80601f01602080910402602001604051908101604052809291908181526020018280546105049061233a565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b5050505050905090565b600061056f610568610c59565b8484610c61565b6001905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006a52b7d2dcc80cd2e4000000905090565b60006105bf848484610e2c565b610680846105cb610c59565b61067b85604051806060016040528060288152602001612d8560289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610631610c59565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114739092919063ffffffff16565b610c61565b600190509392505050565b60175481565b60006012905090565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610701610c59565b73ffffffffffffffffffffffffffffffffffffffff1614806107775750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661075f610c59565b73ffffffffffffffffffffffffffffffffffffffff16145b61078057600080fd5b600047905061078e816114c8565b50565b60006107db600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611534565b9050919050565b6107ea6115a2565b6107f46000611620565b565b60126020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546108469061233a565b80601f01602080910402602001604051908101604052809291908181526020018280546108729061233a565b80156108bf5780601f10610894576101008083540402835291602001916108bf565b820191906000526020600020905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b6108d16115a2565b600084101580156108e3575060048411155b610922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610919906123de565b60405180910390fd5b60008210158015610934575060638211155b610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90612470565b60405180910390fd5b60008310158015610985575060048311155b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90612502565b60405180910390fd5b600081101580156109d6575060638111155b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90612594565b60405180910390fd5b8360098190555082600b8190555081600a8190555080600c8190555050505050565b6000610a4b610a44610c59565b8484610e2c565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ab6610c59565b73ffffffffffffffffffffffffffffffffffffffff161480610b2c5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b14610c59565b73ffffffffffffffffffffffffffffffffffffffff16145b610b3557600080fd5b6000610b4030610791565b9050610b4b816116e4565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bdd6115a2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490612626565b60405180910390fd5b610c5681611620565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906126b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d389061274a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e1f9190612168565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906127dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061286e565b60405180910390fd5b60008111610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690612900565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610ff35750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561117257600061100330610791565b9050600060175482101590508080156110295750601660149054906101000a900460ff16155b80156110835750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561109b5750601660159054906101000a900460ff165b80156110f15750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111475750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561116f57611155826116e4565b6000479050600081111561116d5761116c476114c8565b5b505b50505b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112195750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112cc5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156112cb5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b156112da5760009050611461565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156113855750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561139d57600954600d81905550600a54600e819055505b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156114485750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561146057600b54600d81905550600c54600e819055505b5b61146d8484848461195d565b50505050565b60008383111582906114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b29190611fae565b60405180910390fd5b5082840390509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611530573d6000803e3d6000fd5b5050565b600060075482111561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290612992565b60405180910390fd5b600061158561198a565b905061159a81846119b590919063ffffffff16565b915050919050565b6115aa610c59565b73ffffffffffffffffffffffffffffffffffffffff166115c861080e565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906129fe565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601660146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561171c5761171b612a1e565b5b60405190808252806020026020018201604052801561174a5781602001602082028036833780820191505090505b509050308160008151811061176257611761612a4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061182d9190612a91565b8160018151811061184157611840612a4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506118a830601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c61565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161190c959493929190612bb7565b600060405180830381600087803b15801561192657600080fd5b505af115801561193a573d6000803e3d6000fd5b50505050506000601660146101000a81548160ff02191690831515021790555050565b8061196b5761196a6119cb565b5b611976848484611a0e565b8061198457611983611bd9565b5b50505050565b6000806000611997611bed565b915091506119ae81836119b590919063ffffffff16565b9250505090565b600081836119c39190612c6f565b905092915050565b6000600d541480156119df57506000600e54145b156119e957611a0c565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080611a2087611c55565b955095509550955095509550611a7e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cbd90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b1385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd390919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5f81611ce9565b611b698483611da6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611bc69190612168565b60405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b6000806000600754905060006a52b7d2dcc80cd2e40000009050611c276a52b7d2dcc80cd2e40000006007546119b590919063ffffffff16565b821015611c48576007546a52b7d2dcc80cd2e4000000935093505050611c51565b81819350935050505b9091565b6000806000806000806000806000611c728a600d54600e54611de0565b9250925092506000611c8261198a565b90506000806000611c958e878787611e76565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60008183611ccb9190612ca0565b905092915050565b60008183611ce19190612cd4565b905092915050565b6000611cf361198a565b90506000611d0a8284611eff90919063ffffffff16565b9050611d5e81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd390919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611dbb82600754611cbd90919063ffffffff16565b600781905550611dd681600854611cd390919063ffffffff16565b6008819055505050565b600080600080611e0c6064611dfe888a611eff90919063ffffffff16565b6119b590919063ffffffff16565b90506000611e366064611e28888b611eff90919063ffffffff16565b6119b590919063ffffffff16565b90506000611e5f82611e51858c611cbd90919063ffffffff16565b611cbd90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080611e8f8589611eff90919063ffffffff16565b90506000611ea68689611eff90919063ffffffff16565b90506000611ebd8789611eff90919063ffffffff16565b90506000611ee682611ed88587611cbd90919063ffffffff16565b611cbd90919063ffffffff16565b9050838184965096509650505050509450945094915050565b60008183611f0d9190612d2a565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f4f578082015181840152602081019050611f34565b83811115611f5e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611f8082611f15565b611f8a8185611f20565b9350611f9a818560208601611f31565b611fa381611f64565b840191505092915050565b60006020820190508181036000830152611fc88184611f75565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061200082611fd5565b9050919050565b61201081611ff5565b811461201b57600080fd5b50565b60008135905061202d81612007565b92915050565b6000819050919050565b61204681612033565b811461205157600080fd5b50565b6000813590506120638161203d565b92915050565b600080604083850312156120805761207f611fd0565b5b600061208e8582860161201e565b925050602061209f85828601612054565b9150509250929050565b60008115159050919050565b6120be816120a9565b82525050565b60006020820190506120d960008301846120b5565b92915050565b6000819050919050565b60006121046120ff6120fa84611fd5565b6120df565b611fd5565b9050919050565b6000612116826120e9565b9050919050565b60006121288261210b565b9050919050565b6121388161211d565b82525050565b6000602082019050612153600083018461212f565b92915050565b61216281612033565b82525050565b600060208201905061217d6000830184612159565b92915050565b60008060006060848603121561219c5761219b611fd0565b5b60006121aa8682870161201e565b93505060206121bb8682870161201e565b92505060406121cc86828701612054565b9150509250925092565b600060ff82169050919050565b6121ec816121d6565b82525050565b600060208201905061220760008301846121e3565b92915050565b61221681611ff5565b82525050565b6000602082019050612231600083018461220d565b92915050565b60006020828403121561224d5761224c611fd0565b5b600061225b8482850161201e565b91505092915050565b6000806000806080858703121561227e5761227d611fd0565b5b600061228c87828801612054565b945050602061229d87828801612054565b93505060406122ae87828801612054565b92505060606122bf87828801612054565b91505092959194509250565b600080604083850312156122e2576122e1611fd0565b5b60006122f08582860161201e565b92505060206123018582860161201e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061235257607f821691505b602082108114156123665761236561230b565b5b50919050565b7f4275792072657761726473206d757374206265206265747765656e203025206160008201527f6e64203425000000000000000000000000000000000000000000000000000000602082015250565b60006123c8602583611f20565b91506123d38261236c565b604082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f42757920746178206d757374206265206265747765656e20302520616e64203960008201527f3925000000000000000000000000000000000000000000000000000000000000602082015250565b600061245a602283611f20565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f53656c6c2072657761726473206d757374206265206265747765656e2030252060008201527f616e642034250000000000000000000000000000000000000000000000000000602082015250565b60006124ec602683611f20565b91506124f782612490565b604082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b7f53656c6c20746178206d757374206265206265747765656e20302520616e642060008201527f3939250000000000000000000000000000000000000000000000000000000000602082015250565b600061257e602383611f20565b915061258982612522565b604082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612610602683611f20565b915061261b826125b4565b604082019050919050565b6000602082019050818103600083015261263f81612603565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126a2602483611f20565b91506126ad82612646565b604082019050919050565b600060208201905081810360008301526126d181612695565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612734602283611f20565b915061273f826126d8565b604082019050919050565b6000602082019050818103600083015261276381612727565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127c6602583611f20565b91506127d18261276a565b604082019050919050565b600060208201905081810360008301526127f5816127b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612858602383611f20565b9150612863826127fc565b604082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006128ea602983611f20565b91506128f58261288e565b604082019050919050565b60006020820190508181036000830152612919816128dd565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b600061297c602a83611f20565b915061298782612920565b604082019050919050565b600060208201905081810360008301526129ab8161296f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129e8602083611f20565b91506129f3826129b2565b602082019050919050565b60006020820190508181036000830152612a17816129db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612a8b81612007565b92915050565b600060208284031215612aa757612aa6611fd0565b5b6000612ab584828501612a7c565b91505092915050565b6000819050919050565b6000612ae3612ade612ad984612abe565b6120df565b612033565b9050919050565b612af381612ac8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b2e81611ff5565b82525050565b6000612b408383612b25565b60208301905092915050565b6000602082019050919050565b6000612b6482612af9565b612b6e8185612b04565b9350612b7983612b15565b8060005b83811015612baa578151612b918882612b34565b9750612b9c83612b4c565b925050600181019050612b7d565b5085935050505092915050565b600060a082019050612bcc6000830188612159565b612bd96020830187612aea565b8181036040830152612beb8186612b59565b9050612bfa606083018561220d565b612c076080830184612159565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c7a82612033565b9150612c8583612033565b925082612c9557612c94612c11565b5b828204905092915050565b6000612cab82612033565b9150612cb683612033565b925082821015612cc957612cc8612c40565b5b828203905092915050565b6000612cdf82612033565b9150612cea83612033565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d1f57612d1e612c40565b5b828201905092915050565b6000612d3582612033565b9150612d4083612033565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7957612d78612c40565b5b82820290509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220945095eb65235e9d2e4f7415db79d3da26618e51305f3663e6862ef1d9e6e47364736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d576520417265205368656570730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348454550000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : __name (string): We Are Sheeps
Arg [1] : __symbol (string): SHEEP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 5765204172652053686565707300000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5348454550000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.