ETH Price: $3,985.83 (-0.30%)

Token

ERC-20: Hive Mind (HIVE)
 

Overview

Max Total Supply

100,000,000,000 HIVE

Holders

223

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ilovemymomsm.eth
Balance
350,000,000 HIVE

Value
$0.00
0x449c51e9b517aa6c12fe6d44f136b64aac32fbaf
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ImprovedHiveMind

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : ImprovedHiveMind.sol
//The Hive Mind is an opt-in Social Expiriment on the Ethereum Network.
//Join us to participate  in testing the limits of Blockchain, Community, and Human Nature.
//Exploring a phenomenon known only as "The Hive Mind" and how it relates to those things.

//Official Links
//https://growthehive.org
//https://twitter.com/growthehive
//https://t.me/Hive_Mind_Official
//https://cannon.app

// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

contract ImprovedHiveMind is IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    string private _name = "Hive Mind";
    string private _symbol = "HIVE";
    uint8 private _decimals = 18;

    address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public burnFee = 100;
    uint256 public liquidityFee = 100;
    uint256 public marketingFee = 100;

    uint256 public constant feeDenominator = 10000;

    address public autoLiquidityReceiver;
    address public marketingFeeReceiver;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    address[] public pairs;
    mapping (address => bool) public isFeeExempt;

    bool public autoLiquifyEnabled = true;
    uint256 public autoLiquifyThreshold = 10000000 * 10 ** _decimals;

    bool inSwap;

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

    constructor() {
        _totalSupply = 100000000000 * 10 ** _decimals; // 100 Billion
        _balances[msg.sender] = _totalSupply;

        autoLiquidityReceiver = msg.sender;
        marketingFeeReceiver = msg.sender;

        isFeeExempt[msg.sender] = true;
        isFeeExempt[address(this)] = true;

        // Create a uniswap pair for this new token
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        // Create a uniswap pair for this new token
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        pairs.push(uniswapV2Pair);

        emit Transfer(address(0), msg.sender, _totalSupply);
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

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

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        _balances[sender] = senderBalance - amount;

        uint256 transferAmount = amount;
        uint256 burnAmount = transferAmount.mul(burnFee).div(feeDenominator);
        uint256 liquidityAmount = transferAmount.mul(liquidityFee).div(feeDenominator);
        uint256 marketingAmount = transferAmount.mul(marketingFee).div(feeDenominator);

        if (shouldTakeFee(sender, recipient)) {
            // Transfer amount after fee deductions
            uint256 amountAfterFee = transferAmount - burnAmount - liquidityAmount - marketingAmount;

            // Update balances for burn, liquidity, and marketing
            _balances[address(this)] += liquidityAmount + marketingAmount;
            emit Transfer(sender, address(this), liquidityAmount + marketingAmount);

            // Burn tokens
            if (burnAmount > 0) {
                _balances[deadAddress] += burnAmount;
                emit Transfer(sender, deadAddress, burnAmount);
            }

            // Transfer amount after fee to recipient
            _balances[recipient] += amountAfterFee;
            emit Transfer(sender, recipient, amountAfterFee);
        } else {
            // Transfer amount without fees
            _balances[recipient] += transferAmount;
            emit Transfer(sender, recipient, transferAmount);
        }

        // Auto liquidity provision
        if (shouldAutoLiquify() && !inSwap && sender != address(uniswapV2Pair)) {
            autoLiquify();
        }
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function shouldTakeFee(address sender, address recipient) internal virtual view returns (bool) {
        if (isFeeExempt[sender] || isFeeExempt[recipient]) return false;

        address[] memory liqPairs = pairs;

        for (uint256 i = 0; i < liqPairs.length; i++) {
            if (sender == liqPairs[i] || recipient == liqPairs[i]) return true;
        }
        return false;
    }

    function shouldAutoLiquify() internal virtual view returns (bool) {
        return autoLiquifyEnabled && address(this).balance >= autoLiquifyThreshold;
    }

    function autoLiquify() internal virtual lockTheSwap {
        uint256 contractBalance = address(this).balance;
        if (contractBalance >= autoLiquifyThreshold) {
            // Add liquidity
            uint256 liquidityAmount = autoLiquifyThreshold / 2;
            uint256 marketingAmount = contractBalance - liquidityAmount;

            uint256 initialBalance = address(this).balance;

            swapAndAddLiquidity(liquidityAmount);

            uint256 swappedBalance = address(this).balance - initialBalance;

            // Transfer marketing tokens
            payable(marketingFeeReceiver).transfer(swappedBalance);
        }
    }

    function swapAndAddLiquidity(uint256 liquidityAmount) private {
        // Split the liquidity amount into halves
        uint256 half = liquidityAmount / 2;
        uint256 otherHalf = liquidityAmount - half;

        // Capture the contract's current ETH balance.
        // This is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH
        // manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // Swap tokens for ETH
        swapTokensForEth(half); 

        // This will add liquidity to the Uniswap pool and
        // give us back LP tokens
        addLiquidity(otherHalf, address(this).balance);

    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // Generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // Make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // Approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // Add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            autoLiquidityReceiver,
            block.timestamp
        );
    }

    function setAutoLiquifyEnabled(bool _enabled) external onlyOwner {
        autoLiquifyEnabled = _enabled;
    }

    function setAutoLiquifyThreshold(uint256 _threshold) external onlyOwner {
        autoLiquifyThreshold = _threshold;
    }

    function setMarketingFeeReceiver(address _receiver) external onlyOwner {
        marketingFeeReceiver = _receiver;
        isFeeExempt[_receiver] = true;
    }

    function setAutoLiquidityReceiver(address _receiver) external onlyOwner {
        autoLiquidityReceiver = _receiver;
        isFeeExempt[_receiver] = true;
    }

    function getCirculatingSupply() external view returns (uint256) {
        return _totalSupply.sub(balanceOf(deadAddress)).sub(balanceOf(address(0)));
    }

    function addPair(address pair) external onlyOwner {
        pairs.push(pair);
    }

    function totalFees() external view returns (uint256) {
        return burnFee.add(liquidityFee).add(marketingFee).div(100);
    }

    function removeLastPair() external onlyOwner {
        pairs.pop();
    }

    function recoverExcess(uint256 amount) external onlyOwner {
        require(amount > 0 && address(this).balance >= amount, "Insufficient balance");
        payable(marketingFeeReceiver).transfer(amount);
    }

    receive() external payable {}
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

