ETH Price: $2,292.36 (+1.24%)

Token

X Finance Token (XFI)
 

Overview

Max Total Supply

1,000,001,000,000,000 XFI

Holders

118

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
fuckingrichwhale42069.eth
Balance
3,323,577.982589086666334426 XFI

Value
$0.00
0xe3b01258c439591fae1e7d6b46c592e32a5cbf7d
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:
XFinanceToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : XFinanceToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import '@openzeppelin/contracts/access/AccessControlEnumerable.sol';
import '@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol';
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import './Interfaces/IShare.sol';

contract XFinanceToken is ERC20Burnable, AccessControlEnumerable, IShare {
	using SafeMath for uint256;

	uint256 public maxCap;
	bytes32 private constant _minterRole = keccak256('minterrole');

	mapping(address => uint256) private _mintLimit;
	mapping(address => uint256) private _mintedAmount;

	bool private _tradeable;
	mapping(address => bool) public isExcludedFromLimit;

	uint256 public buyTax = 4;	// 4% buy tax
	uint256 public sellTax = 4;		// 4% sell tax
	uint256 public swapTokensAtAmount;	// threadhold for swapping fee tokens to ether

	bool private swapping = false;
	bool public swappable = true;

	mapping (address => bool) public isExcludedFromTax;

	address public operator;

	IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

	event MinterRegistered(address indexed account, uint256 mintLimit);
	event MinterUpdated(
		address indexed account,
		uint256 oldLimit,
		uint256 mintLimit
	);
	event MinterRemoved(address indexed account);
	event NewMaxCap(uint256 newMaxCap);

	/**
	 * @notice Constructs the Bat True Bond ERC-20 contract.
	 */
	constructor(uint256 _maxCap) ERC20('X Finance Token', 'XFI') {
		IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
		uniswapV2Router = _uniswapV2Router;
		isExcludedFromLimit[address(uniswapV2Router)] = true;
		uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

		swapTokensAtAmount = _maxCap * 5 / 1000;

		_setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
		_setupRole(_minterRole, msg.sender);
		isExcludedFromLimit[msg.sender] = true;
		isExcludedFromLimit[address(this)] = true;
		isExcludedFromTax[msg.sender] = true;
		isExcludedFromTax[address(this)] = true;
		operator = msg.sender;

		maxCap = _maxCap;
		_mint(msg.sender, maxCap);
	}

	receive() external payable {}

	/**
	 * @notice Operator mints basis bonds to a recipient
	 * @param recipient_ The address of recipient
	 * @param amount_ The amount of basis bonds to mint to
	 * @return whether the process has been done
	 */
	function mint(address recipient_, uint256 amount_)
		external
		override
		onlyRole(_minterRole)
		returns (bool)
	{
		require(totalSupply().add(amount_) <= maxCap, 'Exceeds max cap');

		uint256 newMintTotalForMinter = _mintedAmount[_msgSender()].add(
			amount_
		);
		require(
			newMintTotalForMinter <= _mintLimit[_msgSender()],
			'Exceeds minter limit'
		);

		uint256 balanceBefore = balanceOf(recipient_);
		_mint(recipient_, amount_);
		uint256 balanceAfter = balanceOf(recipient_);

		_mintedAmount[_msgSender()] = newMintTotalForMinter;
		return balanceAfter > balanceBefore;
	}

	function updateTax(uint256 _buyTax, uint256 _sellTax) external onlyRole(DEFAULT_ADMIN_ROLE) {
		require(buyTax + sellTax < 100, "too high tax");
		buyTax = _buyTax;
		sellTax = _sellTax;
	}

	function _transfer(address _sender, address _recipient, uint256 _amount) internal override {
		require(_tradeable || isExcludedFromLimit[_sender] || isExcludedFromLimit[_recipient], "not launched yet");

		if (!isExcludedFromTax[_sender] && !isExcludedFromTax[_recipient]) {
			if (swappable &&
				!swapping &&
				_recipient == uniswapV2Pair
			) {
				swapping = true;
				swapFeeAndSend();
				swapping = false;
			}

			if (!swapping) {
				if (_sender == uniswapV2Pair) {		// if buy
					uint feeAmount = _amount * buyTax / 100;
					super._transfer(_sender, address(this), feeAmount);
					_amount = _amount - feeAmount;
				} else if (_recipient == uniswapV2Pair) {		// if sell
					uint feeAmount = _amount * sellTax / 100;
					super._transfer(_sender, address(this), feeAmount);
					_amount = _amount - feeAmount;
				}
			}

		}
		super._transfer(_sender, _recipient, _amount);
	}

	function swapFeeAndSend() private {
		uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance < swapTokensAtAmount) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        (success, ) = operator.call{value: ethBalance}("");
	}

	function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

	function registerMinter(address minter_, uint256 amount_)
		external
		onlyRole(DEFAULT_ADMIN_ROLE)
	{
		require(amount_ > 0, '=0');
		require(_mintLimit[minter_] == 0, 'minter already exists');
		require(
			_mintedAmount[minter_] <= amount_,
			'minted amount more than amount'
		);

		_mintLimit[minter_] = amount_;
		grantRole(_minterRole, minter_);

		emit MinterRegistered(minter_, amount_);
	}

	function updateSwappable(bool _is) external onlyRole(DEFAULT_ADMIN_ROLE) {
		swappable = _is;
	}

	function updateMinter(address minter_, uint256 amount_)
		external
		onlyRole(DEFAULT_ADMIN_ROLE)
	{
		require(amount_ > 0, '=0');
		require(_mintLimit[minter_] > 0, 'minter does not exist');
		require(
			_mintedAmount[minter_] <= amount_,
			'minted amount more than amount'
		);

		uint256 oldLimit = _mintLimit[minter_];

		_mintLimit[minter_] = amount_;

		emit MinterUpdated(minter_, oldLimit, amount_);
	}

	function removeMinter(address minter_)
		external
		onlyRole(DEFAULT_ADMIN_ROLE)
	{
		_mintLimit[minter_] = 0;
		revokeRole(_minterRole, minter_);

		emit MinterRemoved(minter_);
	}

	function updateMaxCap(uint256 maxCap_)
		external
		onlyRole(DEFAULT_ADMIN_ROLE)
	{
		require(maxCap_ >= totalSupply(), 'max cap must more than minted');
		maxCap = maxCap_;
		emit NewMaxCap(maxCap);
	}

	function mintLimitOf(address minter_)
		external
		view
		override
		returns (uint256)
	{
		return _mintLimit[minter_];
	}

	function mintedAmountOf(address minter_)
		external
		view
		override
		returns (uint256)
	{
		return _mintedAmount[minter_];
	}

	function canMint(address minter_, uint256 amount_)
		external
		view
		override
		returns (bool)
	{
		return
			(totalSupply().add(amount_) <= maxCap) &&
			(_mintedAmount[minter_].add(amount_) <= _mintLimit[minter_]);
	}

	function setTrade() external onlyRole(DEFAULT_ADMIN_ROLE) {
		_tradeable = true;
	}

	function excludeFromLimit(address _user, bool _is) external onlyRole(DEFAULT_ADMIN_ROLE) {
		isExcludedFromLimit[_user] = _is;
	}

	function excludeFromTax(address _user, bool _is) external onlyRole(DEFAULT_ADMIN_ROLE) {
		isExcludedFromTax[_user] = _is;
	}
}

