ETH Price: $2,307.79 (-0.35%)

Token

Decentralized Business Systems (DBS)
 

Overview

Max Total Supply

0.00000033 DBS

Holders

339 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0 DBS

Value
$0.00
0xa25ca48fde9144251f0551c3ebcc312639383a98
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DBS aims to enable the security and power of blockchain, with blockchain-enhanced business applications.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DecentralizedBusinessSystems

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(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 public _owner;

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


    /**
     * @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 DecentralizedBusinessSystems 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;
    mapping (address => bool) private _isCharity;
    address[] private _excluded;
    
    string  private _NAME;
    string  private _SYMBOL;
    uint256   private _DECIMALS;
	address public FeeAddress;
   
    uint256 private _MAX = ~uint256(0);
    uint256 private _DECIMALFACTOR;
    uint256 private _GRANULARITY = 100;
    
    uint256 private _tTotal;
    uint256 private _rTotal;
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    uint256 private _tCharityTotal;
    
    uint256 public     _TAX_FEE;
    uint256 public    _BURN_FEE;
    uint256 public _CHARITY_FEE;

    // Track original fees to bypass fees for charity account
    uint256 private ORIG_TAX_FEE;
    uint256 private ORIG_BURN_FEE;
    uint256 private ORIG_CHARITY_FEE;

    constructor (string memory _name, string memory _symbol, uint256 _decimals, uint256 _supply, uint256 _txFee,uint256 _burnFee,uint256 _charityFee,address _FeeAddress,address tokenOwner) {
		_NAME = _name;
		_SYMBOL = _symbol;
		_DECIMALS = _decimals;
		_DECIMALFACTOR = 8 ** uint256(_DECIMALS);
		_tTotal =_supply * _DECIMALFACTOR;
		_rTotal = (_MAX - (_MAX % _tTotal));
		_TAX_FEE = _txFee* 100; 
        _BURN_FEE = _burnFee * 100;
		_CHARITY_FEE = _charityFee* 100;
		ORIG_TAX_FEE = _TAX_FEE;
		ORIG_BURN_FEE = _BURN_FEE;
		ORIG_CHARITY_FEE = _CHARITY_FEE;
		_isCharity[_FeeAddress] = true;
		FeeAddress = _FeeAddress;
		_owner = tokenOwner;
        _rOwned[tokenOwner] = _rTotal;
		
        emit Transfer(address(0),tokenOwner, _tTotal);
    }

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

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

    function decimals() public view returns (uint256) {
        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, "TOKEN20: 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, "TOKEN20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }
    
    function isCharity(address account) public view returns (bool) {
        return _isCharity[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }
    
    function totalCharity() public view returns (uint256) {
        return _tCharityTotal;
    }

    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(!_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 setAsCharityAccount(address account) external onlyOwner() {
        require(!_isCharity[account], "Account is already charity account");
        _isCharity[account] = true;
		FeeAddress = account;
    }

	function burn(uint256 _value) public{
		_burn(msg.sender, _value);
	}
	
	function updateFee(uint256 _txFee,uint256 _burnFee,uint256 _charityFee) onlyOwner() public{
        _TAX_FEE = _txFee* 100; 
        _BURN_FEE = _burnFee * 100;
		_CHARITY_FEE = _charityFee* 100;
		ORIG_TAX_FEE = _TAX_FEE;
		ORIG_BURN_FEE = _BURN_FEE;
		ORIG_CHARITY_FEE = _CHARITY_FEE;
	}
	

	function _burn(address _who, uint256 _value) internal {
		require(_value <= _rOwned[_who]);
		_rOwned[_who] = _rOwned[_who].sub(_value);
		_tTotal = _tTotal.sub(_value);
		emit Transfer(_who, address(0), _value);
	}

    function mint(address account, uint256 amount) onlyOwner() public {

        _tTotal = _tTotal.add(amount);
        _rOwned[account] = _rOwned[account].add(amount);
        emit Transfer(address(0), account, amount);
    }



    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "TOKEN20: approve from the zero address");
        require(spender != address(0), "TOKEN20: 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), "TOKEN20: transfer from the zero address");
        require(recipient != address(0), "TOKEN20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // Remove fees for transfers to and from charity account or to excluded account
        bool takeFee = true;
        if (_isCharity[sender] || _isCharity[recipient] || _isExcluded[recipient]) {
            takeFee = false;
        }

        if (!takeFee) removeAllFee();
        
        
        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);
        }

        if (!takeFee) restoreAllFee();
    }

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

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

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

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 rCharity, uint256 tFee, uint256 tBurn, uint256 tCharity) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn).sub(rCharity);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tCharityTotal = _tCharityTotal.add(tCharity);
        _tTotal = _tTotal.sub(tBurn);
		emit Transfer(address(this), address(0), tBurn);
    }
    

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tFee, uint256 tBurn, uint256 tCharity) = _getTBasics(tAmount, _TAX_FEE, _BURN_FEE, _CHARITY_FEE);
        uint256 tTransferAmount = getTTransferAmount(tAmount, tFee, tBurn, tCharity);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rFee) = _getRBasics(tAmount, tFee, currentRate);
        uint256 rTransferAmount = _getRTransferAmount(rAmount, rFee, tBurn, tCharity, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tCharity);
    }
    
    function _getTBasics(uint256 tAmount, uint256 taxFee, uint256 burnFee, uint256 charityFee) private view returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tCharity = ((tAmount.mul(charityFee)).div(_GRANULARITY)).div(100);
        return (tFee, tBurn, tCharity);
    }
    
    function getTTransferAmount(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) private pure returns (uint256) {
        return tAmount.sub(tFee).sub(tBurn).sub(tCharity);
    }
    
    function _getRBasics(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        return (rAmount, rFee);
    }
    
    function _getRTransferAmount(uint256 rAmount, uint256 rFee, uint256 tBurn, uint256 tCharity, uint256 currentRate) private pure returns (uint256) {
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rCharity = tCharity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rCharity);
        return rTransferAmount;
    }

    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 _sendToCharity(uint256 tCharity, address sender) private {
        uint256 currentRate = _getRate();
        uint256 rCharity = tCharity.mul(currentRate);
        _rOwned[FeeAddress] = _rOwned[FeeAddress].add(rCharity);
        _tOwned[FeeAddress] = _tOwned[FeeAddress].add(tCharity);
        emit Transfer(sender, FeeAddress, tCharity);
    }

    function removeAllFee() private {
        if(_TAX_FEE == 0 && _BURN_FEE == 0 && _CHARITY_FEE == 0) return;
        
        ORIG_TAX_FEE = _TAX_FEE;
        ORIG_BURN_FEE = _BURN_FEE;
        ORIG_CHARITY_FEE = _CHARITY_FEE;
        
        _TAX_FEE = 0;
        _BURN_FEE = 0;
        _CHARITY_FEE = 0;
    }
    
    function restoreAllFee() private {
        _TAX_FEE = ORIG_TAX_FEE;
        _BURN_FEE = ORIG_BURN_FEE;
        _CHARITY_FEE = ORIG_CHARITY_FEE;
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CHARITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","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":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"isCharity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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"},{"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":"address","name":"account","type":"address"}],"name":"setAsCharityAccount","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":"totalCharity","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"},{"inputs":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600019600b556064600d553480156200001c57600080fd5b506040516200288a3803806200288a8339810160408190526200003f916200030b565b8851620000549060079060208c019062000195565b5087516200006a9060089060208b019062000195565b5060098790556200007d87600862000415565b600c8190556200008e90876200050a565b600e819055600b54620000a2919062000583565b600b54620000b191906200052c565b600f55620000c18560646200050a565b601355620000d18460646200050a565b601455620000e18360646200050a565b60158190556013546016556014546017556018556001600160a01b038281166000818152600560209081526040808320805460ff19166001908117909155600a80546001600160a01b0319908116909617905583549587169590941685178355600f5485845293825280832093909355600e54925192835290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050505050505050620005d0565b828054620001a39062000546565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b80516001600160a01b03811681146200025357600080fd5b919050565b600082601f83011262000269578081fd5b81516001600160401b0380821115620002865762000286620005ba565b604051601f8301601f19908116603f01168101908282118183101715620002b157620002b1620005ba565b81604052838152602092508683858801011115620002cd578485fd5b8491505b83821015620002f05785820183015181830184015290820190620002d1565b838211156200030157848385830101525b9695505050505050565b60008060008060008060008060006101208a8c0312156200032a578485fd5b89516001600160401b038082111562000341578687fd5b6200034f8d838e0162000258565b9a5060208c015191508082111562000365578687fd5b50620003748c828d0162000258565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01519250620003a860e08b016200023b565b9150620003b96101008b016200023b565b90509295985092959850929598565b80825b6001808611620003dc57506200040c565b818704821115620003f157620003f1620005a4565b80861615620003ff57918102915b9490941c938002620003cb565b94509492505050565b60006200042660001984846200042d565b9392505050565b6000826200043e5750600162000426565b816200044d5750600062000426565b81600181146200046657600281146200047157620004a5565b600191505062000426565b60ff841115620004855762000485620005a4565b6001841b9150848211156200049e576200049e620005a4565b5062000426565b5060208310610133831016604e8410600b8410161715620004dd575081810a83811115620004d757620004d7620005a4565b62000426565b620004ec8484846001620003c8565b808604821115620005015762000501620005a4565b02949350505050565b6000816000190483118215151615620005275762000527620005a4565b500290565b600082821015620005415762000541620005a4565b500390565b6002810460018216806200055b57607f821691505b602082108114156200057d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200059f57634e487b7160e01b81526012600452602481fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6122aa80620005e06000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806377ef79931161011a578063b5862428116100ad578063e81ffbef1161007c578063e81ffbef14610425578063f2cc0c1814610451578063f2fde38b14610464578063f84354f114610477578063fc061a4f1461048a576101fb565b8063b5862428146103af578063cba0e996146103b8578063d608b3b2146103e4578063dd62ed3e146103ec576101fb565b8063a457c2d7116100e9578063a457c2d71461036d578063a9059cbb14610380578063ae9dd5e014610393578063b2bdfa7b1461039c576101fb565b806377ef7993146103205780637b7e8bac146103295780638da5cb5b1461035457806395d89b4114610365576101fb565b80633bd5d173116101925780634549b039116101615780634549b039146102df578063457bdf6c146102f257806370a0823114610305578063715018a614610318576101fb565b80633bd5d1731461029c5780633c9f861d146102b157806340c10f19146102b957806342966c68146102cc576101fb565b806323b872dd116101ce57806323b872dd1461025b5780632d8381191461026e578063313ce567146102815780633950935114610289576101fb565b806306fdde0314610200578063095ea7b31461021e57806313114a9d1461024157806318160ddd14610253575b600080fd5b61020861049d565b60405161021591906120a1565b60405180910390f35b61023161022c366004612002565b61052f565b6040519015158152602001610215565b6010545b604051908152602001610215565b600e54610245565b610231610269366004611fc7565b610546565b61024561027c36600461202b565b6105af565b600954610245565b610231610297366004612002565b61063a565b6102af6102aa36600461202b565b610670565b005b601154610245565b6102af6102c7366004612002565b61075c565b6102af6102da36600461202b565b610804565b6102456102ed366004612043565b610811565b6102af610300366004611f7b565b6108a0565b610245610313366004611f7b565b610975565b6102af6109d7565b61024560145481565b600a5461033c906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b6000546001600160a01b031661033c565b610208610a4b565b61023161037b366004612002565b610a5a565b61023161038e366004612002565b610aa9565b61024560155481565b60005461033c906001600160a01b031681565b61024560135481565b6102316103c6366004611f7b565b6001600160a01b031660009081526004602052604090205460ff1690565b601254610245565b6102456103fa366004611f95565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610231610433366004611f7b565b6001600160a01b031660009081526005602052604090205460ff1690565b6102af61045f366004611f7b565b610ab6565b6102af610472366004611f7b565b610c09565b6102af610485366004611f7b565b610cf3565b6102af610498366004612076565b610ee3565b6060600780546104ac90612197565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890612197565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b600061053c338484610f4d565b5060015b92915050565b6000610553848484611075565b6105a584336105a0856040518060600160405280602a815260200161222b602a91396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611392565b610f4d565b5060019392505050565b6000600f5482111561061b5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006106256113cc565b905061063183826113ef565b9150505b919050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161053c9185906105a09086611438565b3360008181526004602052604090205460ff16156106e55760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610612565b60006106f083611497565b5050506001600160a01b03861660009081526001602052604090205493945061071e9392508491505061151b565b6001600160a01b038316600090815260016020526040902055600f54610744908261151b565b600f556010546107549084611438565b601055505050565b6000546001600160a01b031633146107865760405162461bcd60e51b8152600401610612906120f4565b600e546107939082611438565b600e556001600160a01b0382166000908152600160205260409020546107b99082611438565b6001600160a01b038316600081815260016020526040808220939093559151909190600080516020612255833981519152906107f89085815260200190565b60405180910390a35050565b61080e338261155d565b50565b6000600e548311156108655760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610612565b8161088557600061087584611497565b5094965061054095505050505050565b600061089084611497565b5093965061054095505050505050565b6000546001600160a01b031633146108ca5760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b03811660009081526005602052604090205460ff161561093e5760405162461bcd60e51b815260206004820152602260248201527f4163636f756e7420697320616c72656164792063686172697479206163636f756044820152611b9d60f21b6064820152608401610612565b6001600160a01b03166000818152600560205260409020805460ff19166001179055600a80546001600160a01b0319169091179055565b6001600160a01b03811660009081526004602052604081205460ff16156109b557506001600160a01b038116600090815260026020526040902054610635565b6001600160a01b038216600090815260016020526040902054610540906105af565b6000546001600160a01b03163314610a015760405162461bcd60e51b8152600401610612906120f4565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600880546104ac90612197565b600061053c33846105a085604051806060016040528060278152602001612204602791393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611392565b600061053c338484611075565b6000546001600160a01b03163314610ae05760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b03811660009081526004602052604090205460ff1615610b495760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610612565b6001600160a01b03811660009081526001602052604090205415610ba3576001600160a01b038116600090815260016020526040902054610b89906105af565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b03163314610c335760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b038116610c985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d1d5760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b03811660009081526004602052604090205460ff16610d855760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610612565b60005b600654811015610edf57816001600160a01b031660068281548110610dbd57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ecd5760068054610de890600190612180565b81548110610e0657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610e4057634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556006805480610ea657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610edf565b80610ed7816121d2565b915050610d88565b5050565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b8152600401610612906120f4565b610f18836064612161565b601355610f26826064612161565b601455610f34816064612161565b6015819055601354601655601454601755601855505050565b6001600160a01b038316610fb25760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b6001600160a01b0382166110145760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610612565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110db5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b6064820152608401610612565b6001600160a01b03821661113f5760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610612565b600081116111a15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610612565b6001600160a01b03831660009081526005602052604090205460019060ff16806111e357506001600160a01b03831660009081526005602052604090205460ff165b8061120657506001600160a01b03831660009081526004602052604090205460ff165b1561120f575060005b8061121c5761121c6115fa565b6001600160a01b03841660009081526004602052604090205460ff16801561125d57506001600160a01b03831660009081526004602052604090205460ff16155b156112725761126d848484611643565b611370565b6001600160a01b03841660009081526004602052604090205460ff161580156112b357506001600160a01b03831660009081526004602052604090205460ff165b156112c35761126d848484611705565b6001600160a01b03841660009081526004602052604090205460ff1615801561130557506001600160a01b03831660009081526004602052604090205460ff16155b156113155761126d848484611765565b6001600160a01b03841660009081526004602052604090205460ff16801561135557506001600160a01b03831660009081526004602052604090205460ff165b156113655761126d8484846117c4565b611370848484611765565b8061138c5761138c601654601355601754601455601854601555565b50505050565b600081848411156113b65760405162461bcd60e51b815260040161061291906120a1565b5060006113c38486612180565b95945050505050565b60008060006113d9611825565b90925090506113e882826113ef565b9250505090565b600061143183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119e2565b9392505050565b6000806114458385612129565b9050838110156114315760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610612565b6000806000806000806000806000806114b88b601354601454601554611a10565b92509250925060006114cc8c858585611a8f565b905060006114d86113cc565b90506000806114e88f8885611aa7565b9150915060006114fb8383898988611ad1565b929e50919c509a5091985093965091945092505050919395979092949650565b600061143183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611392565b6001600160a01b03821660009081526001602052604090205481111561158257600080fd5b6001600160a01b0382166000908152600160205260409020546115a5908261151b565b6001600160a01b038316600090815260016020526040902055600e546115cb908261151b565b600e556040518181526000906001600160a01b03841690600080516020612255833981519152906020016107f8565b60135415801561160a5750601454155b80156116165750601554155b1561162057611641565b60138054601655601480546017556015805460185560009283905590829055555b565b600061164d6113cc565b9050600080600080600080600061166389611497565b965096509650965096509650965060006116868984611b0d90919063ffffffff16565b90506000611694838b611b0d565b90506116a38d8d8d8c8c611b8c565b6116ad838e611c30565b6116bb878383888888611cff565b8b6001600160a01b03168d6001600160a01b0316600080516020612255833981519152886040516116ee91815260200190565b60405180910390a350505050505050505050505050565b600061170f6113cc565b9050600080600080600080600061172589611497565b965096509650965096509650965060006117488984611b0d90919063ffffffff16565b90506000611756838b611b0d565b90506116a38d8d888c8c611d8d565b600061176f6113cc565b9050600080600080600080600061178589611497565b965096509650965096509650965060006117a88984611b0d90919063ffffffff16565b905060006117b6838b611b0d565b90506116a38d8d8b8b611e15565b60006117ce6113cc565b905060008060008060008060006117e489611497565b965096509650965096509650965060006118078984611b0d90919063ffffffff16565b90506000611815838b611b0d565b90506116a38d8d8d8c8a8d611e89565b600f54600e546000918291825b6006548110156119b05782600160006006848154811061186257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806118db57508160026000600684815481106118b457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156118f257600f54600e54945094505050506119de565b611946600160006006848154811061191a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061151b565b925061199c600260006006848154811061197057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061151b565b9150806119a8816121d2565b915050611832565b50600e54600f546119c0916113ef565b8210156119d857600f54600e549350935050506119de565b90925090505b9091565b60008183611a035760405162461bcd60e51b815260040161061291906120a1565b5060006113c38486612141565b600080600080611a3a6064611a34600d54611a348b8d611b0d90919063ffffffff16565b906113ef565b90506000611a5c6064611a34600d54611a348b8e611b0d90919063ffffffff16565b90506000611a7e6064611a34600d54611a348b8f611b0d90919063ffffffff16565b929a91995091975095505050505050565b60006113c382611aa18581898961151b565b9061151b565b60008080611ab58685611b0d565b90506000611ac38686611b0d565b919791965090945050505050565b600080611ade8584611b0d565b90506000611aec8585611b0d565b90506000611b0082611aa185818d8d61151b565b9998505050505050505050565b600082611b1c57506000610540565b6000611b288385612161565b905082611b358583612141565b146114315760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610612565b6001600160a01b038516600090815260026020526040902054611baf908461151b565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611bde908361151b565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611c0d9082611438565b6001600160a01b0390941660009081526001602052604090209390935550505050565b6000611c3a6113cc565b90506000611c488483611b0d565b600a546001600160a01b0316600090815260016020526040902054909150611c709082611438565b600a80546001600160a01b039081166000908152600160209081526040808320959095559254909116815260029091522054611cac9085611438565b600a80546001600160a01b0390811660009081526002602090815260409182902094909455915491518781529181169290861691600080516020612255833981519152910160405180910390a350505050565b611d1c84611aa187611aa18a600f5461151b90919063ffffffff16565b600f55601054611d2c9084611438565b601055601154611d3c9083611438565b601155601254611d4c9082611438565b601255600e54611d5c908361151b565b600e5560405182815260009030906000805160206122558339815191529060200160405180910390a3505050505050565b6001600160a01b038516600090815260016020526040902054611db0908361151b565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611de69084611438565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611c0d9082611438565b6001600160a01b038416600090815260016020526040902054611e38908361151b565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611e679082611438565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611eac908561151b565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611edb908461151b565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611f119083611438565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611f409082611438565b6001600160a01b039095166000908152600160205260409020949094555050505050565b80356001600160a01b038116811461063557600080fd5b600060208284031215611f8c578081fd5b61143182611f64565b60008060408385031215611fa7578081fd5b611fb083611f64565b9150611fbe60208401611f64565b90509250929050565b600080600060608486031215611fdb578081fd5b611fe484611f64565b9250611ff260208501611f64565b9150604084013590509250925092565b60008060408385031215612014578182fd5b61201d83611f64565b946020939093013593505050565b60006020828403121561203c578081fd5b5035919050565b60008060408385031215612055578182fd5b823591506020830135801515811461206b578182fd5b809150509250929050565b60008060006060848603121561208a578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b818110156120cd578581018301518582016040015282016120b1565b818111156120de5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561213c5761213c6121ed565b500190565b60008261215c57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561217b5761217b6121ed565b500290565b600082821015612192576121926121ed565b500390565b6002810460018216806121ab57607f821691505b602082108114156121cc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121e6576121e66121ed565b5060010190565b634e487b7160e01b600052601160045260246000fdfe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c2c67396381824121e7f4ac5b50525307289f219c827f2cbbc43760db890f48864736f6c634300080200330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000023c34600000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000306b5f09bc5fd15da83b0a63411f8718da63e9a5000000000000000000000000306b5f09bc5fd15da83b0a63411f8718da63e9a5000000000000000000000000000000000000000000000000000000000000001e446563656e7472616c697a656420427573696e6573732053797374656d73000000000000000000000000000000000000000000000000000000000000000000034442530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806377ef79931161011a578063b5862428116100ad578063e81ffbef1161007c578063e81ffbef14610425578063f2cc0c1814610451578063f2fde38b14610464578063f84354f114610477578063fc061a4f1461048a576101fb565b8063b5862428146103af578063cba0e996146103b8578063d608b3b2146103e4578063dd62ed3e146103ec576101fb565b8063a457c2d7116100e9578063a457c2d71461036d578063a9059cbb14610380578063ae9dd5e014610393578063b2bdfa7b1461039c576101fb565b806377ef7993146103205780637b7e8bac146103295780638da5cb5b1461035457806395d89b4114610365576101fb565b80633bd5d173116101925780634549b039116101615780634549b039146102df578063457bdf6c146102f257806370a0823114610305578063715018a614610318576101fb565b80633bd5d1731461029c5780633c9f861d146102b157806340c10f19146102b957806342966c68146102cc576101fb565b806323b872dd116101ce57806323b872dd1461025b5780632d8381191461026e578063313ce567146102815780633950935114610289576101fb565b806306fdde0314610200578063095ea7b31461021e57806313114a9d1461024157806318160ddd14610253575b600080fd5b61020861049d565b60405161021591906120a1565b60405180910390f35b61023161022c366004612002565b61052f565b6040519015158152602001610215565b6010545b604051908152602001610215565b600e54610245565b610231610269366004611fc7565b610546565b61024561027c36600461202b565b6105af565b600954610245565b610231610297366004612002565b61063a565b6102af6102aa36600461202b565b610670565b005b601154610245565b6102af6102c7366004612002565b61075c565b6102af6102da36600461202b565b610804565b6102456102ed366004612043565b610811565b6102af610300366004611f7b565b6108a0565b610245610313366004611f7b565b610975565b6102af6109d7565b61024560145481565b600a5461033c906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b6000546001600160a01b031661033c565b610208610a4b565b61023161037b366004612002565b610a5a565b61023161038e366004612002565b610aa9565b61024560155481565b60005461033c906001600160a01b031681565b61024560135481565b6102316103c6366004611f7b565b6001600160a01b031660009081526004602052604090205460ff1690565b601254610245565b6102456103fa366004611f95565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610231610433366004611f7b565b6001600160a01b031660009081526005602052604090205460ff1690565b6102af61045f366004611f7b565b610ab6565b6102af610472366004611f7b565b610c09565b6102af610485366004611f7b565b610cf3565b6102af610498366004612076565b610ee3565b6060600780546104ac90612197565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890612197565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b600061053c338484610f4d565b5060015b92915050565b6000610553848484611075565b6105a584336105a0856040518060600160405280602a815260200161222b602a91396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611392565b610f4d565b5060019392505050565b6000600f5482111561061b5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006106256113cc565b905061063183826113ef565b9150505b919050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161053c9185906105a09086611438565b3360008181526004602052604090205460ff16156106e55760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610612565b60006106f083611497565b5050506001600160a01b03861660009081526001602052604090205493945061071e9392508491505061151b565b6001600160a01b038316600090815260016020526040902055600f54610744908261151b565b600f556010546107549084611438565b601055505050565b6000546001600160a01b031633146107865760405162461bcd60e51b8152600401610612906120f4565b600e546107939082611438565b600e556001600160a01b0382166000908152600160205260409020546107b99082611438565b6001600160a01b038316600081815260016020526040808220939093559151909190600080516020612255833981519152906107f89085815260200190565b60405180910390a35050565b61080e338261155d565b50565b6000600e548311156108655760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610612565b8161088557600061087584611497565b5094965061054095505050505050565b600061089084611497565b5093965061054095505050505050565b6000546001600160a01b031633146108ca5760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b03811660009081526005602052604090205460ff161561093e5760405162461bcd60e51b815260206004820152602260248201527f4163636f756e7420697320616c72656164792063686172697479206163636f756044820152611b9d60f21b6064820152608401610612565b6001600160a01b03166000818152600560205260409020805460ff19166001179055600a80546001600160a01b0319169091179055565b6001600160a01b03811660009081526004602052604081205460ff16156109b557506001600160a01b038116600090815260026020526040902054610635565b6001600160a01b038216600090815260016020526040902054610540906105af565b6000546001600160a01b03163314610a015760405162461bcd60e51b8152600401610612906120f4565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600880546104ac90612197565b600061053c33846105a085604051806060016040528060278152602001612204602791393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611392565b600061053c338484611075565b6000546001600160a01b03163314610ae05760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b03811660009081526004602052604090205460ff1615610b495760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610612565b6001600160a01b03811660009081526001602052604090205415610ba3576001600160a01b038116600090815260016020526040902054610b89906105af565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b03163314610c335760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b038116610c985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d1d5760405162461bcd60e51b8152600401610612906120f4565b6001600160a01b03811660009081526004602052604090205460ff16610d855760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610612565b60005b600654811015610edf57816001600160a01b031660068281548110610dbd57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ecd5760068054610de890600190612180565b81548110610e0657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610e4057634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556006805480610ea657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610edf565b80610ed7816121d2565b915050610d88565b5050565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b8152600401610612906120f4565b610f18836064612161565b601355610f26826064612161565b601455610f34816064612161565b6015819055601354601655601454601755601855505050565b6001600160a01b038316610fb25760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b6001600160a01b0382166110145760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610612565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110db5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b6064820152608401610612565b6001600160a01b03821661113f5760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610612565b600081116111a15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610612565b6001600160a01b03831660009081526005602052604090205460019060ff16806111e357506001600160a01b03831660009081526005602052604090205460ff165b8061120657506001600160a01b03831660009081526004602052604090205460ff165b1561120f575060005b8061121c5761121c6115fa565b6001600160a01b03841660009081526004602052604090205460ff16801561125d57506001600160a01b03831660009081526004602052604090205460ff16155b156112725761126d848484611643565b611370565b6001600160a01b03841660009081526004602052604090205460ff161580156112b357506001600160a01b03831660009081526004602052604090205460ff165b156112c35761126d848484611705565b6001600160a01b03841660009081526004602052604090205460ff1615801561130557506001600160a01b03831660009081526004602052604090205460ff16155b156113155761126d848484611765565b6001600160a01b03841660009081526004602052604090205460ff16801561135557506001600160a01b03831660009081526004602052604090205460ff165b156113655761126d8484846117c4565b611370848484611765565b8061138c5761138c601654601355601754601455601854601555565b50505050565b600081848411156113b65760405162461bcd60e51b815260040161061291906120a1565b5060006113c38486612180565b95945050505050565b60008060006113d9611825565b90925090506113e882826113ef565b9250505090565b600061143183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119e2565b9392505050565b6000806114458385612129565b9050838110156114315760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610612565b6000806000806000806000806000806114b88b601354601454601554611a10565b92509250925060006114cc8c858585611a8f565b905060006114d86113cc565b90506000806114e88f8885611aa7565b9150915060006114fb8383898988611ad1565b929e50919c509a5091985093965091945092505050919395979092949650565b600061143183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611392565b6001600160a01b03821660009081526001602052604090205481111561158257600080fd5b6001600160a01b0382166000908152600160205260409020546115a5908261151b565b6001600160a01b038316600090815260016020526040902055600e546115cb908261151b565b600e556040518181526000906001600160a01b03841690600080516020612255833981519152906020016107f8565b60135415801561160a5750601454155b80156116165750601554155b1561162057611641565b60138054601655601480546017556015805460185560009283905590829055555b565b600061164d6113cc565b9050600080600080600080600061166389611497565b965096509650965096509650965060006116868984611b0d90919063ffffffff16565b90506000611694838b611b0d565b90506116a38d8d8d8c8c611b8c565b6116ad838e611c30565b6116bb878383888888611cff565b8b6001600160a01b03168d6001600160a01b0316600080516020612255833981519152886040516116ee91815260200190565b60405180910390a350505050505050505050505050565b600061170f6113cc565b9050600080600080600080600061172589611497565b965096509650965096509650965060006117488984611b0d90919063ffffffff16565b90506000611756838b611b0d565b90506116a38d8d888c8c611d8d565b600061176f6113cc565b9050600080600080600080600061178589611497565b965096509650965096509650965060006117a88984611b0d90919063ffffffff16565b905060006117b6838b611b0d565b90506116a38d8d8b8b611e15565b60006117ce6113cc565b905060008060008060008060006117e489611497565b965096509650965096509650965060006118078984611b0d90919063ffffffff16565b90506000611815838b611b0d565b90506116a38d8d8d8c8a8d611e89565b600f54600e546000918291825b6006548110156119b05782600160006006848154811061186257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806118db57508160026000600684815481106118b457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156118f257600f54600e54945094505050506119de565b611946600160006006848154811061191a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061151b565b925061199c600260006006848154811061197057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061151b565b9150806119a8816121d2565b915050611832565b50600e54600f546119c0916113ef565b8210156119d857600f54600e549350935050506119de565b90925090505b9091565b60008183611a035760405162461bcd60e51b815260040161061291906120a1565b5060006113c38486612141565b600080600080611a3a6064611a34600d54611a348b8d611b0d90919063ffffffff16565b906113ef565b90506000611a5c6064611a34600d54611a348b8e611b0d90919063ffffffff16565b90506000611a7e6064611a34600d54611a348b8f611b0d90919063ffffffff16565b929a91995091975095505050505050565b60006113c382611aa18581898961151b565b9061151b565b60008080611ab58685611b0d565b90506000611ac38686611b0d565b919791965090945050505050565b600080611ade8584611b0d565b90506000611aec8585611b0d565b90506000611b0082611aa185818d8d61151b565b9998505050505050505050565b600082611b1c57506000610540565b6000611b288385612161565b905082611b358583612141565b146114315760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610612565b6001600160a01b038516600090815260026020526040902054611baf908461151b565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611bde908361151b565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611c0d9082611438565b6001600160a01b0390941660009081526001602052604090209390935550505050565b6000611c3a6113cc565b90506000611c488483611b0d565b600a546001600160a01b0316600090815260016020526040902054909150611c709082611438565b600a80546001600160a01b039081166000908152600160209081526040808320959095559254909116815260029091522054611cac9085611438565b600a80546001600160a01b0390811660009081526002602090815260409182902094909455915491518781529181169290861691600080516020612255833981519152910160405180910390a350505050565b611d1c84611aa187611aa18a600f5461151b90919063ffffffff16565b600f55601054611d2c9084611438565b601055601154611d3c9083611438565b601155601254611d4c9082611438565b601255600e54611d5c908361151b565b600e5560405182815260009030906000805160206122558339815191529060200160405180910390a3505050505050565b6001600160a01b038516600090815260016020526040902054611db0908361151b565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611de69084611438565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611c0d9082611438565b6001600160a01b038416600090815260016020526040902054611e38908361151b565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611e679082611438565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611eac908561151b565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611edb908461151b565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611f119083611438565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611f409082611438565b6001600160a01b039095166000908152600160205260409020949094555050505050565b80356001600160a01b038116811461063557600080fd5b600060208284031215611f8c578081fd5b61143182611f64565b60008060408385031215611fa7578081fd5b611fb083611f64565b9150611fbe60208401611f64565b90509250929050565b600080600060608486031215611fdb578081fd5b611fe484611f64565b9250611ff260208501611f64565b9150604084013590509250925092565b60008060408385031215612014578182fd5b61201d83611f64565b946020939093013593505050565b60006020828403121561203c578081fd5b5035919050565b60008060408385031215612055578182fd5b823591506020830135801515811461206b578182fd5b809150509250929050565b60008060006060848603121561208a578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b818110156120cd578581018301518582016040015282016120b1565b818111156120de5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561213c5761213c6121ed565b500190565b60008261215c57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561217b5761217b6121ed565b500290565b600082821015612192576121926121ed565b500390565b6002810460018216806121ab57607f821691505b602082108114156121cc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121e6576121e66121ed565b5060010190565b634e487b7160e01b600052601160045260246000fdfe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c2c67396381824121e7f4ac5b50525307289f219c827f2cbbc43760db890f48864736f6c63430008020033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000023c34600000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000306b5f09bc5fd15da83b0a63411f8718da63e9a5000000000000000000000000306b5f09bc5fd15da83b0a63411f8718da63e9a5000000000000000000000000000000000000000000000000000000000000001e446563656e7472616c697a656420427573696e6573732053797374656d73000000000000000000000000000000000000000000000000000000000000000000034442530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Decentralized Business Systems
Arg [1] : _symbol (string): DBS
Arg [2] : _decimals (uint256): 8
Arg [3] : _supply (uint256): 600000000
Arg [4] : _txFee (uint256): 1
Arg [5] : _burnFee (uint256): 1
Arg [6] : _charityFee (uint256): 1
Arg [7] : _FeeAddress (address): 0x306B5F09bc5fD15da83b0a63411f8718Da63e9a5
Arg [8] : tokenOwner (address): 0x306B5F09bc5fD15da83b0a63411f8718Da63e9a5

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 0000000000000000000000000000000000000000000000000000000023c34600
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 000000000000000000000000306b5f09bc5fd15da83b0a63411f8718da63e9a5
Arg [8] : 000000000000000000000000306b5f09bc5fd15da83b0a63411f8718da63e9a5
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [10] : 446563656e7472616c697a656420427573696e6573732053797374656d730000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 4442530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16567:17280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18509:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19423:161;;;;;;:::i;:::-;;:::i;:::-;;;2545:14:1;;2538:22;2520:41;;2508:2;2493:18;19423:161:0;2475:92:1;20658:87:0;20727:10;;20658:87;;;8831:25:1;;;8819:2;8804:18;20658:87:0;8786:76:1;18788:95:0;18868:7;;18788:95;;19592:315;;;;;;:::i;:::-;;:::i;21791:253::-;;;;;;:::i;:::-;;:::i;18695:85::-;18763:9;;18695:85;;19915:218;;;;;;:::i;:::-;;:::i;20959:378::-;;;;;;:::i;:::-;;:::i;:::-;;20757:88;20826:11;;20757:88;;23707:227;;;;;;:::i;:::-;;:::i;23098:71::-;;;;;;:::i;:::-;;:::i;21345:438::-;;;;;;:::i;:::-;;:::i;22878:215::-;;;;;;:::i;:::-;;:::i;18891:198::-;;;;;;:::i;:::-;;:::i;16013:148::-;;;:::i;17491:27::-;;;;;;17119:25;;;;;-1:-1:-1;;;;;17119:25:0;;;;;;-1:-1:-1;;;;;2336:32:1;;;2318:51;;2306:2;2291:18;17119:25:0;2273:102:1;15371:79:0;15409:7;15436:6;-1:-1:-1;;;;;15436:6:0;15371:79;;18600:87;;;:::i;20141:271::-;;;;;;:::i;:::-;;:::i;19097:167::-;;;;;;:::i;:::-;;:::i;17525:27::-;;;;;;15174:21;;;;;-1:-1:-1;;;;;15174:21:0;;;17457:27;;;;;;20420:110;;;;;;:::i;:::-;-1:-1:-1;;;;;20502:20:0;20478:4;20502:20;;;:11;:20;;;;;;;;;20420:110;20857:94;20929:14;;20857:94;;19272:143;;;;;;:::i;:::-;-1:-1:-1;;;;;19380:18:0;;;19353:7;19380:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19272:143;20542:108;;;;;;:::i;:::-;-1:-1:-1;;;;;20623:19:0;20599:4;20623:19;;;:10;:19;;;;;;;;;20542:108;22052:332;;;;;;:::i;:::-;;:::i;16316:244::-;;;;;;:::i;:::-;;:::i;22392:478::-;;;;;;:::i;:::-;;:::i;23175:296::-;;;;;;:::i;:::-;;:::i;18509:83::-;18546:13;18579:5;18572:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18509:83;:::o;19423:161::-;19498:4;19515:39;193:10;19538:7;19547:6;19515:8;:39::i;:::-;-1:-1:-1;19572:4:0;19423:161;;;;;:::o;19592:315::-;19690:4;19707:36;19717:6;19725:9;19736:6;19707:9;:36::i;:::-;19754:123;19763:6;193:10;19785:91;19823:6;19785:91;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19785:19:0;;;;;;:11;:19;;;;;;;;193:10;19785:33;;;;;;;;;;:37;:91::i;:::-;19754:8;:123::i;:::-;-1:-1:-1;19895:4:0;19592:315;;;;;:::o;21791:253::-;21857:7;21896;;21885;:18;;21877:73;;;;-1:-1:-1;;;21877:73:0;;4196:2:1;21877:73:0;;;4178:21:1;4235:2;4215:18;;;4208:30;4274:34;4254:18;;;4247:62;-1:-1:-1;;;4325:18:1;;;4318:40;4375:19;;21877:73:0;;;;;;;;;21961:19;21984:10;:8;:10::i;:::-;21961:33;-1:-1:-1;22012:24:0;:7;21961:33;22012:11;:24::i;:::-;22005:31;;;21791:253;;;;:::o;19915:218::-;193:10;20003:4;20052:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20052:34:0;;;;;;;;;;20003:4;;20020:83;;20043:7;;20052:50;;20091:10;20052:38;:50::i;20959:378::-;193:10;21011:14;21060:19;;;:11;:19;;;;;;;;21059:20;21051:77;;;;-1:-1:-1;;;21051:77:0;;8474:2:1;21051:77:0;;;8456:21:1;8513:2;8493:18;;;8486:30;8552:34;8532:18;;;8525:62;-1:-1:-1;;;8603:18:1;;;8596:42;8655:19;;21051:77:0;8446:234:1;21051:77:0;21140:15;21165:19;21176:7;21165:10;:19::i;:::-;-1:-1:-1;;;;;;;;21213:15:0;;;;;;:7;:15;;;;;;21139:45;;-1:-1:-1;21213:28:0;;:15;-1:-1:-1;21139:45:0;;-1:-1:-1;;21213:19:0;:28::i;:::-;-1:-1:-1;;;;;21195:15:0;;;;;;:7;:15;;;;;:46;21262:7;;:20;;21274:7;21262:11;:20::i;:::-;21252:7;:30;21306:10;;:23;;21321:7;21306:14;:23::i;:::-;21293:10;:36;-1:-1:-1;;;20959:378:0:o;23707:227::-;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;23796:7:::1;::::0;:19:::1;::::0;23808:6;23796:11:::1;:19::i;:::-;23786:7;:29:::0;-1:-1:-1;;;;;23845:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:28:::1;::::0;23866:6;23845:20:::1;:28::i;:::-;-1:-1:-1::0;;;;;23826:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:47;;;;23889:37;;23826:16;;;-1:-1:-1;;;;;;;;;;;23889:37:0;::::1;::::0;23919:6;8831:25:1;;8819:2;8804:18;;8786:76;23889:37:0::1;;;;;;;;23707:227:::0;;:::o;23098:71::-;23139:25;23145:10;23157:6;23139:5;:25::i;:::-;23098:71;:::o;21345:438::-;21435:7;21474;;21463;:18;;21455:62;;;;-1:-1:-1;;;21455:62:0;;6129:2:1;21455:62:0;;;6111:21:1;6168:2;6148:18;;;6141:30;6207:33;6187:18;;;6180:61;6258:18;;21455:62:0;6101:181:1;21455:62:0;21533:17;21528:248;;21568:15;21593:19;21604:7;21593:10;:19::i;:::-;-1:-1:-1;21567:45:0;;-1:-1:-1;21627:14:0;;-1:-1:-1;;;;;;21627:14:0;21528:248;21676:23;21708:19;21719:7;21708:10;:19::i;:::-;-1:-1:-1;21674:53:0;;-1:-1:-1;21742:22:0;;-1:-1:-1;;;;;;21742:22:0;22878:215;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22965:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;::::1;;22964:20;22956:67;;;::::0;-1:-1:-1;;;22956:67:0;;5726:2:1;22956:67:0::1;::::0;::::1;5708:21:1::0;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;-1:-1:-1;;;5855:18:1;;;5848:32;5897:19;;22956:67:0::1;5698:224:1::0;22956:67:0::1;-1:-1:-1::0;;;;;23034:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;23034:26:0::1;23056:4;23034:26;::::0;;23065:10:::1;:20:::0;;-1:-1:-1;;;;;;23065:20:0::1;::::0;;::::1;::::0;;22878:215::o;18891:198::-;-1:-1:-1;;;;;18981:20:0;;18957:7;18981:20;;;:11;:20;;;;;;;;18977:49;;;-1:-1:-1;;;;;;19010:16:0;;;;;;:7;:16;;;;;;19003:23;;18977:49;-1:-1:-1;;;;;19064:16:0;;;;;;:7;:16;;;;;;19044:37;;:19;:37::i;16013:148::-;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;16120:1:::1;16104:6:::0;;16083:40:::1;::::0;-1:-1:-1;;;;;16104:6:0;;::::1;::::0;16083:40:::1;::::0;16120:1;;16083:40:::1;16151:1;16134:19:::0;;-1:-1:-1;;;;;;16134:19:0::1;::::0;;16013:148::o;18600:87::-;18639:13;18672:7;18665:14;;;;;:::i;20141:271::-;20234:4;20251:131;193:10;20274:7;20283:98;20322:15;20283:98;;;;;;;;;;;;;;;;;193:10;20283:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20283:34:0;;;;;;;;;;;;:38;:98::i;19097:167::-;19175:4;19192:42;193:10;19216:9;19227:6;19192:9;:42::i;22052:332::-;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22134:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22133:21;22125:61;;;::::0;-1:-1:-1;;;22125:61:0;;5370:2:1;22125:61:0::1;::::0;::::1;5352:21:1::0;5409:2;5389:18;;;5382:30;5448:29;5428:18;;;5421:57;5495:18;;22125:61:0::1;5342:177:1::0;22125:61:0::1;-1:-1:-1::0;;;;;22200:16:0;::::1;22219:1;22200:16:::0;;;:7:::1;:16;::::0;;;;;:20;22197:108:::1;;-1:-1:-1::0;;;;;22276:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22256:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22237:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22197:108:::1;-1:-1:-1::0;;;;;22315:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22315:27:0::1;22338:4;22315:27:::0;;::::1;::::0;;;22353:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22353:23:0::1;::::0;;::::1;::::0;;22052:332::o;16316:244::-;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16405:22:0;::::1;16397:73;;;::::0;-1:-1:-1;;;16397:73:0;;4607:2:1;16397:73:0::1;::::0;::::1;4589:21:1::0;4646:2;4626:18;;;4619:30;4685:34;4665:18;;;4658:62;-1:-1:-1;;;4736:18:1;;;4729:36;4782:19;;16397:73:0::1;4579:228:1::0;16397:73:0::1;16507:6;::::0;;16486:38:::1;::::0;-1:-1:-1;;;;;16486:38:0;;::::1;::::0;16507:6;::::1;::::0;16486:38:::1;::::0;::::1;16535:6;:17:::0;;-1:-1:-1;;;;;;16535:17:0::1;-1:-1:-1::0;;;;;16535:17:0;;;::::1;::::0;;;::::1;::::0;;16316:244::o;22392:478::-;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22473:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22465:60;;;::::0;-1:-1:-1;;;22465:60:0;;5370:2:1;22465:60:0::1;::::0;::::1;5352:21:1::0;5409:2;5389:18;;;5382:30;5448:29;5428:18;;;5421:57;5495:18;;22465:60:0::1;5342:177:1::0;22465:60:0::1;22541:9;22536:327;22560:9;:16:::0;22556:20;::::1;22536:327;;;22618:7;-1:-1:-1::0;;;;;22602:23:0::1;:9;22612:1;22602:12;;;;;;-1:-1:-1::0;;;22602:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22602:12:0::1;:23;22598:254;;;22661:9;22671:16:::0;;:20:::1;::::0;22690:1:::1;::::0;22671:20:::1;:::i;:::-;22661:31;;;;;;-1:-1:-1::0;;;22661:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22646:9:::1;:12:::0;;-1:-1:-1;;;;;22661:31:0;;::::1;::::0;22656:1;;22646:12;::::1;;;-1:-1:-1::0;;;22646:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22646:46:0::1;-1:-1:-1::0;;;;;22646:46:0;;::::1;;::::0;;22711:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22750:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22750:28:0::1;::::0;;22797:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;22797:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22797:15:0;;;;;-1:-1:-1;;;;;;22797:15:0::1;::::0;;;;;22831:5:::1;;22598:254;22578:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22536:327;;;;22392:478:::0;:::o;23175:296::-;15583:6;;-1:-1:-1;;;;;15583:6:0;193:10;15583:22;15575:67;;;;-1:-1:-1;;;15575:67:0;;;;;;;:::i;:::-;23287:11:::1;:6:::0;23295:3:::1;23287:11;:::i;:::-;23276:8;:22:::0;23322:14:::1;:8:::0;23333:3:::1;23322:14;:::i;:::-;23310:9;:26:::0;23356:16:::1;:11:::0;23369:3:::1;23356:16;:::i;:::-;23341:12;:31:::0;;;23392:8:::1;::::0;23377:12:::1;:23:::0;23421:9:::1;::::0;23405:13:::1;:25:::0;23435:16:::1;:31:::0;-1:-1:-1;;;23175:296:0:o;23946:341::-;-1:-1:-1;;;;;24039:19:0;;24031:70;;;;-1:-1:-1;;;24031:70:0;;8067:2:1;24031:70:0;;;8049:21:1;8106:2;8086:18;;;8079:30;8145:34;8125:18;;;8118:62;-1:-1:-1;;;8196:18:1;;;8189:36;8242:19;;24031:70:0;8039:228:1;24031:70:0;-1:-1:-1;;;;;24120:21:0;;24112:70;;;;-1:-1:-1;;;24112:70:0;;7662:2:1;24112:70:0;;;7644:21:1;7701:2;7681:18;;;7674:30;7740:34;7720:18;;;7713:62;-1:-1:-1;;;7791:18:1;;;7784:34;7835:19;;24112:70:0;7634:226:1;24112:70:0;-1:-1:-1;;;;;24195:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24247:32;;8831:25:1;;;24247:32:0;;8804:18:1;24247:32:0;;;;;;;23946:341;;;:::o;24295:1286::-;-1:-1:-1;;;;;24392:20:0;;24384:72;;;;-1:-1:-1;;;24384:72:0;;3788:2:1;24384:72:0;;;3770:21:1;3827:2;3807:18;;;3800:30;3866:34;3846:18;;;3839:62;-1:-1:-1;;;3917:18:1;;;3910:37;3964:19;;24384:72:0;3760:229:1;24384:72:0;-1:-1:-1;;;;;24475:23:0;;24467:73;;;;-1:-1:-1;;;24467:73:0;;3382:2:1;24467:73:0;;;3364:21:1;3421:2;3401:18;;;3394:30;3460:34;3440:18;;;3433:62;-1:-1:-1;;;3511:18:1;;;3504:35;3556:19;;24467:73:0;3354:227:1;24467:73:0;24568:1;24559:6;:10;24551:64;;;;-1:-1:-1;;;24551:64:0;;7252:2:1;24551:64:0;;;7234:21:1;7291:2;7271:18;;;7264:30;7330:34;7310:18;;;7303:62;-1:-1:-1;;;7381:18:1;;;7374:39;7430:19;;24551:64:0;7224:231:1;24551:64:0;-1:-1:-1;;;;;24751:18:0;;24717:12;24751:18;;;:10;:18;;;;;;24732:4;;24751:18;;;:43;;-1:-1:-1;;;;;;24773:21:0;;;;;;:10;:21;;;;;;;;24751:43;:69;;;-1:-1:-1;;;;;;24798:22:0;;;;;;:11;:22;;;;;;;;24751:69;24747:117;;;-1:-1:-1;24847:5:0;24747:117;24881:7;24876:28;;24890:14;:12;:14::i;:::-;-1:-1:-1;;;;;24939:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24963:22:0;;;;;;:11;:22;;;;;;;;24962:23;24939:46;24935:597;;;25002:48;25024:6;25032:9;25043:6;25002:21;:48::i;:::-;24935:597;;;-1:-1:-1;;;;;25073:19:0;;;;;;:11;:19;;;;;;;;25072:20;:46;;;;-1:-1:-1;;;;;;25096:22:0;;;;;;:11;:22;;;;;;;;25072:46;25068:464;;;25135:46;25155:6;25163:9;25174:6;25135:19;:46::i;25068:464::-;-1:-1:-1;;;;;25204:19:0;;;;;;:11;:19;;;;;;;;25203:20;:47;;;;-1:-1:-1;;;;;;25228:22:0;;;;;;:11;:22;;;;;;;;25227:23;25203:47;25199:333;;;25267:44;25285:6;25293:9;25304:6;25267:17;:44::i;25199:333::-;-1:-1:-1;;;;;25333:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;25356:22:0;;;;;;:11;:22;;;;;;;;25333:45;25329:203;;;25395:48;25417:6;25425:9;25436:6;25395:21;:48::i;25329:203::-;25476:44;25494:6;25502:9;25513:6;25476:17;:44::i;:::-;25549:7;25544:29;;25558:15;33644:12;;33633:8;:23;33679:13;;33667:9;:25;33718:16;;33703:12;:31;33589:153;25558:15;24295:1286;;;;:::o;4916:192::-;5002:7;5038:12;5030:6;;;;5022:29;;;;-1:-1:-1;;;5022:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5062:9:0;5074:5;5078:1;5074;:5;:::i;:::-;5062:17;4916:192;-1:-1:-1;;;;;4916:192:0:o;32151:163::-;32192:7;32213:15;32230;32249:19;:17;:19::i;:::-;32212:56;;-1:-1:-1;32212:56:0;-1:-1:-1;32286:20:0;32212:56;;32286:11;:20::i;:::-;32279:27;;;;32151:163;:::o;6314:132::-;6372:7;6399:39;6403:1;6406;6399:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6392:46;6314:132;-1:-1:-1;;;6314:132:0:o;4013:181::-;4071:7;;4103:5;4107:1;4103;:5;:::i;:::-;4091:17;;4132:1;4127;:6;;4119:46;;;;-1:-1:-1;;;4119:46:0;;5014:2:1;4119:46:0;;;4996:21:1;5053:2;5033:18;;;5026:30;5092:29;5072:18;;;5065:57;5139:18;;4119:46:0;4986:177:1;30202:652:0;30261:7;30270;30279;30288;30297;30306;30315;30336:12;30350:13;30365:16;30385:55;30397:7;30406:8;;30416:9;;30427:12;;30385:11;:55::i;:::-;30335:105;;;;;;30451:23;30477:50;30496:7;30505:4;30511:5;30518:8;30477:18;:50::i;:::-;30451:76;;30538:19;30561:10;:8;:10::i;:::-;30538:33;;30583:15;30600:12;30616:39;30628:7;30637:4;30643:11;30616;:39::i;:::-;30582:73;;;;30666:23;30692:64;30712:7;30721:4;30727:5;30734:8;30744:11;30692:19;:64::i;:::-;30775:7;;-1:-1:-1;30666:90:0;;-1:-1:-1;30801:4:0;-1:-1:-1;30807:15:0;;-1:-1:-1;30824:4:0;;-1:-1:-1;30830:5:0;;-1:-1:-1;30837:8:0;-1:-1:-1;;;30202:652:0;;;;;;;;;:::o;4477:136::-;4535:7;4562:43;4566:1;4569;4562:43;;;;;;;;;;;;;;;;;:3;:43::i;23479:220::-;-1:-1:-1;;;;;23556:13:0;;;;;;:7;:13;;;;;;23546:23;;;23538:32;;;;;;-1:-1:-1;;;;;23591:13:0;;;;;;:7;:13;;;;;;:25;;23609:6;23591:17;:25::i;:::-;-1:-1:-1;;;;;23575:13:0;;;;;;:7;:13;;;;;:41;23631:7;;:19;;23643:6;23631:11;:19::i;:::-;23621:7;:29;23660:34;;8831:25:1;;;23683:1:0;;-1:-1:-1;;;;;23660:34:0;;;-1:-1:-1;;;;;;;;;;;23660:34:0;8819:2:1;8804:18;23660:34:0;8786:76:1;33257:320:0;33303:8;;:13;:31;;;;-1:-1:-1;33320:9:0;;:14;33303:31;:52;;;;-1:-1:-1;33338:12:0;;:17;33303:52;33300:64;;;33357:7;;33300:64;33399:8;;;33384:12;:23;33434:9;;;33418:13;:25;33473:12;;;33454:16;:31;-1:-1:-1;33506:12:0;;;;33529:13;;;;33553:16;33257:320;:::o;27601:671::-;27703:19;27726:10;:8;:10::i;:::-;27703:33;;27748:15;27765:23;27790:12;27804:23;27829:12;27843:13;27858:16;27878:19;27889:7;27878:10;:19::i;:::-;27747:150;;;;;;;;;;;;;;27908:13;27925:22;27935:11;27925:5;:9;;:22;;;;:::i;:::-;27908:39;-1:-1:-1;27958:16:0;27977:25;:8;27990:11;27977:12;:25::i;:::-;27958:44;;28013:80;28040:6;28048:9;28059:7;28068;28077:15;28013:26;:80::i;:::-;28104:32;28119:8;28129:6;28104:14;:32::i;:::-;28147:57;28159:4;28165:5;28172:8;28182:4;28188:5;28195:8;28147:11;:57::i;:::-;28237:9;-1:-1:-1;;;;;28220:44:0;28229:6;-1:-1:-1;;;;;28220:44:0;-1:-1:-1;;;;;;;;;;;28248:15:0;28220:44;;;;8831:25:1;;8819:2;8804:18;;8786:76;28220:44:0;;;;;;;;27601:671;;;;;;;;;;;;;:::o;26529:687::-;26629:19;26652:10;:8;:10::i;:::-;26629:33;;26674:15;26691:23;26716:12;26730:23;26755:12;26769:13;26784:16;26804:19;26815:7;26804:10;:19::i;:::-;26673:150;;;;;;;;;;;;;;26834:13;26851:22;26861:11;26851:5;:9;;:22;;;;:::i;:::-;26834:39;-1:-1:-1;26884:16:0;26903:25;:8;26916:11;26903:12;:25::i;:::-;26884:44;;26939:90;26968:6;26976:9;26987:15;27004:7;27013:15;26939:28;:90::i;25589:661::-;25687:19;25710:10;:8;:10::i;:::-;25687:33;;25732:15;25749:23;25774:12;25788:23;25813:12;25827:13;25842:16;25862:19;25873:7;25862:10;:19::i;:::-;25731:150;;;;;;;;;;;;;;25892:13;25909:22;25919:11;25909:5;:9;;:22;;;;:::i;:::-;25892:39;-1:-1:-1;25942:16:0;25961:25;:8;25974:11;25961:12;:25::i;:::-;25942:44;;26002:69;26027:6;26035:9;26046:7;26055:15;26002:24;:69::i;28625:688::-;28727:19;28750:10;:8;:10::i;:::-;28727:33;;28772:15;28789:23;28814:12;28828:23;28853:12;28867:13;28882:16;28902:19;28913:7;28902:10;:19::i;:::-;28771:150;;;;;;;;;;;;;;28932:13;28949:22;28959:11;28949:5;:9;;:22;;;;:::i;:::-;28932:39;-1:-1:-1;28982:16:0;29001:25;:8;29014:11;29001:12;:25::i;:::-;28982:44;;29041:91;29062:6;29070:9;29081:7;29090;29099:15;29116;29041:20;:91::i;32322:561::-;32419:7;;32455;;32372;;;;;32479:289;32503:9;:16;32499:20;;32479:289;;;32569:7;32545;:21;32553:9;32563:1;32553:12;;;;;;-1:-1:-1;;;32553:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32553:12:0;32545:21;;;;;;;;;;;;;:31;;:66;;;32604:7;32580;:21;32588:9;32598:1;32588:12;;;;;;-1:-1:-1;;;32588:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32588:12:0;32580:21;;;;;;;;;;;;;:31;32545:66;32541:97;;;32621:7;;32630;;32613:25;;;;;;;;;32541:97;32663:34;32675:7;:21;32683:9;32693:1;32683:12;;;;;;-1:-1:-1;;;32683:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32683:12:0;32675:21;;;;;;;;;;;;;32663:7;;:11;:34::i;:::-;32653:44;;32722:34;32734:7;:21;32742:9;32752:1;32742:12;;;;;;-1:-1:-1;;;32742:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32742:12:0;32734:21;;;;;;;;;;;;;32722:7;;:11;:34::i;:::-;32712:44;-1:-1:-1;32521:3:0;;;;:::i;:::-;;;;32479:289;;;-1:-1:-1;32804:7:0;;32792;;:20;;:11;:20::i;:::-;32782:7;:30;32778:61;;;32822:7;;32831;;32814:25;;;;;;;;32778:61;32858:7;;-1:-1:-1;32867:7:0;-1:-1:-1;32322:561:0;;;:::o;6942:278::-;7028:7;7063:12;7056:5;7048:28;;;;-1:-1:-1;;;7048:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7087:9:0;7099:5;7103:1;7099;:5;:::i;30866:427::-;30979:7;30988;30997;31017:12;31032:50;31078:3;31033:39;31059:12;;31034:19;31046:6;31034:7;:11;;:19;;;;:::i;:::-;31033:25;;:39::i;31032:50::-;31017:65;;31093:13;31109:51;31156:3;31110:40;31137:12;;31111:20;31123:7;31111;:11;;:20;;;;:::i;31109:51::-;31093:67;;31171:16;31190:54;31240:3;31191:43;31221:12;;31192:23;31204:10;31192:7;:11;;:23;;;;:::i;31190:54::-;31263:4;;31269:5;;-1:-1:-1;31263:4:0;;-1:-1:-1;30866:427:0;-1:-1:-1;;;;;;30866:427:0:o;31305:191::-;31419:7;31446:42;31479:8;31446:28;31468:5;31446:28;:7;31458:4;31446:11;:17::i;:::-;:21;;:28::i;31508:254::-;31603:7;;;31650:24;:7;31662:11;31650;:24::i;:::-;31632:42;-1:-1:-1;31685:12:0;31700:21;:4;31709:11;31700:8;:21::i;:::-;31740:7;;;;-1:-1:-1;31508:254:0;;-1:-1:-1;;;;;31508:254:0:o;31774:369::-;31910:7;;31946:22;:5;31956:11;31946:9;:22::i;:::-;31930:38;-1:-1:-1;31979:16:0;31998:25;:8;32011:11;31998:12;:25::i;:::-;31979:44;-1:-1:-1;32034:23:0;32060:42;31979:44;32060:28;32082:5;32060:28;:7;32072:4;32060:11;:17::i;:42::-;32034:68;31774:369;-1:-1:-1;;;;;;;;;31774:369:0:o;5367:471::-;5425:7;5670:6;5666:47;;-1:-1:-1;5700:1:0;5693:8;;5666:47;5725:9;5737:5;5741:1;5737;:5;:::i;:::-;5725:17;-1:-1:-1;5770:1:0;5761:5;5765:1;5725:17;5761:5;:::i;:::-;:10;5753:56;;;;-1:-1:-1;;;5753:56:0;;6489:2:1;5753:56:0;;;6471:21:1;6528:2;6508:18;;;6501:30;6567:34;6547:18;;;6540:62;-1:-1:-1;;;6618:18:1;;;6611:31;6659:19;;5753:56:0;6461:223:1;28284:333:0;-1:-1:-1;;;;;28451:15:0;;;;;;:7;:15;;;;;;:28;;28471:7;28451:19;:28::i;:::-;-1:-1:-1;;;;;28433:15:0;;;;;;:7;:15;;;;;;;;:46;;;;28508:7;:15;;;;:28;;28528:7;28508:19;:28::i;:::-;-1:-1:-1;;;;;28490:15:0;;;;;;;:7;:15;;;;;;:46;;;;28568:18;;;;;;;:39;;28591:15;28568:22;:39::i;:::-;-1:-1:-1;;;;;28547:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;28284:333:0:o;32891:358::-;32968:19;32990:10;:8;:10::i;:::-;32968:32;-1:-1:-1;33011:16:0;33030:25;:8;32968:32;33030:12;:25::i;:::-;33096:10;;-1:-1:-1;;;;;33096:10:0;33088:19;;;;:7;:19;;;;;;33011:44;;-1:-1:-1;33088:33:0;;33011:44;33088:23;:33::i;:::-;33074:10;;;-1:-1:-1;;;;;33074:10:0;;;33066:19;;;;:7;:19;;;;;;;;:55;;;;33162:10;;;;;33154:19;;:7;:19;;;;;:33;;33178:8;33154:23;:33::i;:::-;33140:10;;;-1:-1:-1;;;;;33140:10:0;;;33132:19;;;;:7;:19;;;;;;;;;:55;;;;33220:10;;33203:38;;8831:25:1;;;33220:10:0;;;;33203:38;;;;-1:-1:-1;;;;;;;;;;;33203:38:0;8804:18:1;33203:38:0;;;;;;;32891:358;;;;:::o;29756:432::-;29900:42;29933:8;29900:28;29922:5;29900:17;29912:4;29900:7;;:11;;:17;;;;:::i;:42::-;29890:7;:52;29966:10;;:20;;29981:4;29966:14;:20::i;:::-;29953:10;:33;30011:11;;:22;;30027:5;30011:15;:22::i;:::-;29997:11;:36;30061:14;;:28;;30080:8;30061:18;:28::i;:::-;30044:14;:45;30110:7;;:18;;30122:5;30110:11;:18::i;:::-;30100:7;:28;30138:42;;8831:25:1;;;30170:1:0;;30155:4;;-1:-1:-1;;;;;;;;;;;30138:42:0;8819:2:1;8804:18;30138:42:0;;;;;;;29756:432;;;;;;:::o;27228:359::-;-1:-1:-1;;;;;27405:15:0;;;;;;:7;:15;;;;;;:28;;27425:7;27405:19;:28::i;:::-;-1:-1:-1;;;;;27387:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;27465:18;;;;;:7;:18;;;;;:39;;27488:15;27465:22;:39::i;:::-;-1:-1:-1;;;;;27444:18:0;;;;;;:7;:18;;;;;;;;:60;;;;27536:7;:18;;;;:39;;27559:15;27536:22;:39::i;26262:255::-;-1:-1:-1;;;;;26410:15:0;;;;;;:7;:15;;;;;;:28;;26430:7;26410:19;:28::i;:::-;-1:-1:-1;;;;;26392:15:0;;;;;;;:7;:15;;;;;;:46;;;;26470:18;;;;;;;:39;;26493:15;26470:22;:39::i;:::-;-1:-1:-1;;;;;26449:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;26262:255:0:o;29325:423::-;-1:-1:-1;;;;;29511:15:0;;;;;;:7;:15;;;;;;:28;;29531:7;29511:19;:28::i;:::-;-1:-1:-1;;;;;29493:15:0;;;;;;:7;:15;;;;;;;;:46;;;;29568:7;:15;;;;:28;;29588:7;29568:19;:28::i;:::-;-1:-1:-1;;;;;29550:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;29628:18;;;;;:7;:18;;;;;:39;;29651:15;29628:22;:39::i;:::-;-1:-1:-1;;;;;29607:18:0;;;;;;:7;:18;;;;;;;;:60;;;;29699:7;:18;;;;:39;;29722:15;29699:22;:39::i;:::-;-1:-1:-1;;;;;29678:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;;29325:423:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:361::-;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1663:9;1650:23;1640:33;;1723:2;1712:9;1708:18;1695:32;1770:5;1763:13;1756:21;1749:5;1746:32;1736:2;;1797:6;1789;1782:22;1736:2;1825:5;1815:15;;;1559:277;;;;;:::o;1841:326::-;;;;1987:2;1975:9;1966:7;1962:23;1958:32;1955:2;;;2008:6;2000;1993:22;1955:2;-1:-1:-1;;2036:23:1;;;2106:2;2091:18;;2078:32;;-1:-1:-1;2157:2:1;2142:18;;;2129:32;;1945:222;-1:-1:-1;1945:222:1:o;2572:603::-;;2713:2;2742;2731:9;2724:21;2774:6;2768:13;2817:6;2812:2;2801:9;2797:18;2790:34;2842:4;2855:140;2869:6;2866:1;2863:13;2855:140;;;2964:14;;;2960:23;;2954:30;2930:17;;;2949:2;2926:26;2919:66;2884:10;;2855:140;;;3013:6;3010:1;3007:13;3004:2;;;3083:4;3078:2;3069:6;3058:9;3054:22;3050:31;3043:45;3004:2;-1:-1:-1;3159:2:1;3138:15;-1:-1:-1;;3134:29:1;3119:45;;;;3166:2;3115:54;;2693:482;-1:-1:-1;;;2693:482:1:o;6689:356::-;6891:2;6873:21;;;6910:18;;;6903:30;6969:34;6964:2;6949:18;;6942:62;7036:2;7021:18;;6863:182::o;8867:128::-;;8938:1;8934:6;8931:1;8928:13;8925:2;;;8944:18;;:::i;:::-;-1:-1:-1;8980:9:1;;8915:80::o;9000:217::-;;9066:1;9056:2;;-1:-1:-1;;;9091:31:1;;9145:4;9142:1;9135:15;9173:4;9098:1;9163:15;9056:2;-1:-1:-1;9202:9:1;;9046:171::o;9222:168::-;;9328:1;9324;9320:6;9316:14;9313:1;9310:21;9305:1;9298:9;9291:17;9287:45;9284:2;;;9335:18;;:::i;:::-;-1:-1:-1;9375:9:1;;9274:116::o;9395:125::-;;9463:1;9460;9457:8;9454:2;;;9468:18;;:::i;:::-;-1:-1:-1;9505:9:1;;9444:76::o;9525:380::-;9610:1;9600:12;;9657:1;9647:12;;;9668:2;;9722:4;9714:6;9710:17;9700:27;;9668:2;9775;9767:6;9764:14;9744:18;9741:38;9738:2;;;9821:10;9816:3;9812:20;9809:1;9802:31;9856:4;9853:1;9846:15;9884:4;9881:1;9874:15;9738:2;;9580:325;;;:::o;9910:135::-;;-1:-1:-1;;9970:17:1;;9967:2;;;9990:18;;:::i;:::-;-1:-1:-1;10037:1:1;10026:13;;9957:88::o;10050:127::-;10111:10;10106:3;10102:20;10099:1;10092:31;10142:4;10139:1;10132:15;10166:4;10163:1;10156:15

Swarm Source

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