File 3 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 5 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 9 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 10 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"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":"pair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoLiquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoLiquifyThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeReceiver","outputs":[{"internalType":"address","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverExcess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLastPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"setAutoLiquidityReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAutoLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"setAutoLiquifyThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"setMarketingFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}]

60e0604052600960a081905268121a5d9948135a5b9960ba1b60c09081526200002c91600491906200039a565b50604080518082019091526004808252634849564560e01b60209092019182526200005a916005916200039a565b5060068054601260ff1991821617918290556ddead00000000000000000000000060805260646007819055600881905560095560108054909116600117905560ff16600a0a6298968002601155348015620000b457600080fd5b506000620000c162000396565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060065460ff16600a90810a64174876e8000260038190553360008181526001602081815260408084209590955585546001600160a01b03199081168517909655600b80548716909417909355600f8352838220805460ff199081168317909155308352918490208054909216179055600c8054737a250d5630b4cf539739df2c5dacb4c659f2488d941684179055815163c45a015560e01b81529151839263c45a0155926004808301939192829003018186803b158015620001cc57600080fd5b505afa158015620001e1573d6000803e3d6000fd5b505050506040513d6020811015620001f857600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024957600080fd5b505afa1580156200025e573d6000803e3d6000fd5b505050506040513d60208110156200027557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002c857600080fd5b505af1158015620002dd573d6000803e3d6000fd5b505050506040513d6020811015620002f457600080fd5b5051600d80546001600160a01b039283166001600160a01b03199182161791829055600e805460018101825560009182527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180549092169290931691909117905560035460408051918252513392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35062000446565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003d257600085556200041d565b82601f10620003ed57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041d57825182559160200191906001019062000400565b506200042b9291506200042f565b5090565b5b808211156200042b576000815560010162000430565b60805160601c611e236200046e60003980610a155280610a4e52806115f25250611e236000f3fe6080604052600436106102125760003560e01c806370a0823111610118578063b91ac788116100a0578063e66f9c661161006f578063e66f9c661461072a578063e96fada21461073f578063edafd4ad14610754578063f2fde38b14610787578063fce589d8146107ba57610219565b8063b91ac7881461067d578063c2b7bbb6146106a7578063ca33e64c146106da578063dd62ed3e146106ef57610219565b80638da5cb5b116100e75780638da5cb5b146105cc57806395d89b41146105e157806398118cb4146105f6578063a457c2d71461060b578063a9059cbb1461064457610219565b806370a0823114610545578063715018a614610578578063890a81271461058d5780638997a942146105a257610219565b80632b112e491161019b5780633f4218e01161016a5780633f4218e01461048957806349bd5a5e146104bc57806354200d6f146104d1578063552a3784146104fd5780636b67c4df1461053057610219565b80632b112e49146103e6578063313ce567146103fb57806339509351146104265780633a8144871461045f57610219565b80631694505e116101e25780631694505e14610333578063180b0d7e1461036457806318160ddd1461037957806323b872dd1461038e57806327c8f835146103d157610219565b806293dc141461021e57806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c57610219565b3661021957005b600080fd5b34801561022a57600080fd5b506102336107cf565b005b34801561024157600080fd5b5061024a610860565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b0381351690602001356108f6565b604080519115158252519081900360200190f35b34801561031857600080fd5b50610321610914565b60408051918252519081900360200190f35b34801561033f57600080fd5b50610348610949565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b50610321610958565b34801561038557600080fd5b5061032161095e565b34801561039a57600080fd5b506102f8600480360360608110156103b157600080fd5b506001600160a01b03813581169160208101359091169060400135610964565b3480156103dd57600080fd5b50610348610a13565b3480156103f257600080fd5b50610321610a37565b34801561040757600080fd5b50610410610a81565b6040805160ff9092168252519081900360200190f35b34801561043257600080fd5b506102f86004803603604081101561044957600080fd5b506001600160a01b038135169060200135610a8a565b34801561046b57600080fd5b506102336004803603602081101561048257600080fd5b5035610ad5565b34801561049557600080fd5b506102f8600480360360208110156104ac57600080fd5b50356001600160a01b0316610bcd565b3480156104c857600080fd5b50610348610be2565b3480156104dd57600080fd5b50610233600480360360208110156104f457600080fd5b50351515610bf1565b34801561050957600080fd5b506102336004803603602081101561052057600080fd5b50356001600160a01b0316610c66565b34801561053c57600080fd5b50610321610d02565b34801561055157600080fd5b506103216004803603602081101561056857600080fd5b50356001600160a01b0316610d08565b34801561058457600080fd5b50610233610d23565b34801561059957600080fd5b506102f8610dcf565b3480156105ae57600080fd5b50610233600480360360208110156105c557600080fd5b5035610dd8565b3480156105d857600080fd5b50610348610e3f565b3480156105ed57600080fd5b5061024a610e4e565b34801561060257600080fd5b50610321610eaf565b34801561061757600080fd5b506102f86004803603604081101561062e57600080fd5b506001600160a01b038135169060200135610eb5565b34801561065057600080fd5b506102f86004803603604081101561066757600080fd5b506001600160a01b038135169060200135610f4d565b34801561068957600080fd5b50610348600480360360208110156106a057600080fd5b5035610f61565b3480156106b357600080fd5b50610233600480360360208110156106ca57600080fd5b50356001600160a01b0316610f8b565b3480156106e657600080fd5b5061034861103f565b3480156106fb57600080fd5b506103216004803603604081101561071257600080fd5b506001600160a01b038135811691602001351661104e565b34801561073657600080fd5b50610321611079565b34801561074b57600080fd5b5061034861107f565b34801561076057600080fd5b506102336004803603602081101561077757600080fd5b50356001600160a01b031661108e565b34801561079357600080fd5b50610233600480360360208110156107aa57600080fd5b50356001600160a01b031661112a565b3480156107c657600080fd5b5061032161122c565b6107d7611232565b6001600160a01b03166107e8610e3f565b6001600160a01b031614610831576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600e80548061083c57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b600061090a610903611232565b8484611236565b5060015b92915050565b6000610944606461093e60095461093860085460075461132290919063ffffffff16565b90611322565b90611383565b905090565b600c546001600160a01b031681565b61271081565b60035490565b60006109718484846113ea565b6001600160a01b038416600090815260026020526040812081610992611232565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156109f45760405162461bcd60e51b8152600401808060200182810382526028815260200180611cef6028913960400191505060405180910390fd5b610a0885610a00611232565b858403611236565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610944610a466000610d08565b610a7b610a727f0000000000000000000000000000000000000000000000000000000000000000610d08565b6003549061172d565b9061172d565b60065460ff1690565b600061090a610a97611232565b848460026000610aa5611232565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205401611236565b610add611232565b6001600160a01b0316610aee610e3f565b6001600160a01b031614610b37576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600081118015610b475750804710155b610b8f576040805162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b600b546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610bc9573d6000803e3d6000fd5b5050565b600f6020526000908152604090205460ff1681565b600d546001600160a01b031681565b610bf9611232565b6001600160a01b0316610c0a610e3f565b6001600160a01b031614610c53576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6010805460ff1916911515919091179055565b610c6e611232565b6001600160a01b0316610c7f610e3f565b6001600160a01b031614610cc8576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600a80546001600160a01b039092166001600160a01b0319909216821790556000908152600f60205260409020805460ff19166001179055565b60095481565b6001600160a01b031660009081526001602052604090205490565b610d2b611232565b6001600160a01b0316610d3c610e3f565b6001600160a01b031614610d85576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60105460ff1681565b610de0611232565b6001600160a01b0316610df1610e3f565b6001600160a01b031614610e3a576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b601155565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ec5780601f106108c1576101008083540402835291602001916108ec565b60085481565b60008060026000610ec4611232565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610f2f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611dc96025913960400191505060405180910390fd5b610f43610f3a611232565b85858403611236565b5060019392505050565b600061090a610f5a611232565b84846113ea565b600e8181548110610f7157600080fd5b6000918252602090912001546001600160a01b0316905081565b610f93611232565b6001600160a01b0316610fa4610e3f565b6001600160a01b031614610fed576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60115481565b600b546001600160a01b031681565b611096611232565b6001600160a01b03166110a7610e3f565b6001600160a01b0316146110f0576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600b80546001600160a01b039092166001600160a01b0319909216821790556000908152600f60205260409020805460ff19166001179055565b611132611232565b6001600160a01b0316611143610e3f565b6001600160a01b03161461118c576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6001600160a01b0381166111d15760405162461bcd60e51b8152600401808060200182810382526026815260200180611c606026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b3390565b6001600160a01b03831661127b5760405162461bcd60e51b8152600401808060200182810382526024815260200180611da56024913960400191505060405180910390fd5b6001600160a01b0382166112c05760405162461bcd60e51b8152600401808060200182810382526022815260200180611c866022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008282018381101561137c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008082116113d9576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816113e257fe5b049392505050565b6001600160a01b03831661142f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611d806025913960400191505060405180910390fd5b6001600160a01b0382166114745760405162461bcd60e51b8152600401808060200182810382526023815260200180611c3d6023913960400191505060405180910390fd5b600081116114b35760405162461bcd60e51b8152600401808060200182810382526029815260200180611d376029913960400191505060405180910390fd5b6001600160a01b0383166000908152600160205260409020548181101561150b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ca86026913960400191505060405180910390fd5b6001600160a01b03841660009081526001602052604081208383039055600754839190611541906127109061093e90859061178a565b9050600061156061271061093e6008548661178a90919063ffffffff16565b9050600061157f61271061093e6009548761178a90919063ffffffff16565b905061158b88886117e3565b1561169d573060008181526001602090815260409182902080548686019081019091558251908152915186880386900385900393926001600160a01b038d1692600080516020611d6083398151915292918290030190a38315611650576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166000818152600160209081526040918290208054890190558151888152915192938d1692600080516020611d608339815191529281900390910190a35b6001600160a01b038089166000818152600160209081526040918290208054860190558151858152915192938d1692600080516020611d608339815191529281900390910190a3506116e5565b6001600160a01b038088166000818152600160209081526040918290208054890190558151888152915192938c1692600080516020611d608339815191529281900390910190a35b6116ed611914565b80156116fc575060125460ff16155b80156117165750600d546001600160a01b03898116911614155b156117235761172361192e565b5050505050505050565b600082821115611784576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826117995750600061090e565b828202828482816117a657fe5b041461137c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611cce6021913960400191505060405180910390fd5b6001600160a01b0382166000908152600f602052604081205460ff168061182257506001600160a01b0382166000908152600f602052604090205460ff165b1561182f5750600061090e565b6000600e80548060200260200160405190810160405280929190818152602001828054801561188757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611869575b5050505050905060005b8151811015611909578181815181106118a657fe5b60200260200101516001600160a01b0316856001600160a01b031614806118f157508181815181106118d457fe5b60200260200101516001600160a01b0316846001600160a01b0316145b156119015760019250505061090e565b600101611891565b506000949350505050565b60105460009060ff16801561094457505060115447101590565b6012805460ff19166001179055601154479081106119a757600060026011548161195457fe5b04905080820347611964836119b4565b600b5460405147839003916001600160a01b03169082156108fc029083906000818181858888f193505050501580156119a1573d6000803e3d6000fd5b50505050505b506012805460ff19169055565b60028104808203476119c5836119d5565b6119cf8247611b84565b50505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0457fe5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611a5857600080fd5b505afa158015611a6c573d6000803e3d6000fd5b505050506040513d6020811015611a8257600080fd5b5051815182906001908110611a9357fe5b6001600160a01b039283166020918202929092010152600c54611ab99130911684611236565b600c5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015611b3f578181015183820152602001611b27565b505050509050019650505050505050600060405180830381600087803b158015611b6857600080fd5b505af1158015611b7c573d6000803e3d6000fd5b505050505050565b600c54611b9c9030906001600160a01b031684611236565b600c54600a546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b158015611c1157600080fd5b505af1158015611c25573d6000803e3d6000fd5b50505050506040513d60608110156119cf57600080fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200734e529ca88e9d71cfbc54c221c8d59fb38d1962e2e3752603c4f712d774a8a64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102125760003560e01c806370a0823111610118578063b91ac788116100a0578063e66f9c661161006f578063e66f9c661461072a578063e96fada21461073f578063edafd4ad14610754578063f2fde38b14610787578063fce589d8146107ba57610219565b8063b91ac7881461067d578063c2b7bbb6146106a7578063ca33e64c146106da578063dd62ed3e146106ef57610219565b80638da5cb5b116100e75780638da5cb5b146105cc57806395d89b41146105e157806398118cb4146105f6578063a457c2d71461060b578063a9059cbb1461064457610219565b806370a0823114610545578063715018a614610578578063890a81271461058d5780638997a942146105a257610219565b80632b112e491161019b5780633f4218e01161016a5780633f4218e01461048957806349bd5a5e146104bc57806354200d6f146104d1578063552a3784146104fd5780636b67c4df1461053057610219565b80632b112e49146103e6578063313ce567146103fb57806339509351146104265780633a8144871461045f57610219565b80631694505e116101e25780631694505e14610333578063180b0d7e1461036457806318160ddd1461037957806323b872dd1461038e57806327c8f835146103d157610219565b806293dc141461021e57806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c57610219565b3661021957005b600080fd5b34801561022a57600080fd5b506102336107cf565b005b34801561024157600080fd5b5061024a610860565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b0381351690602001356108f6565b604080519115158252519081900360200190f35b34801561031857600080fd5b50610321610914565b60408051918252519081900360200190f35b34801561033f57600080fd5b50610348610949565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b50610321610958565b34801561038557600080fd5b5061032161095e565b34801561039a57600080fd5b506102f8600480360360608110156103b157600080fd5b506001600160a01b03813581169160208101359091169060400135610964565b3480156103dd57600080fd5b50610348610a13565b3480156103f257600080fd5b50610321610a37565b34801561040757600080fd5b50610410610a81565b6040805160ff9092168252519081900360200190f35b34801561043257600080fd5b506102f86004803603604081101561044957600080fd5b506001600160a01b038135169060200135610a8a565b34801561046b57600080fd5b506102336004803603602081101561048257600080fd5b5035610ad5565b34801561049557600080fd5b506102f8600480360360208110156104ac57600080fd5b50356001600160a01b0316610bcd565b3480156104c857600080fd5b50610348610be2565b3480156104dd57600080fd5b50610233600480360360208110156104f457600080fd5b50351515610bf1565b34801561050957600080fd5b506102336004803603602081101561052057600080fd5b50356001600160a01b0316610c66565b34801561053c57600080fd5b50610321610d02565b34801561055157600080fd5b506103216004803603602081101561056857600080fd5b50356001600160a01b0316610d08565b34801561058457600080fd5b50610233610d23565b34801561059957600080fd5b506102f8610dcf565b3480156105ae57600080fd5b50610233600480360360208110156105c557600080fd5b5035610dd8565b3480156105d857600080fd5b50610348610e3f565b3480156105ed57600080fd5b5061024a610e4e565b34801561060257600080fd5b50610321610eaf565b34801561061757600080fd5b506102f86004803603604081101561062e57600080fd5b506001600160a01b038135169060200135610eb5565b34801561065057600080fd5b506102f86004803603604081101561066757600080fd5b506001600160a01b038135169060200135610f4d565b34801561068957600080fd5b50610348600480360360208110156106a057600080fd5b5035610f61565b3480156106b357600080fd5b50610233600480360360208110156106ca57600080fd5b50356001600160a01b0316610f8b565b3480156106e657600080fd5b5061034861103f565b3480156106fb57600080fd5b506103216004803603604081101561071257600080fd5b506001600160a01b038135811691602001351661104e565b34801561073657600080fd5b50610321611079565b34801561074b57600080fd5b5061034861107f565b34801561076057600080fd5b506102336004803603602081101561077757600080fd5b50356001600160a01b031661108e565b34801561079357600080fd5b50610233600480360360208110156107aa57600080fd5b50356001600160a01b031661112a565b3480156107c657600080fd5b5061032161122c565b6107d7611232565b6001600160a01b03166107e8610e3f565b6001600160a01b031614610831576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600e80548061083c57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b600061090a610903611232565b8484611236565b5060015b92915050565b6000610944606461093e60095461093860085460075461132290919063ffffffff16565b90611322565b90611383565b905090565b600c546001600160a01b031681565b61271081565b60035490565b60006109718484846113ea565b6001600160a01b038416600090815260026020526040812081610992611232565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156109f45760405162461bcd60e51b8152600401808060200182810382526028815260200180611cef6028913960400191505060405180910390fd5b610a0885610a00611232565b858403611236565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b6000610944610a466000610d08565b610a7b610a727f000000000000000000000000000000000000000000000000000000000000dead610d08565b6003549061172d565b9061172d565b60065460ff1690565b600061090a610a97611232565b848460026000610aa5611232565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205401611236565b610add611232565b6001600160a01b0316610aee610e3f565b6001600160a01b031614610b37576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600081118015610b475750804710155b610b8f576040805162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b600b546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610bc9573d6000803e3d6000fd5b5050565b600f6020526000908152604090205460ff1681565b600d546001600160a01b031681565b610bf9611232565b6001600160a01b0316610c0a610e3f565b6001600160a01b031614610c53576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6010805460ff1916911515919091179055565b610c6e611232565b6001600160a01b0316610c7f610e3f565b6001600160a01b031614610cc8576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600a80546001600160a01b039092166001600160a01b0319909216821790556000908152600f60205260409020805460ff19166001179055565b60095481565b6001600160a01b031660009081526001602052604090205490565b610d2b611232565b6001600160a01b0316610d3c610e3f565b6001600160a01b031614610d85576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60105460ff1681565b610de0611232565b6001600160a01b0316610df1610e3f565b6001600160a01b031614610e3a576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b601155565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ec5780601f106108c1576101008083540402835291602001916108ec565b60085481565b60008060026000610ec4611232565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610f2f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611dc96025913960400191505060405180910390fd5b610f43610f3a611232565b85858403611236565b5060019392505050565b600061090a610f5a611232565b84846113ea565b600e8181548110610f7157600080fd5b6000918252602090912001546001600160a01b0316905081565b610f93611232565b6001600160a01b0316610fa4610e3f565b6001600160a01b031614610fed576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60115481565b600b546001600160a01b031681565b611096611232565b6001600160a01b03166110a7610e3f565b6001600160a01b0316146110f0576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600b80546001600160a01b039092166001600160a01b0319909216821790556000908152600f60205260409020805460ff19166001179055565b611132611232565b6001600160a01b0316611143610e3f565b6001600160a01b03161461118c576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6001600160a01b0381166111d15760405162461bcd60e51b8152600401808060200182810382526026815260200180611c606026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b3390565b6001600160a01b03831661127b5760405162461bcd60e51b8152600401808060200182810382526024815260200180611da56024913960400191505060405180910390fd5b6001600160a01b0382166112c05760405162461bcd60e51b8152600401808060200182810382526022815260200180611c866022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008282018381101561137c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008082116113d9576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816113e257fe5b049392505050565b6001600160a01b03831661142f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611d806025913960400191505060405180910390fd5b6001600160a01b0382166114745760405162461bcd60e51b8152600401808060200182810382526023815260200180611c3d6023913960400191505060405180910390fd5b600081116114b35760405162461bcd60e51b8152600401808060200182810382526029815260200180611d376029913960400191505060405180910390fd5b6001600160a01b0383166000908152600160205260409020548181101561150b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ca86026913960400191505060405180910390fd5b6001600160a01b03841660009081526001602052604081208383039055600754839190611541906127109061093e90859061178a565b9050600061156061271061093e6008548661178a90919063ffffffff16565b9050600061157f61271061093e6009548761178a90919063ffffffff16565b905061158b88886117e3565b1561169d573060008181526001602090815260409182902080548686019081019091558251908152915186880386900385900393926001600160a01b038d1692600080516020611d6083398151915292918290030190a38315611650576001600160a01b037f000000000000000000000000000000000000000000000000000000000000dead81166000818152600160209081526040918290208054890190558151888152915192938d1692600080516020611d608339815191529281900390910190a35b6001600160a01b038089166000818152600160209081526040918290208054860190558151858152915192938d1692600080516020611d608339815191529281900390910190a3506116e5565b6001600160a01b038088166000818152600160209081526040918290208054890190558151888152915192938c1692600080516020611d608339815191529281900390910190a35b6116ed611914565b80156116fc575060125460ff16155b80156117165750600d546001600160a01b03898116911614155b156117235761172361192e565b5050505050505050565b600082821115611784576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826117995750600061090e565b828202828482816117a657fe5b041461137c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611cce6021913960400191505060405180910390fd5b6001600160a01b0382166000908152600f602052604081205460ff168061182257506001600160a01b0382166000908152600f602052604090205460ff165b1561182f5750600061090e565b6000600e80548060200260200160405190810160405280929190818152602001828054801561188757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611869575b5050505050905060005b8151811015611909578181815181106118a657fe5b60200260200101516001600160a01b0316856001600160a01b031614806118f157508181815181106118d457fe5b60200260200101516001600160a01b0316846001600160a01b0316145b156119015760019250505061090e565b600101611891565b506000949350505050565b60105460009060ff16801561094457505060115447101590565b6012805460ff19166001179055601154479081106119a757600060026011548161195457fe5b04905080820347611964836119b4565b600b5460405147839003916001600160a01b03169082156108fc029083906000818181858888f193505050501580156119a1573d6000803e3d6000fd5b50505050505b506012805460ff19169055565b60028104808203476119c5836119d5565b6119cf8247611b84565b50505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0457fe5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611a5857600080fd5b505afa158015611a6c573d6000803e3d6000fd5b505050506040513d6020811015611a8257600080fd5b5051815182906001908110611a9357fe5b6001600160a01b039283166020918202929092010152600c54611ab99130911684611236565b600c5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015611b3f578181015183820152602001611b27565b505050509050019650505050505050600060405180830381600087803b158015611b6857600080fd5b505af1158015611b7c573d6000803e3d6000fd5b505050505050565b600c54611b9c9030906001600160a01b031684611236565b600c54600a546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b158015611c1157600080fd5b505af1158015611c25573d6000803e3d6000fd5b50505050506040513d60608110156119cf57600080fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200734e529ca88e9d71cfbc54c221c8d59fb38d1962e2e3752603c4f712d774a8a64736f6c63430007060033

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.