ETH Price: $3,419.59 (+1.12%)
Gas: 3 Gwei

Token

Gradient (GDT)
 

Overview

Max Total Supply

13,951,481.207128936089521328 GDT

Holders

866 ( -0.115%)

Market

Price

$0.07 @ 0.000021 ETH (+1.60%)

Onchain Market Cap

$981,249.53

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
853.420124539695899178 GDT

Value
$60.02 ( ~0.0175518022337262 Eth) [0.0061%]
0x53d0871f6c28bcb4b7713d1fff8d821a7276ad48
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:
Gradient

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : GradientERC20.sol
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import {IUniswapV2Router02} from "./libs/uni.sol";

contract Gradient is ERC20, ERC20Burnable, AccessControl {
    struct LiquidityPairs {
        address router;
        address base;
    }

    bytes32 public constant AUX_ADMIN = keccak256("AUX_ADMIN");
    uint256 constant DIVISOR = 10_000;

    mapping(address => LiquidityPairs) public routerPairs;
    mapping(address => uint256) public lastTransferBlock;
    mapping(address => bool) public bypassCapable;

    bool private swapping;

    address payable public tributeHolder;

    uint256 public thresholdTimestamp = 0;
    uint256 public schnipperTribute = 3333;


    constructor() ERC20("Gradient", "GDT") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(AUX_ADMIN, msg.sender);

        _mint(msg.sender, 14000000 * 10 ** decimals());

        tributeHolder = payable(msg.sender);
    }

    function _transfer(address from, address recipient, uint256 amount) internal override {
        if (!bypassCapable[recipient] && !bypassCapable[from] && !swapping) {
            require(block.number > lastTransferBlock[from], "Only one transfer per block per address is allowed");
            lastTransferBlock[from] = block.number;

            if (block.timestamp < thresholdTimestamp && routerPairs[recipient].router != address(0)) {

                uint schnipperTributeTotal = (amount * schnipperTribute) / DIVISOR;
                amount -= schnipperTributeTotal;

                super._transfer(from, address(this), schnipperTributeTotal);
                _swapTokensByPair(schnipperTributeTotal, recipient);
            }
        }

        super._transfer(from, recipient, amount);
    }

    function setBypass(address account, bool setting) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || hasRole(AUX_ADMIN, msg.sender), "Insufficient privileges");
        require(bypassCapable[account] != setting, "Account already at setting");
        bypassCapable[account] = setting;
    }

    function _swapTokensByPair(uint tokenAmount, address pair) internal {
        swapping = true;

        LiquidityPairs memory currentPair = routerPairs[pair];

        address path1 = currentPair.base;
        IUniswapV2Router02 router = IUniswapV2Router02(currentPair.router);

        // generate the pair path of token from current pair
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = path1;

        _approve(address(this), address(router), tokenAmount);

        // make the swap
        router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount
            path,
            tributeHolder,
            block.timestamp
        );

        swapping = false;
    }

    function addPair(address pair, address router, address base) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || hasRole(AUX_ADMIN, msg.sender), "Insufficient privileges");

        routerPairs[pair].router = router;
        routerPairs[pair].base = base;
        bypassCapable[router] = true;
    }

    function setThreshold(uint _thresholdTimestamp) external {
        require(
          hasRole(DEFAULT_ADMIN_ROLE, msg.sender) ||
          hasRole(AUX_ADMIN, msg.sender)
          , "Insufficient privileges"
        );
        thresholdTimestamp = _thresholdTimestamp;
    }

    function setTribute(uint _schnipperTribute) external {
        require(
          hasRole(DEFAULT_ADMIN_ROLE, msg.sender) ||
          hasRole(AUX_ADMIN, msg.sender)
          , "Insufficient privileges"
        );
        schnipperTribute = _schnipperTribute;
    }


    function setFundingWallet(address payable _wallet) external onlyRole(DEFAULT_ADMIN_ROLE){
        tributeHolder = _wallet;
        bypassCapable[address(_wallet)] = true;
    }


    function rescueTokens(address recipient, address token, uint amount) public {
        require(
          hasRole(DEFAULT_ADMIN_ROLE, msg.sender)
          , "Insufficient privileges"
        );

        IERC20(token).transfer(recipient, amount);
    }

    function rescueEth(address payable recipient) public {
        require(
          hasRole(DEFAULT_ADMIN_ROLE, msg.sender)
          , "Insufficient privileges"
        );

        recipient.transfer(address(this).balance);
    }

}

File 2 of 12 : uni.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

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




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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}



interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}





interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 3 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 12 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 5 of 12 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 6 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 9 of 12 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"AUX_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"base","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bypassCapable","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"lastTransferBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"rescueEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routerPairs","outputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"base","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"schnipperTribute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"setting","type":"bool"}],"name":"setBypass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"setFundingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_thresholdTimestamp","type":"uint256"}],"name":"setThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_schnipperTribute","type":"uint256"}],"name":"setTribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdTimestamp","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tributeHolder","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526000600a55610d05600b553480156200001c57600080fd5b506040518060400160405280600881526020017f4772616469656e740000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f474454000000000000000000000000000000000000000000000000000000000081525081600390816200009a9190620006fc565b508060049081620000ac9190620006fc565b505050620000c46000801b336200017c60201b60201c565b620000f67fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c21336200017c60201b60201c565b62000135336200010b6200019260201b60201c565b600a62000119919062000973565b62d59f80620001299190620009c4565b6200019b60201b60201c565b33600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b33565b6200018e82826200031360201b60201c565b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200020d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002049062000a86565b60405180910390fd5b62000221600083836200040560201b60201c565b806002600082825462000235919062000aa8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200028c919062000aa8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f3919062000b16565b60405180910390a36200030f600083836200040a60201b60201c565b5050565b6200032582826200040f60201b60201c565b620004015760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003a66200047a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050457607f821691505b6020821081036200051a5762000519620004bc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000545565b62000590868362000545565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005dd620005d7620005d184620005a8565b620005b2565b620005a8565b9050919050565b6000819050919050565b620005f983620005bc565b620006116200060882620005e4565b84845462000552565b825550505050565b600090565b6200062862000619565b62000635818484620005ee565b505050565b5b818110156200065d57620006516000826200061e565b6001810190506200063b565b5050565b601f821115620006ac57620006768162000520565b620006818462000535565b8101602085101562000691578190505b620006a9620006a08562000535565b8301826200063a565b50505b505050565b600082821c905092915050565b6000620006d160001984600802620006b1565b1980831691505092915050565b6000620006ec8383620006be565b9150826002028217905092915050565b620007078262000482565b67ffffffffffffffff8111156200072357620007226200048d565b5b6200072f8254620004eb565b6200073c82828562000661565b600060209050601f8311600181146200077457600084156200075f578287015190505b6200076b8582620006de565b865550620007db565b601f198416620007848662000520565b60005b82811015620007ae5784890151825560018201915060208501945060208101905062000787565b86831015620007ce5784890151620007ca601f891682620006be565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200087157808604811115620008495762000848620007e3565b5b6001851615620008595780820291505b8081029050620008698562000812565b945062000829565b94509492505050565b6000826200088c57600190506200095f565b816200089c57600090506200095f565b8160018114620008b55760028114620008c057620008f6565b60019150506200095f565b60ff841115620008d557620008d4620007e3565b5b8360020a915084821115620008ef57620008ee620007e3565b5b506200095f565b5060208310610133831016604e8410600b8410161715620009305782820a9050838111156200092a5762000929620007e3565b5b6200095f565b6200093f84848460016200081f565b92509050818404811115620009595762000958620007e3565b5b81810290505b9392505050565b600060ff82169050919050565b60006200098082620005a8565b91506200098d8362000966565b9250620009bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200087a565b905092915050565b6000620009d182620005a8565b9150620009de83620005a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a1a5762000a19620007e3565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a6e601f8362000a25565b915062000a7b8262000a36565b602082019050919050565b6000602082019050818103600083015262000aa18162000a5f565b9050919050565b600062000ab582620005a8565b915062000ac283620005a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000afa5762000af9620007e3565b5b828201905092915050565b62000b1081620005a8565b82525050565b600060208201905062000b2d600083018462000b05565b92915050565b6137a18062000b436000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a217fddf116100ad578063cea9d26f1161007c578063cea9d26f14610638578063d547741f14610654578063dd62ed3e14610670578063ed56b944146106a0578063f1ec23cf146106be57610206565b8063a217fddf1461059e578063a457c2d7146105bc578063a9059cbb146105ec578063aaccf2751461061c57610206565b806391d14854116100e957806391d148541461051857806395d89b4114610548578063960bfe04146105665780639819d24e1461058257610206565b806370a082311461047e57806372b71986146104ae57806379cc6790146104cc5780638712523e146104e857610206565b80632f2ff15d1161019d578063395093511161016c57806339509351146103c75780633b1ab44c146103f757806340c336bd1461041357806342966c68146104315780635185160f1461044d57610206565b80632f2ff15d14610355578063313ce5671461037157806336568abe1461038f57806336f5218f146103ab57610206565b806323b872dd116101d957806323b872dd146102a7578063248a9ca3146102d75780632ed56837146103075780632eee963b1461033757610206565b806301ffc9a71461020b57806306fdde031461023b578063095ea7b31461025957806318160ddd14610289575b600080fd5b610225600480360381019061022091906124e9565b6106da565b6040516102329190612531565b60405180910390f35b610243610754565b60405161025091906125e5565b60405180910390f35b610273600480360381019061026e919061269b565b6107e6565b6040516102809190612531565b60405180910390f35b610291610809565b60405161029e91906126ea565b60405180910390f35b6102c160048036038101906102bc9190612705565b610813565b6040516102ce9190612531565b60405180910390f35b6102f160048036038101906102ec919061278e565b610842565b6040516102fe91906127ca565b60405180910390f35b610321600480360381019061031c91906127e5565b610862565b60405161032e9190612531565b60405180910390f35b61033f610882565b60405161034c91906127ca565b60405180910390f35b61036f600480360381019061036a9190612812565b6108a6565b005b6103796108c7565b604051610386919061286e565b60405180910390f35b6103a960048036038101906103a49190612812565b6108d0565b005b6103c560048036038101906103c091906128b5565b610953565b005b6103e160048036038101906103dc919061269b565b610abd565b6040516103ee9190612531565b60405180910390f35b610411600480360381019061040c9190612933565b610af4565b005b61041b610b8a565b60405161042891906126ea565b60405180910390f35b61044b60048036038101906104469190612960565b610b90565b005b610467600480360381019061046291906127e5565b610ba4565b60405161047592919061299c565b60405180910390f35b610498600480360381019061049391906127e5565b610c08565b6040516104a591906126ea565b60405180910390f35b6104b6610c50565b6040516104c391906129d4565b60405180910390f35b6104e660048036038101906104e1919061269b565b610c76565b005b61050260048036038101906104fd91906127e5565b610c96565b60405161050f91906126ea565b60405180910390f35b610532600480360381019061052d9190612812565b610cae565b60405161053f9190612531565b60405180910390f35b610550610d19565b60405161055d91906125e5565b60405180910390f35b610580600480360381019061057b9190612960565b610dab565b005b61059c60048036038101906105979190612933565b610e32565b005b6105a6610edc565b6040516105b391906127ca565b60405180910390f35b6105d660048036038101906105d1919061269b565b610ee3565b6040516105e39190612531565b60405180910390f35b6106066004803603810190610601919061269b565b610f5a565b6040516106139190612531565b60405180910390f35b61063660048036038101906106319190612960565b610f7d565b005b610652600480360381019061064d9190612705565b611004565b005b61066e60048036038101906106699190612812565b6110d4565b005b61068a600480360381019061068591906129ef565b6110f5565b60405161069791906126ea565b60405180910390f35b6106a861117c565b6040516106b591906126ea565b60405180910390f35b6106d860048036038101906106d39190612a2f565b611182565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074d575061074c8261135e565b5b9050919050565b60606003805461076390612ab1565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90612ab1565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6000806107f16113c8565b90506107fe8185856113d0565b600191505092915050565b6000600254905090565b60008061081e6113c8565b905061082b858285611599565b610836858585611625565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b7fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2181565b6108af82610842565b6108b8816118a6565b6108c283836118ba565b505050565b60006012905090565b6108d86113c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90612b54565b60405180910390fd5b61094f828261199b565b5050565b6109606000801b33610cae565b8061099157506109907fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612bc0565b60405180910390fd5b801515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612c2c565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610ac86113c8565b9050610ae9818585610ada85896110f5565b610ae49190612c7b565b6113d0565b600191505092915050565b610b016000801b33610cae565b610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612bc0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b86573d6000803e3d6000fd5b5050565b600a5481565b610ba1610b9b6113c8565b82611a7d565b50565b60066020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c8882610c826113c8565b83611599565b610c928282611a7d565b5050565b60076020528060005260406000206000915090505481565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610d2890612ab1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5490612ab1565b8015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b5050505050905090565b610db86000801b33610cae565b80610de95750610de87fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612bc0565b60405180910390fd5b80600a8190555050565b6000801b610e3f816118a6565b81600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000801b81565b600080610eee6113c8565b90506000610efc82866110f5565b905083811015610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890612d43565b60405180910390fd5b610f4e82868684036113d0565b60019250505092915050565b600080610f656113c8565b9050610f72818585611625565b600191505092915050565b610f8a6000801b33610cae565b80610fbb5750610fba7fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190612bc0565b60405180910390fd5b80600b8190555050565b6110116000801b33610cae565b611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790612bc0565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161108b929190612d63565b6020604051808303816000875af11580156110aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190612da1565b50505050565b6110dd82610842565b6110e6816118a6565b6110f0838361199b565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b61118f6000801b33610cae565b806111c057506111bf7fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b6111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690612bc0565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690612e40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590612ed2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161158c91906126ea565b60405180910390a3505050565b60006115a584846110f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461161f5781811015611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612f3e565b60405180910390fd5b61161e84848484036113d0565b5b50505050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116c95750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116e25750600960009054906101000a900460ff16155b1561189657600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544311611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90612fd0565b60405180910390fd5b43600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a544210801561184c5750600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611895576000612710600b54836118649190612ff0565b61186e9190613079565b9050808261187c91906130aa565b9150611889843083611c53565b6118938184611ed2565b505b5b6118a1838383611c53565b505050565b6118b7816118b26113c8565b6121a9565b50565b6118c48282610cae565b6119975760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193c6113c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119a58282610cae565b15611a795760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a1e6113c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390613150565b60405180910390fd5b611af882600083612246565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b75906131e2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611bd591906130aa565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3a91906126ea565b60405180910390a3611c4e8360008461224b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613274565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890613306565b60405180910390fd5b611d3c838383612246565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613398565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e559190612c7b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb991906126ea565b60405180910390a3611ecc84848461224b565b50505050565b6001600960006101000a81548160ff0219169083151502179055506000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090506000816020015190506000826000015190506000600267ffffffffffffffff811115612016576120156133b8565b5b6040519080825280602002602001820160405280156120445781602001602082028036833780820191505090505b509050308160008151811061205c5761205b6133e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505082816001815181106120ab576120aa6133e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120f03083886113d0565b8173ffffffffffffffffffffffffffffffffffffffff16635c11d79587600084600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161215495949392919061356e565b600060405180830381600087803b15801561216e57600080fd5b505af1158015612182573d6000803e3d6000fd5b505050506000600960006101000a81548160ff021916908315150217905550505050505050565b6121b38282610cae565b612242576121d88173ffffffffffffffffffffffffffffffffffffffff166014612250565b6121e68360001c6020612250565b6040516020016121f792919061369c565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223991906125e5565b60405180910390fd5b5050565b505050565b505050565b6060600060028360026122639190612ff0565b61226d9190612c7b565b67ffffffffffffffff811115612286576122856133b8565b5b6040519080825280601f01601f1916602001820160405280156122b85781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106122f0576122ef6133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612354576123536133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123949190612ff0565b61239e9190612c7b565b90505b600181111561243e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123e0576123df6133e7565b5b1a60f81b8282815181106123f7576123f66133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612437906136d6565b90506123a1565b5060008414612482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124799061374b565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124c681612491565b81146124d157600080fd5b50565b6000813590506124e3816124bd565b92915050565b6000602082840312156124ff576124fe61248c565b5b600061250d848285016124d4565b91505092915050565b60008115159050919050565b61252b81612516565b82525050565b60006020820190506125466000830184612522565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561258657808201518184015260208101905061256b565b83811115612595576000848401525b50505050565b6000601f19601f8301169050919050565b60006125b78261254c565b6125c18185612557565b93506125d1818560208601612568565b6125da8161259b565b840191505092915050565b600060208201905081810360008301526125ff81846125ac565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061263282612607565b9050919050565b61264281612627565b811461264d57600080fd5b50565b60008135905061265f81612639565b92915050565b6000819050919050565b61267881612665565b811461268357600080fd5b50565b6000813590506126958161266f565b92915050565b600080604083850312156126b2576126b161248c565b5b60006126c085828601612650565b92505060206126d185828601612686565b9150509250929050565b6126e481612665565b82525050565b60006020820190506126ff60008301846126db565b92915050565b60008060006060848603121561271e5761271d61248c565b5b600061272c86828701612650565b935050602061273d86828701612650565b925050604061274e86828701612686565b9150509250925092565b6000819050919050565b61276b81612758565b811461277657600080fd5b50565b60008135905061278881612762565b92915050565b6000602082840312156127a4576127a361248c565b5b60006127b284828501612779565b91505092915050565b6127c481612758565b82525050565b60006020820190506127df60008301846127bb565b92915050565b6000602082840312156127fb576127fa61248c565b5b600061280984828501612650565b91505092915050565b600080604083850312156128295761282861248c565b5b600061283785828601612779565b925050602061284885828601612650565b9150509250929050565b600060ff82169050919050565b61286881612852565b82525050565b6000602082019050612883600083018461285f565b92915050565b61289281612516565b811461289d57600080fd5b50565b6000813590506128af81612889565b92915050565b600080604083850312156128cc576128cb61248c565b5b60006128da85828601612650565b92505060206128eb858286016128a0565b9150509250929050565b600061290082612607565b9050919050565b612910816128f5565b811461291b57600080fd5b50565b60008135905061292d81612907565b92915050565b6000602082840312156129495761294861248c565b5b60006129578482850161291e565b91505092915050565b6000602082840312156129765761297561248c565b5b600061298484828501612686565b91505092915050565b61299681612627565b82525050565b60006040820190506129b1600083018561298d565b6129be602083018461298d565b9392505050565b6129ce816128f5565b82525050565b60006020820190506129e960008301846129c5565b92915050565b60008060408385031215612a0657612a0561248c565b5b6000612a1485828601612650565b9250506020612a2585828601612650565b9150509250929050565b600080600060608486031215612a4857612a4761248c565b5b6000612a5686828701612650565b9350506020612a6786828701612650565b9250506040612a7886828701612650565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac957607f821691505b602082108103612adc57612adb612a82565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612b3e602f83612557565b9150612b4982612ae2565b604082019050919050565b60006020820190508181036000830152612b6d81612b31565b9050919050565b7f496e73756666696369656e742070726976696c65676573000000000000000000600082015250565b6000612baa601783612557565b9150612bb582612b74565b602082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4163636f756e7420616c72656164792061742073657474696e67000000000000600082015250565b6000612c16601a83612557565b9150612c2182612be0565b602082019050919050565b60006020820190508181036000830152612c4581612c09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c8682612665565b9150612c9183612665565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cc657612cc5612c4c565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d2d602583612557565b9150612d3882612cd1565b604082019050919050565b60006020820190508181036000830152612d5c81612d20565b9050919050565b6000604082019050612d78600083018561298d565b612d8560208301846126db565b9392505050565b600081519050612d9b81612889565b92915050565b600060208284031215612db757612db661248c565b5b6000612dc584828501612d8c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e2a602483612557565b9150612e3582612dce565b604082019050919050565b60006020820190508181036000830152612e5981612e1d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ebc602283612557565b9150612ec782612e60565b604082019050919050565b60006020820190508181036000830152612eeb81612eaf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f28601d83612557565b9150612f3382612ef2565b602082019050919050565b60006020820190508181036000830152612f5781612f1b565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b207065722060008201527f6164647265737320697320616c6c6f7765640000000000000000000000000000602082015250565b6000612fba603283612557565b9150612fc582612f5e565b604082019050919050565b60006020820190508181036000830152612fe981612fad565b9050919050565b6000612ffb82612665565b915061300683612665565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303f5761303e612c4c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061308482612665565b915061308f83612665565b92508261309f5761309e61304a565b5b828204905092915050565b60006130b582612665565b91506130c083612665565b9250828210156130d3576130d2612c4c565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061313a602183612557565b9150613145826130de565b604082019050919050565b600060208201905081810360008301526131698161312d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006131cc602283612557565b91506131d782613170565b604082019050919050565b600060208201905081810360008301526131fb816131bf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061325e602583612557565b915061326982613202565b604082019050919050565b6000602082019050818103600083015261328d81613251565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132f0602383612557565b91506132fb82613294565b604082019050919050565b6000602082019050818103600083015261331f816132e3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613382602683612557565b915061338d82613326565b604082019050919050565b600060208201905081810360008301526133b181613375565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061344561344061343b84613416565b613420565b612665565b9050919050565b6134558161342a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61349081612627565b82525050565b60006134a28383613487565b60208301905092915050565b6000602082019050919050565b60006134c68261345b565b6134d08185613466565b93506134db83613477565b8060005b8381101561350c5781516134f38882613496565b97506134fe836134ae565b9250506001810190506134df565b5085935050505092915050565b600061353461352f61352a84612607565b613420565b612607565b9050919050565b600061354682613519565b9050919050565b60006135588261353b565b9050919050565b6135688161354d565b82525050565b600060a08201905061358360008301886126db565b613590602083018761344c565b81810360408301526135a281866134bb565b90506135b1606083018561355f565b6135be60808301846126db565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006136096017836135c8565b9150613614826135d3565b601782019050919050565b600061362a8261254c565b61363481856135c8565b9350613644818560208601612568565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006136866011836135c8565b915061369182613650565b601182019050919050565b60006136a7826135fc565b91506136b3828561361f565b91506136be82613679565b91506136ca828461361f565b91508190509392505050565b60006136e182612665565b9150600082036136f4576136f3612c4c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613735602083612557565b9150613740826136ff565b602082019050919050565b6000602082019050818103600083015261376481613728565b905091905056fea26469706673582212203c4347867035e6ca395287ac3e1cad6a8d6fbf95f6985c8c13b1bd113ff0fc5a64736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a217fddf116100ad578063cea9d26f1161007c578063cea9d26f14610638578063d547741f14610654578063dd62ed3e14610670578063ed56b944146106a0578063f1ec23cf146106be57610206565b8063a217fddf1461059e578063a457c2d7146105bc578063a9059cbb146105ec578063aaccf2751461061c57610206565b806391d14854116100e957806391d148541461051857806395d89b4114610548578063960bfe04146105665780639819d24e1461058257610206565b806370a082311461047e57806372b71986146104ae57806379cc6790146104cc5780638712523e146104e857610206565b80632f2ff15d1161019d578063395093511161016c57806339509351146103c75780633b1ab44c146103f757806340c336bd1461041357806342966c68146104315780635185160f1461044d57610206565b80632f2ff15d14610355578063313ce5671461037157806336568abe1461038f57806336f5218f146103ab57610206565b806323b872dd116101d957806323b872dd146102a7578063248a9ca3146102d75780632ed56837146103075780632eee963b1461033757610206565b806301ffc9a71461020b57806306fdde031461023b578063095ea7b31461025957806318160ddd14610289575b600080fd5b610225600480360381019061022091906124e9565b6106da565b6040516102329190612531565b60405180910390f35b610243610754565b60405161025091906125e5565b60405180910390f35b610273600480360381019061026e919061269b565b6107e6565b6040516102809190612531565b60405180910390f35b610291610809565b60405161029e91906126ea565b60405180910390f35b6102c160048036038101906102bc9190612705565b610813565b6040516102ce9190612531565b60405180910390f35b6102f160048036038101906102ec919061278e565b610842565b6040516102fe91906127ca565b60405180910390f35b610321600480360381019061031c91906127e5565b610862565b60405161032e9190612531565b60405180910390f35b61033f610882565b60405161034c91906127ca565b60405180910390f35b61036f600480360381019061036a9190612812565b6108a6565b005b6103796108c7565b604051610386919061286e565b60405180910390f35b6103a960048036038101906103a49190612812565b6108d0565b005b6103c560048036038101906103c091906128b5565b610953565b005b6103e160048036038101906103dc919061269b565b610abd565b6040516103ee9190612531565b60405180910390f35b610411600480360381019061040c9190612933565b610af4565b005b61041b610b8a565b60405161042891906126ea565b60405180910390f35b61044b60048036038101906104469190612960565b610b90565b005b610467600480360381019061046291906127e5565b610ba4565b60405161047592919061299c565b60405180910390f35b610498600480360381019061049391906127e5565b610c08565b6040516104a591906126ea565b60405180910390f35b6104b6610c50565b6040516104c391906129d4565b60405180910390f35b6104e660048036038101906104e1919061269b565b610c76565b005b61050260048036038101906104fd91906127e5565b610c96565b60405161050f91906126ea565b60405180910390f35b610532600480360381019061052d9190612812565b610cae565b60405161053f9190612531565b60405180910390f35b610550610d19565b60405161055d91906125e5565b60405180910390f35b610580600480360381019061057b9190612960565b610dab565b005b61059c60048036038101906105979190612933565b610e32565b005b6105a6610edc565b6040516105b391906127ca565b60405180910390f35b6105d660048036038101906105d1919061269b565b610ee3565b6040516105e39190612531565b60405180910390f35b6106066004803603810190610601919061269b565b610f5a565b6040516106139190612531565b60405180910390f35b61063660048036038101906106319190612960565b610f7d565b005b610652600480360381019061064d9190612705565b611004565b005b61066e60048036038101906106699190612812565b6110d4565b005b61068a600480360381019061068591906129ef565b6110f5565b60405161069791906126ea565b60405180910390f35b6106a861117c565b6040516106b591906126ea565b60405180910390f35b6106d860048036038101906106d39190612a2f565b611182565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074d575061074c8261135e565b5b9050919050565b60606003805461076390612ab1565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90612ab1565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6000806107f16113c8565b90506107fe8185856113d0565b600191505092915050565b6000600254905090565b60008061081e6113c8565b905061082b858285611599565b610836858585611625565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b7fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2181565b6108af82610842565b6108b8816118a6565b6108c283836118ba565b505050565b60006012905090565b6108d86113c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90612b54565b60405180910390fd5b61094f828261199b565b5050565b6109606000801b33610cae565b8061099157506109907fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612bc0565b60405180910390fd5b801515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612c2c565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610ac86113c8565b9050610ae9818585610ada85896110f5565b610ae49190612c7b565b6113d0565b600191505092915050565b610b016000801b33610cae565b610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612bc0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b86573d6000803e3d6000fd5b5050565b600a5481565b610ba1610b9b6113c8565b82611a7d565b50565b60066020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c8882610c826113c8565b83611599565b610c928282611a7d565b5050565b60076020528060005260406000206000915090505481565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610d2890612ab1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5490612ab1565b8015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b5050505050905090565b610db86000801b33610cae565b80610de95750610de87fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612bc0565b60405180910390fd5b80600a8190555050565b6000801b610e3f816118a6565b81600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000801b81565b600080610eee6113c8565b90506000610efc82866110f5565b905083811015610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890612d43565b60405180910390fd5b610f4e82868684036113d0565b60019250505092915050565b600080610f656113c8565b9050610f72818585611625565b600191505092915050565b610f8a6000801b33610cae565b80610fbb5750610fba7fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190612bc0565b60405180910390fd5b80600b8190555050565b6110116000801b33610cae565b611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790612bc0565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161108b929190612d63565b6020604051808303816000875af11580156110aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190612da1565b50505050565b6110dd82610842565b6110e6816118a6565b6110f0838361199b565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b61118f6000801b33610cae565b806111c057506111bf7fb73fa0cb2416690a6547825d5ccf9cedab6a4cd328635df925e1dfd86cf94c2133610cae565b5b6111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690612bc0565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690612e40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590612ed2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161158c91906126ea565b60405180910390a3505050565b60006115a584846110f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461161f5781811015611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612f3e565b60405180910390fd5b61161e84848484036113d0565b5b50505050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116c95750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116e25750600960009054906101000a900460ff16155b1561189657600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544311611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90612fd0565b60405180910390fd5b43600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a544210801561184c5750600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611895576000612710600b54836118649190612ff0565b61186e9190613079565b9050808261187c91906130aa565b9150611889843083611c53565b6118938184611ed2565b505b5b6118a1838383611c53565b505050565b6118b7816118b26113c8565b6121a9565b50565b6118c48282610cae565b6119975760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193c6113c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119a58282610cae565b15611a795760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a1e6113c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390613150565b60405180910390fd5b611af882600083612246565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b75906131e2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611bd591906130aa565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3a91906126ea565b60405180910390a3611c4e8360008461224b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613274565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890613306565b60405180910390fd5b611d3c838383612246565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613398565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e559190612c7b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb991906126ea565b60405180910390a3611ecc84848461224b565b50505050565b6001600960006101000a81548160ff0219169083151502179055506000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090506000816020015190506000826000015190506000600267ffffffffffffffff811115612016576120156133b8565b5b6040519080825280602002602001820160405280156120445781602001602082028036833780820191505090505b509050308160008151811061205c5761205b6133e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505082816001815181106120ab576120aa6133e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120f03083886113d0565b8173ffffffffffffffffffffffffffffffffffffffff16635c11d79587600084600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161215495949392919061356e565b600060405180830381600087803b15801561216e57600080fd5b505af1158015612182573d6000803e3d6000fd5b505050506000600960006101000a81548160ff021916908315150217905550505050505050565b6121b38282610cae565b612242576121d88173ffffffffffffffffffffffffffffffffffffffff166014612250565b6121e68360001c6020612250565b6040516020016121f792919061369c565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223991906125e5565b60405180910390fd5b5050565b505050565b505050565b6060600060028360026122639190612ff0565b61226d9190612c7b565b67ffffffffffffffff811115612286576122856133b8565b5b6040519080825280601f01601f1916602001820160405280156122b85781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106122f0576122ef6133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612354576123536133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123949190612ff0565b61239e9190612c7b565b90505b600181111561243e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123e0576123df6133e7565b5b1a60f81b8282815181106123f7576123f66133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612437906136d6565b90506123a1565b5060008414612482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124799061374b565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124c681612491565b81146124d157600080fd5b50565b6000813590506124e3816124bd565b92915050565b6000602082840312156124ff576124fe61248c565b5b600061250d848285016124d4565b91505092915050565b60008115159050919050565b61252b81612516565b82525050565b60006020820190506125466000830184612522565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561258657808201518184015260208101905061256b565b83811115612595576000848401525b50505050565b6000601f19601f8301169050919050565b60006125b78261254c565b6125c18185612557565b93506125d1818560208601612568565b6125da8161259b565b840191505092915050565b600060208201905081810360008301526125ff81846125ac565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061263282612607565b9050919050565b61264281612627565b811461264d57600080fd5b50565b60008135905061265f81612639565b92915050565b6000819050919050565b61267881612665565b811461268357600080fd5b50565b6000813590506126958161266f565b92915050565b600080604083850312156126b2576126b161248c565b5b60006126c085828601612650565b92505060206126d185828601612686565b9150509250929050565b6126e481612665565b82525050565b60006020820190506126ff60008301846126db565b92915050565b60008060006060848603121561271e5761271d61248c565b5b600061272c86828701612650565b935050602061273d86828701612650565b925050604061274e86828701612686565b9150509250925092565b6000819050919050565b61276b81612758565b811461277657600080fd5b50565b60008135905061278881612762565b92915050565b6000602082840312156127a4576127a361248c565b5b60006127b284828501612779565b91505092915050565b6127c481612758565b82525050565b60006020820190506127df60008301846127bb565b92915050565b6000602082840312156127fb576127fa61248c565b5b600061280984828501612650565b91505092915050565b600080604083850312156128295761282861248c565b5b600061283785828601612779565b925050602061284885828601612650565b9150509250929050565b600060ff82169050919050565b61286881612852565b82525050565b6000602082019050612883600083018461285f565b92915050565b61289281612516565b811461289d57600080fd5b50565b6000813590506128af81612889565b92915050565b600080604083850312156128cc576128cb61248c565b5b60006128da85828601612650565b92505060206128eb858286016128a0565b9150509250929050565b600061290082612607565b9050919050565b612910816128f5565b811461291b57600080fd5b50565b60008135905061292d81612907565b92915050565b6000602082840312156129495761294861248c565b5b60006129578482850161291e565b91505092915050565b6000602082840312156129765761297561248c565b5b600061298484828501612686565b91505092915050565b61299681612627565b82525050565b60006040820190506129b1600083018561298d565b6129be602083018461298d565b9392505050565b6129ce816128f5565b82525050565b60006020820190506129e960008301846129c5565b92915050565b60008060408385031215612a0657612a0561248c565b5b6000612a1485828601612650565b9250506020612a2585828601612650565b9150509250929050565b600080600060608486031215612a4857612a4761248c565b5b6000612a5686828701612650565b9350506020612a6786828701612650565b9250506040612a7886828701612650565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac957607f821691505b602082108103612adc57612adb612a82565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612b3e602f83612557565b9150612b4982612ae2565b604082019050919050565b60006020820190508181036000830152612b6d81612b31565b9050919050565b7f496e73756666696369656e742070726976696c65676573000000000000000000600082015250565b6000612baa601783612557565b9150612bb582612b74565b602082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4163636f756e7420616c72656164792061742073657474696e67000000000000600082015250565b6000612c16601a83612557565b9150612c2182612be0565b602082019050919050565b60006020820190508181036000830152612c4581612c09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c8682612665565b9150612c9183612665565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cc657612cc5612c4c565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d2d602583612557565b9150612d3882612cd1565b604082019050919050565b60006020820190508181036000830152612d5c81612d20565b9050919050565b6000604082019050612d78600083018561298d565b612d8560208301846126db565b9392505050565b600081519050612d9b81612889565b92915050565b600060208284031215612db757612db661248c565b5b6000612dc584828501612d8c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e2a602483612557565b9150612e3582612dce565b604082019050919050565b60006020820190508181036000830152612e5981612e1d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ebc602283612557565b9150612ec782612e60565b604082019050919050565b60006020820190508181036000830152612eeb81612eaf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f28601d83612557565b9150612f3382612ef2565b602082019050919050565b60006020820190508181036000830152612f5781612f1b565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b207065722060008201527f6164647265737320697320616c6c6f7765640000000000000000000000000000602082015250565b6000612fba603283612557565b9150612fc582612f5e565b604082019050919050565b60006020820190508181036000830152612fe981612fad565b9050919050565b6000612ffb82612665565b915061300683612665565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303f5761303e612c4c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061308482612665565b915061308f83612665565b92508261309f5761309e61304a565b5b828204905092915050565b60006130b582612665565b91506130c083612665565b9250828210156130d3576130d2612c4c565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061313a602183612557565b9150613145826130de565b604082019050919050565b600060208201905081810360008301526131698161312d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006131cc602283612557565b91506131d782613170565b604082019050919050565b600060208201905081810360008301526131fb816131bf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061325e602583612557565b915061326982613202565b604082019050919050565b6000602082019050818103600083015261328d81613251565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132f0602383612557565b91506132fb82613294565b604082019050919050565b6000602082019050818103600083015261331f816132e3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613382602683612557565b915061338d82613326565b604082019050919050565b600060208201905081810360008301526133b181613375565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061344561344061343b84613416565b613420565b612665565b9050919050565b6134558161342a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61349081612627565b82525050565b60006134a28383613487565b60208301905092915050565b6000602082019050919050565b60006134c68261345b565b6134d08185613466565b93506134db83613477565b8060005b8381101561350c5781516134f38882613496565b97506134fe836134ae565b9250506001810190506134df565b5085935050505092915050565b600061353461352f61352a84612607565b613420565b612607565b9050919050565b600061354682613519565b9050919050565b60006135588261353b565b9050919050565b6135688161354d565b82525050565b600060a08201905061358360008301886126db565b613590602083018761344c565b81810360408301526135a281866134bb565b90506135b1606083018561355f565b6135be60808301846126db565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006136096017836135c8565b9150613614826135d3565b601782019050919050565b600061362a8261254c565b61363481856135c8565b9350613644818560208601612568565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006136866011836135c8565b915061369182613650565b601182019050919050565b60006136a7826135fc565b91506136b3828561361f565b91506136be82613679565b91506136ca828461361f565b91508190509392505050565b60006136e182612665565b9150600082036136f4576136f3612c4c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613735602083612557565b9150613740826136ff565b602082019050919050565b6000602082019050818103600083015261376481613728565b905091905056fea26469706673582212203c4347867035e6ca395287ac3e1cad6a8d6fbf95f6985c8c13b1bd113ff0fc5a64736f6c634300080f0033

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.