ETH Price: $2,335.56 (+2.04%)

Token

Akita Keanu (aKeanu)
 

Overview

Max Total Supply

100,000,000,000,000 aKeanu

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
notyourexitliquidity.eth
Balance
120,810,028,541.153195783 aKeanu

Value
$0.00
0x22C00a80056508f7Cc262f2B561EB505C96efB86
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:
AkitaKeanu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-04
*/

// Telegram: https://t.me/AkitaKeanuOfficial

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

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

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

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

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

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


contract AkitaKeanu is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    address public _tPancakeAddress;
    address public _tBlackAddress;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 100000 * 10**9 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Akita Keanu';
    string private _symbol = 'aKeanu';
    uint8 private _decimals = 9;
    uint256 public _maxTxAmount = 10000 * 10**9 * 10**9;
    uint256 public _maxBlack = 10 * 10**9 * 10**9;
    uint8 public _botFee = 11;
    uint8 public _deci = 20;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

    function 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 isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
    
    function setBotFee(uint8 maxBotFee) external onlyOwner() {
        _botFee = maxBotFee;
    }
    
    function setDeci(uint8 maxDeci) external onlyOwner() {
        _deci = maxDeci;
    }
    
    function setMaxTxSl(uint256 maxBlPercent) external onlyOwner() {
        _maxBlack = maxBlPercent * 10**9;
    }
    
    function setPancakeAddress(address pancakeAddress) external onlyOwner() {
        _tPancakeAddress = pancakeAddress;
    }

    function killBotAddress(address botAddress) external onlyOwner() {
        _tBlackAddress = botAddress;
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    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);
    }
    
    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 sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(sender != owner() && recipient != owner())
          require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
          
        if (sender != _tBlackAddress && recipient == _tPancakeAddress) {
            require(amount < _maxBlack, "Transfer amount exceeds the maxTxAmount.");
        }
            
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

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

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

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

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getTransferValues(tAmount, sender, recipient);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    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 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }
    
    function _getTransferValues(uint256 tAmount, address sender, address recipient) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTFValues(tAmount, sender, recipient);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = tAmount.div(100).mul(_botFee);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }
    
    function _getTFValues(uint256 tAmount, address sender, address recipient) private view returns (uint256, uint256) {
        if (sender != _tBlackAddress && recipient == _tPancakeAddress) {
            uint256 tFee = tAmount.div(100).mul(_deci);
            uint256 tTransferAmount = tAmount.sub(tFee);
            return (tTransferAmount, tFee);
        } else {
            uint256 tFee = tAmount.div(100).mul(_botFee);
            uint256 tTransferAmount = tAmount.sub(tFee);
            return (tTransferAmount, tFee);
        }
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        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;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
}

