ETH Price: $3,051.20 (+2.38%)
Gas: 2 Gwei

Token

Doge-1 Inu (Doge-1)
 

Overview

Max Total Supply

946,073,888,206,411.16248707 Doge-1

Holders

922

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
62,184,286,291.46615694 Doge-1

Value
$0.00
0xb56953b52a848bcbe4d0b45d8f50b13598a2d239
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:
DOGE1

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-10
*/

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

pragma solidity ^0.6.12;

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @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);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 DOGE1 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;
    
    string  private constant _NAME = 'Doge-1 Inu';
    string  private constant _SYMBOL = 'Doge-1';
    uint8   private constant _DECIMALS = 8;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 1000000000000000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private      _TAX_FEE = 0;
    uint256 private     _BURN_FEE = 0;
    uint256 private     _MAX_TX_SIZE = 10000000000000 * _DECIMALFACTOR;

    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 totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function deliver(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 excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    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 <= _MAX_TX_SIZE, "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 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn);
        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);
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 50 && taxFee <= 1000, 'taxFee should be in 1 - 10');
        _TAX_FEE = taxFee;
    }

    function _setBurnFee(uint256 burnFee) external onlyOwner() {
        require(burnFee >= 50 && burnFee <= 1000, 'burnFee should be in 1 - 10');
        _BURN_FEE = burnFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
    
    function getMaxTxAmount() public view returns(uint256) {
        return _getMaxTxAmount();
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _MAX_TX_SIZE = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"_setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","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":"totalBurn","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"}]