File 2 of 20 : AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

File 3 of 20 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 4 of 20 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 20 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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 6 of 20 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 7 of 20 : IShare.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;
import './IMintableToken.sol';

interface IShare is IMintableToken {
	function mintLimitOf(address minter_) external view returns (uint256);

	function mintedAmountOf(address minter_) external view returns (uint256);

	function canMint(address mint_, uint256 amount)
		external
		view
		returns (bool);
}

File 8 of 20 : IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 9 of 20 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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, _msgSender());
        _;
    }

    /**
     * @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 override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @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 {
        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 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.
     */
    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.
     */
    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`.
     */
    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.
     *
     * [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.
     */
    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.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 10 of 20 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 11 of 20 : 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 12 of 20 : 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 13 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

File 14 of 20 : 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 15 of 20 : 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);
}

File 16 of 20 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 17 of 20 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 18 of 20 : 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 19 of 20 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

File 20 of 20 : IMintableToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

interface IMintableToken {
	function mint(address recipient_, uint256 amount_) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxCap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintLimit","type":"uint256"}],"name":"MinterRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintLimit","type":"uint256"}],"name":"MinterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxCap","type":"uint256"}],"name":"NewMaxCap","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromTax","outputs":[],"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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"mintLimitOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"mintedAmountOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"registerMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","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":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setTrade","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":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swappable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxCap_","type":"uint256"}],"name":"updateMaxCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"updateMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_is","type":"bool"}],"name":"updateSwappable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526004600c819055600d55600f805461ffff19166101001790553480156200002a57600080fd5b5060405162002f0438038062002f048339810160408190526200004d9162000583565b6040518060400160405280600f81526020016e2c102334b730b731b2902a37b5b2b760891b8152506040518060400160405280600381526020016258464960e81b8152508160039081620000a2919062000641565b506004620000b1828262000641565b5050737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526000819052600b60209081527fd1def2fe8304e5e69b6f2907349cddd4c272de4ef47368d65b87ae00d7f10147805460ff191660011790556040805163c45a015560e01b81529051929350839263c45a0155926004808401939192918290030181865afa15801562000143573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016991906200070d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dd91906200070d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025191906200070d565b6001600160a01b031660a0526103e86200026d83600562000755565b6200027991906200076f565b600e556200028960003362000332565b620002b57f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc87433362000332565b336000818152600b602090815260408083208054600160ff19918216811790925530808652838620805483168417905586865260109094528285208054821683179055928452922080549091169091179055601180546001600160a01b0319168217905560078390556200032a908362000342565b5050620007a8565b6200033e82826200042a565b5050565b6001600160a01b0382166200039d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003b1919062000792565b90915550506001600160a01b03821660009081526020819052604081208054839290620003e090849062000792565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200044182826200046d60201b620013c51760201c565b6000828152600660209081526040909120620004689183906200144b62000511821b17901c565b505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff166200033e5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004cd3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000528836001600160a01b03841662000531565b90505b92915050565b60008181526001830160205260408120546200057a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200052b565b5060006200052b565b6000602082840312156200059657600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005c857607f821691505b602082108103620005e957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046857600081815260208120601f850160051c81016020861015620006185750805b601f850160051c820191505b81811015620006395782815560010162000624565b505050505050565b81516001600160401b038111156200065d576200065d6200059d565b62000675816200066e8454620005b3565b84620005ef565b602080601f831160018114620006ad5760008415620006945750858301515b600019600386901b1c1916600185901b17855562000639565b600085815260208120601f198616915b82811015620006de57888601518255948401946001909101908401620006bd565b5085821015620006fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200072057600080fd5b81516001600160a01b03811681146200073857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200052b576200052b6200073f565b6000826200078d57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200052b576200052b6200073f565b60805160a05161270c620007f86000396000818161054f015281816116ba0152818161171f015261179301526000818161032b0152818161205901528181612112015261214e015261270c6000f3fe6080604052600436106102765760003560e01c806358f1c1491161014f578063a9059cbb116100c1578063d547741f1161007a578063d547741f146107e3578063d94160e014610803578063dd62ed3e14610833578063e2f4560514610879578063e81ba0801461088f578063fe2f692c146108af57600080fd5b8063a9059cbb1461071d578063b8f883f91461073d578063c6a306471461075d578063ca15c8731461077d578063cb4ca6311461079d578063cc1776d3146107cd57600080fd5b80638acfb34c116101135780638acfb34c146106735780639010d07c1461069357806391d14854146106b357806395d89b41146106d3578063a217fddf146106e8578063a457c2d7146106fd57600080fd5b806358f1c149146105a757806360679d94146105c757806370a08231146105fd57806379cc67901461063357806381905bf81461065357600080fd5b80632f2ff15d116101e857806339509351116101ac57806339509351146104dd57806340c10f19146104fd57806342966c681461051d57806349bd5a5e1461053d5780634f7041a514610571578063570ca7351461058757600080fd5b80632f2ff15d1461043f5780632f37aa6d146104615780633092afd514610481578063313ce567146104a157806336568abe146104bd57600080fd5b806318160ddd1161023a57806318160ddd146103655780631857aeae14610384578063213727e7146103a357806323548b8b146103d957806323b872dd146103ef578063248a9ca31461040f57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063095ea7b3146102d95780630d5e34a4146102f95780631694505e1461031957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d3660046122ad565b6108c4565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108ef565b6040516102ae91906122fb565b3480156102e557600080fd5b506102a26102f4366004612343565b610981565b34801561030557600080fd5b506102a2610314366004612343565b610997565b34801561032557600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ae565b34801561037157600080fd5b506002545b6040519081526020016102ae565b34801561039057600080fd5b50600f546102a290610100900460ff1681565b3480156103af57600080fd5b506103766103be36600461236f565b6001600160a01b031660009081526008602052604090205490565b3480156103e557600080fd5b5061037660075481565b3480156103fb57600080fd5b506102a261040a36600461238c565b6109f1565b34801561041b57600080fd5b5061037661042a3660046123cd565b60009081526005602052604090206001015490565b34801561044b57600080fd5b5061045f61045a3660046123e6565b610aa0565b005b34801561046d57600080fd5b5061045f61047c366004612416565b610acb565b34801561048d57600080fd5b5061045f61049c36600461236f565b610b31565b3480156104ad57600080fd5b50604051601281526020016102ae565b3480156104c957600080fd5b5061045f6104d83660046123e6565b610bb8565b3480156104e957600080fd5b506102a26104f8366004612343565b610c36565b34801561050957600080fd5b506102a2610518366004612343565b610c72565b34801561052957600080fd5b5061045f6105383660046123cd565b610dbb565b34801561054957600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561057d57600080fd5b50610376600c5481565b34801561059357600080fd5b5060115461034d906001600160a01b031681565b3480156105b357600080fd5b5061045f6105c236600461244d565b610dc8565b3480156105d357600080fd5b506103766105e236600461236f565b6001600160a01b031660009081526009602052604090205490565b34801561060957600080fd5b5061037661061836600461236f565b6001600160a01b031660009081526020819052604090205490565b34801561063f57600080fd5b5061045f61064e366004612343565b610def565b34801561065f57600080fd5b5061045f61066e366004612468565b610e70565b34801561067f57600080fd5b5061045f61068e366004612343565b610ea8565b34801561069f57600080fd5b5061034d6106ae366004612416565b61103c565b3480156106bf57600080fd5b506102a26106ce3660046123e6565b611054565b3480156106df57600080fd5b506102cc61107f565b3480156106f457600080fd5b50610376600081565b34801561070957600080fd5b506102a2610718366004612343565b61108e565b34801561072957600080fd5b506102a2610738366004612343565b611127565b34801561074957600080fd5b5061045f610758366004612343565b611134565b34801561076957600080fd5b5061045f610778366004612468565b61129a565b34801561078957600080fd5b506103766107983660046123cd565b6112d2565b3480156107a957600080fd5b506102a26107b836600461236f565b60106020526000908152604090205460ff1681565b3480156107d957600080fd5b50610376600d5481565b3480156107ef57600080fd5b5061045f6107fe3660046123e6565b6112e9565b34801561080f57600080fd5b506102a261081e36600461236f565b600b6020526000908152604090205460ff1681565b34801561083f57600080fd5b5061037661084e36600461249d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561088557600080fd5b50610376600e5481565b34801561089b57600080fd5b5061045f6108aa3660046123cd565b61130f565b3480156108bb57600080fd5b5061045f6113a9565b60006001600160e01b03198216635a05180f60e01b14806108e957506108e982611460565b92915050565b6060600380546108fe906124cb565b80601f016020809104026020016040519081016040528092919081815260200182805461092a906124cb565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b600061098e338484611495565b50600192915050565b60006007546109af836109a960025490565b906115b9565b111580156109ea57506001600160a01b0383166000908152600860209081526040808320546009909252909120546109e790846115b9565b11155b9392505050565b60006109fe8484846115c5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a885760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610a958533858403611495565b506001949350505050565b600082815260056020526040902060010154610abc813361180c565b610ac68383611870565b505050565b6000610ad7813361180c565b6064600d54600c54610ae9919061251b565b10610b255760405162461bcd60e51b815260206004820152600c60248201526b0e8dede40d0d2ced040e8c2f60a31b6044820152606401610a7f565b50600c91909155600d55565b6000610b3d813361180c565b6001600160a01b038216600090815260086020526040812055610b807f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc8743836112e9565b6040516001600160a01b038316907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a25050565b6001600160a01b0381163314610c285760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a7f565b610c328282611892565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161098e918590610c6d90869061251b565b611495565b60007f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc8743610c9f813361180c565b600754610caf846109a960025490565b1115610cef5760405162461bcd60e51b815260206004820152600f60248201526e045786365656473206d61782063617608c1b6044820152606401610a7f565b33600090815260096020526040812054610d0990856115b9565b33600090815260086020526040902054909150811115610d625760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81b5a5b9d195c881b1a5b5a5d60621b6044820152606401610a7f565b6001600160a01b038516600090815260208190526040902054610d8586866118b4565b6001600160a01b039590951660009081526020818152604080832054338452600990925290912091909155939093119392505050565b610dc53382611993565b50565b6000610dd4813361180c565b50600f80549115156101000261ff0019909216919091179055565b6000610dfb833361084e565b905081811015610e595760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610a7f565b610e668333848403611495565b610ac68383611993565b6000610e7c813361180c565b506001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000610eb4813361180c565b60008211610ee95760405162461bcd60e51b815260206004820152600260248201526103d360f41b6044820152606401610a7f565b6001600160a01b03831660009081526008602052604090205415610f475760405162461bcd60e51b81526020600482015260156024820152746d696e74657220616c72656164792065786973747360581b6044820152606401610a7f565b6001600160a01b038316600090815260096020526040902054821015610faf5760405162461bcd60e51b815260206004820152601e60248201527f6d696e74656420616d6f756e74206d6f7265207468616e20616d6f756e7400006044820152606401610a7f565b6001600160a01b0383166000908152600860205260409020829055610ff47f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc874384610aa0565b826001600160a01b03167f7704af8521fe5ac54844f1dacefeca1abd213d981badb3abd7ab20249117387c8360405161102f91815260200190565b60405180910390a2505050565b60008281526006602052604081206109ea9083611ae1565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546108fe906124cb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a7f565b61111d3385858403611495565b5060019392505050565b600061098e3384846115c5565b6000611140813361180c565b600082116111755760405162461bcd60e51b815260206004820152600260248201526103d360f41b6044820152606401610a7f565b6001600160a01b0383166000908152600860205260409020546111d25760405162461bcd60e51b81526020600482015260156024820152741b5a5b9d195c88191bd95cc81b9bdd08195e1a5cdd605a1b6044820152606401610a7f565b6001600160a01b03831660009081526009602052604090205482101561123a5760405162461bcd60e51b815260206004820152601e60248201527f6d696e74656420616d6f756e74206d6f7265207468616e20616d6f756e7400006044820152606401610a7f565b6001600160a01b038316600081815260086020908152604091829020805490869055825181815291820186905292917f41f8e84d7dfe728c36b96c2cd45dd1a40b936b3f9ad3b412137ea2eeb77af6bb910160405180910390a250505050565b60006112a6813361180c565b506001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b60008181526006602052604081206108e990611aed565b600082815260056020526040902060010154611305813361180c565b610ac68383611892565b600061131b813361180c565b60025482101561136d5760405162461bcd60e51b815260206004820152601d60248201527f6d617820636170206d757374206d6f7265207468616e206d696e7465640000006044820152606401610a7f565b60078290556040518281527f1784717ece27c42add482451cc6c375bb4b8d89fff196fef45f7ed64cf5979489060200160405180910390a15050565b60006113b5813361180c565b50600a805460ff19166001179055565b6113cf8282611054565b610c325760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556114073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006109ea836001600160a01b038416611af7565b60006001600160e01b03198216637965db0b60e01b14806108e957506301ffc9a760e01b6001600160e01b03198316146108e9565b6001600160a01b0383166114f75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a7f565b6001600160a01b0382166115585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a7f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109ea828461251b565b600a5460ff16806115ee57506001600160a01b0383166000908152600b602052604090205460ff165b8061161157506001600160a01b0382166000908152600b602052604090205460ff165b6116505760405162461bcd60e51b815260206004820152601060248201526f1b9bdd081b185d5b98da1959081e595d60821b6044820152606401610a7f565b6001600160a01b03831660009081526010602052604090205460ff1615801561169257506001600160a01b03821660009081526010602052604090205460ff16155b1561180157600f54610100900460ff1680156116b15750600f5460ff16155b80156116ee57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b1561171357600f805460ff19166001179055611708611b46565b600f805460ff191690555b600f5460ff16611801577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036117915760006064600c5483611768919061252e565b6117729190612545565b905061177f843083611bf1565b6117898183612567565b915050611801565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036118015760006064600d54836117dc919061252e565b6117e69190612545565b90506117f3843083611bf1565b6117fd8183612567565b9150505b610ac6838383611bf1565b6118168282611054565b610c325761182e816001600160a01b03166014611dc0565b611839836020611dc0565b60405160200161184a92919061257a565b60408051601f198184030181529082905262461bcd60e51b8252610a7f916004016122fb565b61187a82826113c5565b6000828152600660205260409020610ac6908261144b565b61189c8282611f5c565b6000828152600660205260409020610ac69082611fc3565b6001600160a01b03821661190a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a7f565b806002600082825461191c919061251b565b90915550506001600160a01b0382166000908152602081905260408120805483929061194990849061251b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119f35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a7f565b6001600160a01b03821660009081526020819052604090205481811015611a675760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a7f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611a96908490612567565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006109ea8383611fd8565b60006108e9825490565b6000818152600183016020526040812054611b3e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108e9565b5060006108e9565b3060009081526020819052604081205490506000600e54821015611b68575050565b600e54611b7690601461252e565b821115611b8e57600e54611b8b90601461252e565b91505b611b9782612002565b60115460405147916001600160a01b0316908290600081818185875af1925050503d8060008114611be4576040519150601f19603f3d011682016040523d82523d6000602084013e611be9565b606091505b505050505050565b6001600160a01b038316611c555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a7f565b6001600160a01b038216611cb75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a7f565b6001600160a01b03831660009081526020819052604090205481811015611d2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a7f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d6690849061251b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611db291815260200190565b60405180910390a350505050565b60606000611dcf83600261252e565b611dda90600261251b565b67ffffffffffffffff811115611df257611df26125ef565b6040519080825280601f01601f191660200182016040528015611e1c576020820181803683370190505b509050600360fc1b81600081518110611e3757611e37612605565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e6657611e66612605565b60200101906001600160f81b031916908160001a9053506000611e8a84600261252e565b611e9590600161251b565b90505b6001811115611f0d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611ec957611ec9612605565b1a60f81b828281518110611edf57611edf612605565b60200101906001600160f81b031916908160001a90535060049490941c93611f068161261b565b9050611e98565b5083156109ea5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a7f565b611f668282611054565b15610c325760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006109ea836001600160a01b0384166121ba565b6000826000018281548110611fef57611fef612605565b9060005260206000200154905092915050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061203757612037612605565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d99190612632565b816001815181106120ec576120ec612605565b60200260200101906001600160a01b031690816001600160a01b031681525050612137307f000000000000000000000000000000000000000000000000000000000000000084611495565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061218c90859060009086903090429060040161264f565b600060405180830381600087803b1580156121a657600080fd5b505af1158015611be9573d6000803e3d6000fd5b600081815260018301602052604081205480156122a35760006121de600183612567565b85549091506000906121f290600190612567565b905081811461225757600086600001828154811061221257612212612605565b906000526020600020015490508087600001848154811061223557612235612605565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612268576122686126c0565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108e9565b60009150506108e9565b6000602082840312156122bf57600080fd5b81356001600160e01b0319811681146109ea57600080fd5b60005b838110156122f25781810151838201526020016122da565b50506000910152565b602081526000825180602084015261231a8160408501602087016122d7565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610dc557600080fd5b6000806040838503121561235657600080fd5b82356123618161232e565b946020939093013593505050565b60006020828403121561238157600080fd5b81356109ea8161232e565b6000806000606084860312156123a157600080fd5b83356123ac8161232e565b925060208401356123bc8161232e565b929592945050506040919091013590565b6000602082840312156123df57600080fd5b5035919050565b600080604083850312156123f957600080fd5b82359150602083013561240b8161232e565b809150509250929050565b6000806040838503121561242957600080fd5b50508035926020909101359150565b8035801515811461244857600080fd5b919050565b60006020828403121561245f57600080fd5b6109ea82612438565b6000806040838503121561247b57600080fd5b82356124868161232e565b915061249460208401612438565b90509250929050565b600080604083850312156124b057600080fd5b82356124bb8161232e565b9150602083013561240b8161232e565b600181811c908216806124df57607f821691505b6020821081036124ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e9576108e9612505565b80820281158282048414176108e9576108e9612505565b60008261256257634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108e9576108e9612505565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125b28160178501602088016122d7565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516125e38160288401602088016122d7565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161262a5761262a612505565b506000190190565b60006020828403121561264457600080fd5b81516109ea8161232e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561269f5784516001600160a01b03168352938301939183019160010161267a565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208063bca5f2b715132cf83e419b74ac48a0fefc9522b1e96534785e9031ad55ae64736f6c634300081100330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

Deployed Bytecode

0x6080604052600436106102765760003560e01c806358f1c1491161014f578063a9059cbb116100c1578063d547741f1161007a578063d547741f146107e3578063d94160e014610803578063dd62ed3e14610833578063e2f4560514610879578063e81ba0801461088f578063fe2f692c146108af57600080fd5b8063a9059cbb1461071d578063b8f883f91461073d578063c6a306471461075d578063ca15c8731461077d578063cb4ca6311461079d578063cc1776d3146107cd57600080fd5b80638acfb34c116101135780638acfb34c146106735780639010d07c1461069357806391d14854146106b357806395d89b41146106d3578063a217fddf146106e8578063a457c2d7146106fd57600080fd5b806358f1c149146105a757806360679d94146105c757806370a08231146105fd57806379cc67901461063357806381905bf81461065357600080fd5b80632f2ff15d116101e857806339509351116101ac57806339509351146104dd57806340c10f19146104fd57806342966c681461051d57806349bd5a5e1461053d5780634f7041a514610571578063570ca7351461058757600080fd5b80632f2ff15d1461043f5780632f37aa6d146104615780633092afd514610481578063313ce567146104a157806336568abe146104bd57600080fd5b806318160ddd1161023a57806318160ddd146103655780631857aeae14610384578063213727e7146103a357806323548b8b146103d957806323b872dd146103ef578063248a9ca31461040f57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063095ea7b3146102d95780630d5e34a4146102f95780631694505e1461031957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d3660046122ad565b6108c4565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108ef565b6040516102ae91906122fb565b3480156102e557600080fd5b506102a26102f4366004612343565b610981565b34801561030557600080fd5b506102a2610314366004612343565b610997565b34801561032557600080fd5b5061034d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ae565b34801561037157600080fd5b506002545b6040519081526020016102ae565b34801561039057600080fd5b50600f546102a290610100900460ff1681565b3480156103af57600080fd5b506103766103be36600461236f565b6001600160a01b031660009081526008602052604090205490565b3480156103e557600080fd5b5061037660075481565b3480156103fb57600080fd5b506102a261040a36600461238c565b6109f1565b34801561041b57600080fd5b5061037661042a3660046123cd565b60009081526005602052604090206001015490565b34801561044b57600080fd5b5061045f61045a3660046123e6565b610aa0565b005b34801561046d57600080fd5b5061045f61047c366004612416565b610acb565b34801561048d57600080fd5b5061045f61049c36600461236f565b610b31565b3480156104ad57600080fd5b50604051601281526020016102ae565b3480156104c957600080fd5b5061045f6104d83660046123e6565b610bb8565b3480156104e957600080fd5b506102a26104f8366004612343565b610c36565b34801561050957600080fd5b506102a2610518366004612343565b610c72565b34801561052957600080fd5b5061045f6105383660046123cd565b610dbb565b34801561054957600080fd5b5061034d7f0000000000000000000000005a683aced237b6609688659af0700a14001b31a581565b34801561057d57600080fd5b50610376600c5481565b34801561059357600080fd5b5060115461034d906001600160a01b031681565b3480156105b357600080fd5b5061045f6105c236600461244d565b610dc8565b3480156105d357600080fd5b506103766105e236600461236f565b6001600160a01b031660009081526009602052604090205490565b34801561060957600080fd5b5061037661061836600461236f565b6001600160a01b031660009081526020819052604090205490565b34801561063f57600080fd5b5061045f61064e366004612343565b610def565b34801561065f57600080fd5b5061045f61066e366004612468565b610e70565b34801561067f57600080fd5b5061045f61068e366004612343565b610ea8565b34801561069f57600080fd5b5061034d6106ae366004612416565b61103c565b3480156106bf57600080fd5b506102a26106ce3660046123e6565b611054565b3480156106df57600080fd5b506102cc61107f565b3480156106f457600080fd5b50610376600081565b34801561070957600080fd5b506102a2610718366004612343565b61108e565b34801561072957600080fd5b506102a2610738366004612343565b611127565b34801561074957600080fd5b5061045f610758366004612343565b611134565b34801561076957600080fd5b5061045f610778366004612468565b61129a565b34801561078957600080fd5b506103766107983660046123cd565b6112d2565b3480156107a957600080fd5b506102a26107b836600461236f565b60106020526000908152604090205460ff1681565b3480156107d957600080fd5b50610376600d5481565b3480156107ef57600080fd5b5061045f6107fe3660046123e6565b6112e9565b34801561080f57600080fd5b506102a261081e36600461236f565b600b6020526000908152604090205460ff1681565b34801561083f57600080fd5b5061037661084e36600461249d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561088557600080fd5b50610376600e5481565b34801561089b57600080fd5b5061045f6108aa3660046123cd565b61130f565b3480156108bb57600080fd5b5061045f6113a9565b60006001600160e01b03198216635a05180f60e01b14806108e957506108e982611460565b92915050565b6060600380546108fe906124cb565b80601f016020809104026020016040519081016040528092919081815260200182805461092a906124cb565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b600061098e338484611495565b50600192915050565b60006007546109af836109a960025490565b906115b9565b111580156109ea57506001600160a01b0383166000908152600860209081526040808320546009909252909120546109e790846115b9565b11155b9392505050565b60006109fe8484846115c5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a885760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610a958533858403611495565b506001949350505050565b600082815260056020526040902060010154610abc813361180c565b610ac68383611870565b505050565b6000610ad7813361180c565b6064600d54600c54610ae9919061251b565b10610b255760405162461bcd60e51b815260206004820152600c60248201526b0e8dede40d0d2ced040e8c2f60a31b6044820152606401610a7f565b50600c91909155600d55565b6000610b3d813361180c565b6001600160a01b038216600090815260086020526040812055610b807f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc8743836112e9565b6040516001600160a01b038316907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a25050565b6001600160a01b0381163314610c285760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a7f565b610c328282611892565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161098e918590610c6d90869061251b565b611495565b60007f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc8743610c9f813361180c565b600754610caf846109a960025490565b1115610cef5760405162461bcd60e51b815260206004820152600f60248201526e045786365656473206d61782063617608c1b6044820152606401610a7f565b33600090815260096020526040812054610d0990856115b9565b33600090815260086020526040902054909150811115610d625760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81b5a5b9d195c881b1a5b5a5d60621b6044820152606401610a7f565b6001600160a01b038516600090815260208190526040902054610d8586866118b4565b6001600160a01b039590951660009081526020818152604080832054338452600990925290912091909155939093119392505050565b610dc53382611993565b50565b6000610dd4813361180c565b50600f80549115156101000261ff0019909216919091179055565b6000610dfb833361084e565b905081811015610e595760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610a7f565b610e668333848403611495565b610ac68383611993565b6000610e7c813361180c565b506001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000610eb4813361180c565b60008211610ee95760405162461bcd60e51b815260206004820152600260248201526103d360f41b6044820152606401610a7f565b6001600160a01b03831660009081526008602052604090205415610f475760405162461bcd60e51b81526020600482015260156024820152746d696e74657220616c72656164792065786973747360581b6044820152606401610a7f565b6001600160a01b038316600090815260096020526040902054821015610faf5760405162461bcd60e51b815260206004820152601e60248201527f6d696e74656420616d6f756e74206d6f7265207468616e20616d6f756e7400006044820152606401610a7f565b6001600160a01b0383166000908152600860205260409020829055610ff47f3c5464697bb5698b93199776c71c09f5cd669b4aaf6018f0883e17d6e0bc874384610aa0565b826001600160a01b03167f7704af8521fe5ac54844f1dacefeca1abd213d981badb3abd7ab20249117387c8360405161102f91815260200190565b60405180910390a2505050565b60008281526006602052604081206109ea9083611ae1565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546108fe906124cb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a7f565b61111d3385858403611495565b5060019392505050565b600061098e3384846115c5565b6000611140813361180c565b600082116111755760405162461bcd60e51b815260206004820152600260248201526103d360f41b6044820152606401610a7f565b6001600160a01b0383166000908152600860205260409020546111d25760405162461bcd60e51b81526020600482015260156024820152741b5a5b9d195c88191bd95cc81b9bdd08195e1a5cdd605a1b6044820152606401610a7f565b6001600160a01b03831660009081526009602052604090205482101561123a5760405162461bcd60e51b815260206004820152601e60248201527f6d696e74656420616d6f756e74206d6f7265207468616e20616d6f756e7400006044820152606401610a7f565b6001600160a01b038316600081815260086020908152604091829020805490869055825181815291820186905292917f41f8e84d7dfe728c36b96c2cd45dd1a40b936b3f9ad3b412137ea2eeb77af6bb910160405180910390a250505050565b60006112a6813361180c565b506001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b60008181526006602052604081206108e990611aed565b600082815260056020526040902060010154611305813361180c565b610ac68383611892565b600061131b813361180c565b60025482101561136d5760405162461bcd60e51b815260206004820152601d60248201527f6d617820636170206d757374206d6f7265207468616e206d696e7465640000006044820152606401610a7f565b60078290556040518281527f1784717ece27c42add482451cc6c375bb4b8d89fff196fef45f7ed64cf5979489060200160405180910390a15050565b60006113b5813361180c565b50600a805460ff19166001179055565b6113cf8282611054565b610c325760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556114073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006109ea836001600160a01b038416611af7565b60006001600160e01b03198216637965db0b60e01b14806108e957506301ffc9a760e01b6001600160e01b03198316146108e9565b6001600160a01b0383166114f75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a7f565b6001600160a01b0382166115585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a7f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109ea828461251b565b600a5460ff16806115ee57506001600160a01b0383166000908152600b602052604090205460ff165b8061161157506001600160a01b0382166000908152600b602052604090205460ff165b6116505760405162461bcd60e51b815260206004820152601060248201526f1b9bdd081b185d5b98da1959081e595d60821b6044820152606401610a7f565b6001600160a01b03831660009081526010602052604090205460ff1615801561169257506001600160a01b03821660009081526010602052604090205460ff16155b1561180157600f54610100900460ff1680156116b15750600f5460ff16155b80156116ee57507f0000000000000000000000005a683aced237b6609688659af0700a14001b31a56001600160a01b0316826001600160a01b0316145b1561171357600f805460ff19166001179055611708611b46565b600f805460ff191690555b600f5460ff16611801577f0000000000000000000000005a683aced237b6609688659af0700a14001b31a56001600160a01b0316836001600160a01b0316036117915760006064600c5483611768919061252e565b6117729190612545565b905061177f843083611bf1565b6117898183612567565b915050611801565b7f0000000000000000000000005a683aced237b6609688659af0700a14001b31a56001600160a01b0316826001600160a01b0316036118015760006064600d54836117dc919061252e565b6117e69190612545565b90506117f3843083611bf1565b6117fd8183612567565b9150505b610ac6838383611bf1565b6118168282611054565b610c325761182e816001600160a01b03166014611dc0565b611839836020611dc0565b60405160200161184a92919061257a565b60408051601f198184030181529082905262461bcd60e51b8252610a7f916004016122fb565b61187a82826113c5565b6000828152600660205260409020610ac6908261144b565b61189c8282611f5c565b6000828152600660205260409020610ac69082611fc3565b6001600160a01b03821661190a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a7f565b806002600082825461191c919061251b565b90915550506001600160a01b0382166000908152602081905260408120805483929061194990849061251b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119f35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a7f565b6001600160a01b03821660009081526020819052604090205481811015611a675760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a7f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611a96908490612567565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006109ea8383611fd8565b60006108e9825490565b6000818152600183016020526040812054611b3e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108e9565b5060006108e9565b3060009081526020819052604081205490506000600e54821015611b68575050565b600e54611b7690601461252e565b821115611b8e57600e54611b8b90601461252e565b91505b611b9782612002565b60115460405147916001600160a01b0316908290600081818185875af1925050503d8060008114611be4576040519150601f19603f3d011682016040523d82523d6000602084013e611be9565b606091505b505050505050565b6001600160a01b038316611c555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a7f565b6001600160a01b038216611cb75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a7f565b6001600160a01b03831660009081526020819052604090205481811015611d2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a7f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d6690849061251b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611db291815260200190565b60405180910390a350505050565b60606000611dcf83600261252e565b611dda90600261251b565b67ffffffffffffffff811115611df257611df26125ef565b6040519080825280601f01601f191660200182016040528015611e1c576020820181803683370190505b509050600360fc1b81600081518110611e3757611e37612605565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e6657611e66612605565b60200101906001600160f81b031916908160001a9053506000611e8a84600261252e565b611e9590600161251b565b90505b6001811115611f0d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611ec957611ec9612605565b1a60f81b828281518110611edf57611edf612605565b60200101906001600160f81b031916908160001a90535060049490941c93611f068161261b565b9050611e98565b5083156109ea5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a7f565b611f668282611054565b15610c325760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006109ea836001600160a01b0384166121ba565b6000826000018281548110611fef57611fef612605565b9060005260206000200154905092915050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061203757612037612605565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d99190612632565b816001815181106120ec576120ec612605565b60200260200101906001600160a01b031690816001600160a01b031681525050612137307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611495565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061218c90859060009086903090429060040161264f565b600060405180830381600087803b1580156121a657600080fd5b505af1158015611be9573d6000803e3d6000fd5b600081815260018301602052604081205480156122a35760006121de600183612567565b85549091506000906121f290600190612567565b905081811461225757600086600001828154811061221257612212612605565b906000526020600020015490508087600001848154811061223557612235612605565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612268576122686126c0565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108e9565b60009150506108e9565b6000602082840312156122bf57600080fd5b81356001600160e01b0319811681146109ea57600080fd5b60005b838110156122f25781810151838201526020016122da565b50506000910152565b602081526000825180602084015261231a8160408501602087016122d7565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610dc557600080fd5b6000806040838503121561235657600080fd5b82356123618161232e565b946020939093013593505050565b60006020828403121561238157600080fd5b81356109ea8161232e565b6000806000606084860312156123a157600080fd5b83356123ac8161232e565b925060208401356123bc8161232e565b929592945050506040919091013590565b6000602082840312156123df57600080fd5b5035919050565b600080604083850312156123f957600080fd5b82359150602083013561240b8161232e565b809150509250929050565b6000806040838503121561242957600080fd5b50508035926020909101359150565b8035801515811461244857600080fd5b919050565b60006020828403121561245f57600080fd5b6109ea82612438565b6000806040838503121561247b57600080fd5b82356124868161232e565b915061249460208401612438565b90509250929050565b600080604083850312156124b057600080fd5b82356124bb8161232e565b9150602083013561240b8161232e565b600181811c908216806124df57607f821691505b6020821081036124ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e9576108e9612505565b80820281158282048414176108e9576108e9612505565b60008261256257634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108e9576108e9612505565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125b28160178501602088016122d7565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516125e38160288401602088016122d7565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161262a5761262a612505565b506000190190565b60006020828403121561264457600080fd5b81516109ea8161232e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561269f5784516001600160a01b03168352938301939183019160010161267a565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208063bca5f2b715132cf83e419b74ac48a0fefc9522b1e96534785e9031ad55ae64736f6c63430008110033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

-----Decoded View---------------
Arg [0] : _maxCap (uint256): 1000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000


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.