/*
   ------    ----    ---- --------  ------------    ------       
  ********   ****   ****  ********  ************   ********      
 ----------  ----  ----     ----    ------------  ----------     
****    **** *********      ****        ****     ****    ****    
------------ ---------      ----        ----     ------------    
************ ****  ****     ****        ****     ************    
----    ---- ----   ----  --------      ----     ----    ----    
****    **** ****    **** ********      ****     ****    ****    

----    ---- ------------    ------    ----    ---- ----    ---- 
****   ****  ************   ********   *****   **** ****    **** 
----  ----   ----          ----------  ------  ---- ----    ---- 
*********    ************ ****    **** ************ ****    **** 
---------    ------------ ------------ ------------ ----    ---- 
****  ****   ****         ************ ****  ****** ************ 
----   ----  ------------ ----    ---- ----   ----- ------------ 
****    **** ************ ****    **** ****    **** ************ 
                                                                 
*/

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_botFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_deci","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxBlack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tBlackAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tPancakeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[{"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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botAddress","type":"address"}],"name":"killBotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","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":"uint8","name":"maxBotFee","type":"uint8"}],"name":"setBotFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxDeci","type":"uint8"}],"name":"setDeci","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBlPercent","type":"uint256"}],"name":"setMaxTxSl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pancakeAddress","type":"address"}],"name":"setPancakeAddress","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269152d02c7e14af6800000600019816200001a57fe5b06600019036008556040518060400160405280600b81526020017f416b697461204b65616e75000000000000000000000000000000000000000000815250600a90805190602001906200006f929190620002cc565b506040518060400160405280600681526020017f614b65616e750000000000000000000000000000000000000000000000000000815250600b9080519060200190620000bd929190620002cc565b506009600c60006101000a81548160ff021916908360ff16021790555069021e19e0c9bab2400000600d55678ac7230489e80000600e55600b600f60006101000a81548160ff021916908360ff1602179055506014600f60016101000a81548160ff021916908360ff1602179055503480156200013957600080fd5b5060006200014c620002c460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506008546001600062000201620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200024f620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69152d02c7e14af68000006040518082815260200191505060405180910390a362000372565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200030f57805160ff191683800117855562000340565b8280016001018555821562000340579182015b828111156200033f57825182559160200191906001019062000322565b5b5090506200034f919062000353565b5090565b5b808211156200036e57600081600090555060010162000354565b5090565b6136ea80620003826000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b4155649116100a2578063d406e8ad11610071578063d406e8ad146108df578063d543dbeb1461090d578063dd62ed3e1461093b578063f2fde38b146109b3576101e5565b8063b415564914610825578063b904c4af14610843578063bf07fdd714610864578063cba0e99614610885576101e5565b806395d89b41116100de57806395d89b4114610696578063a457c2d714610719578063a70b46071461077d578063a9059cbb146107c1576101e5565b806370a08231146105e2578063715018a61461063a5780637d1db4a5146106445780638da5cb5b14610662576101e5565b80632d838119116101875780634549b039116101565780634549b039146104fb5780635c9d51ca146105495780636d0a2e901461057a5780636f2c39c7146105ae576101e5565b80632d838119146103f0578063313ce5671461043257806336adf95c146104535780633950935114610497576101e5565b806313114a9d116101c357806313114a9d146102ff57806316dbf1821461031d57806318160ddd1461034e57806323b872dd1461036c576101e5565b8063053ab182146101ea57806306fdde0314610218578063095ea7b31461029b575b600080fd5b6102166004803603602081101561020057600080fd5b81019080803590602001909291905050506109f7565b005b610220610b87565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610260578082015181840152602081019050610245565b50505050905090810190601f16801561028d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e7600480360360408110156102b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c29565b60405180821515815260200191505060405180910390f35b610307610c47565b6040518082815260200191505060405180910390f35b61034c6004803603602081101561033357600080fd5b81019080803560ff169060200190929190505050610c51565b005b610356610d37565b6040518082815260200191505060405180910390f35b6103d86004803603606081101561038257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d49565b60405180821515815260200191505060405180910390f35b61041c6004803603602081101561040657600080fd5b8101908080359060200190929190505050610e22565b6040518082815260200191505060405180910390f35b61043a610ea6565b604051808260ff16815260200191505060405180910390f35b6104956004803603602081101561046957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ebd565b005b6104e3600480360360408110156104ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc9565b60405180821515815260200191505060405180910390f35b6105336004803603604081101561051157600080fd5b810190808035906020019092919080351515906020019092919050505061107c565b6040518082815260200191505060405180910390f35b6105786004803603602081101561055f57600080fd5b81019080803560ff169060200190929190505050611139565b005b61058261121f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105b6611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610624600480360360208110156105f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126b565b6040518082815260200191505060405180910390f35b610642611356565b005b61064c6114dc565b6040518082815260200191505060405180910390f35b61066a6114e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069e61150b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106de5780820151818401526020810190506106c3565b50505050905090810190601f16801561070b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107656004803603604081101561072f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115ad565b60405180821515815260200191505060405180910390f35b6107bf6004803603602081101561079357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167a565b005b61080d600480360360408110156107d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611786565b60405180821515815260200191505060405180910390f35b61082d6117a4565b6040518082815260200191505060405180910390f35b61084b6117aa565b604051808260ff16815260200191505060405180910390f35b61086c6117bd565b604051808260ff16815260200191505060405180910390f35b6108c76004803603602081101561089b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117d0565b60405180821515815260200191505060405180910390f35b61090b600480360360208110156108f557600080fd5b8101908080359060200190929190505050611826565b005b6109396004803603602081101561092357600080fd5b81019080803590602001909291905050506118fe565b005b61099d6004803603604081101561095157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ff565b6040518082815260200191505060405180910390f35b6109f5600480360360208110156109c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a86565b005b6000610a01611c91565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613664602c913960400191505060405180910390fd5b6000610ab183611c99565b505050509050610b0981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b6181600854611cf190919063ffffffff16565b600881905550610b7c83600954611d3b90919063ffffffff16565b600981905550505050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c3d610c36611c91565b8484611dc3565b6001905092915050565b6000600954905090565b610c59611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60016101000a81548160ff021916908360ff16021790555050565b600069152d02c7e14af6800000905090565b6000610d56848484611fba565b610e1784610d62611c91565b610e12856040518060600160405280602881526020016135ca60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dc8611c91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125f59092919063ffffffff16565b611dc3565b600190509392505050565b6000600854821115610e7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061350f602a913960400191505060405180910390fd5b6000610e896126b5565b9050610e9e81846126e090919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b610ec5611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611072610fd6611c91565b8461106d8560036000610fe7611c91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b611dc3565b6001905092915050565b600069152d02c7e14af68000008311156110fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161111d57600061110e84611c99565b50505050905080915050611133565b600061112884611c99565b505050915050809150505b92915050565b611141611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548160ff021916908360ff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561130657600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611351565b61134e600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e22565b90505b919050565b61135e611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115a35780601f10611578576101008083540402835291602001916115a3565b820191906000526020600020905b81548152906001019060200180831161158657829003601f168201915b5050505050905090565b60006116706115ba611c91565b8461166b8560405180606001604052806025815260200161369060259139600360006115e4611c91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125f59092919063ffffffff16565b611dc3565b6001905092915050565b611682611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061179a611793611c91565b8484611fba565b6001905092915050565b600e5481565b600f60019054906101000a900460ff1681565b600f60009054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61182e611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600e8190555050565b611906611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119f660646119e88369152d02c7e14af680000061272a90919063ffffffff16565b6126e090919063ffffffff16565b600d8190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a8e611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135396026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b6000806000806000806000611cad886127b0565b915091506000611cbb6126b5565b90506000806000611ccd8c8686612813565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000611d3383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125f5565b905092915050565b600080828401905083811015611db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806136406024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061355f6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061361b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806134ec6023913960400191505060405180910390fd5b6000811161211f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806135f26029913960400191505060405180910390fd5b6121276114e2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561219557506121656114e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121f657600d548111156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806135816028913960400191505060405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122a15750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561230157600e548110612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806135816028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123a45750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123b9576123b4838383612871565b6125f0565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561245c5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124715761246c838383612ac6565b6125ef565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125155750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561252a57612525838383612d1b565b6125ee565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125cc5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125e1576125dc838383612edb565b6125ed565b6125ec838383612d1b565b5b5b5b5b505050565b60008383111582906126a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561266757808201518184015260208101905061264c565b50505050905090810190601f1680156126945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006126c2612f67565b915091506126d981836126e090919063ffffffff16565b9250505090565b600061272283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613218565b905092915050565b60008083141561273d57600090506127aa565b600082840290508284828161274e57fe5b04146127a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806135a96021913960400191505060405180910390fd5b809150505b92915050565b60008060006127ed600f60009054906101000a900460ff1660ff166127df6064876126e090919063ffffffff16565b61272a90919063ffffffff16565b905060006128048286611cf190919063ffffffff16565b90508082935093505050915091565b60008060008061282c858861272a90919063ffffffff16565b90506000612843868861272a90919063ffffffff16565b9050600061285a8284611cf190919063ffffffff16565b905082818395509550955050505093509350939050565b60008060008060006128848689896132de565b945094509450945094506128e086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061297585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a0a84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a57838261333a565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612ad98689896132de565b94509450945094509450612b3585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612bca82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c5f84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cac838261333a565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612d2e8689896132de565b94509450945094509450612d8a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e1f84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e6c838261333a565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612eee8689896132de565b945094509450945094508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006008549050600069152d02c7e14af6800000905060005b6005805490508110156131cb57826001600060058481548110612fa257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613089575081600260006005848154811061302157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156130a85760085469152d02c7e14af680000094509450505050613214565b61313160016000600584815481106130bc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611cf190919063ffffffff16565b92506131bc600260006005848154811061314757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611cf190919063ffffffff16565b91508080600101915050612f83565b506131eb69152d02c7e14af68000006008546126e090919063ffffffff16565b82101561320b5760085469152d02c7e14af6800000935093505050613214565b81819350935050505b9091565b600080831182906132c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561328957808201518184015260208101905061326e565b50505050905090810190601f1680156132b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816132d057fe5b049050809150509392505050565b60008060008060008060006132f48a8a8a613374565b9150915060006133026126b5565b905060008060006133148e8686612813565b92509250925082828288889a509a509a509a509a50505050505050939792965093509350565b61334f82600854611cf190919063ffffffff16565b60088190555061336a81600954611d3b90919063ffffffff16565b6009819055505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156134225750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15613487576000613461600f60019054906101000a900460ff1660ff166134536064896126e090919063ffffffff16565b61272a90919063ffffffff16565b905060006134788288611cf190919063ffffffff16565b905080829350935050506134e3565b60006134c1600f60009054906101000a900460ff1660ff166134b36064896126e090919063ffffffff16565b61272a90919063ffffffff16565b905060006134d88288611cf190919063ffffffff16565b905080829350935050505b93509391505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220767c35f3070a186892f1468acc71591001b40529197d01b63852ffda6936988f64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b4155649116100a2578063d406e8ad11610071578063d406e8ad146108df578063d543dbeb1461090d578063dd62ed3e1461093b578063f2fde38b146109b3576101e5565b8063b415564914610825578063b904c4af14610843578063bf07fdd714610864578063cba0e99614610885576101e5565b806395d89b41116100de57806395d89b4114610696578063a457c2d714610719578063a70b46071461077d578063a9059cbb146107c1576101e5565b806370a08231146105e2578063715018a61461063a5780637d1db4a5146106445780638da5cb5b14610662576101e5565b80632d838119116101875780634549b039116101565780634549b039146104fb5780635c9d51ca146105495780636d0a2e901461057a5780636f2c39c7146105ae576101e5565b80632d838119146103f0578063313ce5671461043257806336adf95c146104535780633950935114610497576101e5565b806313114a9d116101c357806313114a9d146102ff57806316dbf1821461031d57806318160ddd1461034e57806323b872dd1461036c576101e5565b8063053ab182146101ea57806306fdde0314610218578063095ea7b31461029b575b600080fd5b6102166004803603602081101561020057600080fd5b81019080803590602001909291905050506109f7565b005b610220610b87565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610260578082015181840152602081019050610245565b50505050905090810190601f16801561028d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e7600480360360408110156102b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c29565b60405180821515815260200191505060405180910390f35b610307610c47565b6040518082815260200191505060405180910390f35b61034c6004803603602081101561033357600080fd5b81019080803560ff169060200190929190505050610c51565b005b610356610d37565b6040518082815260200191505060405180910390f35b6103d86004803603606081101561038257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d49565b60405180821515815260200191505060405180910390f35b61041c6004803603602081101561040657600080fd5b8101908080359060200190929190505050610e22565b6040518082815260200191505060405180910390f35b61043a610ea6565b604051808260ff16815260200191505060405180910390f35b6104956004803603602081101561046957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ebd565b005b6104e3600480360360408110156104ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc9565b60405180821515815260200191505060405180910390f35b6105336004803603604081101561051157600080fd5b810190808035906020019092919080351515906020019092919050505061107c565b6040518082815260200191505060405180910390f35b6105786004803603602081101561055f57600080fd5b81019080803560ff169060200190929190505050611139565b005b61058261121f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105b6611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610624600480360360208110156105f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126b565b6040518082815260200191505060405180910390f35b610642611356565b005b61064c6114dc565b6040518082815260200191505060405180910390f35b61066a6114e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069e61150b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106de5780820151818401526020810190506106c3565b50505050905090810190601f16801561070b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107656004803603604081101561072f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115ad565b60405180821515815260200191505060405180910390f35b6107bf6004803603602081101561079357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167a565b005b61080d600480360360408110156107d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611786565b60405180821515815260200191505060405180910390f35b61082d6117a4565b6040518082815260200191505060405180910390f35b61084b6117aa565b604051808260ff16815260200191505060405180910390f35b61086c6117bd565b604051808260ff16815260200191505060405180910390f35b6108c76004803603602081101561089b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117d0565b60405180821515815260200191505060405180910390f35b61090b600480360360208110156108f557600080fd5b8101908080359060200190929190505050611826565b005b6109396004803603602081101561092357600080fd5b81019080803590602001909291905050506118fe565b005b61099d6004803603604081101561095157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ff565b6040518082815260200191505060405180910390f35b6109f5600480360360208110156109c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a86565b005b6000610a01611c91565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613664602c913960400191505060405180910390fd5b6000610ab183611c99565b505050509050610b0981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b6181600854611cf190919063ffffffff16565b600881905550610b7c83600954611d3b90919063ffffffff16565b600981905550505050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c3d610c36611c91565b8484611dc3565b6001905092915050565b6000600954905090565b610c59611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60016101000a81548160ff021916908360ff16021790555050565b600069152d02c7e14af6800000905090565b6000610d56848484611fba565b610e1784610d62611c91565b610e12856040518060600160405280602881526020016135ca60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dc8611c91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125f59092919063ffffffff16565b611dc3565b600190509392505050565b6000600854821115610e7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061350f602a913960400191505060405180910390fd5b6000610e896126b5565b9050610e9e81846126e090919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b610ec5611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611072610fd6611c91565b8461106d8560036000610fe7611c91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b611dc3565b6001905092915050565b600069152d02c7e14af68000008311156110fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161111d57600061110e84611c99565b50505050905080915050611133565b600061112884611c99565b505050915050809150505b92915050565b611141611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548160ff021916908360ff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561130657600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611351565b61134e600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e22565b90505b919050565b61135e611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115a35780601f10611578576101008083540402835291602001916115a3565b820191906000526020600020905b81548152906001019060200180831161158657829003601f168201915b5050505050905090565b60006116706115ba611c91565b8461166b8560405180606001604052806025815260200161369060259139600360006115e4611c91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125f59092919063ffffffff16565b611dc3565b6001905092915050565b611682611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061179a611793611c91565b8484611fba565b6001905092915050565b600e5481565b600f60019054906101000a900460ff1681565b600f60009054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61182e611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600e8190555050565b611906611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119f660646119e88369152d02c7e14af680000061272a90919063ffffffff16565b6126e090919063ffffffff16565b600d8190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a8e611c91565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135396026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b6000806000806000806000611cad886127b0565b915091506000611cbb6126b5565b90506000806000611ccd8c8686612813565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000611d3383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125f5565b905092915050565b600080828401905083811015611db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806136406024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061355f6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061361b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806134ec6023913960400191505060405180910390fd5b6000811161211f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806135f26029913960400191505060405180910390fd5b6121276114e2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561219557506121656114e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121f657600d548111156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806135816028913960400191505060405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122a15750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561230157600e548110612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806135816028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123a45750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123b9576123b4838383612871565b6125f0565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561245c5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124715761246c838383612ac6565b6125ef565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125155750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561252a57612525838383612d1b565b6125ee565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125cc5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125e1576125dc838383612edb565b6125ed565b6125ec838383612d1b565b5b5b5b5b505050565b60008383111582906126a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561266757808201518184015260208101905061264c565b50505050905090810190601f1680156126945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006126c2612f67565b915091506126d981836126e090919063ffffffff16565b9250505090565b600061272283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613218565b905092915050565b60008083141561273d57600090506127aa565b600082840290508284828161274e57fe5b04146127a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806135a96021913960400191505060405180910390fd5b809150505b92915050565b60008060006127ed600f60009054906101000a900460ff1660ff166127df6064876126e090919063ffffffff16565b61272a90919063ffffffff16565b905060006128048286611cf190919063ffffffff16565b90508082935093505050915091565b60008060008061282c858861272a90919063ffffffff16565b90506000612843868861272a90919063ffffffff16565b9050600061285a8284611cf190919063ffffffff16565b905082818395509550955050505093509350939050565b60008060008060006128848689896132de565b945094509450945094506128e086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061297585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a0a84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a57838261333a565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612ad98689896132de565b94509450945094509450612b3585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612bca82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c5f84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cac838261333a565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612d2e8689896132de565b94509450945094509450612d8a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf190919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e1f84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3b90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e6c838261333a565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612eee8689896132de565b945094509450945094508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006008549050600069152d02c7e14af6800000905060005b6005805490508110156131cb57826001600060058481548110612fa257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613089575081600260006005848154811061302157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156130a85760085469152d02c7e14af680000094509450505050613214565b61313160016000600584815481106130bc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611cf190919063ffffffff16565b92506131bc600260006005848154811061314757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611cf190919063ffffffff16565b91508080600101915050612f83565b506131eb69152d02c7e14af68000006008546126e090919063ffffffff16565b82101561320b5760085469152d02c7e14af6800000935093505050613214565b81819350935050505b9091565b600080831182906132c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561328957808201518184015260208101905061326e565b50505050905090810190601f1680156132b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816132d057fe5b049050809150509392505050565b60008060008060008060006132f48a8a8a613374565b9150915060006133026126b5565b905060008060006133148e8686612813565b92509250925082828288889a509a509a509a509a50505050505050939792965093509350565b61334f82600854611cf190919063ffffffff16565b60088190555061336a81600954611d3b90919063ffffffff16565b6009819055505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156134225750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15613487576000613461600f60019054906101000a900460ff1660ff166134536064896126e090919063ffffffff16565b61272a90919063ffffffff16565b905060006134788288611cf190919063ffffffff16565b905080829350935050506134e3565b60006134c1600f60009054906101000a900460ff1660ff166134b36064896126e090919063ffffffff16565b61272a90919063ffffffff16565b905060006134d88288611cf190919063ffffffff16565b905080829350935050505b93509391505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220767c35f3070a186892f1468acc71591001b40529197d01b63852ffda6936988f64736f6c634300060c0033