608060405269152d02c7e14af680000060065569085afffa6ff50bffffff196007556000600a819055600b55683635c9adc5dea00000600c553480156200004557600080fd5b5060006200005262000124565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060075460016000620000ad62000124565b6001600160a01b03168152602081019190915260400160002055620000d162000124565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a362000128565b3390565b611ec680620001386000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d8b0527116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610492578063f2cc0c18146104c0578063f2fde38b146104e6578063f84354f11461050c5761018e565b8063a9059cbb14610423578063cba0e9961461044f578063d543dbeb146104755761018e565b80636d8b05271461039557806370a082311461039d578063715018a6146103c35780638da5cb5b146103cb57806395d89b41146103ef578063a457c2d7146103f75761018e565b8063313ce5671161014b5780633bd5d173116101255780633bd5d1731461032e5780633c9f861d1461034b5780634549b039146103535780635880b873146103785761018e565b8063313ce567146102c557806339509351146102e35780633b6b19611461030f5761018e565b806306fdde0314610193578063095ea7b31461021057806313114a9d1461025057806318160ddd1461026a57806323b872dd146102725780632d838119146102a8575b600080fd5b61019b610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610556565b604080519115158252519081900360200190f35b610258610574565b60408051918252519081900360200190f35b61025861057a565b61023c6004803603606081101561028857600080fd5b506001600160a01b03813581169160208101359091169060400135610580565b610258600480360360208110156102be57600080fd5b5035610607565b6102cd610669565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102f957600080fd5b506001600160a01b03813516906020013561066e565b61032c6004803603602081101561032557600080fd5b50356106bc565b005b61032c6004803603602081101561034457600080fd5b503561077d565b610258610857565b6102586004803603604081101561036957600080fd5b5080359060200135151561085d565b61032c6004803603602081101561038e57600080fd5b50356108ef565b6102586109b0565b610258600480360360208110156103b357600080fd5b50356001600160a01b03166109bf565b61032c610a21565b6103d3610ac3565b604080516001600160a01b039092168252519081900360200190f35b61019b610ad2565b61023c6004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610af2565b61023c6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610b5a565b61023c6004803603602081101561046557600080fd5b50356001600160a01b0316610b6e565b61032c6004803603602081101561048b57600080fd5b5035610b8c565b610258600480360360408110156104a857600080fd5b506001600160a01b0381358116916020013516610c0a565b61032c600480360360208110156104d657600080fd5b50356001600160a01b0316610c35565b61032c600480360360208110156104fc57600080fd5b50356001600160a01b0316610e17565b61032c6004803603602081101561052257600080fd5b50356001600160a01b0316610f0f565b60408051808201909152600a815269446f67652d3120496e7560b01b602082015290565b600061056a6105636110d0565b84846110d4565b5060015b92915050565b60085490565b60065490565b600061058d8484846111c0565b6105fd846105996110d0565b6105f885604051806060016040528060288152602001611d64602891396001600160a01b038a166000908152600360205260408120906105d76110d0565b6001600160a01b03168152602081019190915260400160002054919061146a565b6110d4565b5060019392505050565b600060075482111561064a5760405162461bcd60e51b815260040180806020018281038252602a815260200180611ca9602a913960400191505060405180910390fd5b6000610654611501565b90506106608382611524565b9150505b919050565b600890565b600061056a61067b6110d0565b846105f8856003600061068c6110d0565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061156d565b6106c46110d0565b6000546001600160a01b03908116911614610714576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6032811015801561072757506103e88111155b610778576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b60006107876110d0565b6001600160a01b03811660009081526004602052604090205490915060ff16156107e25760405162461bcd60e51b815260040180806020018281038252602c815260200180611e40602c913960400191505060405180910390fd5b60006107ed836115c7565b505050506001600160a01b03841660009081526001602052604090205491925061081991905082611624565b6001600160a01b03831660009081526001602052604090205560075461083f9082611624565b60075560085461084f908461156d565b600855505050565b60095490565b60006006548311156108b6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108d55760006108c6846115c7565b5093955061056e945050505050565b60006108e0846115c7565b5092955061056e945050505050565b6108f76110d0565b6000546001600160a01b03908116911614610947576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6032811015801561095a57506103e88111155b6109ab576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b60006109ba611666565b905090565b6001600160a01b03811660009081526004602052604081205460ff16156109ff57506001600160a01b038116600090815260026020526040902054610664565b6001600160a01b03821660009081526001602052604090205461056e90610607565b610a296110d0565b6000546001600160a01b03908116911614610a79576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080518082019091526006815265446f67652d3160d01b602082015290565b600061056a610aff6110d0565b846105f885604051806060016040528060258152602001611e6c6025913960036000610b296110d0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061146a565b600061056a610b676110d0565b84846111c0565b6001600160a01b031660009081526004602052604090205460ff1690565b610b946110d0565b6000546001600160a01b03908116911614610be4576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b610c046064610bfe8360065461166c90919063ffffffff16565b90611524565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c3d6110d0565b6000546001600160a01b03908116911614610c8d576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ce95760405162461bcd60e51b8152600401808060200182810382526022815260200180611e1e6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610d57576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610db1576001600160a01b038116600090815260016020526040902054610d9790610607565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e1f6110d0565b6000546001600160a01b03908116911614610e6f576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6001600160a01b038116610eb45760405162461bcd60e51b8152600401808060200182810382526026815260200180611cd36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f176110d0565b6000546001600160a01b03908116911614610f67576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610fd4576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156110cc57816001600160a01b031660058281548110610ff857fe5b6000918252602090912001546001600160a01b031614156110c45760058054600019810190811061102557fe5b600091825260209091200154600580546001600160a01b03909216918390811061104b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061109d57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110cc565b600101610fd7565b5050565b3390565b6001600160a01b0383166111195760405162461bcd60e51b8152600401808060200182810382526024815260200180611dfa6024913960400191505060405180910390fd5b6001600160a01b03821661115e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cf96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112055760405162461bcd60e51b8152600401808060200182810382526025815260200180611dd56025913960400191505060405180910390fd5b6001600160a01b03821661124a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611c866023913960400191505060405180910390fd5b600081116112895760405162461bcd60e51b8152600401808060200182810382526029815260200180611dac6029913960400191505060405180910390fd5b611291610ac3565b6001600160a01b0316836001600160a01b0316141580156112cb57506112b5610ac3565b6001600160a01b0316826001600160a01b031614155b1561131157600c548111156113115760405162461bcd60e51b8152600401808060200182810382526028815260200180611d1b6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561135257506001600160a01b03821660009081526004602052604090205460ff16155b15611367576113628383836116c5565b611465565b6001600160a01b03831660009081526004602052604090205460ff161580156113a857506001600160a01b03821660009081526004602052604090205460ff165b156113b857611362838383611805565b6001600160a01b03831660009081526004602052604090205460ff161580156113fa57506001600160a01b03821660009081526004602052604090205460ff16155b1561140a576113628383836118cf565b6001600160a01b03831660009081526004602052604090205460ff16801561144a57506001600160a01b03821660009081526004602052604090205460ff165b1561145a57611362838383611934565b6114658383836118cf565b505050565b600081848411156114f95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114be5781810151838201526020016114a6565b50505050905090810190601f1680156114eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061150e6119c8565b909250905061151d8282611524565b9250505090565b600061156683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b2b565b9392505050565b600082820183811015611566576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006115e48a600a54600b54611b90565b92509250925060006115f4611501565b905060008060006116078e878787611be3565b919e509c509a509598509396509194505050505091939550919395565b600061156683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061146a565b600c5490565b60008261167b5750600061056e565b8282028284828161168857fe5b04146115665760405162461bcd60e51b8152600401808060200182810382526021815260200180611d436021913960400191505060405180910390fd5b60006116cf611501565b90506000806000806000806116e3886115c7565b9550955095509550955095506000611704888361166c90919063ffffffff16565b6001600160a01b038c1660009081526002602052604090205490915061172a908a611624565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546117599088611624565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611788908761156d565b6001600160a01b038b166000908152600160205260409020556117ad85828585611c33565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061180f611501565b9050600080600080600080611823886115c7565b9550955095509550955095506000611844888361166c90919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061186a9088611624565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546118a0908561156d565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611788908761156d565b60006118d9611501565b90506000806000806000806118ed886115c7565b955095509550955095509550600061190e888361166c90919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506117599088611624565b600061193e611501565b9050600080600080600080611952886115c7565b9550955095509550955095506000611973888361166c90919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611999908a611624565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461186a9088611624565b6007546006546000918291825b600554811015611af9578260016000600584815481106119f157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a565750816002600060058481548110611a2f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a6d5760075460065494509450505050611b27565b611aad6001600060058481548110611a8157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611624565b9250611aef6002600060058481548110611ac357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611624565b91506001016119d5565b50600654600754611b0991611524565b821015611b2157600754600654935093505050611b27565b90925090505b9091565b60008183611b7a5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114be5781810151838201526020016114a6565b506000838581611b8657fe5b0495945050505050565b6000808080611ba66064610bfe81818b8b61166c565b90506000611bbb6064610bfe81818c8b61166c565b90506000611bd382611bcd8b86611624565b90611624565b9992985090965090945050505050565b6000808080611bf2888661166c565b90506000611c00888761166c565b90506000611c0e888861166c565b90506000611c2082611bcd8686611624565b939b939a50919850919650505050505050565b611c4c83611bcd8660075461162490919063ffffffff16565b600755600854611c5c908361156d565b600855600954611c6c908261156d565b600955600654611c7c9082611624565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a47d611e79b480c7fb9543df9cf589a94ff3c9d129d1bdb6d97f9613e6ad7e3e64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d8b0527116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610492578063f2cc0c18146104c0578063f2fde38b146104e6578063f84354f11461050c5761018e565b8063a9059cbb14610423578063cba0e9961461044f578063d543dbeb146104755761018e565b80636d8b05271461039557806370a082311461039d578063715018a6146103c35780638da5cb5b146103cb57806395d89b41146103ef578063a457c2d7146103f75761018e565b8063313ce5671161014b5780633bd5d173116101255780633bd5d1731461032e5780633c9f861d1461034b5780634549b039146103535780635880b873146103785761018e565b8063313ce567146102c557806339509351146102e35780633b6b19611461030f5761018e565b806306fdde0314610193578063095ea7b31461021057806313114a9d1461025057806318160ddd1461026a57806323b872dd146102725780632d838119146102a8575b600080fd5b61019b610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610556565b604080519115158252519081900360200190f35b610258610574565b60408051918252519081900360200190f35b61025861057a565b61023c6004803603606081101561028857600080fd5b506001600160a01b03813581169160208101359091169060400135610580565b610258600480360360208110156102be57600080fd5b5035610607565b6102cd610669565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102f957600080fd5b506001600160a01b03813516906020013561066e565b61032c6004803603602081101561032557600080fd5b50356106bc565b005b61032c6004803603602081101561034457600080fd5b503561077d565b610258610857565b6102586004803603604081101561036957600080fd5b5080359060200135151561085d565b61032c6004803603602081101561038e57600080fd5b50356108ef565b6102586109b0565b610258600480360360208110156103b357600080fd5b50356001600160a01b03166109bf565b61032c610a21565b6103d3610ac3565b604080516001600160a01b039092168252519081900360200190f35b61019b610ad2565b61023c6004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610af2565b61023c6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610b5a565b61023c6004803603602081101561046557600080fd5b50356001600160a01b0316610b6e565b61032c6004803603602081101561048b57600080fd5b5035610b8c565b610258600480360360408110156104a857600080fd5b506001600160a01b0381358116916020013516610c0a565b61032c600480360360208110156104d657600080fd5b50356001600160a01b0316610c35565b61032c600480360360208110156104fc57600080fd5b50356001600160a01b0316610e17565b61032c6004803603602081101561052257600080fd5b50356001600160a01b0316610f0f565b60408051808201909152600a815269446f67652d3120496e7560b01b602082015290565b600061056a6105636110d0565b84846110d4565b5060015b92915050565b60085490565b60065490565b600061058d8484846111c0565b6105fd846105996110d0565b6105f885604051806060016040528060288152602001611d64602891396001600160a01b038a166000908152600360205260408120906105d76110d0565b6001600160a01b03168152602081019190915260400160002054919061146a565b6110d4565b5060019392505050565b600060075482111561064a5760405162461bcd60e51b815260040180806020018281038252602a815260200180611ca9602a913960400191505060405180910390fd5b6000610654611501565b90506106608382611524565b9150505b919050565b600890565b600061056a61067b6110d0565b846105f8856003600061068c6110d0565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061156d565b6106c46110d0565b6000546001600160a01b03908116911614610714576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6032811015801561072757506103e88111155b610778576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b60006107876110d0565b6001600160a01b03811660009081526004602052604090205490915060ff16156107e25760405162461bcd60e51b815260040180806020018281038252602c815260200180611e40602c913960400191505060405180910390fd5b60006107ed836115c7565b505050506001600160a01b03841660009081526001602052604090205491925061081991905082611624565b6001600160a01b03831660009081526001602052604090205560075461083f9082611624565b60075560085461084f908461156d565b600855505050565b60095490565b60006006548311156108b6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108d55760006108c6846115c7565b5093955061056e945050505050565b60006108e0846115c7565b5092955061056e945050505050565b6108f76110d0565b6000546001600160a01b03908116911614610947576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6032811015801561095a57506103e88111155b6109ab576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b60006109ba611666565b905090565b6001600160a01b03811660009081526004602052604081205460ff16156109ff57506001600160a01b038116600090815260026020526040902054610664565b6001600160a01b03821660009081526001602052604090205461056e90610607565b610a296110d0565b6000546001600160a01b03908116911614610a79576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080518082019091526006815265446f67652d3160d01b602082015290565b600061056a610aff6110d0565b846105f885604051806060016040528060258152602001611e6c6025913960036000610b296110d0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061146a565b600061056a610b676110d0565b84846111c0565b6001600160a01b031660009081526004602052604090205460ff1690565b610b946110d0565b6000546001600160a01b03908116911614610be4576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b610c046064610bfe8360065461166c90919063ffffffff16565b90611524565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c3d6110d0565b6000546001600160a01b03908116911614610c8d576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ce95760405162461bcd60e51b8152600401808060200182810382526022815260200180611e1e6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610d57576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610db1576001600160a01b038116600090815260016020526040902054610d9790610607565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e1f6110d0565b6000546001600160a01b03908116911614610e6f576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6001600160a01b038116610eb45760405162461bcd60e51b8152600401808060200182810382526026815260200180611cd36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f176110d0565b6000546001600160a01b03908116911614610f67576040805162461bcd60e51b81526020600482018190526024820152600080516020611d8c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610fd4576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156110cc57816001600160a01b031660058281548110610ff857fe5b6000918252602090912001546001600160a01b031614156110c45760058054600019810190811061102557fe5b600091825260209091200154600580546001600160a01b03909216918390811061104b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061109d57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110cc565b600101610fd7565b5050565b3390565b6001600160a01b0383166111195760405162461bcd60e51b8152600401808060200182810382526024815260200180611dfa6024913960400191505060405180910390fd5b6001600160a01b03821661115e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cf96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112055760405162461bcd60e51b8152600401808060200182810382526025815260200180611dd56025913960400191505060405180910390fd5b6001600160a01b03821661124a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611c866023913960400191505060405180910390fd5b600081116112895760405162461bcd60e51b8152600401808060200182810382526029815260200180611dac6029913960400191505060405180910390fd5b611291610ac3565b6001600160a01b0316836001600160a01b0316141580156112cb57506112b5610ac3565b6001600160a01b0316826001600160a01b031614155b1561131157600c548111156113115760405162461bcd60e51b8152600401808060200182810382526028815260200180611d1b6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561135257506001600160a01b03821660009081526004602052604090205460ff16155b15611367576113628383836116c5565b611465565b6001600160a01b03831660009081526004602052604090205460ff161580156113a857506001600160a01b03821660009081526004602052604090205460ff165b156113b857611362838383611805565b6001600160a01b03831660009081526004602052604090205460ff161580156113fa57506001600160a01b03821660009081526004602052604090205460ff16155b1561140a576113628383836118cf565b6001600160a01b03831660009081526004602052604090205460ff16801561144a57506001600160a01b03821660009081526004602052604090205460ff165b1561145a57611362838383611934565b6114658383836118cf565b505050565b600081848411156114f95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114be5781810151838201526020016114a6565b50505050905090810190601f1680156114eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061150e6119c8565b909250905061151d8282611524565b9250505090565b600061156683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b2b565b9392505050565b600082820183811015611566576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006115e48a600a54600b54611b90565b92509250925060006115f4611501565b905060008060006116078e878787611be3565b919e509c509a509598509396509194505050505091939550919395565b600061156683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061146a565b600c5490565b60008261167b5750600061056e565b8282028284828161168857fe5b04146115665760405162461bcd60e51b8152600401808060200182810382526021815260200180611d436021913960400191505060405180910390fd5b60006116cf611501565b90506000806000806000806116e3886115c7565b9550955095509550955095506000611704888361166c90919063ffffffff16565b6001600160a01b038c1660009081526002602052604090205490915061172a908a611624565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546117599088611624565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611788908761156d565b6001600160a01b038b166000908152600160205260409020556117ad85828585611c33565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061180f611501565b9050600080600080600080611823886115c7565b9550955095509550955095506000611844888361166c90919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061186a9088611624565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546118a0908561156d565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611788908761156d565b60006118d9611501565b90506000806000806000806118ed886115c7565b955095509550955095509550600061190e888361166c90919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506117599088611624565b600061193e611501565b9050600080600080600080611952886115c7565b9550955095509550955095506000611973888361166c90919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611999908a611624565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461186a9088611624565b6007546006546000918291825b600554811015611af9578260016000600584815481106119f157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a565750816002600060058481548110611a2f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a6d5760075460065494509450505050611b27565b611aad6001600060058481548110611a8157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611624565b9250611aef6002600060058481548110611ac357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611624565b91506001016119d5565b50600654600754611b0991611524565b821015611b2157600754600654935093505050611b27565b90925090505b9091565b60008183611b7a5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114be5781810151838201526020016114a6565b506000838581611b8657fe5b0495945050505050565b6000808080611ba66064610bfe81818b8b61166c565b90506000611bbb6064610bfe81818c8b61166c565b90506000611bd382611bcd8b86611624565b90611624565b9992985090965090945050505050565b6000808080611bf2888661166c565b90506000611c00888761166c565b90506000611c0e888861166c565b90506000611c2082611bcd8686611624565b939b939a50919850919650505050505050565b611c4c83611bcd8660075461162490919063ffffffff16565b600755600854611c5c908361156d565b600855600954611c6c908261156d565b600955600654611c7c9082611624565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a47d611e79b480c7fb9543df9cf589a94ff3c9d129d1bdb6d97f9613e6ad7e3e64736f6c634300060c0033

