ETH Price: $2,653.92 (+9.48%)
Gas: 2 Gwei

Token

DIV Token 2 (DIV2)
 

Overview

Max Total Supply

494,909.185429769147462559 DIV2

Holders

196

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptofuzer.eth
Balance
79.23167604 DIV2

Value
$0.00
0xe2ad14f95a07652c8113719334c5e244343cd7bd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DIVToken2

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-27
*/

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

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

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

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

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

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


/**
 * @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 Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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;
    }
}


/**
 * @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 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 Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}



/// @title DIV token rewards buyers from specific addresses (AMMs such as uniswap) by minting purchase rewards immediately, and burns a percentage of all on chain transactions.
/// @author Nijitoki Labs; in collaboration with CommunityToken.io; original ver. by KrippTorofu @ RiotOfTheBlock
///   NOTES: This version includes uniswap router registration, to prevent owner from setting mint addresses that are not UniswapV2Pairs.  
///   No tax/burn limits have been added to this token.
///   Until the Ownership is rescinded, owner can modify the parameters of the contract (tax, interest, whitelisted addresses, uniswap pairs).
///   Minting is disabled, except for the interest generating address, which is now behind a uniswap router check.
contract DIVToken2 is ERC20, Ownable {
    using SafeMath for uint256;
    using SafeMath for uint32;

    uint32 internal _burnRatePerTransferThousandth = 10;    // default of 1%, can go as low as 0.1%, or set to 0 to disable
    uint32 internal _interestRatePerBuyThousandth = 20;         // default of 2%, can go as low as 0.1%, or set to 0 to disable
    
    address internal constant uniswapV2FactoryAddress = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    
    mapping(address => bool) internal _burnWhitelistTo;
    mapping(address => bool) internal _burnWhitelistFrom;
    mapping(address => bool) internal _UniswapAddresses;
    
    /// @notice Transfers from IUniswapV2Pair at address `addr` now will mint an extra `_interestRatePerBuyThousandth`/1000 DIV tokens per 1 Token for the recipient.
    /// @param addr Address of an IUniswapV2Pair Contract
    event UniswapAddressAdded(address indexed addr);
    /// @notice IUniswapV2Pair at address `addr` now will stop minting
    event UniswapAddressRemoved(address indexed addr);
    /// @notice The address `addr` is now whitelisted, any funds sent to it will not incur a burn. 
    /// @param addr Address of Contract / EOA to whitelist
    event AddedToWhitelistTo(address indexed addr);
    /// @notice The address `addr` is removed from whitelist, any funds sent to it will now incur a burn of `_burnRatePerTransferThousandth`/1000 DIV tokens as normal. 
    /// @param addr Address of Contract / EOA to whitelist
    event RemovedFromWhitelistTo(address indexed addr);
    /// @notice The address `addr` is now whitelisted, any funds sent FROM this address will not incur a burn. 
    /// @param addr Address of Contract / EOA to whitelist
    event AddedToWhitelistFrom(address indexed addr);
    /// @notice The address `addr` is removed from whitelist, any funds sent FROM this address will now incur a burn of `_burnRatePerTransferThousandth`/1000 DIV tokens as normal. 
    /// @param addr Address of Contract / EOA to whitelist
    event RemovedFromWhitelistFrom(address indexed addr);
    /// @notice The Burn rate has been changed to `newRate`/1000 per 1 DIV token on every transaction 
    event BurnRateChanged(uint32 newRate);
    /// @notice The Buy Interest rate has been changed to `newRate`/1000 per 1 DIV token on every transaction
    event InterestRateChanged(uint32 newRate);
    
    constructor(address tokenOwnerWallet) ERC20("DIV Token 2", "DIV2") {
        _mint(tokenOwnerWallet, 500000000000000000000000);
    }
    
    /// @notice Changes the burn rate on transfers in thousandths
    /// @param value Set this value in thousandths. Max of 50.  i.e. 10 = 1%, 1 = 0.1%, 0 = burns are disabled.
    function setBurnRatePerThousandth(uint32 value) external onlyOwner {
        // enforce a Max of 50 = 5%. 
        _burnRatePerTransferThousandth = value;
        validateContractParameters();
        emit BurnRateChanged(value);
    }

    /// @notice Changes the interest rate for purchases in thousandths
    /// @param value Set this value in thousandths. Max of 50. i.e. 10 = 1%, 1 = 0.1%, 0 = interest is disabled.
    function setInterestRatePerThousandth(uint32 value) external onlyOwner {
        _interestRatePerBuyThousandth = value;
        validateContractParameters();
        emit InterestRateChanged(value);
    }

    /// @notice Address `addr` will no longer incur the `_burnRatePerTransferThousandth`/1000 burn on Transfers
    /// @param addr Address to whitelist / dewhitelist 
    /// @param whitelisted True to add to whitelist, false to remove.
    function setBurnWhitelistToAddress (address addr, bool whitelisted) external onlyOwner {
        if(whitelisted) {
            _burnWhitelistTo[addr] = whitelisted;
            emit AddedToWhitelistTo(addr);
        } else {
            delete _burnWhitelistTo[addr];
            emit RemovedFromWhitelistTo(addr);
        }
    }

    /// @notice Address `addr` will no longer incur the `_burnRatePerTransferThousandth`/1000 burn on Transfers from it.
    /// @param addr Address to whitelist / dewhitelist 
    /// @param whitelisted True to add to whitelist, false to remove.
    function setBurnWhitelistFromAddress (address addr, bool whitelisted) external onlyOwner {
        if(whitelisted) {
            _burnWhitelistFrom[addr] = whitelisted;
            emit AddedToWhitelistFrom(addr);
        } else {
            delete _burnWhitelistFrom[addr];
            emit RemovedFromWhitelistFrom(addr);
        }
    }

    /// @notice Will query uniswapV2Factory to find a pair.  Pair now will mint an extra `_interestRatePerBuyThousandth`/1000 DIV tokens per 1 Token for the recipient.
    /// @dev This will only work with the existing uniswapV2Factory and will require a new token overall if UniswapV3 comes out...etc.
    /// @dev Hardcoding the factory pair in contract ensures someone can't create a fake uniswapV2Factory that would return a hardcoded EOA.
    /// @param erc20token address of the ACTUAL ERC20 liquidity token, e.g. to mint on buys against WETH, pass in the WETH ERC20 address, not the uniswap LP Address.
    /// @param generateInterest True to begin generating interest, false to remove.  
    function enableInterestForToken (address erc20token, bool generateInterest) external onlyOwner {
        // returns 0x0 if pair doesn't exist.
        address uniswapV2Pair = IUniswapV2Factory(uniswapV2FactoryAddress).getPair(address(this), erc20token);
        require(uniswapV2Pair != 0x0000000000000000000000000000000000000000, "EnableInterest: No valid pair exists for erc20token");
        
        if(generateInterest) {
            _UniswapAddresses[uniswapV2Pair] = generateInterest;
            emit UniswapAddressAdded(uniswapV2Pair);
        } else {
            delete _UniswapAddresses[uniswapV2Pair];
            emit UniswapAddressRemoved(uniswapV2Pair);
        }
    }

    /// @notice This function can be used by Contract Owner to disperse tokens bypassing incurring penalties or interest.  The tokens will be sent from the Owner Address Balance.
    /// @param dests Array of recipients
    /// @param values Array of values. Ensure the values are in wei. i.e. you must multiply the amount of DIV tokens to be sent by 10**18.
    function airdrop(address[] calldata dests, uint256[] calldata values) external onlyOwner returns (uint256) {
        uint256 i = 0;
        while (i < dests.length) {
            ERC20._transfer(_msgSender(), dests[i], values[i]);
            i += 1;
        }
        return(i);
    }

    /// @notice Returns the burn rate on transfers in thousandths
    function getBurnRatePerThousandth() external view returns (uint32) {  
       return _burnRatePerTransferThousandth;
    }
    
    /// @notice Returns the interest rate for purchases in thousandths
    function getInterestRate() external view returns (uint32) {  
       return _interestRatePerBuyThousandth;
    }
    
    /// @notice If true, Address `addr` will not incur `_burnRatePerTransferThousandth`/1000 burn for any Transfers to it.
    /// @param addr Address to check
    /// @dev it is not trivial to return a mapping without incurring further storage costs
    function isAddressWhitelistedTo(address addr) external view returns (bool) {
        return _burnWhitelistTo[addr];
    }
    
    /// @notice If true, Address `addr` will not incur `_burnRatePerTransferThousandth`/1000 burn for any Transfers from it.
    /// @param addr Address to check
    /// @dev it is not trivial to return a mapping without incurring further storage costs
    function isAddressWhitelistedFrom(address addr) external view returns (bool) {
        return _burnWhitelistFrom[addr];
    }
    
    /// @notice If true, transfers from IUniswapV2Pair at address `addr` will mint an extra `_interestRatePerBuyThousandth`/1000 DIV tokens per 1 Token for the recipient.
    /// @param addr Address to check
    /// @dev it is not trivial to return a mapping without incurring further storage costs
    function checkInterestGenerationForAddress(address addr) external view returns (bool) {
        return _UniswapAddresses[addr];
    }
    
    /**
        @notice ERC20 transfer function overridden to add `_burnRatePerTransferThousandth`/1000 burn on transfers as well as `_interestRatePerBuyThousandth`/1000 interest for AMM purchases. 
        @param amount amount in wei
        
        Burn rate is applied independently of the interest.
        No reentrancy check required, since these functions are not transferring ether and only modifying internal balances.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        // FROM uniswap address, mint interest tokens
        // Constraint: Anyone in burn whitelist cannot receive interest, to reduce owner abuse possibility.  
        // This means whitelisting uniswap for any reason will also turn off interest.
        if(_UniswapAddresses[sender] && 
            _interestRatePerBuyThousandth > 0 &&
            !_burnWhitelistTo[recipient] && 
            !_burnWhitelistFrom[sender]) {
            super._mint(recipient, amount.mul(_interestRatePerBuyThousandth).div(1000));
            // no need to adjust amount
        }

        // Apply burn
        if(!_burnWhitelistTo[recipient] && !_burnWhitelistFrom[sender] && _burnRatePerTransferThousandth>0) {
            uint256 burnAmount = amount.mul(_burnRatePerTransferThousandth).div(1000);
            super._burn(sender, burnAmount);

            // reduce the amount to be sent
            amount = amount.sub(burnAmount);
        }
        
        // Send the modified amount to recipient
        super._transfer(sender, recipient, amount);
    }

    /// @notice After modifying contract parameters, call this function to run internal consistency checks.
    function validateContractParameters() internal view {
        // These upper bounds have been added per community request
        require(_burnRatePerTransferThousandth <= 50, "Error: Burn cannot be larger than 5%");
        require(_interestRatePerBuyThousandth <= 50, "Error: Interest cannot be larger than 5%");
        
        // This is to avoid an owner accident/misuse, if uniswap can reward a larger amount than a single buy+sell, 
        // that would allow anyone to drain the Uniswap pool with a flash loan.
        // Since Uniswap fees are not considered, all Uniswap transactions are ultimately deflationary.
        require(_interestRatePerBuyThousandth <= _burnRatePerTransferThousandth.mul(2), "Error: Interest cannot exceed 2*Burn");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tokenOwnerWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"AddedToWhitelistFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"AddedToWhitelistTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"newRate","type":"uint32"}],"name":"BurnRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"newRate","type":"uint32"}],"name":"InterestRateChanged","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":"addr","type":"address"}],"name":"RemovedFromWhitelistFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"RemovedFromWhitelistTo","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"UniswapAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"UniswapAddressRemoved","type":"event"},{"inputs":[{"internalType":"address[]","name":"dests","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkInterestGenerationForAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20token","type":"address"},{"internalType":"bool","name":"generateInterest","type":"bool"}],"name":"enableInterestForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurnRatePerThousandth","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInterestRate","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressWhitelistedFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressWhitelistedTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"value","type":"uint32"}],"name":"setBurnRatePerThousandth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"setBurnWhitelistFromAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"setBurnWhitelistToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"value","type":"uint32"}],"name":"setInterestRatePerThousandth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040526005805463ffffffff60a81b1916600560a91b1763ffffffff60c81b1916600560ca1b1790553480156200003757600080fd5b506040516200200938038062002009833981810160405260208110156200005d57600080fd5b5051604080518082018252600b81526a2224ab102a37b5b2b7101960a91b6020828101918252835180850190945260048452632224ab1960e11b908401528151919291620000ae91600391620002cd565b508051620000c4906004906020840190620002cd565b50506005805460ff19166012179055506000620000e062000153565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200014c816969e10de76676d080000062000157565b5062000379565b3390565b6001600160a01b038216620001b3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001c16000838362000266565b620001dd816002546200026b60201b6200110f1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002109183906200110f6200026b821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002c6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000305576000855562000350565b82601f106200032057805160ff191683800117855562000350565b8280016001018555821562000350579182015b828111156200035057825182559160200191906001019062000333565b506200035e92915062000362565b5090565b5b808211156200035e576000815560010162000363565b611c8080620003896000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461055e578063c55c1c6a1461058a578063dd62ed3e146105b0578063f2fde38b146105de57610173565b806395d89b41146104fc578063a457c2d714610504578063a7ccd63e1461053057610173565b806370a0823114610433578063715018a6146104595780637314c378146104615780638c4bc81b1461048f5780638da5cb5b146104b557806393709c1c146104d957610173565b806323b872dd1161013057806323b872dd146102c6578063313ce567146102fc578063395093511461031a5780635257b566146103465780635f1c06171461034e578063672434821461037157610173565b80630189454c1461017857806306fdde03146101a8578063095ea7b3146102255780630e26bb1c1461026557806314455d1b1461028b57806318160ddd146102ac575b600080fd5b6101a66004803603604081101561018e57600080fd5b506001600160a01b0381351690602001351515610604565b005b6101b06107d9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ea5781810151838201526020016101d2565b50505050905090810190601f1680156102175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102516004803603604081101561023b57600080fd5b506001600160a01b03813516906020013561086f565b604080519115158252519081900360200190f35b6102516004803603602081101561027b57600080fd5b50356001600160a01b031661088d565b6102936108ab565b6040805163ffffffff9092168252519081900360200190f35b6102b46108be565b60408051918252519081900360200190f35b610251600480360360608110156102dc57600080fd5b506001600160a01b038135811691602081013590911690604001356108c4565b61030461094b565b6040805160ff9092168252519081900360200190f35b6102516004803603604081101561033057600080fd5b506001600160a01b038135169060200135610954565b6102936109a2565b6101a66004803603602081101561036457600080fd5b503563ffffffff166109b5565b6102b46004803603604081101561038757600080fd5b8101906020810181356401000000008111156103a257600080fd5b8201836020820111156103b457600080fd5b803590602001918460208302840111640100000000831117156103d657600080fd5b9193909290916020810190356401000000008111156103f457600080fd5b82018360208201111561040657600080fd5b8035906020019184602083028401116401000000008311171561042857600080fd5b509092509050610a74565b6102b46004803603602081101561044957600080fd5b50356001600160a01b0316610b2e565b6101a6610b49565b6101a66004803603604081101561047757600080fd5b506001600160a01b0381351690602001351515610bf6565b610251600480360360208110156104a557600080fd5b50356001600160a01b0316610cf3565b6104bd610d11565b604080516001600160a01b039092168252519081900360200190f35b6101a6600480360360208110156104ef57600080fd5b503563ffffffff16610d25565b6101b0610de4565b6102516004803603604081101561051a57600080fd5b506001600160a01b038135169060200135610e45565b6101a66004803603604081101561054657600080fd5b506001600160a01b0381351690602001351515610ead565b6102516004803603604081101561057457600080fd5b506001600160a01b038135169060200135610fa9565b610251600480360360208110156105a057600080fd5b50356001600160a01b0316610fbd565b6102b4600480360360408110156105c657600080fd5b506001600160a01b0381358116916020013516610fdb565b6101a6600480360360208110156105f457600080fd5b50356001600160a01b0316611006565b61060c611170565b60055461010090046001600160a01b03908116911614610661576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6040805163e6a4390560e01b81523060048201526001600160a01b03841660248201529051600091735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9163e6a4390591604480820192602092909190829003018186803b1580156106c557600080fd5b505afa1580156106d9573d6000803e3d6000fd5b505050506040513d60208110156106ef57600080fd5b505190506001600160a01b0381166107385760405162461bcd60e51b8152600401808060200182810382526033815260200180611a426033913960400191505060405180910390fd5b811561078d576001600160a01b038116600081815260086020526040808220805460ff1916861515179055517fe013160af17979448b815e4acc72ceb45f5e78d682bdf7bdbba6206f1fb49ca49190a26107d4565b6001600160a01b038116600081815260086020526040808220805460ff19169055517f9994b8a37dd3d7cbffc0414fcff5a1429bb953ba529427c5bbc4d59886caef559190a25b505050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061088361087c611170565b8484611174565b5060015b92915050565b6001600160a01b031660009081526006602052604090205460ff1690565b600554600160a81b900463ffffffff1690565b60025490565b60006108d1848484611260565b610941846108dd611170565b61093c85604051806060016040528060288152602001611b50602891396001600160a01b038a1660009081526001602052604081209061091b611170565b6001600160a01b0316815260208101919091526040016000205491906113cd565b611174565b5060019392505050565b60055460ff1690565b6000610883610961611170565b8461093c8560016000610972611170565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061110f565b600554600160c81b900463ffffffff1690565b6109bd611170565b60055461010090046001600160a01b03908116911614610a12576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6005805463ffffffff60a81b1916600160a81b63ffffffff841602179055610a38611464565b6040805163ffffffff8316815290517f2194450113e53fefa8ab181b7220ce5d667ee3b89d2f5540ead8fe0bb42cffe09181900360200190a150565b6000610a7e611170565b60055461010090046001600160a01b03908116911614610ad3576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b60005b84811015610b2557610b1d610ae9611170565b878784818110610af557fe5b905060200201356001600160a01b0316868685818110610b1157fe5b90506020020135611573565b600101610ad6565b95945050505050565b6001600160a01b031660009081526020819052604090205490565b610b51611170565b60055461010090046001600160a01b03908116911614610ba6576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b610bfe611170565b60055461010090046001600160a01b03908116911614610c53576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b8015610ca8576001600160a01b038216600081815260066020526040808220805460ff1916851515179055517fec6cd45d8ef108208595c2fa365fe9abf046277b04935c715b420cf4a33392d49190a2610cef565b6001600160a01b038216600081815260066020526040808220805460ff19169055517f5ddff49bd99e5ea6a1a9e35541cf0f4c889b43355cfdf4c58a8bf7893403c91b9190a25b5050565b6001600160a01b031660009081526007602052604090205460ff1690565b60055461010090046001600160a01b031690565b610d2d611170565b60055461010090046001600160a01b03908116911614610d82576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6005805463ffffffff60c81b1916600160c81b63ffffffff841602179055610da8611464565b6040805163ffffffff8316815290517f97daa7c561eb2339af62e82142fcf66cd612417e3e6a2b39df7689c1571963c79181900360200190a150565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108655780601f1061083a57610100808354040283529160200191610865565b6000610883610e52611170565b8461093c85604051806060016040528060258152602001611c026025913960016000610e7c611170565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906113cd565b610eb5611170565b60055461010090046001600160a01b03908116911614610f0a576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b8015610f5f576001600160a01b038216600081815260076020526040808220805460ff1916851515179055517f0c2e9c1d40195e4740939021c7a878c88250d1269e5739816bfafcb5f38bec719190a2610cef565b6001600160a01b038216600081815260076020526040808220805460ff19169055517f9c9d2c07c986f6efd2808d4b01ffe6737f7864de5371f48a4a394b5c2ba3fc1a9190a25050565b6000610883610fb6611170565b8484611260565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61100e611170565b60055461010090046001600160a01b03908116911614611063576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6001600160a01b0381166110a85760405162461bcd60e51b8152600401808060200182810382526026815260200180611a756026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015611169576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166111b95760405162461bcd60e51b8152600401808060200182810382526024815260200180611bde6024913960400191505060405180910390fd5b6001600160a01b0382166111fe5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a9b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526008602052604090205460ff1680156112965750600554600160c81b900463ffffffff1615155b80156112bb57506001600160a01b03821660009081526006602052604090205460ff16155b80156112e057506001600160a01b03831660009081526007602052604090205460ff16155b1561131d5760055461131d908390611318906103e89061131290869063ffffffff600160c81b9091048116906116ce16565b90611727565b611769565b6001600160a01b03821660009081526006602052604090205460ff1615801561135f57506001600160a01b03831660009081526007602052604090205460ff16155b80156113795750600554600160a81b900463ffffffff1615155b156113c2576005546000906113a8906103e89061131290859063ffffffff600160a81b9091048116906116ce16565b90506113b48482611859565b6113be8282611955565b9150505b6107d4838383611573565b6000818484111561145c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611421578181015183820152602001611409565b50505050905090810190601f16801561144e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6005546032600160a81b90910463ffffffff1611156114b45760405162461bcd60e51b8152600401808060200182810382526024815260200180611b0b6024913960400191505060405180910390fd5b6005546032600160c81b90910463ffffffff1611156115045760405162461bcd60e51b8152600401808060200182810382526028815260200180611abd6028913960400191505060405180910390fd5b6005546115249063ffffffff600160a81b9091048116906002906116ce16565b600554600160c81b900463ffffffff1611156115715760405162461bcd60e51b8152600401808060200182810382526024815260200180611c276024913960400191505060405180910390fd5b565b6001600160a01b0383166115b85760405162461bcd60e51b8152600401808060200182810382526025815260200180611bb96025913960400191505060405180910390fd5b6001600160a01b0382166115fd5760405162461bcd60e51b81526004018080602001828103825260238152602001806119fd6023913960400191505060405180910390fd5b6116088383836107d4565b61164581604051806060016040528060268152602001611ae5602691396001600160a01b03861660009081526020819052604090205491906113cd565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611674908261110f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826116dd57506000610887565b828202828482816116ea57fe5b04146111695760405162461bcd60e51b8152600401808060200182810382526021815260200180611b2f6021913960400191505060405180910390fd5b600061116983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611997565b6001600160a01b0382166117c4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6117d0600083836107d4565b6002546117dd908261110f565b6002556001600160a01b038216600090815260208190526040902054611803908261110f565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661189e5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b986021913960400191505060405180910390fd5b6118aa826000836107d4565b6118e781604051806060016040528060228152602001611a20602291396001600160a01b03851660009081526020819052604090205491906113cd565b6001600160a01b03831660009081526020819052604090205560025461190d9082611955565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061116983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113cd565b600081836119e65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611421578181015183820152602001611409565b5060008385816119f257fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365456e61626c65496e7465726573743a204e6f2076616c696420706169722065786973747320666f72206572633230746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734572726f723a20496e7465726573742063616e6e6f74206265206c6172676572207468616e20352545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654572726f723a204275726e2063616e6e6f74206265206c6172676572207468616e203525536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4572726f723a20496e7465726573742063616e6e6f742065786365656420322a4275726ea264697066735822122026b47a917f984515993b4e0f65be7ca1d6846a62d49c37d6e145f2d78d93eced64736f6c6343000705003300000000000000000000000038f614ddd1b2127619be43fa6f596704c688459e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461055e578063c55c1c6a1461058a578063dd62ed3e146105b0578063f2fde38b146105de57610173565b806395d89b41146104fc578063a457c2d714610504578063a7ccd63e1461053057610173565b806370a0823114610433578063715018a6146104595780637314c378146104615780638c4bc81b1461048f5780638da5cb5b146104b557806393709c1c146104d957610173565b806323b872dd1161013057806323b872dd146102c6578063313ce567146102fc578063395093511461031a5780635257b566146103465780635f1c06171461034e578063672434821461037157610173565b80630189454c1461017857806306fdde03146101a8578063095ea7b3146102255780630e26bb1c1461026557806314455d1b1461028b57806318160ddd146102ac575b600080fd5b6101a66004803603604081101561018e57600080fd5b506001600160a01b0381351690602001351515610604565b005b6101b06107d9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ea5781810151838201526020016101d2565b50505050905090810190601f1680156102175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102516004803603604081101561023b57600080fd5b506001600160a01b03813516906020013561086f565b604080519115158252519081900360200190f35b6102516004803603602081101561027b57600080fd5b50356001600160a01b031661088d565b6102936108ab565b6040805163ffffffff9092168252519081900360200190f35b6102b46108be565b60408051918252519081900360200190f35b610251600480360360608110156102dc57600080fd5b506001600160a01b038135811691602081013590911690604001356108c4565b61030461094b565b6040805160ff9092168252519081900360200190f35b6102516004803603604081101561033057600080fd5b506001600160a01b038135169060200135610954565b6102936109a2565b6101a66004803603602081101561036457600080fd5b503563ffffffff166109b5565b6102b46004803603604081101561038757600080fd5b8101906020810181356401000000008111156103a257600080fd5b8201836020820111156103b457600080fd5b803590602001918460208302840111640100000000831117156103d657600080fd5b9193909290916020810190356401000000008111156103f457600080fd5b82018360208201111561040657600080fd5b8035906020019184602083028401116401000000008311171561042857600080fd5b509092509050610a74565b6102b46004803603602081101561044957600080fd5b50356001600160a01b0316610b2e565b6101a6610b49565b6101a66004803603604081101561047757600080fd5b506001600160a01b0381351690602001351515610bf6565b610251600480360360208110156104a557600080fd5b50356001600160a01b0316610cf3565b6104bd610d11565b604080516001600160a01b039092168252519081900360200190f35b6101a6600480360360208110156104ef57600080fd5b503563ffffffff16610d25565b6101b0610de4565b6102516004803603604081101561051a57600080fd5b506001600160a01b038135169060200135610e45565b6101a66004803603604081101561054657600080fd5b506001600160a01b0381351690602001351515610ead565b6102516004803603604081101561057457600080fd5b506001600160a01b038135169060200135610fa9565b610251600480360360208110156105a057600080fd5b50356001600160a01b0316610fbd565b6102b4600480360360408110156105c657600080fd5b506001600160a01b0381358116916020013516610fdb565b6101a6600480360360208110156105f457600080fd5b50356001600160a01b0316611006565b61060c611170565b60055461010090046001600160a01b03908116911614610661576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6040805163e6a4390560e01b81523060048201526001600160a01b03841660248201529051600091735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9163e6a4390591604480820192602092909190829003018186803b1580156106c557600080fd5b505afa1580156106d9573d6000803e3d6000fd5b505050506040513d60208110156106ef57600080fd5b505190506001600160a01b0381166107385760405162461bcd60e51b8152600401808060200182810382526033815260200180611a426033913960400191505060405180910390fd5b811561078d576001600160a01b038116600081815260086020526040808220805460ff1916861515179055517fe013160af17979448b815e4acc72ceb45f5e78d682bdf7bdbba6206f1fb49ca49190a26107d4565b6001600160a01b038116600081815260086020526040808220805460ff19169055517f9994b8a37dd3d7cbffc0414fcff5a1429bb953ba529427c5bbc4d59886caef559190a25b505050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061088361087c611170565b8484611174565b5060015b92915050565b6001600160a01b031660009081526006602052604090205460ff1690565b600554600160a81b900463ffffffff1690565b60025490565b60006108d1848484611260565b610941846108dd611170565b61093c85604051806060016040528060288152602001611b50602891396001600160a01b038a1660009081526001602052604081209061091b611170565b6001600160a01b0316815260208101919091526040016000205491906113cd565b611174565b5060019392505050565b60055460ff1690565b6000610883610961611170565b8461093c8560016000610972611170565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061110f565b600554600160c81b900463ffffffff1690565b6109bd611170565b60055461010090046001600160a01b03908116911614610a12576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6005805463ffffffff60a81b1916600160a81b63ffffffff841602179055610a38611464565b6040805163ffffffff8316815290517f2194450113e53fefa8ab181b7220ce5d667ee3b89d2f5540ead8fe0bb42cffe09181900360200190a150565b6000610a7e611170565b60055461010090046001600160a01b03908116911614610ad3576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b60005b84811015610b2557610b1d610ae9611170565b878784818110610af557fe5b905060200201356001600160a01b0316868685818110610b1157fe5b90506020020135611573565b600101610ad6565b95945050505050565b6001600160a01b031660009081526020819052604090205490565b610b51611170565b60055461010090046001600160a01b03908116911614610ba6576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b610bfe611170565b60055461010090046001600160a01b03908116911614610c53576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b8015610ca8576001600160a01b038216600081815260066020526040808220805460ff1916851515179055517fec6cd45d8ef108208595c2fa365fe9abf046277b04935c715b420cf4a33392d49190a2610cef565b6001600160a01b038216600081815260066020526040808220805460ff19169055517f5ddff49bd99e5ea6a1a9e35541cf0f4c889b43355cfdf4c58a8bf7893403c91b9190a25b5050565b6001600160a01b031660009081526007602052604090205460ff1690565b60055461010090046001600160a01b031690565b610d2d611170565b60055461010090046001600160a01b03908116911614610d82576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6005805463ffffffff60c81b1916600160c81b63ffffffff841602179055610da8611464565b6040805163ffffffff8316815290517f97daa7c561eb2339af62e82142fcf66cd612417e3e6a2b39df7689c1571963c79181900360200190a150565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108655780601f1061083a57610100808354040283529160200191610865565b6000610883610e52611170565b8461093c85604051806060016040528060258152602001611c026025913960016000610e7c611170565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906113cd565b610eb5611170565b60055461010090046001600160a01b03908116911614610f0a576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b8015610f5f576001600160a01b038216600081815260076020526040808220805460ff1916851515179055517f0c2e9c1d40195e4740939021c7a878c88250d1269e5739816bfafcb5f38bec719190a2610cef565b6001600160a01b038216600081815260076020526040808220805460ff19169055517f9c9d2c07c986f6efd2808d4b01ffe6737f7864de5371f48a4a394b5c2ba3fc1a9190a25050565b6000610883610fb6611170565b8484611260565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61100e611170565b60055461010090046001600160a01b03908116911614611063576040805162461bcd60e51b81526020600482018190526024820152600080516020611b78833981519152604482015290519081900360640190fd5b6001600160a01b0381166110a85760405162461bcd60e51b8152600401808060200182810382526026815260200180611a756026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015611169576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166111b95760405162461bcd60e51b8152600401808060200182810382526024815260200180611bde6024913960400191505060405180910390fd5b6001600160a01b0382166111fe5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a9b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526008602052604090205460ff1680156112965750600554600160c81b900463ffffffff1615155b80156112bb57506001600160a01b03821660009081526006602052604090205460ff16155b80156112e057506001600160a01b03831660009081526007602052604090205460ff16155b1561131d5760055461131d908390611318906103e89061131290869063ffffffff600160c81b9091048116906116ce16565b90611727565b611769565b6001600160a01b03821660009081526006602052604090205460ff1615801561135f57506001600160a01b03831660009081526007602052604090205460ff16155b80156113795750600554600160a81b900463ffffffff1615155b156113c2576005546000906113a8906103e89061131290859063ffffffff600160a81b9091048116906116ce16565b90506113b48482611859565b6113be8282611955565b9150505b6107d4838383611573565b6000818484111561145c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611421578181015183820152602001611409565b50505050905090810190601f16801561144e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6005546032600160a81b90910463ffffffff1611156114b45760405162461bcd60e51b8152600401808060200182810382526024815260200180611b0b6024913960400191505060405180910390fd5b6005546032600160c81b90910463ffffffff1611156115045760405162461bcd60e51b8152600401808060200182810382526028815260200180611abd6028913960400191505060405180910390fd5b6005546115249063ffffffff600160a81b9091048116906002906116ce16565b600554600160c81b900463ffffffff1611156115715760405162461bcd60e51b8152600401808060200182810382526024815260200180611c276024913960400191505060405180910390fd5b565b6001600160a01b0383166115b85760405162461bcd60e51b8152600401808060200182810382526025815260200180611bb96025913960400191505060405180910390fd5b6001600160a01b0382166115fd5760405162461bcd60e51b81526004018080602001828103825260238152602001806119fd6023913960400191505060405180910390fd5b6116088383836107d4565b61164581604051806060016040528060268152602001611ae5602691396001600160a01b03861660009081526020819052604090205491906113cd565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611674908261110f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826116dd57506000610887565b828202828482816116ea57fe5b04146111695760405162461bcd60e51b8152600401808060200182810382526021815260200180611b2f6021913960400191505060405180910390fd5b600061116983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611997565b6001600160a01b0382166117c4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6117d0600083836107d4565b6002546117dd908261110f565b6002556001600160a01b038216600090815260208190526040902054611803908261110f565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661189e5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b986021913960400191505060405180910390fd5b6118aa826000836107d4565b6118e781604051806060016040528060228152602001611a20602291396001600160a01b03851660009081526020819052604090205491906113cd565b6001600160a01b03831660009081526020819052604090205560025461190d9082611955565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061116983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113cd565b600081836119e65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611421578181015183820152602001611409565b5060008385816119f257fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365456e61626c65496e7465726573743a204e6f2076616c696420706169722065786973747320666f72206572633230746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734572726f723a20496e7465726573742063616e6e6f74206265206c6172676572207468616e20352545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654572726f723a204275726e2063616e6e6f74206265206c6172676572207468616e203525536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4572726f723a20496e7465726573742063616e6e6f742065786365656420322a4275726ea264697066735822122026b47a917f984515993b4e0f65be7ca1d6846a62d49c37d6e145f2d78d93eced64736f6c63430007050033

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

00000000000000000000000038f614ddd1b2127619be43fa6f596704c688459e

-----Decoded View---------------
Arg [0] : tokenOwnerWallet (address): 0x38f614dDD1b2127619bE43Fa6f596704c688459E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000038f614ddd1b2127619be43fa6f596704c688459e


Deployed Bytecode Sourcemap

29631:10782:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34911:697;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34911:697:0;;;;;;;;;;:::i;:::-;;20051:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22157:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22157:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;36933:123;;;;;;;;;;;;;;;;-1:-1:-1;36933:123:0;-1:-1:-1;;;;;36933:123:0;;:::i;36345:124::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21126:100;;;:::i;:::-;;;;;;;;;;;;;;;;22808:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22808:321:0;;;;;;;;;;;;;;;;;:::i;20978:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23538:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23538:218:0;;;;;;;;:::i;36553:114::-;;;:::i;32367:240::-;;;;;;;;;;;;;;;;-1:-1:-1;32367:240:0;;;;:::i;35978:292::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35978:292:0;;-1:-1:-1;35978:292:0;-1:-1:-1;35978:292:0;:::i;21289:119::-;;;;;;;;;;;;;;;;-1:-1:-1;21289:119:0;-1:-1:-1;;;;;21289:119:0;;:::i;9422:148::-;;;:::i;33258:338::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33258:338:0;;;;;;;;;;:::i;37324:127::-;;;;;;;;;;;;;;;;-1:-1:-1;37324:127:0;-1:-1:-1;;;;;37324:127:0;;:::i;8780:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;8780:79:0;;;;;;;;;;;;;;32801:208;;;;;;;;;;;;;;;;-1:-1:-1;32801:208:0;;;;:::i;20253:87::-;;;:::i;24259:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24259:269:0;;;;;;;;:::i;33854:348::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33854:348:0;;;;;;;;;;:::i;21621:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21621:175:0;;;;;;;;:::i;37765:135::-;;;;;;;;;;;;;;;;-1:-1:-1;37765:135:0;-1:-1:-1;;;;;37765:135:0;;:::i;21859:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21859:151:0;;;;;;;;;;:::i;9725:244::-;;;;;;;;;;;;;;;;-1:-1:-1;9725:244:0;-1:-1:-1;;;;;9725:244:0;;:::i;34911:697::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;35088:77:::1;::::0;;-1:-1:-1;;;35088:77:0;;35147:4:::1;35088:77;::::0;::::1;::::0;-1:-1:-1;;;;;35088:77:0;::::1;::::0;;;;;;35064:21:::1;::::0;30054:42:::1;::::0;35088:50:::1;::::0;:77;;;;;::::1;::::0;;;;;;;;;30054:42;35088:77;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35088:77:0;;-1:-1:-1;;;;;;35184:59:0;::::1;35176:123;;;;-1:-1:-1::0;;;35176:123:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35323:16;35320:281;;;-1:-1:-1::0;;;;;35356:32:0;::::1;;::::0;;;:17:::1;:32;::::0;;;;;:51;;-1:-1:-1;;35356:51:0::1;::::0;::::1;;;::::0;;35427:34;::::1;::::0;35356:32;35427:34:::1;35320:281;;;-1:-1:-1::0;;;;;35501:32:0;::::1;;::::0;;;:17:::1;:32;::::0;;;;;35494:39;;-1:-1:-1;;35494:39:0::1;::::0;;35553:36;::::1;::::0;35501:32;35553:36:::1;35320:281;9062:1;34911:697:::0;;:::o;20051:83::-;20121:5;20114:12;;;;;;;;-1:-1:-1;;20114:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20088:13;;20114:12;;20121:5;;20114:12;;20121:5;20114:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20051:83;:::o;22157:169::-;22240:4;22257:39;22266:12;:10;:12::i;:::-;22280:7;22289:6;22257:8;:39::i;:::-;-1:-1:-1;22314:4:0;22157:169;;;;;:::o;36933:123::-;-1:-1:-1;;;;;37026:22:0;37002:4;37026:22;;;:16;:22;;;;;;;;;36933:123::o;36345:124::-;36431:30;;-1:-1:-1;;;36431:30:0;;;;;36345:124::o;21126:100::-;21206:12;;21126:100;:::o;22808:321::-;22914:4;22931:36;22941:6;22949:9;22960:6;22931:9;:36::i;:::-;22978:121;22987:6;22995:12;:10;:12::i;:::-;23009:89;23047:6;23009:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23009:19:0;;;;;;:11;:19;;;;;;23029:12;:10;:12::i;:::-;-1:-1:-1;;;;;23009:33:0;;;;;;;;;;;;-1:-1:-1;23009:33:0;;;:89;:37;:89::i;:::-;22978:8;:121::i;:::-;-1:-1:-1;23117:4:0;22808:321;;;;;:::o;20978:83::-;21044:9;;;;20978:83;:::o;23538:218::-;23626:4;23643:83;23652:12;:10;:12::i;:::-;23666:7;23675:50;23714:10;23675:11;:25;23687:12;:10;:12::i;:::-;-1:-1:-1;;;;;23675:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23675:25:0;;;:34;;;;;;;;;;;:38;:50::i;36553:114::-;36630:29;;-1:-1:-1;;;36630:29:0;;;;;36553:114::o;32367:240::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;32484:30:::1;:38:::0;;-1:-1:-1;;;;32484:38:0::1;-1:-1:-1::0;;;32484:38:0::1;::::0;::::1;;;::::0;;32533:28:::1;:26;:28::i;:::-;32577:22;::::0;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;32367:240:::0;:::o;35978:292::-;36076:7;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;36096:9:::1;36120:123;36127:16:::0;;::::1;36120:123;;;36160:50;36176:12;:10;:12::i;:::-;36190:5;;36196:1;36190:8;;;;;;;;;;;;;-1:-1:-1::0;;;;;36190:8:0::1;36200:6;;36207:1;36200:9;;;;;;;;;;;;;36160:15;:50::i;:::-;36230:1;36225:6;36120:123;;;36260:1:::0;35978:292;-1:-1:-1;;;;;35978:292:0:o;21289:119::-;-1:-1:-1;;;;;21382:18:0;21355:7;21382:18;;;;;;;;;;;;21289:119::o;9422:148::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;9513:6:::1;::::0;9492:40:::1;::::0;9529:1:::1;::::0;9513:6:::1;::::0;::::1;-1:-1:-1::0;;;;;9513:6:0::1;::::0;9492:40:::1;::::0;9529:1;;9492:40:::1;9543:6;:19:::0;;-1:-1:-1;;;;;;9543:19:0::1;::::0;;9422:148::o;33258:338::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;33359:11:::1;33356:233;;;-1:-1:-1::0;;;;;33387:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;;:36;;-1:-1:-1;;33387:36:0::1;::::0;::::1;;;::::0;;33443:24;::::1;::::0;33387:22;33443:24:::1;33356:233;;;-1:-1:-1::0;;;;;33507:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;;33500:29;;-1:-1:-1;;33500:29:0::1;::::0;;33549:28;::::1;::::0;33507:22;33549:28:::1;33356:233;33258:338:::0;;:::o;37324:127::-;-1:-1:-1;;;;;37419:24:0;37395:4;37419:24;;;:18;:24;;;;;;;;;37324:127::o;8780:79::-;8845:6;;;;;-1:-1:-1;;;;;8845:6:0;;8780:79::o;32801:208::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;32883:29:::1;:37:::0;;-1:-1:-1;;;;32883:37:0::1;-1:-1:-1::0;;;32883:37:0::1;::::0;::::1;;;::::0;;32931:28:::1;:26;:28::i;:::-;32975:26;::::0;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;32801:208:::0;:::o;20253:87::-;20325:7;20318:14;;;;;;;;-1:-1:-1;;20318:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20292:13;;20318:14;;20325:7;;20318:14;;20325:7;20318:14;;;;;;;;;;;;;;;;;;;;;;;;24259:269;24352:4;24369:129;24378:12;:10;:12::i;:::-;24392:7;24401:96;24440:15;24401:96;;;;;;;;;;;;;;;;;:11;:25;24413:12;:10;:12::i;:::-;-1:-1:-1;;;;;24401:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24401:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;33854:348::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;33957:11:::1;33954:241;;;-1:-1:-1::0;;;;;33985:24:0;::::1;;::::0;;;:18:::1;:24;::::0;;;;;:38;;-1:-1:-1;;33985:38:0::1;::::0;::::1;;;::::0;;34043:26;::::1;::::0;33985:24;34043:26:::1;33954:241;;;-1:-1:-1::0;;;;;34109:24:0;::::1;;::::0;;;:18:::1;:24;::::0;;;;;34102:31;;-1:-1:-1;;34102:31:0::1;::::0;;34153:30;::::1;::::0;34109:24;34153:30:::1;33854:348:::0;;:::o;21621:175::-;21707:4;21724:42;21734:12;:10;:12::i;:::-;21748:9;21759:6;21724:9;:42::i;37765:135::-;-1:-1:-1;;;;;37869:23:0;37845:4;37869:23;;;:17;:23;;;;;;;;;37765:135::o;21859:151::-;-1:-1:-1;;;;;21975:18:0;;;21948:7;21975:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21859:151::o;9725:244::-;9002:12;:10;:12::i;:::-;8992:6;;;;;-1:-1:-1;;;;;8992:6:0;;;:22;;;8984:67;;;;;-1:-1:-1;;;8984:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8984:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9814:22:0;::::1;9806:73;;;;-1:-1:-1::0;;;9806:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9916:6;::::0;9895:38:::1;::::0;-1:-1:-1;;;;;9895:38:0;;::::1;::::0;9916:6:::1;::::0;::::1;;::::0;9895:38:::1;::::0;;;::::1;9944:6;:17:::0;;-1:-1:-1;;;;;9944:17:0;;::::1;;;-1:-1:-1::0;;;;;;9944:17:0;;::::1;::::0;;;::::1;::::0;;9725:244::o;10818:181::-;10876:7;10908:5;;;10932:6;;;;10924:46;;;;;-1:-1:-1;;;10924:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10990:1;10818:181;-1:-1:-1;;;10818:181:0:o;7418:106::-;7506:10;7418:106;:::o;27406:346::-;-1:-1:-1;;;;;27508:19:0;;27500:68;;;;-1:-1:-1;;;27500:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27587:21:0;;27579:68;;;;-1:-1:-1;;;27579:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27660:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27712:32;;;;;;;;;;;;;;;;;27406:346;;;:::o;38356:1169::-;-1:-1:-1;;;;;38720:25:0;;;;;;:17;:25;;;;;;;;:76;;;;-1:-1:-1;38763:29:0;;-1:-1:-1;;;38763:29:0;;;;:33;;38720:76;:121;;;;-1:-1:-1;;;;;;38814:27:0;;;;;;:16;:27;;;;;;;;38813:28;38720:121;:166;;;;-1:-1:-1;;;;;;38860:26:0;;;;;;:18;:26;;;;;;;;38859:27;38720:166;38717:314;;;38937:29;;38903:75;;38915:9;;38926:51;;38972:4;;38926:41;;:6;;38937:29;-1:-1:-1;;;38937:29:0;;;;;;38926:10;:41;:::i;:::-;:45;;:51::i;:::-;38903:11;:75::i;:::-;-1:-1:-1;;;;;39070:27:0;;;;;;:16;:27;;;;;;;;39069:28;:59;;;;-1:-1:-1;;;;;;39102:26:0;;;;;;:18;:26;;;;;;;;39101:27;39069:59;:95;;;;-1:-1:-1;39132:30:0;;-1:-1:-1;;;39132:30:0;;;;:32;;39069:95;39066:339;;;39213:30;;39181:18;;39202:52;;39249:4;;39202:42;;:6;;39213:30;-1:-1:-1;;;39213:30:0;;;;;;39202:10;:42;:::i;:52::-;39181:73;;39269:31;39281:6;39289:10;39269:11;:31::i;:::-;39371:22;:6;39382:10;39371;:22::i;:::-;39362:31;;39066:339;;39475:42;39491:6;39499:9;39510:6;39475:15;:42::i;11721:192::-;11807:7;11843:12;11835:6;;;;11827:29;;;;-1:-1:-1;;;11827:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11879:5:0;;;11721:192::o;39642:768::-;39782:30;;39816:2;-1:-1:-1;;;39782:30:0;;;;;:36;;39774:85;;;;-1:-1:-1;;;39774:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39878:29;;39911:2;-1:-1:-1;;;39878:29:0;;;;;:35;;39870:88;;;;-1:-1:-1;;;39870:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40324:30;;:37;;:30;-1:-1:-1;;;40324:30:0;;;;;;40359:1;;40324:34;:37;:::i;:::-;40291:29;;-1:-1:-1;;;40291:29:0;;;;:70;;40283:119;;;;-1:-1:-1;;;40283:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39642:768::o;25018:539::-;-1:-1:-1;;;;;25124:20:0;;25116:70;;;;-1:-1:-1;;;25116:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25205:23:0;;25197:71;;;;-1:-1:-1;;;25197:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25281:47;25302:6;25310:9;25321:6;25281:20;:47::i;:::-;25361:71;25383:6;25361:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25361:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;25341:17:0;;;:9;:17;;;;;;;;;;;:91;;;;25466:20;;;;;;;:32;;25491:6;25466:24;:32::i;:::-;-1:-1:-1;;;;;25443:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;25514:35;;;;;;;25443:20;;25514:35;;;;;;;;;;;;;25018:539;;;:::o;12172:471::-;12230:7;12475:6;12471:47;;-1:-1:-1;12505:1:0;12498:8;;12471:47;12542:5;;;12546:1;12542;:5;:1;12566:5;;;;;:10;12558:56;;;;-1:-1:-1;;;12558:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13119:132;13177:7;13204:39;13208:1;13211;13204:39;;;;;;;;;;;;;;;;;:3;:39::i;25839:378::-;-1:-1:-1;;;;;25923:21:0;;25915:65;;;;;-1:-1:-1;;;25915:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25993:49;26022:1;26026:7;26035:6;25993:20;:49::i;:::-;26070:12;;:24;;26087:6;26070:16;:24::i;:::-;26055:12;:39;-1:-1:-1;;;;;26126:18:0;;:9;:18;;;;;;;;;;;:30;;26149:6;26126:22;:30::i;:::-;-1:-1:-1;;;;;26105:18:0;;:9;:18;;;;;;;;;;;:51;;;;26172:37;;;;;;;26105:18;;:9;;26172:37;;;;;;;;;;25839:378;;:::o;26550:418::-;-1:-1:-1;;;;;26634:21:0;;26626:67;;;;-1:-1:-1;;;26626:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26706:49;26727:7;26744:1;26748:6;26706:20;:49::i;:::-;26789:68;26812:6;26789:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26789:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;26768:18:0;;:9;:18;;;;;;;;;;:89;26883:12;;:24;;26900:6;26883:16;:24::i;:::-;26868:12;:39;26923:37;;;;;;;;26949:1;;-1:-1:-1;;;;;26923:37:0;;;;;;;;;;;;26550:418;;:::o;11282:136::-;11340:7;11367:43;11371:1;11374;11367:43;;;;;;;;;;;;;;;;;:3;:43::i;13747:278::-;13833:7;13868:12;13861:5;13853:28;;;;-1:-1:-1;;;13853:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13892:9;13908:1;13904;:5;;;;;;;13747:278;-1:-1:-1;;;;;13747:278:0:o

Swarm Source

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