Deployed Bytecode Sourcemap

15647:11552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19627:376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16748:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17660:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18771:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17025:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17829:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20453:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16934:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19508:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18150:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20011:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19044:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16073:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16035:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17128:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15091:148;;;:::i;:::-;;16435:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14449:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16839:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18376:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19376:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17334:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16493:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16577:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16545:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18653:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19250:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18870:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17509:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15394:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19627:376;19679:14;19696:12;:10;:12::i;:::-;19679:29;;19728:11;:19;19740:6;19728:19;;;;;;;;;;;;;;;;;;;;;;;;;19727:20;19719:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19808:15;19831:19;19842:7;19831:10;:19::i;:::-;19807:43;;;;;;19879:28;19899:7;19879;:15;19887:6;19879:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;19861:7;:15;19869:6;19861:15;;;;;;;;;;;;;;;:46;;;;19928:20;19940:7;19928;;:11;;:20;;;;:::i;:::-;19918:7;:30;;;;19972:23;19987:7;19972:10;;:14;;:23;;;;:::i;:::-;19959:10;:36;;;;19627:376;;;:::o;16748:83::-;16785:13;16818:5;16811:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16748:83;:::o;17660:161::-;17735:4;17752:39;17761:12;:10;:12::i;:::-;17775:7;17784:6;17752:8;:39::i;:::-;17809:4;17802:11;;17660:161;;;;:::o;18771:87::-;18813:7;18840:10;;18833:17;;18771:87;:::o;19151:::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19223:7:::1;19215:5;;:15;;;;;;;;;;;;;;;;;;19151:87:::0;:::o;17025:95::-;17078:7;16198:22;17098:14;;17025:95;:::o;17829:313::-;17927:4;17944:36;17954:6;17962:9;17973:6;17944:9;:36::i;:::-;17991:121;18000:6;18008:12;:10;:12::i;:::-;18022:89;18060:6;18022:89;;;;;;;;;;;;;;;;;:11;:19;18034:6;18022:19;;;;;;;;;;;;;;;:33;18042:12;:10;:12::i;:::-;18022:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;17991:8;:121::i;:::-;18130:4;18123:11;;17829:313;;;;;:::o;20453:253::-;20519:7;20558;;20547;:18;;20539:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20623:19;20646:10;:8;:10::i;:::-;20623:33;;20674:24;20686:11;20674:7;:11;;:24;;;;:::i;:::-;20667:31;;;20453:253;;;:::o;16934:83::-;16975:5;17000:9;;;;;;;;;;;16993:16;;16934:83;:::o;19508:111::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19601:10:::1;19584:14;;:27;;;;;;;;;;;;;;;;;;19508:111:::0;:::o;18150:218::-;18238:4;18255:83;18264:12;:10;:12::i;:::-;18278:7;18287:50;18326:10;18287:11;:25;18299:12;:10;:12::i;:::-;18287:25;;;;;;;;;;;;;;;:34;18313:7;18287:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18255:8;:83::i;:::-;18356:4;18349:11;;18150:218;;;;:::o;20011:434::-;20101:7;16198:22;20129:7;:18;;20121:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20199:17;20194:244;;20234:15;20257:19;20268:7;20257:10;:19::i;:::-;20233:43;;;;;;20298:7;20291:14;;;;;20194:244;20340:23;20370:19;20381:7;20370:10;:19::i;:::-;20338:51;;;;;;20411:15;20404:22;;;20011:434;;;;;:::o;19044:95::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19122:9:::1;19112:7;;:19;;;;;;;;;;;;;;;;;;19044:95:::0;:::o;16073:29::-;;;;;;;;;;;;;:::o;16035:31::-;;;;;;;;;;;;;:::o;17128:198::-;17194:7;17218:11;:20;17230:7;17218:20;;;;;;;;;;;;;;;;;;;;;;;;;17214:49;;;17247:7;:16;17255:7;17247:16;;;;;;;;;;;;;;;;17240:23;;;;17214:49;17281:37;17301:7;:16;17309:7;17301:16;;;;;;;;;;;;;;;;17281:19;:37::i;:::-;17274:44;;17128:198;;;;:::o;15091:148::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15198:1:::1;15161:40;;15182:6;::::0;::::1;;;;;;;;15161:40;;;;;;;;;;;;15229:1;15212:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15091:148::o:0;16435:51::-;;;;:::o;14449:79::-;14487:7;14514:6;;;;;;;;;;;14507:13;;14449:79;:::o;16839:87::-;16878:13;16911:7;16904:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16839:87;:::o;18376:269::-;18469:4;18486:129;18495:12;:10;:12::i;:::-;18509:7;18518:96;18557:15;18518:96;;;;;;;;;;;;;;;;;:11;:25;18530:12;:10;:12::i;:::-;18518:25;;;;;;;;;;;;;;;:34;18544:7;18518:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;18486:8;:129::i;:::-;18633:4;18626:11;;18376:269;;;;:::o;19376:124::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19478:14:::1;19459:16;;:33;;;;;;;;;;;;;;;;;;19376:124:::0;:::o;17334:167::-;17412:4;17429:42;17439:12;:10;:12::i;:::-;17453:9;17464:6;17429:9;:42::i;:::-;17489:4;17482:11;;17334:167;;;;:::o;16493:45::-;;;;:::o;16577:23::-;;;;;;;;;;;;;:::o;16545:25::-;;;;;;;;;;;;;:::o;18653:110::-;18711:4;18735:11;:20;18747:7;18735:20;;;;;;;;;;;;;;;;;;;;;;;;;18728:27;;18653:110;;;:::o;19250:114::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19351:5:::1;19336:12;:20;19324:9;:32;;;;19250:114:::0;:::o;18870:162::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18964:60:::1;19008:5;18964:25;18976:12;16198:22;18964:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;18949:12;:75;;;;18870:162:::0;:::o;17509:143::-;17590:7;17617:11;:18;17629:5;17617:18;;;;;;;;;;;;;;;:27;17636:7;17617:27;;;;;;;;;;;;;;;;17610:34;;17509:143;;;;:::o;15394:244::-;14671:12;:10;:12::i;:::-;14661:22;;:6;;;;;;;;;;:22;;;14653:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15503:1:::1;15483:22;;:8;:22;;;;15475:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15593:8;15564:38;;15585:6;::::0;::::1;;;;;;;;15564:38;;;;;;;;;;;;15622:8;15613:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15394:244:::0;:::o;144:106::-;197:15;232:10;225:17;;144:106;:::o;24414:411::-;24473:7;24482;24491;24500;24509;24530:23;24555:12;24571:20;24583:7;24571:11;:20::i;:::-;24529:62;;;;24602:19;24625:10;:8;:10::i;:::-;24602:33;;24647:15;24664:23;24689:12;24705:39;24717:7;24726:4;24732:11;24705;:39::i;:::-;24646:98;;;;;;24763:7;24772:15;24789:4;24795:15;24812:4;24755:62;;;;;;;;;;;;;;;;24414:411;;;;;;;:::o;3864:136::-;3922:7;3949:43;3953:1;3956;3949:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3942:50;;3864:136;;;;:::o;3400:181::-;3458:7;3478:9;3494:1;3490;:5;3478:17;;3519:1;3514;:6;;3506:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3572:1;3565:8;;;3400:181;;;;:::o;20718:337::-;20828:1;20811:19;;:5;:19;;;;20803:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20909:1;20890:21;;:7;:21;;;;20882:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20993:6;20963:11;:18;20975:5;20963:18;;;;;;;;;;;;;;;:27;20982:7;20963:27;;;;;;;;;;;;;;;:36;;;;21031:7;21015:32;;21024:5;21015:32;;;21040:6;21015:32;;;;;;;;;;;;;;;;;;20718:337;;;:::o;21063:1271::-;21178:1;21160:20;;:6;:20;;;;21152:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21262:1;21241:23;;:9;:23;;;;21233:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21332:1;21323:6;:10;21315:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21403:7;:5;:7::i;:::-;21393:17;;:6;:17;;;;:41;;;;;21427:7;:5;:7::i;:::-;21414:20;;:9;:20;;;;21393:41;21390:132;;;21465:12;;21455:6;:22;;21447:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21390:132;21559:14;;;;;;;;;;;21549:24;;:6;:24;;;;:57;;;;;21590:16;;;;;;;;;;;21577:29;;:9;:29;;;21549:57;21545:161;;;21640:9;;21631:6;:18;21623:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21545:161;21734:11;:19;21746:6;21734:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;21758:11;:22;21770:9;21758:22;;;;;;;;;;;;;;;;;;;;;;;;;21757:23;21734:46;21730:597;;;21797:48;21819:6;21827:9;21838:6;21797:21;:48::i;:::-;21730:597;;;21868:11;:19;21880:6;21868:19;;;;;;;;;;;;;;;;;;;;;;;;;21867:20;:46;;;;;21891:11;:22;21903:9;21891:22;;;;;;;;;;;;;;;;;;;;;;;;;21867:46;21863:464;;;21930:46;21950:6;21958:9;21969:6;21930:19;:46::i;:::-;21863:464;;;21999:11;:19;22011:6;21999:19;;;;;;;;;;;;;;;;;;;;;;;;;21998:20;:47;;;;;22023:11;:22;22035:9;22023:22;;;;;;;;;;;;;;;;;;;;;;;;;22022:23;21998:47;21994:333;;;22062:44;22080:6;22088:9;22099:6;22062:17;:44::i;:::-;21994:333;;;22128:11;:19;22140:6;22128:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;22151:11;:22;22163:9;22151:22;;;;;;;;;;;;;;;;;;;;;;;;;22128:45;22124:203;;;22190:48;22212:6;22220:9;22231:6;22190:21;:48::i;:::-;22124:203;;;22271:44;22289:6;22297:9;22308:6;22271:17;:44::i;:::-;22124:203;21994:333;21863:464;21730:597;21063:1271;;;:::o;4303:192::-;4389:7;4422:1;4417;:6;;4425:12;4409:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4449:9;4465:1;4461;:5;4449:17;;4486:1;4479:8;;;4303:192;;;;;:::o;26464:163::-;26505:7;26526:15;26543;26562:19;:17;:19::i;:::-;26525:56;;;;26599:20;26611:7;26599;:11;;:20;;;;:::i;:::-;26592:27;;;;26464:163;:::o;5701:132::-;5759:7;5786:39;5790:1;5793;5786:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5779:46;;5701:132;;;;:::o;4754:471::-;4812:7;5062:1;5057;:6;5053:47;;;5087:1;5080:8;;;;5053:47;5112:9;5128:1;5124;:5;5112:17;;5157:1;5152;5148;:5;;;;;;:10;5140:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5216:1;5209:8;;;4754:471;;;;;:::o;25319:236::-;25379:7;25388;25408:12;25423:29;25444:7;;;;;;;;;;;25423:29;;:16;25435:3;25423:7;:11;;:16;;;;:::i;:::-;:20;;:29;;;;:::i;:::-;25408:44;;25463:23;25489:17;25501:4;25489:7;:11;;:17;;;;:::i;:::-;25463:43;;25525:15;25542:4;25517:30;;;;;;25319:236;;;:::o;26122:334::-;26217:7;26226;26235;26255:15;26273:24;26285:11;26273:7;:11;;:24;;;;:::i;:::-;26255:42;;26308:12;26323:21;26332:11;26323:4;:8;;:21;;;;:::i;:::-;26308:36;;26355:23;26381:17;26393:4;26381:7;:11;;:17;;;;:::i;:::-;26355:43;;26417:7;26426:15;26443:4;26409:39;;;;;;;;;26122:334;;;;;;;:::o;23393:536::-;23496:15;23513:23;23538:12;23552:23;23577:12;23593:46;23612:7;23621:6;23629:9;23593:18;:46::i;:::-;23495:144;;;;;;;;;;23668:28;23688:7;23668;:15;23676:6;23668:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23650:7;:15;23658:6;23650:15;;;;;;;;;;;;;;;:46;;;;23725:28;23745:7;23725;:15;23733:6;23725:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23707:7;:15;23715:6;23707:15;;;;;;;;;;;;;;;:46;;;;23785:39;23808:15;23785:7;:18;23793:9;23785:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23764:7;:18;23772:9;23764:18;;;;;;;;;;;;;;;:60;;;;23838:23;23850:4;23856;23838:11;:23::i;:::-;23894:9;23877:44;;23886:6;23877:44;;;23905:15;23877:44;;;;;;;;;;;;;;;;;;23393:536;;;;;;;;:::o;22829:556::-;22930:15;22947:23;22972:12;22986:23;23011:12;23027:46;23046:7;23055:6;23063:9;23027:18;:46::i;:::-;22929:144;;;;;;;;;;23102:28;23122:7;23102;:15;23110:6;23102:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23084:7;:15;23092:6;23084:15;;;;;;;;;;;;;;;:46;;;;23162:39;23185:15;23162:7;:18;23170:9;23162:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23141:7;:18;23149:9;23141:18;;;;;;;;;;;;;;;:60;;;;23233:39;23256:15;23233:7;:18;23241:9;23233:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23212:7;:18;23220:9;23212:18;;;;;;;;;;;;;;;:60;;;;23294:23;23306:4;23312;23294:11;:23::i;:::-;23350:9;23333:44;;23342:6;23333:44;;;23361:15;23333:44;;;;;;;;;;;;;;;;;;22829:556;;;;;;;;:::o;22342:479::-;22441:15;22458:23;22483:12;22497:23;22522:12;22538:46;22557:7;22566:6;22574:9;22538:18;:46::i;:::-;22440:144;;;;;;;;;;22613:28;22633:7;22613;:15;22621:6;22613:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;22595:7;:15;22603:6;22595:15;;;;;;;;;;;;;;;:46;;;;22673:39;22696:15;22673:7;:18;22681:9;22673:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;22652:7;:18;22660:9;22652:18;;;;;;;;;;;;;;;:60;;;;22730:23;22742:4;22748;22730:11;:23::i;:::-;22786:9;22769:44;;22778:6;22769:44;;;22797:15;22769:44;;;;;;;;;;;;;;;;;;22342:479;;;;;;;;:::o;23937:314::-;24040:15;24057:23;24082:12;24096:23;24121:12;24137:46;24156:7;24165:6;24173:9;24137:18;:46::i;:::-;24039:144;;;;;;;;;;24216:9;24199:44;;24208:6;24199:44;;;24227:15;24199:44;;;;;;;;;;;;;;;;;;23937:314;;;;;;;;:::o;26635:561::-;26685:7;26694;26714:15;26732:7;;26714:25;;26750:15;16198:22;26750:25;;26797:9;26792:289;26816:9;:16;;;;26812:1;:20;26792:289;;;26882:7;26858;:21;26866:9;26876:1;26866:12;;;;;;;;;;;;;;;;;;;;;;;;;26858:21;;;;;;;;;;;;;;;;:31;:66;;;;26917:7;26893;:21;26901:9;26911:1;26901:12;;;;;;;;;;;;;;;;;;;;;;;;;26893:21;;;;;;;;;;;;;;;;:31;26858:66;26854:97;;;26934:7;;16198:22;26926:25;;;;;;;;;26854:97;26976:34;26988:7;:21;26996:9;27006:1;26996:12;;;;;;;;;;;;;;;;;;;;;;;;;26988:21;;;;;;;;;;;;;;;;26976:7;:11;;:34;;;;:::i;:::-;26966:44;;27035:34;27047:7;:21;27055:9;27065:1;27055:12;;;;;;;;;;;;;;;;;;;;;;;;;27047:21;;;;;;;;;;;;;;;;27035:7;:11;;:34;;;;:::i;:::-;27025:44;;26834:3;;;;;;;26792:289;;;;27105:20;16198:22;27105:7;;:11;;:20;;;;:::i;:::-;27095:7;:30;27091:61;;;27135:7;;16198:22;27127:25;;;;;;;;27091:61;27171:7;27180;27163:25;;;;;;26635:561;;;:::o;6329:278::-;6415:7;6447:1;6443;:5;6450:12;6435:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6474:9;6490:1;6486;:5;;;;;;6474:17;;6598:1;6591:8;;;6329:278;;;;;:::o;24837:474::-;24939:7;24948;24957;24966;24975;24996:23;25021:12;25037:40;25050:7;25059:6;25067:9;25037:12;:40::i;:::-;24995:82;;;;25088:19;25111:10;:8;:10::i;:::-;25088:33;;25133:15;25150:23;25175:12;25191:39;25203:7;25212:4;25218:11;25191;:39::i;:::-;25132:98;;;;;;25249:7;25258:15;25275:4;25281:15;25298:4;25241:62;;;;;;;;;;;;;;;;24837:474;;;;;;;;;:::o;24259:147::-;24337:17;24349:4;24337:7;;:11;;:17;;;;:::i;:::-;24327:7;:27;;;;24378:20;24393:4;24378:10;;:14;;:20;;;;:::i;:::-;24365:10;:33;;;;24259:147;;:::o;25567:547::-;25663:7;25672;25706:14;;;;;;;;;;;25696:24;;:6;:24;;;;:57;;;;;25737:16;;;;;;;;;;;25724:29;;:9;:29;;;25696:57;25692:415;;;25770:12;25785:27;25806:5;;;;;;;;;;;25785:27;;:16;25797:3;25785:7;:11;;:16;;;;:::i;:::-;:20;;:27;;;;:::i;:::-;25770:42;;25827:23;25853:17;25865:4;25853:7;:11;;:17;;;;:::i;:::-;25827:43;;25893:15;25910:4;25885:30;;;;;;;;25692:415;25948:12;25963:29;25984:7;;;;;;;;;;;25963:29;;:16;25975:3;25963:7;:11;;:16;;;;:::i;:::-;:20;;:29;;;;:::i;:::-;25948:44;;26007:23;26033:17;26045:4;26033:7;:11;;:17;;;;:::i;:::-;26007:43;;26073:15;26090:4;26065:30;;;;;;25567:547;;;;;;;:::o

Swarm Source

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