Deployed Bytecode Sourcemap

16899:12679:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18116:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19028:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19028:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20139:87;;;:::i;:::-;;;;;;;;;;;;;;;;18393:95;;;:::i;19197:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19197:313:0;;;;;;;;;;;;;;;;;:::i;21163:253::-;;;;;;;;;;;;;;;;-1:-1:-1;21163:253:0;;:::i;18302:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19518:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19518:218:0;;;;;;;;:::i;29008:180::-;;;;;;;;;;;;;;;;-1:-1:-1;29008:180:0;;:::i;:::-;;20334:377;;;;;;;;;;;;;;;;-1:-1:-1;20334:377:0;;:::i;20238:88::-;;;:::i;20719:436::-;;;;;;;;;;;;;;;;-1:-1:-1;20719:436:0;;;;;;;;;:::i;28827:173::-;;;;;;;;;;;;;;;;-1:-1:-1;28827:173:0;;:::i;29303:98::-;;;:::i;18496:198::-;;;;;;;;;;;;;;;;-1:-1:-1;18496:198:0;-1:-1:-1;;;;;18496:198:0;;:::i;16345:148::-;;;:::i;15703:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15703:79:0;;;;;;;;;;;;;;18207:87;;;:::i;19744:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19744:269:0;;;;;;;;:::i;18702:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18702:167:0;;;;;;;;:::i;20021:110::-;;;;;;;;;;;;;;;;-1:-1:-1;20021:110:0;-1:-1:-1;;;;;20021:110:0;;:::i;29413:162::-;;;;;;;;;;;;;;;;-1:-1:-1;29413:162:0;;:::i;18877:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18877:143:0;;;;;;;;;;:::i;21424:443::-;;;;;;;;;;;;;;;;-1:-1:-1;21424:443:0;-1:-1:-1;;;;;21424:443:0;;:::i;16648:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16648:244:0;-1:-1:-1;;;;;16648:244:0;;:::i;21875:478::-;;;;;;;;;;;;;;;;-1:-1:-1;21875:478:0;-1:-1:-1;;;;;21875:478:0;;:::i;18116:83::-;18186:5;;;;;;;;;;;;-1:-1:-1;;;18186:5:0;;;;18116:83;:::o;19028:161::-;19103:4;19120:39;19129:12;:10;:12::i;:::-;19143:7;19152:6;19120:8;:39::i;:::-;-1:-1:-1;19177:4:0;19028:161;;;;;:::o;20139:87::-;20208:10;;20139:87;:::o;18393:95::-;18473:7;;18393:95;:::o;19197:313::-;19295:4;19312:36;19322:6;19330:9;19341:6;19312:9;:36::i;:::-;19359:121;19368:6;19376:12;:10;:12::i;:::-;19390:89;19428:6;19390:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19390:19:0;;;;;;:11;:19;;;;;;19410:12;:10;:12::i;:::-;-1:-1:-1;;;;;19390:33:0;;;;;;;;;;;;-1:-1:-1;19390:33:0;;;:89;:37;:89::i;:::-;19359:8;:121::i;:::-;-1:-1:-1;19498:4:0;19197:313;;;;;:::o;21163:253::-;21229:7;21268;;21257;:18;;21249:73;;;;-1:-1:-1;;;21249:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21333:19;21356:10;:8;:10::i;:::-;21333:33;-1:-1:-1;21384:24:0;:7;21333:33;21384:11;:24::i;:::-;21377:31;;;21163:253;;;;:::o;18302:83::-;17427:1;18302:83;:::o;19518:218::-;19606:4;19623:83;19632:12;:10;:12::i;:::-;19646:7;19655:50;19694:10;19655:11;:25;19667:12;:10;:12::i;:::-;-1:-1:-1;;;;;19655:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19655:25:0;;;:34;;;;;;;;;;;:38;:50::i;29008:180::-;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;29097:2:::1;29086:7;:13;;:32;;;;;29114:4;29103:7;:15;;29086:32;29078:72;;;::::0;;-1:-1:-1;;;29078:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29161:9;:19:::0;29008:180::o;20334:377::-;20386:14;20403:12;:10;:12::i;:::-;-1:-1:-1;;;;;20435:19:0;;;;;;:11;:19;;;;;;20386:29;;-1:-1:-1;20435:19:0;;20434:20;20426:77;;;;-1:-1:-1;;;20426:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20515:15;20539:19;20550:7;20539:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20587:15:0;;;;;;:7;:15;;;;;;20514:44;;-1:-1:-1;20587:28:0;;:15;-1:-1:-1;20514:44:0;20587:19;:28::i;:::-;-1:-1:-1;;;;;20569:15:0;;;;;;:7;:15;;;;;:46;20636:7;;:20;;20648:7;20636:11;:20::i;:::-;20626:7;:30;20680:10;;:23;;20695:7;20680:14;:23::i;:::-;20667:10;:36;-1:-1:-1;;;20334:377:0:o;20238:88::-;20307:11;;20238:88;:::o;20719:436::-;20809:7;20848;;20837;:18;;20829:62;;;;;-1:-1:-1;;;20829:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20907:17;20902:246;;20942:15;20966:19;20977:7;20966:10;:19::i;:::-;-1:-1:-1;20941:44:0;;-1:-1:-1;21000:14:0;;-1:-1:-1;;;;;21000:14:0;20902:246;21049:23;21080:19;21091:7;21080:10;:19::i;:::-;-1:-1:-1;21047:52:0;;-1:-1:-1;21114:22:0;;-1:-1:-1;;;;;21114:22:0;28827:173;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;28913:2:::1;28903:6;:12;;:30;;;;;28929:4;28919:6;:14;;28903:30;28895:69;;;::::0;;-1:-1:-1;;;28895:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;28975:8;:17:::0;28827:173::o;29303:98::-;29349:7;29376:17;:15;:17::i;:::-;29369:24;;29303:98;:::o;18496:198::-;-1:-1:-1;;;;;18586:20:0;;18562:7;18586:20;;;:11;:20;;;;;;;;18582:49;;;-1:-1:-1;;;;;;18615:16:0;;;;;;:7;:16;;;;;;18608:23;;18582:49;-1:-1:-1;;;;;18669:16:0;;;;;;:7;:16;;;;;;18649:37;;:19;:37::i;16345:148::-;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;16452:1:::1;16436:6:::0;;16415:40:::1;::::0;-1:-1:-1;;;;;16436:6:0;;::::1;::::0;16415:40:::1;::::0;16452:1;;16415:40:::1;16483:1;16466:19:::0;;-1:-1:-1;;;;;;16466:19:0::1;::::0;;16345:148::o;15703:79::-;15741:7;15768:6;-1:-1:-1;;;;;15768:6:0;15703:79;:::o;18207:87::-;18279:7;;;;;;;;;;;;-1:-1:-1;;;18279:7:0;;;;18207:87;:::o;19744:269::-;19837:4;19854:129;19863:12;:10;:12::i;:::-;19877:7;19886:96;19925:15;19886:96;;;;;;;;;;;;;;;;;:11;:25;19898:12;:10;:12::i;:::-;-1:-1:-1;;;;;19886:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19886:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18702:167::-;18780:4;18797:42;18807:12;:10;:12::i;:::-;18821:9;18832:6;18797:9;:42::i;20021:110::-;-1:-1:-1;;;;;20103:20:0;20079:4;20103:20;;;:11;:20;;;;;;;;;20021:110::o;29413:162::-;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;29507:60:::1;29551:5;29507:25;29519:12;29507:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;29492:12;:75:::0;-1:-1:-1;29413:162:0:o;18877:143::-;-1:-1:-1;;;;;18985:18:0;;;18958:7;18985:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18877:143::o;21424:443::-;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;21516:42:::1;-1:-1:-1::0;;;;;21505:53:0;::::1;;;21497:100;;;;-1:-1:-1::0;;;21497:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21617:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21616:21;21608:61;;;::::0;;-1:-1:-1;;;21608:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21683:16:0;::::1;21702:1;21683:16:::0;;;:7:::1;:16;::::0;;;;;:20;21680:108:::1;;-1:-1:-1::0;;;;;21759:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;21739:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21720:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21680:108:::1;-1:-1:-1::0;;;;;21798:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;21798:27:0::1;21821:4;21798:27:::0;;::::1;::::0;;;21836:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;21836:23:0::1;::::0;;::::1;::::0;;21424:443::o;16648:244::-;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16737:22:0;::::1;16729:73;;;;-1:-1:-1::0;;;16729:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16839:6;::::0;;16818:38:::1;::::0;-1:-1:-1;;;;;16818:38:0;;::::1;::::0;16839:6;::::1;::::0;16818:38:::1;::::0;::::1;16867:6;:17:::0;;-1:-1:-1;;;;;;16867:17:0::1;-1:-1:-1::0;;;;;16867:17:0;;;::::1;::::0;;;::::1;::::0;;16648:244::o;21875:478::-;15925:12;:10;:12::i;:::-;15915:6;;-1:-1:-1;;;;;15915:6:0;;;:22;;;15907:67;;;;;-1:-1:-1;;;15907:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15907:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21956:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21948:60;;;::::0;;-1:-1:-1;;;21948:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22024:9;22019:327;22043:9;:16:::0;22039:20;::::1;22019:327;;;22101:7;-1:-1:-1::0;;;;;22085:23:0::1;:9;22095:1;22085:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22085:12:0::1;:23;22081:254;;;22144:9;22154:16:::0;;-1:-1:-1;;22154:20:0;;;22144:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22129:9:::1;:12:::0;;-1:-1:-1;;;;;22144:31:0;;::::1;::::0;22139:1;;22129:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22129:46:0::1;-1:-1:-1::0;;;;;22129:46:0;;::::1;;::::0;;22194:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22233:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22233:28:0::1;::::0;;22280:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22280:15:0;;;;;-1:-1:-1;;;;;;22280:15:0::1;::::0;;;;;22314:5:::1;;22081:254;22061:3;;22019:327;;;;21875:478:::0;:::o;167:106::-;255:10;167:106;:::o;22361:337::-;-1:-1:-1;;;;;22454:19:0;;22446:68;;;;-1:-1:-1;;;22446:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22533:21:0;;22525:68;;;;-1:-1:-1;;;22525:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22606:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22658:32;;;;;;;;;;;;;;;;;22361:337;;;:::o;22706:1096::-;-1:-1:-1;;;;;22803:20:0;;22795:70;;;;-1:-1:-1;;;22795:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22884:23:0;;22876:71;;;;-1:-1:-1;;;22876:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22975:1;22966:6;:10;22958:64;;;;-1:-1:-1;;;22958:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23056:7;:5;:7::i;:::-;-1:-1:-1;;;;;23046:17:0;:6;-1:-1:-1;;;;;23046:17:0;;;:41;;;;;23080:7;:5;:7::i;:::-;-1:-1:-1;;;;;23067:20:0;:9;-1:-1:-1;;;;;23067:20:0;;;23046:41;23043:134;;;23120:12;;23110:6;:22;;23102:75;;;;-1:-1:-1;;;23102:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23202:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23226:22:0;;;;;;:11;:22;;;;;;;;23225:23;23202:46;23198:597;;;23265:48;23287:6;23295:9;23306:6;23265:21;:48::i;:::-;23198:597;;;-1:-1:-1;;;;;23336:19:0;;;;;;:11;:19;;;;;;;;23335:20;:46;;;;-1:-1:-1;;;;;;23359:22:0;;;;;;:11;:22;;;;;;;;23335:46;23331:464;;;23398:46;23418:6;23426:9;23437:6;23398:19;:46::i;23331:464::-;-1:-1:-1;;;;;23467:19:0;;;;;;:11;:19;;;;;;;;23466:20;:47;;;;-1:-1:-1;;;;;;23491:22:0;;;;;;:11;:22;;;;;;;;23490:23;23466:47;23462:333;;;23530:44;23548:6;23556:9;23567:6;23530:17;:44::i;23462:333::-;-1:-1:-1;;;;;23596:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23619:22:0;;;;;;:11;:22;;;;;;;;23596:45;23592:203;;;23658:48;23680:6;23688:9;23699:6;23658:21;:48::i;23592:203::-;23739:44;23757:6;23765:9;23776:6;23739:17;:44::i;:::-;22706:1096;;;:::o;4979:192::-;5065:7;5101:12;5093:6;;;;5085:29;;;;-1:-1:-1;;;5085:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5137:5:0;;;4979:192::o;27989:163::-;28030:7;28051:15;28068;28087:19;:17;:19::i;:::-;28050:56;;-1:-1:-1;28050:56:0;-1:-1:-1;28124:20:0;28050:56;;28124:11;:20::i;:::-;28117:27;;;;27989:163;:::o;6377:132::-;6435:7;6462:39;6466:1;6469;6462:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6455:46;6377:132;-1:-1:-1;;;6377:132:0:o;4076:181::-;4134:7;4166:5;;;4190:6;;;;4182:46;;;;;-1:-1:-1;;;4182:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26691:470;26750:7;26759;26768;26777;26786;26795;26816:23;26841:12;26855:13;26872:41;26884:7;26893:8;;26903:9;;26872:11;:41::i;:::-;26815:98;;;;;;26924:19;26947:10;:8;:10::i;:::-;26924:33;;26969:15;26986:23;27011:12;27027:46;27039:7;27048:4;27054:5;27061:11;27027;:46::i;:::-;26968:105;;-1:-1:-1;26968:105:0;-1:-1:-1;26968:105:0;-1:-1:-1;27124:15:0;;-1:-1:-1;27141:4:0;;-1:-1:-1;27147:5:0;;-1:-1:-1;;;;;26691:470:0;;;;;;;:::o;4540:136::-;4598:7;4625:43;4629:1;4632;4625:43;;;;;;;;;;;;;;;;;:3;:43::i;29196:95::-;29271:12;;29196:95;:::o;5430:471::-;5488:7;5733:6;5729:47;;-1:-1:-1;5763:1:0;5756:8;;5729:47;5800:5;;;5804:1;5800;:5;:1;5824:5;;;;;:10;5816:56;;;;-1:-1:-1;;;5816:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25053:632;25155:19;25178:10;:8;:10::i;:::-;25155:33;;25200:15;25217:23;25242:12;25256:23;25281:12;25295:13;25312:19;25323:7;25312:10;:19::i;:::-;25199:132;;;;;;;;;;;;25342:13;25359:22;25369:11;25359:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25410:15:0;;;;;;:7;:15;;;;;;25342:39;;-1:-1:-1;25410:28:0;;25430:7;25410:19;:28::i;:::-;-1:-1:-1;;;;;25392:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25467:7;:15;;;;:28;;25487:7;25467:19;:28::i;:::-;-1:-1:-1;;;;;25449:15:0;;;;;;;:7;:15;;;;;;:46;;;;25527:18;;;;;;;:39;;25550:15;25527:22;:39::i;:::-;-1:-1:-1;;;;;25506:18:0;;;;;;:7;:18;;;;;:60;25580:37;25592:4;25598:5;25605:4;25611:5;25580:11;:37::i;:::-;25650:9;-1:-1:-1;;;;;25633:44:0;25642:6;-1:-1:-1;;;;;25633:44:0;;25661:15;25633:44;;;;;;;;;;;;;;;;;;25053:632;;;;;;;;;;;:::o;24393:652::-;24493:19;24516:10;:8;:10::i;:::-;24493:33;;24538:15;24555:23;24580:12;24594:23;24619:12;24633:13;24650:19;24661:7;24650:10;:19::i;:::-;24537:132;;;;;;;;;;;;24680:13;24697:22;24707:11;24697:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24748:15:0;;;;;;:7;:15;;;;;;24680:39;;-1:-1:-1;24748:28:0;;24768:7;24748:19;:28::i;:::-;-1:-1:-1;;;;;24730:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24808:18;;;;;:7;:18;;;;;:39;;24831:15;24808:22;:39::i;:::-;-1:-1:-1;;;;;24787:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24879:7;:18;;;;:39;;24902:15;24879:22;:39::i;23810:575::-;23908:19;23931:10;:8;:10::i;:::-;23908:33;;23953:15;23970:23;23995:12;24009:23;24034:12;24048:13;24065:19;24076:7;24065:10;:19::i;:::-;23952:132;;;;;;;;;;;;24095:13;24112:22;24122:11;24112:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24163:15:0;;;;;;:7;:15;;;;;;24095:39;;-1:-1:-1;24163:28:0;;24183:7;24163:19;:28::i;25693:708::-;25795:19;25818:10;:8;:10::i;:::-;25795:33;;25840:15;25857:23;25882:12;25896:23;25921:12;25935:13;25952:19;25963:7;25952:10;:19::i;:::-;25839:132;;;;;;;;;;;;25982:13;25999:22;26009:11;25999:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;26050:15:0;;;;;;:7;:15;;;;;;25982:39;;-1:-1:-1;26050:28:0;;26070:7;26050:19;:28::i;:::-;-1:-1:-1;;;;;26032:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26107:7;:15;;;;:28;;26127:7;26107:19;:28::i;28160:561::-;28257:7;;28293;;28210;;;;;28317:289;28341:9;:16;28337:20;;28317:289;;;28407:7;28383;:21;28391:9;28401:1;28391:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28391:12:0;28383:21;;;;;;;;;;;;;:31;;:66;;;28442:7;28418;:21;28426:9;28436:1;28426:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28426:12:0;28418:21;;;;;;;;;;;;;:31;28383:66;28379:97;;;28459:7;;28468;;28451:25;;;;;;;;;28379:97;28501:34;28513:7;:21;28521:9;28531:1;28521:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28521:12:0;28513:21;;;;;;;;;;;;;28501:7;;:11;:34::i;:::-;28491:44;;28560:34;28572:7;:21;28580:9;28590:1;28580:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28580:12:0;28572:21;;;;;;;;;;;;;28560:7;;:11;:34::i;:::-;28550:44;-1:-1:-1;28359:3:0;;28317:289;;;-1:-1:-1;28642:7:0;;28630;;:20;;:11;:20::i;:::-;28620:7;:30;28616:61;;;28660:7;;28669;;28652:25;;;;;;;;28616:61;28696:7;;-1:-1:-1;28705:7:0;-1:-1:-1;28160:561:0;;;:::o;7005:278::-;7091:7;7126:12;7119:5;7111:28;;;;-1:-1:-1;;;7111:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7150:9;7166:1;7162;:5;;;;;;;7005:278;-1:-1:-1;;;;;7005:278:0:o;27169:395::-;27262:7;;;;27315:50;27361:3;27316:39;27361:3;27316:39;27317:7;27329:6;27317:11;:19::i;27315:50::-;27300:65;-1:-1:-1;27376:13:0;27392:51;27439:3;27393:40;27439:3;27393:40;27394:7;27406;27394:11;:20::i;27392:51::-;27376:67;-1:-1:-1;27454:23:0;27480:28;27376:67;27480:17;:7;27492:4;27480:11;:17::i;:::-;:21;;:28::i;:::-;27454:54;27544:4;;-1:-1:-1;27550:5:0;;-1:-1:-1;27169:395:0;;-1:-1:-1;;;;;27169:395:0:o;27572:409::-;27682:7;;;;27738:24;:7;27750:11;27738;:24::i;:::-;27720:42;-1:-1:-1;27773:12:0;27788:21;:4;27797:11;27788:8;:21::i;:::-;27773:36;-1:-1:-1;27820:13:0;27836:22;:5;27846:11;27836:9;:22::i;:::-;27820:38;-1:-1:-1;27869:23:0;27895:28;27820:38;27895:17;:7;27907:4;27895:11;:17::i;:28::-;27942:7;;;;-1:-1:-1;27968:4:0;;-1:-1:-1;27572:409:0;;-1:-1:-1;;;;;;;27572:409:0:o;26409:274::-;26517:28;26539:5;26517:17;26529:4;26517:7;;:11;;:17;;;;:::i;:28::-;26507:7;:38;26569:10;;:20;;26584:4;26569:14;:20::i;:::-;26556:10;:33;26614:11;;:22;;26630:5;26614:15;:22::i;:::-;26600:11;:36;26657:7;;:18;;26669:5;26657:11;:18::i;:::-;26647:7;:28;-1:-1:-1;;;;26409:274:0:o

Swarm Source

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