ETH Price: $3,314.55 (+1.32%)
 

Overview

Max Total Supply

1,000,000,000,000,000 ELE

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,348,611,053,664.053512799 ELE

Value
$0.00
0xE02eF014D8869cC07958aD8EAA3aeb5ffE6Ca146
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:
ElephantMonster

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-17
*/

/**
 * WWW.ELEPHANT.MONSTER
 * FAIREST MEME TOKEN LAUNCH EVER
 * https://t.me/ElephantMonster
 * 2.5% MAX HOLDING PER WALLET
**/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;

/**
 * @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, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {

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

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

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

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


contract ElephantMonster {
    using SafeMath for uint256;
    using Address for address payable;

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

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;

    address public _owner;
    address payable public marketing;
    address payable public development;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**15 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "ElephantMonster";
    string private _symbol = "ELE";
    uint8 private _decimals = 9;

    uint256 public __reflectFee = 1;
    uint256 public __marketingFee = 4;
    uint256 public __developmentFee = 1;
    uint256 public __liquidityFee = 1;
    uint256 public __prev_liquidityFee = 1;

    uint256 public immutable contract_deployed;

    uint256 public _pendingLiquidityFees = 0;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxWalletHolding = 25 * 10**12 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 9 * 10**12 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    function _msgSender() internal view virtual returns (address payable) {
       return msg.sender;
     }

    modifier onlyOwner() {
       require(_owner == msg.sender, "Caller is not the owner");
       _;
   }

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

    constructor (address payable _marketing, address payable _development) public {
      _owner = msg.sender;
      marketing = _marketing;
      development = _development;
      contract_deployed = block.timestamp;
      _rOwned[msg.sender] = _rTotal;
      IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
      uniswapV2Router = _uniswapV2Router;
      uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
      _isExcludedFromFee[msg.sender] = true;
      _isExcludedFromFee[address(this)] = true;
      emit Transfer(address(0), msg.sender, _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function renounceOwnership() public onlyOwner {
        _owner = address(0);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    //this can be called externally by deployer to immediately process accumulated fees accordingly (distribute to treasury & liquidity)
    function manualSwapAndLiquify() public onlyOwner() {
        uint256 contractTokenBalance = balanceOf(address(this));
        swapAndLiquify(contractTokenBalance);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

     //to receive ETH from uniswapV2Router when swaping
    receive() external payable {}

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        uint256[4] memory tValues = _getTValuesArray(tAmount);
        uint256[3] memory rValues = _getRValuesArray(tAmount, tValues[1], tValues[2], tValues[3]);
        return (rValues[0], rValues[1], rValues[2], tValues[0], tValues[1], tValues[2], tValues[3]);
    }

    function _getTValuesArray(uint256 tAmount) private view returns (uint256[4] memory val) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tOperations = calculateOperationsFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tOperations);
        return [tTransferAmount, tFee, tLiquidity, tOperations];
    }

    function _getRValuesArray(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tOperations) private view returns (uint256[3] memory val) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(tLiquidity.mul(currentRate)).sub(tOperations.mul(currentRate));
        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 _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        _pendingLiquidityFees = _pendingLiquidityFees.add(tLiquidity);
    }

    function _takeOperations(uint256 tOperations) private {
        uint256 currentRate =  _getRate();
        uint256 rOperations = tOperations.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rOperations);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(__reflectFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(__liquidityFee).div(
            10**2
        );
    }

    function calculateOperationsFee(uint256 _amount) private view returns (uint256) {
        uint256 operations_fee = __marketingFee.add(__developmentFee);
        return _amount.mul(operations_fee).div(
            10**2
        );
    }

    function removeAllFee() private {
        __prev_liquidityFee = __liquidityFee;

        __reflectFee = 0;
        __liquidityFee = 0;
        __marketingFee = 0;
        __developmentFee = 0;
    }

    function restoreAllFee() private {
        __reflectFee = 1;
        __liquidityFee = __prev_liquidityFee;
        __marketingFee = 4;
        __developmentFee = 1;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    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 ((contract_deployed + 30 days) < block.timestamp) {
          __liquidityFee = 0;
          __prev_liquidityFee = 0;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        bool isTransferBuy = from == uniswapV2Pair;
        bool isTransferSell = to == uniswapV2Pair;
        if (!isTransferBuy && !isTransferSell) takeFee = false;

        _tokenTransfer(from,to,amount,takeFee);

        restoreAllFee();
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 liquidityPart = 0;
        if (_pendingLiquidityFees < contractTokenBalance) liquidityPart = _pendingLiquidityFees;
        uint256 distributionPart = contractTokenBalance.sub(liquidityPart);
        uint256 liquidityHalfPart = liquidityPart.div(2);
        uint256 liquidityHalfTokenPart = liquidityPart.sub(liquidityHalfPart);

        //now swapping half of the liquidity part + all of the distribution part into ETH
        uint256 totalETHSwap = liquidityHalfPart.add(distributionPart);

        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(totalETHSwap);

        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 liquidityBalance = liquidityHalfPart.mul(newBalance).div(totalETHSwap);

        // add liquidity to uniswap
        if (liquidityHalfTokenPart > 0 && liquidityBalance > 0) addLiquidity(liquidityHalfTokenPart, liquidityBalance);
        emit SwapAndLiquify(liquidityHalfPart, liquidityBalance, liquidityHalfPart);

        newBalance = address(this).balance;
        payDistribution(newBalance);
        _pendingLiquidityFees = 0;
    }

    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
            marketing,
            block.timestamp
        );
    }

    function payDistribution(uint256 distrib) private {
      uint256 marketingPart = distrib.mul(__marketingFee).div(__marketingFee.add(__developmentFee));
      marketing.sendValue(marketingPart);
      development.sendValue(distrib.sub(marketingPart));
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!_isExcludedFromFee[recipient] && (recipient != uniswapV2Pair)) require(balanceOf(recipient) < _maxWalletHolding, "Max Wallet holding limit exceeded");
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address payable","name":"_development","type":"address"}],"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":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"__developmentFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"__prev_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__reflectFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pendingLiquidityFees","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":[],"name":"contract_deployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"development","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwapAndLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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"}]

60e060405269d3c21bcecceda1000000600755600754600019816200002057fe5b06600019036008556040518060400160405280600f81526020017f456c657068616e744d6f6e737465720000000000000000000000000000000000815250600a90805190602001906200007592919062000605565b506040518060400160405280600381526020017f454c450000000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000c392919062000605565b506009600c60006101000a81548160ff021916908360ff1602179055506001600d556004600e556001600f556001601055600160115560006012556001601360016101000a81548160ff02191690831515021790555069054b40b1f852bda000006014556901e7e4171bf4d3a000006015553480156200014257600080fd5b506040516200383338038062003833833981810160405260408110156200016857600080fd5b81019080805190602001909291908051906020019092919050505033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042608081815250506008546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032a57600080fd5b505afa1580156200033f573d6000803e3d6000fd5b505050506040513d60208110156200035657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ca57600080fd5b505afa158015620003df573d6000803e3d6000fd5b505050506040513d6020811015620003f657600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200047157600080fd5b505af115801562000486573d6000803e3d6000fd5b505050506040513d60208110156200049d57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a3505050620006ab565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064857805160ff191683800117855562000679565b8280016001018555821562000679579182015b82811115620006785782518255916020019190600101906200065b565b5b5090506200068891906200068c565b5090565b5b80821115620006a75760008160009055506001016200068d565b5090565b60805160a05160601c60c05160601c6131236200071060003980610f1c528061197d5280611aa85280611afb5280612024525080610be852806124575280612543528061256a52806126fb52806127225250806114e6528061190c52506131236000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610a16578063ebdb05f914610a9b578063ee3922cc14610ac6578063f499133514610af1576101ee565b8063a9059cbb146108fc578063b2bdfa7b1461096d578063c49b9a80146109ae578063dac8bf5b146109eb576101ee565b8063866435c5116100d1578063866435c5146107a557806395d89b41146107d05780639c2c61e514610860578063a457c2d71461088b576101ee565b8063715018a61461070b578063733b864f146107225780637b929c271461073957806384ccb5751461077a576101ee565b8063313ce5671161017a5780634a74bb02116101495780634a74bb02146105e75780635342acb41461061457806359c041251461067b57806370a08231146106a6576101ee565b8063313ce567146104ac57806339509351146104da5780634549b0391461054b57806349bd5a5e146105a6576101ee565b806318160ddd116101b657806318160ddd1461036057806323b872dd1461038b5780632d3e474a1461041c5780632d8381191461045d576101ee565b806306fdde03146101f3578063095ea7b31461028357806313114a9d146102f45780631694505e1461031f576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610b1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561024857808201518184015260208101905061022d565b50505050905090810190601f1680156102755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028f57600080fd5b506102dc600480360360408110156102a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bbe565b60405180821515815260200191505060405180910390f35b34801561030057600080fd5b50610309610bdc565b6040518082815260200191505060405180910390f35b34801561032b57600080fd5b50610334610be6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561036c57600080fd5b50610375610c0a565b6040518082815260200191505060405180910390f35b34801561039757600080fd5b50610404600480360360608110156103ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c14565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b50610431610ced565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561046957600080fd5b506104966004803603602081101561048057600080fd5b8101908080359060200190929190505050610d13565b6040518082815260200191505060405180910390f35b3480156104b857600080fd5b506104c1610d97565b604051808260ff16815260200191505060405180910390f35b3480156104e657600080fd5b50610533600480360360408110156104fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dae565b60405180821515815260200191505060405180910390f35b34801561055757600080fd5b506105906004803603604081101561056e57600080fd5b8101908080359060200190929190803515159060200190929190505050610e61565b6040518082815260200191505060405180910390f35b3480156105b257600080fd5b506105bb610f1a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105f357600080fd5b506105fc610f3e565b60405180821515815260200191505060405180910390f35b34801561062057600080fd5b506106636004803603602081101561063757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f51565b60405180821515815260200191505060405180910390f35b34801561068757600080fd5b50610690610fa7565b6040518082815260200191505060405180910390f35b3480156106b257600080fd5b506106f5600480360360208110156106c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fad565b6040518082815260200191505060405180910390f35b34801561071757600080fd5b50610720610ffd565b005b34801561072e57600080fd5b50610737611104565b005b34801561074557600080fd5b5061074e6111e0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561078657600080fd5b5061078f611206565b6040518082815260200191505060405180910390f35b3480156107b157600080fd5b506107ba61120c565b6040518082815260200191505060405180910390f35b3480156107dc57600080fd5b506107e5611212565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561082557808201518184015260208101905061080a565b50505050905090810190601f1680156108525780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561086c57600080fd5b506108756112b4565b6040518082815260200191505060405180910390f35b34801561089757600080fd5b506108e4600480360360408110156108ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112ba565b60405180821515815260200191505060405180910390f35b34801561090857600080fd5b506109556004803603604081101561091f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611387565b60405180821515815260200191505060405180910390f35b34801561097957600080fd5b506109826113a5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ba57600080fd5b506109e9600480360360208110156109d157600080fd5b810190808035151590602001909291905050506113cb565b005b3480156109f757600080fd5b50610a006114e4565b6040518082815260200191505060405180910390f35b348015610a2257600080fd5b50610a8560048036036040811015610a3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611508565b6040518082815260200191505060405180910390f35b348015610aa757600080fd5b50610ab061158f565b6040518082815260200191505060405180910390f35b348015610ad257600080fd5b50610adb611595565b6040518082815260200191505060405180910390f35b348015610afd57600080fd5b50610b0661159b565b6040518082815260200191505060405180910390f35b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bb45780601f10610b8957610100808354040283529160200191610bb4565b820191906000526020600020905b815481529060010190602001808311610b9757829003601f168201915b5050505050905090565b6000610bd2610bcb6115a1565b84846115a9565b6001905092915050565b6000600954905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b6000610c218484846117a0565b610ce284610c2d6115a1565b610cdd8560405180606001604052806028815260200161300e60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c936115a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7e9092919063ffffffff16565b6115a9565b600190509392505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600854821115610d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612f67602a913960400191505060405180910390fd5b6000610d7a611c3e565b9050610d8f8184611c6990919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b6000610e57610dbb6115a1565b84610e528560026000610dcc6115a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6115a9565b6001905092915050565b6000600754831115610edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610efc576000610eeb84611d3b565b505050505050905080915050610f14565b6000610f0784611d3b565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360019054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b6000610ff66000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d13565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b6000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b60006111d230610fad565b90506111dd81611e3b565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60125481565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112aa5780601f1061127f576101008083540402835291602001916112aa565b820191906000526020600020905b81548152906001019060200180831161128d57829003601f168201915b5050505050905090565b600f5481565b600061137d6112c76115a1565b84611378856040518060600160405280602581526020016130a860259139600260006112f16115a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7e9092919063ffffffff16565b6115a9565b6001905092915050565b600061139b6113946115a1565b84846117a0565b6001905092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b80601360016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b60105481565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130846024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f916022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061305f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f446023913960400191505060405180910390fd5b60008111611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806130366029913960400191505060405180910390fd5b4262278d007f000000000000000000000000000000000000000000000000000000000000000001101561194357600060108190555060006011819055505b600061194e30610fad565b9050600060155482101590508080156119745750601360009054906101000a900460ff16155b80156119cc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156119e45750601360019054906101000a900460ff165b156119f3576119f282611e3b565b5b600060019050600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a9a5750600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611aa457600090505b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905081158015611b56575080155b15611b6057600092505b611b6c88888886611fb4565b611b746120e1565b5050505050505050565b6000838311158290611c2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bf0578082015181840152602081019050611bd5565b50505050905090810190601f168015611c1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000611c4b612104565b91509150611c628183611c6990919063ffffffff16565b9250505090565b6000611cab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612151565b905092915050565b600080828401905083811015611d31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000611d4e612eff565b611d5789612217565b9050611d61612f21565b611da08a83600160048110611d7257fe5b602002015184600260048110611d8457fe5b602002015185600360048110611d9657fe5b60200201516122ad565b905080600060038110611daf57fe5b602002015181600160038110611dc157fe5b602002015182600260038110611dd357fe5b602002015184600060048110611de557fe5b602002015185600160048110611df757fe5b602002015186600260048110611e0957fe5b602002015187600360048110611e1b57fe5b602002015198509850985098509850985098505050919395979092949650565b6001601360006101000a81548160ff0219169083151502179055506000816012541015611e685760125490505b6000611e7d828461237790919063ffffffff16565b90506000611e95600284611c6990919063ffffffff16565b90506000611eac828561237790919063ffffffff16565b90506000611ec38484611cb390919063ffffffff16565b90506000479050611ed3826123c1565b6000611ee8824761237790919063ffffffff16565b90506000611f1184611f03848961266f90919063ffffffff16565b611c6990919063ffffffff16565b9050600085118015611f235750600081115b15611f3357611f3285826126f5565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a1479150611f8682612861565b600060128190555050505050505050506000601360006101000a81548160ff02191690831515021790555050565b80611fc257611fc161294e565b5b611fcd848484612979565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561207357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156120db5760145461208484610fad565b106120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130cd6021913960400191505060405180910390fd5b5b50505050565b6001600d819055506011546010819055506004600e819055506001600f81905550565b600080600060085490506000600754905061212c600754600854611c6990919063ffffffff16565b8210156121445760085460075493509350505061214d565b81819350935050505b9091565b600080831182906121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121c25780820151818401526020810190506121a7565b50505050905090810190601f1680156121ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161220957fe5b049050809150509392505050565b61221f612eff565b600061222a83612b4e565b9050600061223784612b7f565b9050600061224485612bb0565b9050600061227f8261227185612263888b61237790919063ffffffff16565b61237790919063ffffffff16565b61237790919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b6122b5612f21565b60006122bf611c3e565b905060006122d6828861266f90919063ffffffff16565b905060006122ed838861266f90919063ffffffff16565b9050600061234c612307858861266f90919063ffffffff16565b61233e61231d878b61266f90919063ffffffff16565b612330868861237790919063ffffffff16565b61237790919063ffffffff16565b61237790919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b60006123b983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b7e565b905092915050565b6060600267ffffffffffffffff811180156123db57600080fd5b5060405190808252806020026020018201604052801561240a5781602001602082028036833780820191505090505b509050308160008151811061241b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124bb57600080fd5b505afa1580156124cf573d6000803e3d6000fd5b505050506040513d60208110156124e557600080fd5b81019080805190602001909291905050508160018151811061250357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612568307f0000000000000000000000000000000000000000000000000000000000000000846115a9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561262a57808201518184015260208101905061260f565b505050509050019650505050505050600060405180830381600087803b15801561265357600080fd5b505af1158015612667573d6000803e3d6000fd5b505050505050565b60008083141561268257600090506126ef565b600082840290508284828161269357fe5b04146126ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612fed6021913960400191505060405180910390fd5b809150505b92915050565b612720307f0000000000000000000000000000000000000000000000000000000000000000846115a9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561280a57600080fd5b505af115801561281e573d6000803e3d6000fd5b50505050506040513d606081101561283557600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006128a061287d600f54600e54611cb390919063ffffffff16565b612892600e548561266f90919063ffffffff16565b611c6990919063ffffffff16565b90506128ed81600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bfa90919063ffffffff16565b61294a612903828461237790919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bfa90919063ffffffff16565b5050565b6010546011819055506000600d8190555060006010819055506000600e819055506000600f81905550565b600080600080600080600061298d88611d3b565b96509650965096509650965096506129ec876000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237790919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7f866000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612aca82612d34565b612ad381612e0a565b612add8584612ec5565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000612b786064612b6a600d548561266f90919063ffffffff16565b611c6990919063ffffffff16565b9050919050565b6000612ba96064612b9b6010548561266f90919063ffffffff16565b611c6990919063ffffffff16565b9050919050565b600080612bca600f54600e54611cb390919063ffffffff16565b9050612bf26064612be4838661266f90919063ffffffff16565b611c6990919063ffffffff16565b915050919050565b80471015612c70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612cd0576040519150601f19603f3d011682016040523d82523d6000602084013e612cd5565b606091505b5050905080612d2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180612fb3603a913960400191505060405180910390fd5b505050565b6000612d3e611c3e565b90506000612d55828461266f90919063ffffffff16565b9050612da8816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dff83601254611cb390919063ffffffff16565b601281905550505050565b6000612e14611c3e565b90506000612e2b828461266f90919063ffffffff16565b9050612e7e816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b612eda8260085461237790919063ffffffff16565b600881905550612ef581600954611cb390919063ffffffff16565b6009819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220f816e7774b0f4407c97144988563c2811a1d763928eb1e68a25a81001172c46364736f6c634300060c0033000000000000000000000000de3735dd1bf169529b8eb312ef99c33c31c11eee000000000000000000000000c311647ac15b2e06feb83efac4f92d578668150e

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610a16578063ebdb05f914610a9b578063ee3922cc14610ac6578063f499133514610af1576101ee565b8063a9059cbb146108fc578063b2bdfa7b1461096d578063c49b9a80146109ae578063dac8bf5b146109eb576101ee565b8063866435c5116100d1578063866435c5146107a557806395d89b41146107d05780639c2c61e514610860578063a457c2d71461088b576101ee565b8063715018a61461070b578063733b864f146107225780637b929c271461073957806384ccb5751461077a576101ee565b8063313ce5671161017a5780634a74bb02116101495780634a74bb02146105e75780635342acb41461061457806359c041251461067b57806370a08231146106a6576101ee565b8063313ce567146104ac57806339509351146104da5780634549b0391461054b57806349bd5a5e146105a6576101ee565b806318160ddd116101b657806318160ddd1461036057806323b872dd1461038b5780632d3e474a1461041c5780632d8381191461045d576101ee565b806306fdde03146101f3578063095ea7b31461028357806313114a9d146102f45780631694505e1461031f576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610b1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561024857808201518184015260208101905061022d565b50505050905090810190601f1680156102755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028f57600080fd5b506102dc600480360360408110156102a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bbe565b60405180821515815260200191505060405180910390f35b34801561030057600080fd5b50610309610bdc565b6040518082815260200191505060405180910390f35b34801561032b57600080fd5b50610334610be6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561036c57600080fd5b50610375610c0a565b6040518082815260200191505060405180910390f35b34801561039757600080fd5b50610404600480360360608110156103ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c14565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b50610431610ced565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561046957600080fd5b506104966004803603602081101561048057600080fd5b8101908080359060200190929190505050610d13565b6040518082815260200191505060405180910390f35b3480156104b857600080fd5b506104c1610d97565b604051808260ff16815260200191505060405180910390f35b3480156104e657600080fd5b50610533600480360360408110156104fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dae565b60405180821515815260200191505060405180910390f35b34801561055757600080fd5b506105906004803603604081101561056e57600080fd5b8101908080359060200190929190803515159060200190929190505050610e61565b6040518082815260200191505060405180910390f35b3480156105b257600080fd5b506105bb610f1a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105f357600080fd5b506105fc610f3e565b60405180821515815260200191505060405180910390f35b34801561062057600080fd5b506106636004803603602081101561063757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f51565b60405180821515815260200191505060405180910390f35b34801561068757600080fd5b50610690610fa7565b6040518082815260200191505060405180910390f35b3480156106b257600080fd5b506106f5600480360360208110156106c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fad565b6040518082815260200191505060405180910390f35b34801561071757600080fd5b50610720610ffd565b005b34801561072e57600080fd5b50610737611104565b005b34801561074557600080fd5b5061074e6111e0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561078657600080fd5b5061078f611206565b6040518082815260200191505060405180910390f35b3480156107b157600080fd5b506107ba61120c565b6040518082815260200191505060405180910390f35b3480156107dc57600080fd5b506107e5611212565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561082557808201518184015260208101905061080a565b50505050905090810190601f1680156108525780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561086c57600080fd5b506108756112b4565b6040518082815260200191505060405180910390f35b34801561089757600080fd5b506108e4600480360360408110156108ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112ba565b60405180821515815260200191505060405180910390f35b34801561090857600080fd5b506109556004803603604081101561091f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611387565b60405180821515815260200191505060405180910390f35b34801561097957600080fd5b506109826113a5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ba57600080fd5b506109e9600480360360208110156109d157600080fd5b810190808035151590602001909291905050506113cb565b005b3480156109f757600080fd5b50610a006114e4565b6040518082815260200191505060405180910390f35b348015610a2257600080fd5b50610a8560048036036040811015610a3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611508565b6040518082815260200191505060405180910390f35b348015610aa757600080fd5b50610ab061158f565b6040518082815260200191505060405180910390f35b348015610ad257600080fd5b50610adb611595565b6040518082815260200191505060405180910390f35b348015610afd57600080fd5b50610b0661159b565b6040518082815260200191505060405180910390f35b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bb45780601f10610b8957610100808354040283529160200191610bb4565b820191906000526020600020905b815481529060010190602001808311610b9757829003601f168201915b5050505050905090565b6000610bd2610bcb6115a1565b84846115a9565b6001905092915050565b6000600954905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b6000610c218484846117a0565b610ce284610c2d6115a1565b610cdd8560405180606001604052806028815260200161300e60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c936115a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7e9092919063ffffffff16565b6115a9565b600190509392505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600854821115610d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612f67602a913960400191505060405180910390fd5b6000610d7a611c3e565b9050610d8f8184611c6990919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b6000610e57610dbb6115a1565b84610e528560026000610dcc6115a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6115a9565b6001905092915050565b6000600754831115610edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610efc576000610eeb84611d3b565b505050505050905080915050610f14565b6000610f0784611d3b565b5050505050915050809150505b92915050565b7f000000000000000000000000d2a32c9a9f0eeb2514bce17a560b7d75457f6c8e81565b601360019054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b6000610ff66000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d13565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b6000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b60006111d230610fad565b90506111dd81611e3b565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60125481565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112aa5780601f1061127f576101008083540402835291602001916112aa565b820191906000526020600020905b81548152906001019060200180831161128d57829003601f168201915b5050505050905090565b600f5481565b600061137d6112c76115a1565b84611378856040518060600160405280602581526020016130a860259139600260006112f16115a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7e9092919063ffffffff16565b6115a9565b6001905092915050565b600061139b6113946115a1565b84846117a0565b6001905092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b80601360016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b7f00000000000000000000000000000000000000000000000000000000619550bb81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b60105481565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130846024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f916022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061305f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f446023913960400191505060405180910390fd5b60008111611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806130366029913960400191505060405180910390fd5b4262278d007f00000000000000000000000000000000000000000000000000000000619550bb01101561194357600060108190555060006011819055505b600061194e30610fad565b9050600060155482101590508080156119745750601360009054906101000a900460ff16155b80156119cc57507f000000000000000000000000d2a32c9a9f0eeb2514bce17a560b7d75457f6c8e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156119e45750601360019054906101000a900460ff165b156119f3576119f282611e3b565b5b600060019050600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a9a5750600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611aa457600090505b60007f000000000000000000000000d2a32c9a9f0eeb2514bce17a560b7d75457f6c8e73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000d2a32c9a9f0eeb2514bce17a560b7d75457f6c8e73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905081158015611b56575080155b15611b6057600092505b611b6c88888886611fb4565b611b746120e1565b5050505050505050565b6000838311158290611c2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bf0578082015181840152602081019050611bd5565b50505050905090810190601f168015611c1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000611c4b612104565b91509150611c628183611c6990919063ffffffff16565b9250505090565b6000611cab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612151565b905092915050565b600080828401905083811015611d31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000611d4e612eff565b611d5789612217565b9050611d61612f21565b611da08a83600160048110611d7257fe5b602002015184600260048110611d8457fe5b602002015185600360048110611d9657fe5b60200201516122ad565b905080600060038110611daf57fe5b602002015181600160038110611dc157fe5b602002015182600260038110611dd357fe5b602002015184600060048110611de557fe5b602002015185600160048110611df757fe5b602002015186600260048110611e0957fe5b602002015187600360048110611e1b57fe5b602002015198509850985098509850985098505050919395979092949650565b6001601360006101000a81548160ff0219169083151502179055506000816012541015611e685760125490505b6000611e7d828461237790919063ffffffff16565b90506000611e95600284611c6990919063ffffffff16565b90506000611eac828561237790919063ffffffff16565b90506000611ec38484611cb390919063ffffffff16565b90506000479050611ed3826123c1565b6000611ee8824761237790919063ffffffff16565b90506000611f1184611f03848961266f90919063ffffffff16565b611c6990919063ffffffff16565b9050600085118015611f235750600081115b15611f3357611f3285826126f5565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a1479150611f8682612861565b600060128190555050505050505050506000601360006101000a81548160ff02191690831515021790555050565b80611fc257611fc161294e565b5b611fcd848484612979565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561207357507f000000000000000000000000d2a32c9a9f0eeb2514bce17a560b7d75457f6c8e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156120db5760145461208484610fad565b106120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130cd6021913960400191505060405180910390fd5b5b50505050565b6001600d819055506011546010819055506004600e819055506001600f81905550565b600080600060085490506000600754905061212c600754600854611c6990919063ffffffff16565b8210156121445760085460075493509350505061214d565b81819350935050505b9091565b600080831182906121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121c25780820151818401526020810190506121a7565b50505050905090810190601f1680156121ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161220957fe5b049050809150509392505050565b61221f612eff565b600061222a83612b4e565b9050600061223784612b7f565b9050600061224485612bb0565b9050600061227f8261227185612263888b61237790919063ffffffff16565b61237790919063ffffffff16565b61237790919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b6122b5612f21565b60006122bf611c3e565b905060006122d6828861266f90919063ffffffff16565b905060006122ed838861266f90919063ffffffff16565b9050600061234c612307858861266f90919063ffffffff16565b61233e61231d878b61266f90919063ffffffff16565b612330868861237790919063ffffffff16565b61237790919063ffffffff16565b61237790919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b60006123b983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b7e565b905092915050565b6060600267ffffffffffffffff811180156123db57600080fd5b5060405190808252806020026020018201604052801561240a5781602001602082028036833780820191505090505b509050308160008151811061241b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124bb57600080fd5b505afa1580156124cf573d6000803e3d6000fd5b505050506040513d60208110156124e557600080fd5b81019080805190602001909291905050508160018151811061250357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612568307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115a9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561262a57808201518184015260208101905061260f565b505050509050019650505050505050600060405180830381600087803b15801561265357600080fd5b505af1158015612667573d6000803e3d6000fd5b505050505050565b60008083141561268257600090506126ef565b600082840290508284828161269357fe5b04146126ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612fed6021913960400191505060405180910390fd5b809150505b92915050565b612720307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115a9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561280a57600080fd5b505af115801561281e573d6000803e3d6000fd5b50505050506040513d606081101561283557600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006128a061287d600f54600e54611cb390919063ffffffff16565b612892600e548561266f90919063ffffffff16565b611c6990919063ffffffff16565b90506128ed81600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bfa90919063ffffffff16565b61294a612903828461237790919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bfa90919063ffffffff16565b5050565b6010546011819055506000600d8190555060006010819055506000600e819055506000600f81905550565b600080600080600080600061298d88611d3b565b96509650965096509650965096506129ec876000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237790919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7f866000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612aca82612d34565b612ad381612e0a565b612add8584612ec5565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000612b786064612b6a600d548561266f90919063ffffffff16565b611c6990919063ffffffff16565b9050919050565b6000612ba96064612b9b6010548561266f90919063ffffffff16565b611c6990919063ffffffff16565b9050919050565b600080612bca600f54600e54611cb390919063ffffffff16565b9050612bf26064612be4838661266f90919063ffffffff16565b611c6990919063ffffffff16565b915050919050565b80471015612c70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612cd0576040519150601f19603f3d011682016040523d82523d6000602084013e612cd5565b606091505b5050905080612d2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180612fb3603a913960400191505060405180910390fd5b505050565b6000612d3e611c3e565b90506000612d55828461266f90919063ffffffff16565b9050612da8816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dff83601254611cb390919063ffffffff16565b601281905550505050565b6000612e14611c3e565b90506000612e2b828461266f90919063ffffffff16565b9050612e7e816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb390919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b612eda8260085461237790919063ffffffff16565b600881905550612ef581600954611cb390919063ffffffff16565b6009819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220f816e7774b0f4407c97144988563c2811a1d763928eb1e68a25a81001172c46364736f6c634300060c0033

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

000000000000000000000000de3735dd1bf169529b8eb312ef99c33c31c11eee000000000000000000000000c311647ac15b2e06feb83efac4f92d578668150e

-----Decoded View---------------
Arg [0] : _marketing (address): 0xdE3735dd1BF169529B8eB312eF99C33c31C11EeE
Arg [1] : _development (address): 0xc311647AC15B2e06fEb83EFAc4f92D578668150e

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000de3735dd1bf169529b8eb312ef99c33c31c11eee
Arg [1] : 000000000000000000000000c311647ac15b2e06feb83efac4f92d578668150e


Deployed Bytecode Sourcemap

10998:15141:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13845:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14661:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15636:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12230:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14122:86;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14821:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11530:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16269:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14031:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15133:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15823:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12288:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12363:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20574:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11961:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14216:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15731:84;;;;;;;;;;;;;:::i;:::-;;16668:172;;;;;;;;;;;;;:::i;:::-;;11569:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12083:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12181:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13936:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12001:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15359:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14353:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11502:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16848:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12130:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14519:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11923:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12043:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12412:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13845:83;13882:13;13915:5;13908:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13845:83;:::o;14661:152::-;14727:4;14744:39;14753:12;:10;:12::i;:::-;14767:7;14776:6;14744:8;:39::i;:::-;14801:4;14794:11;;14661:152;;;;:::o;15636:87::-;15678:7;15705:10;;15698:17;;15636:87;:::o;12230:51::-;;;:::o;14122:86::-;14166:7;14193;;14186:14;;14122:86;:::o;14821:304::-;14910:4;14927:36;14937:6;14945:9;14956:6;14927:9;:36::i;:::-;14974:121;14983:6;14991:12;:10;:12::i;:::-;15005:89;15043:6;15005:89;;;;;;;;;;;;;;;;;:11;:19;15017:6;15005:19;;;;;;;;;;;;;;;:33;15025:12;:10;:12::i;:::-;15005:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14974:8;:121::i;:::-;15113:4;15106:11;;14821:304;;;;;:::o;11530:32::-;;;;;;;;;;;;;:::o;16269:253::-;16335:7;16374;;16363;:18;;16355:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16439:19;16462:10;:8;:10::i;:::-;16439:33;;16490:24;16502:11;16490:7;:11;;:24;;;;:::i;:::-;16483:31;;;16269:253;;;:::o;14031:83::-;14072:5;14097:9;;;;;;;;;;;14090:16;;14031:83;:::o;15133:218::-;15221:4;15238:83;15247:12;:10;:12::i;:::-;15261:7;15270:50;15309:10;15270:11;:25;15282:12;:10;:12::i;:::-;15270:25;;;;;;;;;;;;;;;:34;15296:7;15270:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15238:8;:83::i;:::-;15339:4;15332:11;;15133:218;;;;:::o;15823:438::-;15913:7;15952;;15941;:18;;15933:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16011:17;16006:248;;16046:15;16071:19;16082:7;16071:10;:19::i;:::-;16045:45;;;;;;;;16112:7;16105:14;;;;;16006:248;16154:23;16186:19;16197:7;16186:10;:19::i;:::-;16152:53;;;;;;;;16227:15;16220:22;;;15823:438;;;;;:::o;12288:38::-;;;:::o;12363:40::-;;;;;;;;;;;;;:::o;20574:123::-;20638:4;20662:18;:27;20681:7;20662:27;;;;;;;;;;;;;;;;;;;;;;;;;20655:34;;20574:123;;;:::o;11961:33::-;;;;:::o;14216:129::-;14273:7;14300:37;14320:7;:16;14328:7;14320:16;;;;;;;;;;;;;;;;14300:19;:37::i;:::-;14293:44;;14216:129;;;:::o;15731:84::-;12970:10;12960:20;;:6;;;;;;;;;;;:20;;;12952:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15805:1:::1;15788:6;;:19;;;;;;;;;;;;;;;;;;15731:84::o:0;16668:172::-;12970:10;12960:20;;:6;;;;;;;;;;;:20;;;12952:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16730:28:::1;16761:24;16779:4;16761:9;:24::i;:::-;16730:55;;16796:36;16811:20;16796:14;:36::i;:::-;13018:1;16668:172::o:0;11569:34::-;;;;;;;;;;;;;:::o;12083:38::-;;;;:::o;12181:40::-;;;;:::o;13936:87::-;13975:13;14008:7;14001:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13936:87;:::o;12001:35::-;;;;:::o;15359:269::-;15452:4;15469:129;15478:12;:10;:12::i;:::-;15492:7;15501:96;15540:15;15501:96;;;;;;;;;;;;;;;;;:11;:25;15513:12;:10;:12::i;:::-;15501:25;;;;;;;;;;;;;;;:34;15527:7;15501:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15469:8;:129::i;:::-;15616:4;15609:11;;15359:269;;;;:::o;14353:158::-;14422:4;14439:42;14449:12;:10;:12::i;:::-;14463:9;14474:6;14439:9;:42::i;:::-;14499:4;14492:11;;14353:158;;;;:::o;11502:21::-;;;;;;;;;;;;;:::o;16848:171::-;12970:10;12960:20;;:6;;;;;;;;;;;:20;;;12952:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16949:8:::1;16925:21;;:32;;;;;;;;;;;;;;;;;;16973:38;17002:8;16973:38;;;;;;;;;;;;;;;;;;;;16848:171:::0;:::o;12130:42::-;;;:::o;14519:134::-;14591:7;14618:11;:18;14630:5;14618:18;;;;;;;;;;;;;;;:27;14637:7;14618:27;;;;;;;;;;;;;;;;14611:34;;14519:134;;;;:::o;11923:31::-;;;;:::o;12043:33::-;;;;:::o;12412:54::-;;;;:::o;12807:106::-;12860:15;12894:10;12887:17;;12807:106;:::o;20705:337::-;20815:1;20798:19;;:5;:19;;;;20790:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20896:1;20877:21;;:7;:21;;;;20869:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20980:6;20950:11;:18;20962:5;20950:18;;;;;;;;;;;;;;;:27;20969:7;20950:27;;;;;;;;;;;;;;;:36;;;;21018:7;21002:32;;21011:5;21002:32;;;21027:6;21002:32;;;;;;;;;;;;;;;;;;20705:337;;;:::o;21050:1411::-;21188:1;21172:18;;:4;:18;;;;21164:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21265:1;21251:16;;:2;:16;;;;21243:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21335:1;21326:6;:10;21318:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21429:15;21418:7;21398:17;:27;21397:47;21393:132;;;21476:1;21459:14;:18;;;;21512:1;21490:19;:23;;;;21393:132;21537:28;21568:24;21586:4;21568:9;:24::i;:::-;21537:55;;21605:24;21656:29;;21632:20;:53;;21605:80;;21714:19;:53;;;;;21751:16;;;;;;;;;;;21750:17;21714:53;:91;;;;;21792:13;21784:21;;:4;:21;;;;21714:91;:129;;;;;21822:21;;;;;;;;;;;21714:129;21696:222;;;21870:36;21885:20;21870:14;:36::i;:::-;21696:222;21991:12;22006:4;21991:19;;22110:18;:24;22129:4;22110:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;22138:18;:22;22157:2;22138:22;;;;;;;;;;;;;;;;;;;;;;;;;22110:50;22107:96;;;22186:5;22176:15;;22107:96;22215:18;22244:13;22236:21;;:4;:21;;;22215:42;;22268:19;22296:13;22290:19;;:2;:19;;;22268:41;;22325:13;22324:14;:33;;;;;22343:14;22342:15;22324:33;22320:54;;;22369:5;22359:15;;22320:54;22387:38;22402:4;22407:2;22410:6;22417:7;22387:14;:38::i;:::-;22438:15;:13;:15::i;:::-;21050:1411;;;;;;;;:::o;1950:192::-;2036:7;2069:1;2064;:6;;2072:12;2056:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096:9;2112:1;2108;:5;2096:17;;2133:1;2126:8;;;1950:192;;;;;:::o;18586:163::-;18627:7;18648:15;18665;18684:19;:17;:19::i;:::-;18647:56;;;;18721:20;18733:7;18721;:11;;:20;;;;:::i;:::-;18714:27;;;;18586:163;:::o;3348:132::-;3406:7;3433:39;3437:1;3440;3433:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3426:46;;3348:132;;;;:::o;1047:181::-;1105:7;1125:9;1141:1;1137;:5;1125:17;;1166:1;1161;:6;;1153:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1219:1;1212:8;;;1047:181;;;;:::o;17276:396::-;17335:7;17344;17353;17362;17371;17380;17389;17409:25;;:::i;:::-;17437;17454:7;17437:16;:25::i;:::-;17409:53;;17473:25;;:::i;:::-;17501:61;17518:7;17527;17535:1;17527:10;;;;;;;;;;;17539:7;17547:1;17539:10;;;;;;;;;;;17551:7;17559:1;17551:10;;;;;;;;;;;17501:16;:61::i;:::-;17473:89;;17581:7;17589:1;17581:10;;;;;;;;;;;17593:7;17601:1;17593:10;;;;;;;;;;;17605:7;17613:1;17605:10;;;;;;;;;;;17617:7;17625:1;17617:10;;;;;;;;;;;17629:7;17637:1;17629:10;;;;;;;;;;;17641:7;17649:1;17641:10;;;;;;;;;;;17653:7;17661:1;17653:10;;;;;;;;;;;17573:91;;;;;;;;;;;;;;;;17276:396;;;;;;;;;:::o;22469:1263::-;13085:4;13066:16;;:23;;;;;;;;;;;;;;;;;;22554:21:::1;22618:20;22594:21;;:44;22590:87;;;22656:21;;22640:37;;22590:87;22688:24;22715:39;22740:13;22715:20;:24;;:39;;;;:::i;:::-;22688:66;;22765:25;22793:20;22811:1;22793:13;:17;;:20;;;;:::i;:::-;22765:48;;22824:30;22857:36;22875:17;22857:13;:17;;:36;;;;:::i;:::-;22824:69;;22997:20;23020:39;23042:16;23020:17;:21;;:39;;;;:::i;:::-;22997:62;;23072:22;23097:21;23072:46;;23163:30;23180:12;23163:16;:30::i;:::-;23206:18;23227:41;23253:14;23227:21;:25;;:41;;;;:::i;:::-;23206:62;;23279:24;23306:51;23344:12;23306:33;23328:10;23306:17;:21;;:33;;;;:::i;:::-;:37;;:51;;;;:::i;:::-;23279:78;;23436:1;23411:22;:26;:50;;;;;23460:1;23441:16;:20;23411:50;23407:110;;;23463:54;23476:22;23500:16;23463:12;:54::i;:::-;23407:110;23533:70;23548:17;23567:16;23585:17;23533:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23629:21;23616:34;;23661:27;23677:10;23661:15;:27::i;:::-;23723:1;23699:21;:25;;;;13100:1;;;;;;;;13131:5:::0;13112:16;;:24;;;;;;;;;;;;;;;;;;22469:1263;:::o;25202:362::-;25313:7;25309:27;;25322:14;:12;:14::i;:::-;25309:27;25347:44;25365:6;25373:9;25384:6;25347:17;:44::i;:::-;25407:18;:29;25426:9;25407:29;;;;;;;;;;;;;;;;;;;;;;;;;25406:30;:62;;;;;25454:13;25441:26;;:9;:26;;;;25406:62;25402:154;;;25501:17;;25478:20;25488:9;25478;:20::i;:::-;:40;25470:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25402:154;25202:362;;;;:::o;20391:175::-;20450:1;20435:12;:16;;;;20479:19;;20462:14;:36;;;;20526:1;20509:14;:18;;;;20557:1;20538:16;:20;;;;20391:175::o;18757:256::-;18807:7;18816;18836:15;18854:7;;18836:25;;18872:15;18890:7;;18872:25;;18922:20;18934:7;;18922;;:11;;:20;;;;:::i;:::-;18912:7;:30;18908:61;;;18952:7;;18961;;18944:25;;;;;;;;18908:61;18988:7;18997;18980:25;;;;;;18757:256;;;:::o;3976:278::-;4062:7;4094:1;4090;:5;4097:12;4082:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4121:9;4137:1;4133;:5;;;;;;4121:17;;4245:1;4238:8;;;3976:278;;;;;:::o;17680:425::-;17745:21;;:::i;:::-;17779:12;17794:24;17810:7;17794:15;:24::i;:::-;17779:39;;17829:18;17850:30;17872:7;17850:21;:30::i;:::-;17829:51;;17891:19;17913:31;17936:7;17913:22;:31::i;:::-;17891:53;;17955:23;17981:50;18019:11;17981:33;18003:10;17981:17;17993:4;17981:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;:37;;:50;;;;:::i;:::-;17955:76;;18042:55;;;;;;;;18050:15;18042:55;;;;18067:4;18042:55;;;;18073:10;18042:55;;;;18085:11;18042:55;;;;;;;;;17680:425;;;:::o;18113:465::-;18233:21;;:::i;:::-;18267:19;18289:10;:8;:10::i;:::-;18267:32;;18310:15;18328:24;18340:11;18328:7;:11;;:24;;;;:::i;:::-;18310:42;;18363:12;18378:21;18387:11;18378:4;:8;;:21;;;;:::i;:::-;18363:36;;18410:23;18436:84;18491:28;18507:11;18491;:15;;:28;;;;:::i;:::-;18436:50;18458:27;18473:11;18458:10;:14;;:27;;;;:::i;:::-;18436:17;18448:4;18436:7;:11;;:17;;;;:::i;:::-;:21;;:50;;;;:::i;:::-;:54;;:84;;;;:::i;:::-;18410:110;;18531:39;;;;;;;;18539:7;18531:39;;;;18548:15;18531:39;;;;18565:4;18531:39;;;;;;;;;18113:465;;;;;;:::o;1511:136::-;1569:7;1596:43;1600:1;1603;1596:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1589:50;;1511:136;;;;:::o;23740:589::-;23866:21;23904:1;23890:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23866:40;;23935:4;23917;23922:1;23917:7;;;;;;;;;;;;;:23;;;;;;;;;;;23961:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23951:4;23956:1;23951:7;;;;;;;;;;;;;:32;;;;;;;;;;;23996:62;24013:4;24028:15;24046:11;23996:8;:62::i;:::-;24097:15;:66;;;24178:11;24204:1;24248:4;24275;24295:15;24097:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23740:589;;:::o;2401:471::-;2459:7;2709:1;2704;:6;2700:47;;;2734:1;2727:8;;;;2700:47;2759:9;2775:1;2771;:5;2759:17;;2804:1;2799;2795;:5;;;;;;:10;2787:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2863:1;2856:8;;;2401:471;;;;;:::o;24337:515::-;24485:62;24502:4;24517:15;24535:11;24485:8;:62::i;:::-;24590:15;:31;;;24629:9;24662:4;24682:11;24708:1;24751;24794:9;;;;;;;;;;;24818:15;24590:254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24337:515;;:::o;24860:261::-;24919:21;24943:69;24975:36;24994:16;;24975:14;;:18;;:36;;;;:::i;:::-;24943:27;24955:14;;24943:7;:11;;:27;;;;:::i;:::-;:31;;:69;;;;:::i;:::-;24919:93;;25021:34;25041:13;25021:9;;;;;;;;;;;:19;;;;:34;;;;:::i;:::-;25064:49;25086:26;25098:13;25086:7;:11;;:26;;;;:::i;:::-;25064:11;;;;;;;;;;;:21;;;;:49;;;;:::i;:::-;24860:261;;:::o;20178:205::-;20243:14;;20221:19;:36;;;;20285:1;20270:12;:16;;;;20314:1;20297:14;:18;;;;20343:1;20326:14;:18;;;;20374:1;20355:16;:20;;;;20178:205::o;25572:562::-;25671:15;25688:23;25713:12;25727:23;25752:12;25766:18;25786:19;25809;25820:7;25809:10;:19::i;:::-;25670:158;;;;;;;;;;;;;;25857:28;25877:7;25857;:15;25865:6;25857:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25839:7;:15;25847:6;25839:15;;;;;;;;;;;;;;;:46;;;;25917:39;25940:15;25917:7;:18;25925:9;25917:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;25896:7;:18;25904:9;25896:18;;;;;;;;;;;;;;;:60;;;;25967:26;25982:10;25967:14;:26::i;:::-;26004:28;26020:11;26004:15;:28::i;:::-;26043:23;26055:4;26061;26043:11;:23::i;:::-;26099:9;26082:44;;26091:6;26082:44;;;26110:15;26082:44;;;;;;;;;;;;;;;;;;25572:562;;;;;;;;;;:::o;19588:159::-;19652:7;19679:60;19723:5;19679:25;19691:12;;19679:7;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;19672:67;;19588:159;;;:::o;19755:167::-;19825:7;19852:62;19898:5;19852:27;19864:14;;19852:7;:11;;:27;;;;:::i;:::-;:31;;:62;;;;:::i;:::-;19845:69;;19755:167;;;:::o;19930:240::-;20001:7;20021:22;20046:36;20065:16;;20046:14;;:18;;:36;;;;:::i;:::-;20021:61;;20100:62;20146:5;20100:27;20112:14;20100:7;:11;;:27;;;;:::i;:::-;:31;;:62;;;;:::i;:::-;20093:69;;;19930:240;;;:::o;5605:397::-;5720:6;5695:21;:31;;5687:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5852:12;5870:9;:14;;5893:6;5870:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5851:54;;;5924:7;5916:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5605:397;;;:::o;19021:309::-;19084:19;19107:10;:8;:10::i;:::-;19084:33;;19128:18;19149:27;19164:11;19149:10;:14;;:27;;;;:::i;:::-;19128:48;;19212:38;19239:10;19212:7;:22;19228:4;19212:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;19187:7;:22;19203:4;19187:22;;;;;;;;;;;;;;;:63;;;;19285:37;19311:10;19285:21;;:25;;:37;;;;:::i;:::-;19261:21;:61;;;;19021:309;;;:::o;19338:242::-;19403:19;19426:10;:8;:10::i;:::-;19403:33;;19447:19;19469:28;19485:11;19469;:15;;:28;;;;:::i;:::-;19447:50;;19533:39;19560:11;19533:7;:22;19549:4;19533:22;;;;;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;19508:7;:22;19524:4;19508:22;;;;;;;;;;;;;;;:64;;;;19338:242;;;:::o;17121:147::-;17199:17;17211:4;17199:7;;:11;;:17;;;;:::i;:::-;17189:7;:27;;;;17240:20;17255:4;17240:10;;:14;;:20;;;;:::i;:::-;17227:10;:33;;;;17121:147;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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