ERC-20
Overview
Max Total Supply
2,000 LIFT
Holders
48
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1.12783726067864195 LIFTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20Blacklist
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-17 */ // Sources flattened with hardhat v2.0.5 https://hardhat.org // File contracts/ERC20/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @uniswap/v2-periphery/contracts/libraries/[email protected] pragma solidity =0.6.6; // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMath { function add(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x + y) >= x, "ds-math-add-overflow"); } function sub(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x - y) <= x, "ds-math-sub-underflow"); } function mul(uint256 x, uint256 y) internal pure returns (uint256 z) { require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow"); } } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IERC20 { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); } // File contracts/ERC20/Address.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/ERC20/SafeERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transfer.selector, to, value) ); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, value) ); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall( data, "SafeERC20: low-level call failed" ); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require( abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed" ); } } } // File contracts/ERC20/ERC20Blacklist.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; //Modified 2020 udev /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Blacklist is Context, IERC20 { using SafeMath for uint256; using SafeERC20 for IERC20; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; address public blacklistManager; mapping(address => bool) public sendBlacklist; mapping(address => bool) public receiveBlacklist; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, uint256 amount, address blacklistManager_ ) public { _name = name_; _symbol = symbol_; _decimals = 18; blacklistManager = blacklistManager_; _mint(msg.sender, amount); } modifier onlyBlacklistManager() { require( msg.sender == blacklistManager, "ERC20Blacklist: sender is not blacklistManager" ); _; } function setReceiveBlacklist(address recipient, bool isBlacklisted) external onlyBlacklistManager { receiveBlacklist[recipient] = isBlacklisted; } function setSendBlacklist(address sender, bool isBlacklisted) external onlyBlacklistManager { sendBlacklist[sender] = isBlacklisted; } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!sendBlacklist[sender], "ERC20Blacklist: sender blacklisted"); require( !receiveBlacklist[recipient], "ERC20Blacklist: recipient blacklisted" ); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/ERC20/ERC20TransferTax.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; //Modified 2020 udev /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20TransferTax is Context, IERC20 { using SafeMath for uint256; using SafeERC20 for IERC20; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; uint256 public taxBips; address public taxMan; mapping(address => bool) public isNotTaxed; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. Sets {taxBips} tax rate in 1/10000 with {taxMan} * as tax receiver and tax status manager. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, uint256 amount, address taxMan_, uint256 taxBips_ ) public { _name = name_; _symbol = symbol_; _decimals = 18; _mint(msg.sender, amount); taxMan = taxMan_; taxBips = taxBips_; } /** * @dev Sets tax status for account, both on send and receive. */ function setIsTaxed(address account, bool isTaxed_) external { require(msg.sender == taxMan, "!taxMan"); isNotTaxed[account] = !isTaxed_; } /** * @dev Changes the {taxMan}. */ function transferTaxman(address taxMan_) external { require(msg.sender == taxMan, "!taxMan"); taxMan = taxMan_; } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient` with {taxBips} to * {taxMan}. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); if (isNotTaxed[sender] || isNotTaxed[recipient]) { _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } else { uint256 tax = amount.mul(taxBips) / 10000; uint256 postTaxAmount = amount.sub(tax); _beforeTokenTransfer(sender, recipient, postTaxAmount); _beforeTokenTransfer(sender, taxMan, tax); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(postTaxAmount); _balances[taxMan] = _balances[taxMan].add(tax); emit Transfer(sender, recipient, postTaxAmount); emit Transfer(sender, taxMan, tax); } } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/interfaces/IXEth.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity =0.6.6; // Copyright (C) udev 2020 interface IXEth is IERC20 { function deposit() external payable; function xlockerMint(uint256 wad, address dst) external; function withdraw(uint256 wad) external; function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; function nonces(address owner) external view returns (uint256); event Deposit(address indexed dst, uint256 wad); event Withdrawal(address indexed src, uint256 wad); event XlockerMint(uint256 wad, address dst); } // File @openzeppelin/contracts-ethereum-package/contracts/utils/[email protected] pragma solidity ^0.6.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.0.0, only sets of type `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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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] = toDeleteIndex + 1; // All indexes are 1-based // 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) { require( set._values.length > index, "EnumerableSet: index out of bounds" ); return set._values[index]; } // 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(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(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(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(uint256(_at(set._inner, index))); } // 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)); } } // File @openzeppelin/contracts-ethereum-package/contracts/[email protected] pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require( initializing || isConstructor() || !initialized, "Contract instance has already been initialized" ); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File @openzeppelin/contracts-ethereum-package/contracts/GSN/[email protected] pragma solidity ^0.6.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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer {} function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; } // File @openzeppelin/contracts-ethereum-package/contracts/access/[email protected] pragma solidity ^0.6.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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, _msgSender())); * ... * } * ``` * * 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}. */ abstract contract AccessControlUpgradeSafe is Initializable, ContextUpgradeSafe { function __AccessControl_init() internal initializer { __Context_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer {} using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_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) public view returns (bool) { return _roles[role].members.contains(account); } /** * @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 returns (uint256) { return _roles[role].members.length(); } /** * @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 returns (address) { return _roles[role].members.at(index); } /** * @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 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 { require( hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant" ); _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 { require( hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke" ); _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 granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { 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}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; } // File contracts/xeth.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity =0.6.6; // Copyright (C) 2015, 2016, 2017 Dapphub / adapted by udev 2020 contract XETH is IXEth, AccessControlUpgradeSafe { string public override name; string public override symbol; uint8 public override decimals; uint256 public override totalSupply; bytes32 public constant XETH_LOCKER_ROLE = keccak256("XETH_LOCKER_ROLE"); bytes32 public immutable PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ); event Approval(address indexed src, address indexed guy, uint256 wad); event Transfer(address indexed src, address indexed dst, uint256 wad); event Deposit(address indexed dst, uint256 wad); event Withdrawal(address indexed src, uint256 wad); mapping(address => uint256) public override balanceOf; mapping(address => uint256) public override nonces; mapping(address => mapping(address => uint256)) public override allowance; constructor() public { name = "xlock.eth Wrapped Ether"; symbol = "XETH"; decimals = 18; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } receive() external payable { deposit(); } function deposit() public payable override { balanceOf[msg.sender] += msg.value; totalSupply += msg.value; emit Deposit(msg.sender, msg.value); } function grantXethLockerRole(address account) external { grantRole(XETH_LOCKER_ROLE, account); } function revokeXethLockerRole(address account) external { revokeRole(XETH_LOCKER_ROLE, account); } function xlockerMint(uint256 wad, address dst) external override { require( hasRole(XETH_LOCKER_ROLE, msg.sender), "Caller is not xeth locker" ); balanceOf[dst] += wad; totalSupply += wad; emit Transfer(address(0), dst, wad); } function withdraw(uint256 wad) external override { require(balanceOf[msg.sender] >= wad, "!balance"); balanceOf[msg.sender] -= wad; totalSupply -= wad; (bool success, ) = msg.sender.call{value: wad}(""); require(success, "!withdraw"); emit Withdrawal(msg.sender, wad); } function _approve( address src, address guy, uint256 wad ) internal { allowance[src][guy] = wad; emit Approval(src, guy, wad); } function approve(address guy, uint256 wad) external override returns (bool) { _approve(msg.sender, guy, wad); return true; } function transfer(address dst, uint256 wad) external override returns (bool) { return transferFrom(msg.sender, dst, wad); } function transferFrom( address src, address dst, uint256 wad ) public override returns (bool) { require(balanceOf[src] >= wad, "!balance"); if (src != msg.sender && allowance[src][msg.sender] != uint256(-1)) { require(allowance[src][msg.sender] >= wad, "!allowance"); allowance[src][msg.sender] -= wad; } balanceOf[src] -= wad; balanceOf[dst] += wad; emit Transfer(src, dst, wad); return true; } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external override { require(block.timestamp <= deadline, "XETH::permit: Expired permit"); uint256 chainId; assembly { chainId := chainid() } bytes32 DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name)), keccak256(bytes("1")), chainId, address(this) ) ); bytes32 hashStruct = keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline ) ); bytes32 hash = keccak256( abi.encodePacked("\x19\x01", DOMAIN_SEPARATOR, hashStruct) ); address signer = ecrecover(hash, v, r, s); require( signer != address(0) && signer == owner, "XETH::permit: invalid permit" ); allowance[owner][spender] = value; emit Approval(owner, spender, value); } } // File @uniswap/lib/contracts/libraries/[email protected] pragma solidity >=0.4.0; // computes square roots using the babylonian method // https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method library Babylonian { function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] 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, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File @openzeppelin/contracts-ethereum-package/contracts/access/[email protected] pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract OwnableUpgradeSafe is Initializable, ContextUpgradeSafe { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; } // File contracts/xethLiqManager.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity =0.6.6; contract XethLiqManager is Initializable, OwnableUpgradeSafe { IXEth private _xeth; IUniswapV2Router02 private _router; IUniswapV2Pair private _pair; IUniswapV2Factory private _factory; uint256 private _maxBP; uint256 private _maxLiq; bool private isPairInitialized; using SafeMath for uint256; function initialize( IXEth xeth_, IUniswapV2Router02 router_, IUniswapV2Factory factory_, uint256 maxBP_, uint256 maxLiq_ ) public initializer { OwnableUpgradeSafe.__Ownable_init(); _xeth = xeth_; _router = router_; _factory = factory_; _maxBP = maxBP_; _maxLiq = maxLiq_; } receive() external payable {} function setMaxBP(uint256 maxBP_) external onlyOwner { require(maxBP_ < 10000, "maxBP too large"); _maxBP = maxBP_; } function setMaxLiq(uint256 maxLiq_) external onlyOwner { _maxLiq = maxLiq_; } function initializePair() external onlyOwner { require(!isPairInitialized, "weth/xeth pair already initialized"); isPairInitialized = true; uint256 wadXeth = address(_xeth).balance.mul(_maxBP) / 10000; _xeth.xlockerMint(wadXeth.mul(2), address(this)); _xeth.withdraw(wadXeth); _xeth.approve(address(_router), uint256(-1)); _router.addLiquidityETH{value: wadXeth}( address(_xeth), wadXeth, wadXeth, wadXeth, address(this), now ); _pair = IUniswapV2Pair( _factory.getPair(address(_xeth), _router.WETH()) ); } function updatePair() external onlyOwner { rebalance(); //Increase/Decrease liq uint256 currentLockedXeth = _xeth.balanceOf(address(_pair)).mul( _pair.balanceOf(address(this)) ) / _pair.totalSupply(); uint256 expectedLockedXeth = currentLockedXeth.add(address(_xeth).balance) / 2; if (currentLockedXeth > expectedLockedXeth) { uint256 delta = currentLockedXeth.sub(expectedLockedXeth); _router.removeLiquidityETH( address(_xeth), _xeth.balanceOf(address(_pair)).mul(delta) / _pair.totalSupply(), delta.sub(1000), delta.sub(1000), address(this), now ); _xeth.deposit{value: address(this).balance}(); _xeth.transfer(address(0x0), _xeth.balanceOf(address(this))); } else if ( currentLockedXeth < expectedLockedXeth && currentLockedXeth < _maxLiq ) { uint256 delta = expectedLockedXeth.sub(currentLockedXeth); _xeth.xlockerMint(delta.mul(2).add(1 ether), address(this)); _xeth.withdraw(delta); _router.addLiquidityETH{value: delta}( address(_xeth), delta, delta.sub(1 ether), delta.sub(1 ether), address(this), now ); _xeth.deposit{value: address(this).balance}(); _xeth.transfer(address(0x0), _xeth.balanceOf(address(this))); } } function rebalance() public onlyOwner { uint256 xethReserves = _xeth.balanceOf(address(_pair)); uint256 wethReserves = IERC20(_router.WETH()).balanceOf(address(_pair)); address[] memory path = new address[](2); if (xethReserves.sub(0.01 ether) > wethReserves) { path[0] = _router.WETH(); path[1] = address(_xeth); uint256 wadDif = Babylonian.sqrt(xethReserves.mul(wethReserves)).sub( wethReserves ); _xeth.xlockerMint(wadDif, address(this)); _xeth.withdraw(wadDif); _router.swapExactETHForTokens{value: wadDif}( wadDif.sub(0.01 ether), path, address(0x0), now ); _xeth.transfer(address(0x0), _xeth.balanceOf(address(this))); } else if (xethReserves.add(0.01 ether) < wethReserves) { path[0] = address(_xeth); path[1] = _router.WETH(); uint256 wadDif = Babylonian.sqrt(xethReserves.mul(wethReserves)).sub( xethReserves ); _xeth.xlockerMint(wadDif, address(this)); _router.swapExactTokensForETH( wadDif, wadDif.sub(0.01 ether), path, address(this), now ); _xeth.deposit{value: address(this).balance}(); _xeth.transfer(address(0x0), _xeth.balanceOf(address(this))); } } } // File @uniswap/v2-periphery/contracts/libraries/[email protected] pragma solidity >=0.5.0; library UniswapV2Library { using SafeMath for uint256; // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, "UniswapV2Library: IDENTICAL_ADDRESSES"); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), "UniswapV2Library: ZERO_ADDRESS"); } // calculates the CREATE2 address for a pair without making any external calls function pairFor( address factory, address tokenA, address tokenB ) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address( uint256( keccak256( abi.encodePacked( hex"ff", factory, keccak256(abi.encodePacked(token0, token1)), hex"96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" // init code hash ) ) ) ); } // fetches and sorts the reserves for a pair function getReserves( address factory, address tokenA, address tokenB ) internal view returns (uint256 reserveA, uint256 reserveB) { (address token0, ) = sortTokens(tokenA, tokenB); (uint256 reserve0, uint256 reserve1, ) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves(); (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0); } // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) internal pure returns (uint256 amountB) { require(amountA > 0, "UniswapV2Library: INSUFFICIENT_AMOUNT"); require( reserveA > 0 && reserveB > 0, "UniswapV2Library: INSUFFICIENT_LIQUIDITY" ); amountB = amountA.mul(reserveB) / reserveA; } // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) internal pure returns (uint256 amountOut) { require(amountIn > 0, "UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT"); require( reserveIn > 0 && reserveOut > 0, "UniswapV2Library: INSUFFICIENT_LIQUIDITY" ); uint256 amountInWithFee = amountIn.mul(997); uint256 numerator = amountInWithFee.mul(reserveOut); uint256 denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } // given an output amount of an asset and pair reserves, returns a required input amount of the other asset function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) internal pure returns (uint256 amountIn) { require(amountOut > 0, "UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT"); require( reserveIn > 0 && reserveOut > 0, "UniswapV2Library: INSUFFICIENT_LIQUIDITY" ); uint256 numerator = reserveIn.mul(amountOut).mul(1000); uint256 denominator = reserveOut.sub(amountOut).mul(997); amountIn = (numerator / denominator).add(1); } // performs chained getAmountOut calculations on any number of pairs function getAmountsOut( address factory, uint256 amountIn, address[] memory path ) internal view returns (uint256[] memory amounts) { require(path.length >= 2, "UniswapV2Library: INVALID_PATH"); amounts = new uint256[](path.length); amounts[0] = amountIn; for (uint256 i; i < path.length - 1; i++) { (uint256 reserveIn, uint256 reserveOut) = getReserves(factory, path[i], path[i + 1]); amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut); } } // performs chained getAmountIn calculations on any number of pairs function getAmountsIn( address factory, uint256 amountOut, address[] memory path ) internal view returns (uint256[] memory amounts) { require(path.length >= 2, "UniswapV2Library: INVALID_PATH"); amounts = new uint256[](path.length); amounts[amounts.length - 1] = amountOut; for (uint256 i = path.length - 1; i > 0; i--) { (uint256 reserveIn, uint256 reserveOut) = getReserves(factory, path[i - 1], path[i]); amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut); } } } // File contracts/interfaces/IXLocker.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity =0.6.6; // Copyright (C) udev 2020 interface IXLocker { function launchERC20( string calldata name, string calldata symbol, uint256 wadToken, uint256 wadXeth ) external returns (address token_, address pair_); function launchERC20TransferTax( string calldata name, string calldata symbol, uint256 wadToken, uint256 wadXeth, uint256 taxBips, address taxMan ) external returns (address token_, address pair_); function launchERC20Blacklist( string calldata name, string calldata symbol, uint256 wadToken, uint256 wadXeth, address blacklistManager ) external returns (address token_, address pair_); function setBlacklistUniswapBuys( address pair, address token, bool isBlacklisted ) external; } // File contracts/xlocker.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity =0.6.6; contract XLOCKER is Initializable, IXLocker, OwnableUpgradeSafe { using SafeMath for uint256; IUniswapV2Router02 private _uniswapRouter; IXEth private _xeth; address private _uniswapFactory; address public _sweepReceiver; uint256 public _maxXEthWad; uint256 public _maxTokenWad; mapping(address => uint256) public pairSwept; mapping(address => bool) public pairRegistered; address[] public allRegisteredPairs; uint256 public totalRegisteredPairs; mapping(address => address) public pairBlacklistManager; function initialize( IXEth xeth_, address sweepReceiver_, uint256 maxXEthWad_, uint256 maxTokenWad_, IUniswapV2Router02 uniswapRouter_, address uniswapFactory_ ) public initializer { OwnableUpgradeSafe.__Ownable_init(); _uniswapRouter = uniswapRouter_; _uniswapFactory = uniswapFactory_; _xeth = xeth_; _sweepReceiver = sweepReceiver_; _maxXEthWad = maxXEthWad_; _maxTokenWad = maxTokenWad_; } function registerPair(address pair) external onlyOwner { require(!pairRegistered[pair], "Pair already registered."); pairRegistered[pair] = true; allRegisteredPairs.push(pair); totalRegisteredPairs = totalRegisteredPairs.add(1); } function setSweepReceiver(address sweepReceiver_) external onlyOwner { _sweepReceiver = sweepReceiver_; } function setMaxXEthWad(uint256 maxXEthWad_) external onlyOwner { _maxXEthWad = maxXEthWad_; } function setMaxTokenWad(uint256 maxTokenWad_) external onlyOwner { _maxTokenWad = maxTokenWad_; } function setUniswapRouter(IUniswapV2Router02 uniswapRouter_) external onlyOwner { _uniswapRouter = uniswapRouter_; } function setUniswapFactory(address uniswapFactory_) external onlyOwner { _uniswapFactory = uniswapFactory_; } function launchERC20( string calldata name, string calldata symbol, uint256 wadToken, uint256 wadXeth ) external override returns (address token_, address pair_) { //Checks _preLaunchChecks(wadToken, wadXeth); //Launch new token token_ = address( new ERC20Blacklist(name, symbol, wadToken, address(0x0)) ); //Lock symbol/xeth liquidity pair_ = _lockLiquidity(wadToken, wadXeth, token_); //Register pair for sweeping _registerPair(pair_); return (token_, pair_); } function launchERC20Blacklist( string calldata name, string calldata symbol, uint256 wadToken, uint256 wadXeth, address blacklistManager ) external override returns (address token_, address pair_) { //Checks _preLaunchChecks(wadToken, wadXeth); //Launch new token token_ = address( new ERC20Blacklist(name, symbol, wadToken, address(this)) ); //Lock symbol/xeth liquidity pair_ = _lockLiquidity(wadToken, wadXeth, token_); //Register pair for sweeping _registerPair(pair_); pairBlacklistManager[pair_] = blacklistManager; return (token_, pair_); } function launchERC20TransferTax( string calldata name, string calldata symbol, uint256 wadToken, uint256 wadXeth, uint256 taxBips, address taxMan ) external override returns (address token_, address pair_) { //Checks _preLaunchChecks(wadToken, wadXeth); require(taxBips <= 1000, "taxBips>1000"); //Launch new token ERC20TransferTax token = new ERC20TransferTax( name, symbol, wadToken, address(this), taxBips ); token.setIsTaxed(address(this), false); token.transferTaxman(taxMan); token_ = address(token); //Lock symbol/xeth liquidity pair_ = _lockLiquidity(wadToken, wadXeth, token_); //Register pair for sweeping _registerPair(pair_); return (token_, pair_); } function setBlacklistUniswapBuys( address pair, address token, bool isBlacklisted ) external override { require( msg.sender == pairBlacklistManager[pair], "xlocker: sender not blacklist manager for pair." ); ERC20Blacklist(token).setSendBlacklist(pair, isBlacklisted); } //Sweeps liquidity provider fees for _sweepReceiver function sweep(IUniswapV2Pair[] calldata pairs) external { require(pairs.length < 256, "pairs.length>=256"); uint8 i; for (i = 0; i < pairs.length; i++) { IUniswapV2Pair pair = pairs[i]; uint256 availableToSweep = sweepAmountAvailable(pair); if (availableToSweep != 0) { pairSwept[address(pair)] += availableToSweep; _xeth.xlockerMint(availableToSweep, _sweepReceiver); } } } //Checks pair for sweep amount available function sweepAmountAvailable(IUniswapV2Pair pair) public view returns (uint256 amountAvailable) { require(pairRegistered[address(pair)], "!pairRegistered[pair]"); bool xethIsToken0 = false; IERC20 token; if (pair.token0() == address(_xeth)) { xethIsToken0 = true; token = IERC20(pair.token1()); } else { require( pair.token1() == address(_xeth), "!pair.tokenX==address(_xeth)" ); token = IERC20(pair.token0()); } (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = pair.getReserves(); uint256 burnedLP = pair.balanceOf(address(0)); uint256 totalLP = pair.totalSupply(); uint256 reserveLockedXeth = uint256(xethIsToken0 ? reserve0 : reserve1).mul(burnedLP) / totalLP; uint256 reserveLockedToken = uint256(xethIsToken0 ? reserve1 : reserve0).mul(burnedLP) / totalLP; uint256 burnedXeth; if (reserveLockedToken == token.totalSupply()) { burnedXeth = reserveLockedXeth; } else { burnedXeth = reserveLockedXeth.sub( UniswapV2Library.getAmountOut( //Circulating supply, max that could ever be sold (amountIn) token.totalSupply().sub(reserveLockedToken), //Burned token in Uniswap reserves (reserveIn) reserveLockedToken, //Burned xEth in Uniswap reserves (reserveOut) reserveLockedXeth ) ); } return burnedXeth.sub(pairSwept[address(pair)]); } function _preLaunchChecks(uint256 wadToken, uint256 wadXeth) internal view { require(wadToken <= _maxTokenWad, "wadToken>_maxTokenWad"); require(wadXeth <= _maxXEthWad, "wadXeth>_maxXEthWad"); } function _lockLiquidity( uint256 wadToken, uint256 wadXeth, address token ) internal returns (address pair) { _xeth.xlockerMint(wadXeth, address(this)); IERC20(token).approve(address(_uniswapRouter), wadToken); _xeth.approve(address(_uniswapRouter), wadXeth); pair = _addLiquidity(IERC20(token), IERC20(_xeth), wadToken, wadXeth); pairSwept[pair] = wadXeth; return pair; } function _registerPair(address pair) internal { pairRegistered[pair] = true; allRegisteredPairs.push(pair); totalRegisteredPairs = totalRegisteredPairs.add(1); } function _addLiquidity( IERC20 token, IERC20 xeth, uint256 wadToken, uint256 wadXeth ) internal returns (address pair) { pair = IUniswapV2Factory(_uniswapFactory).createPair( address(xeth), address(token) ); (uint256 reserve0, uint256 reserve1, ) = IUniswapV2Pair(pair).getReserves(); require(reserve0 == 0 && reserve1 == 0, "Pair already has reserves"); require(token.transfer(pair, wadToken), "Transfer Failed"); require(xeth.transfer(pair, wadXeth), "Transfer Failed"); IUniswapV2Pair(pair).mint(address(0x0)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"blacklistManager_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistManager","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"receiveBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sendBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setReceiveBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setSendBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620010bb380380620010bb833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040908152602082810151929091015186519294509250620001c19160039187019062000393565b508251620001d790600490602086019062000393565b5060058054601260ff1990911617610100600160a81b0319166101006001600160a01b038416021790556200020d338362000217565b5050505062000438565b6001600160a01b03821662000273576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200028a600083836001600160e01b036200032f16565b620002a6816002546200033460201b62000ae61790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002d991839062000ae662000334821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b808201828110156200038d576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003d657805160ff191683800117855562000406565b8280016001018555821562000406579182015b8281111562000406578251825591602001919060010190620003e9565b506200041492915062000418565b5090565b6200043591905b808211156200041457600081556001016200041f565b90565b610c7380620004486000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063d1138d7d11610066578063d1138d7d14610338578063d9dbf6571461035e578063daa15efd14610382578063dd62ed3e146103b057610100565b806370a08231146102b257806395d89b41146102d8578063a457c2d7146102e0578063a9059cbb1461030c57610100565b806323b872dd116100d357806323b872dd14610202578063313ce56714610238578063326e307014610256578063395093511461028657610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c25780631a809443146101dc575b600080fd5b61010d6103de565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610474565b604080519115158252519081900360200190f35b6101ca610492565b60408051918252519081900360200190f35b6101ae600480360360208110156101f257600080fd5b50356001600160a01b0316610498565b6101ae6004803603606081101561021857600080fd5b506001600160a01b038135811691602081013590911690604001356104ad565b610240610522565b6040805160ff9092168252519081900360200190f35b6102846004803603604081101561026c57600080fd5b506001600160a01b038135169060200135151561052b565b005b6101ae6004803603604081101561029c57600080fd5b506001600160a01b0381351690602001356105a4565b6101ca600480360360208110156102c857600080fd5b50356001600160a01b03166105f8565b61010d610613565b6101ae600480360360408110156102f657600080fd5b506001600160a01b038135169060200135610674565b6101ae6004803603604081101561032257600080fd5b506001600160a01b0381351690602001356106c8565b6101ae6004803603602081101561034e57600080fd5b50356001600160a01b03166106dc565b6103666106f1565b604080516001600160a01b039092168252519081900360200190f35b6102846004803603604081101561039857600080fd5b506001600160a01b0381351690602001351515610705565b6101ca600480360360408110156103c657600080fd5b506001600160a01b038135811691602001351661077e565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b60006104886104816107a9565b84846107ad565b5060015b92915050565b60025490565b60076020526000908152604090205460ff1681565b60006104ba848484610899565b610518846104c66107a9565b6001600160a01b0387166000908152600160205260408120610513918791906104ed6107a9565b6001600160a01b031681526020810191909152604001600020549063ffffffff610a9616565b6107ad565b5060019392505050565b60055460ff1690565b60055461010090046001600160a01b031633146105795760405162461bcd60e51b815260040180806020018281038252602e815260200180610c10602e913960400191505060405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60006104886105b16107a9565b8461051385600160006105c26107a9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ae616565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561046a5780601f1061043f5761010080835404028352916020019161046a565b60006104886106816107a9565b8461051385600160006106926107a9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610a9616565b60006104886106d56107a9565b8484610899565b60066020526000908152604090205460ff1681565b60055461010090046001600160a01b031681565b60055461010090046001600160a01b031633146107535760405162461bcd60e51b815260040180806020018281038252602e815260200180610c10602e913960400191505060405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166107f25760405162461bcd60e51b8152600401808060200182810382526024815260200180610bca6024913960400191505060405180910390fd5b6001600160a01b0382166108375760405162461bcd60e51b8152600401808060200182810382526022815260200180610b5e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108de5760405162461bcd60e51b8152600401808060200182810382526025815260200180610ba56025913960400191505060405180910390fd5b6001600160a01b0382166109235760405162461bcd60e51b8152600401808060200182810382526023815260200180610b3b6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561097b5760405162461bcd60e51b8152600401808060200182810382526022815260200180610bee6022913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff16156109d35760405162461bcd60e51b8152600401808060200182810382526025815260200180610b806025913960400191505060405180910390fd5b6109de838383610b35565b6001600160a01b038316600090815260208190526040902054610a07908263ffffffff610a9616565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a3c908263ffffffff610ae616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b8082038281111561048c576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b8082018281101561048c576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fd5b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734552433230426c61636b6c6973743a20726563697069656e7420626c61636b6c697374656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230426c61636b6c6973743a2073656e64657220626c61636b6c69737465644552433230426c61636b6c6973743a2073656e646572206973206e6f7420626c61636b6c6973744d616e61676572a2646970667358221220d2b870f91fd44e3f50ec1c066bb5c49d0d511a6698f5fedd70717d78a370897664736f6c63430006060033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000006c6b935b8bbd400000000000000000000000000000aa13f1fc73bab751da08930007d4d847eeeafaa2000000000000000000000000000000000000000000000000000000000000000b4c4946544f46462e65746800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c49465400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063d1138d7d11610066578063d1138d7d14610338578063d9dbf6571461035e578063daa15efd14610382578063dd62ed3e146103b057610100565b806370a08231146102b257806395d89b41146102d8578063a457c2d7146102e0578063a9059cbb1461030c57610100565b806323b872dd116100d357806323b872dd14610202578063313ce56714610238578063326e307014610256578063395093511461028657610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c25780631a809443146101dc575b600080fd5b61010d6103de565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610474565b604080519115158252519081900360200190f35b6101ca610492565b60408051918252519081900360200190f35b6101ae600480360360208110156101f257600080fd5b50356001600160a01b0316610498565b6101ae6004803603606081101561021857600080fd5b506001600160a01b038135811691602081013590911690604001356104ad565b610240610522565b6040805160ff9092168252519081900360200190f35b6102846004803603604081101561026c57600080fd5b506001600160a01b038135169060200135151561052b565b005b6101ae6004803603604081101561029c57600080fd5b506001600160a01b0381351690602001356105a4565b6101ca600480360360208110156102c857600080fd5b50356001600160a01b03166105f8565b61010d610613565b6101ae600480360360408110156102f657600080fd5b506001600160a01b038135169060200135610674565b6101ae6004803603604081101561032257600080fd5b506001600160a01b0381351690602001356106c8565b6101ae6004803603602081101561034e57600080fd5b50356001600160a01b03166106dc565b6103666106f1565b604080516001600160a01b039092168252519081900360200190f35b6102846004803603604081101561039857600080fd5b506001600160a01b0381351690602001351515610705565b6101ca600480360360408110156103c657600080fd5b506001600160a01b038135811691602001351661077e565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b60006104886104816107a9565b84846107ad565b5060015b92915050565b60025490565b60076020526000908152604090205460ff1681565b60006104ba848484610899565b610518846104c66107a9565b6001600160a01b0387166000908152600160205260408120610513918791906104ed6107a9565b6001600160a01b031681526020810191909152604001600020549063ffffffff610a9616565b6107ad565b5060019392505050565b60055460ff1690565b60055461010090046001600160a01b031633146105795760405162461bcd60e51b815260040180806020018281038252602e815260200180610c10602e913960400191505060405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60006104886105b16107a9565b8461051385600160006105c26107a9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ae616565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561046a5780601f1061043f5761010080835404028352916020019161046a565b60006104886106816107a9565b8461051385600160006106926107a9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610a9616565b60006104886106d56107a9565b8484610899565b60066020526000908152604090205460ff1681565b60055461010090046001600160a01b031681565b60055461010090046001600160a01b031633146107535760405162461bcd60e51b815260040180806020018281038252602e815260200180610c10602e913960400191505060405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166107f25760405162461bcd60e51b8152600401808060200182810382526024815260200180610bca6024913960400191505060405180910390fd5b6001600160a01b0382166108375760405162461bcd60e51b8152600401808060200182810382526022815260200180610b5e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108de5760405162461bcd60e51b8152600401808060200182810382526025815260200180610ba56025913960400191505060405180910390fd5b6001600160a01b0382166109235760405162461bcd60e51b8152600401808060200182810382526023815260200180610b3b6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561097b5760405162461bcd60e51b8152600401808060200182810382526022815260200180610bee6022913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff16156109d35760405162461bcd60e51b8152600401808060200182810382526025815260200180610b806025913960400191505060405180910390fd5b6109de838383610b35565b6001600160a01b038316600090815260208190526040902054610a07908263ffffffff610a9616565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a3c908263ffffffff610ae616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b8082038281111561048c576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b8082018281101561048c576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fd5b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734552433230426c61636b6c6973743a20726563697069656e7420626c61636b6c697374656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230426c61636b6c6973743a2073656e64657220626c61636b6c69737465644552433230426c61636b6c6973743a2073656e646572206973206e6f7420626c61636b6c6973744d616e61676572a2646970667358221220d2b870f91fd44e3f50ec1c066bb5c49d0d511a6698f5fedd70717d78a370897664736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000006c6b935b8bbd400000000000000000000000000000aa13f1fc73bab751da08930007d4d847eeeafaa2000000000000000000000000000000000000000000000000000000000000000b4c4946544f46462e65746800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c49465400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): LIFTOFF.eth
Arg [1] : symbol_ (string): LIFT
Arg [2] : amount (uint256): 2000000000000000000000
Arg [3] : blacklistManager_ (address): 0xAA13f1Fc73baB751Da08930007D4D847EeEafAA2
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000006c6b935b8bbd400000
Arg [3] : 000000000000000000000000aa13f1fc73bab751da08930007d4d847eeeafaa2
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4c4946544f46462e657468000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4c49465400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
17222:11169:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17222:11169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;19021:92:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;19021:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21245:210;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21245:210:0;;-1:-1:-1;;;;;21245:210:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20123:100;;;:::i;:::-;;;;;;;;;;;;;;;;17685:48;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17685:48:0;-1:-1:-1;;;;;17685:48:0;;:::i;21937:361::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21937:361:0;;;;;;;;;;;;;;;;;:::i;19966:92::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18780:171;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18780:171:0;;-1:-1:-1;;;;;18780:171:0;;;;;;;;:::i;:::-;;22707:300;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22707:300:0;;-1:-1:-1;;;;;22707:300:0;;;;;;:::i;20286:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20286:119:0;-1:-1:-1;;;;;20286:119:0;;:::i;19232:96::-;;;:::i;23510:310::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23510:310:0;;-1:-1:-1;;;;;23510:310:0;;;;;;:::i;20618:216::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20618:216:0;;-1:-1:-1;;;;;20618:216:0;;;;;;:::i;17633:45::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17633:45:0;-1:-1:-1;;;;;17633:45:0;;:::i;17595:31::-;;;:::i;:::-;;;;-1:-1:-1;;;;;17595:31:0;;;;;;;;;;;;;;18589:183;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18589:183:0;;-1:-1:-1;;;;;18589:183:0;;;;;;;;:::i;20897:201::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20897:201:0;;;;;;;;;;:::i;19021:92::-;19100:5;19093:12;;;;;;;;;;;;;-1:-1:-1;;19093:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;19067:13;;19093:12;;19100:5;;19093:12;;;19100:5;19093:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19021:92;:::o;21245:210::-;21364:4;21386:39;21395:12;:10;:12::i;:::-;21409:7;21418:6;21386:8;:39::i;:::-;-1:-1:-1;21443:4:0;21245:210;;;;;:::o;20123:100::-;20203:12;;20123:100;:::o;17685:48::-;;;;;;;;;;;;;;;:::o;21937:361::-;22077:4;22094:36;22104:6;22112:9;22123:6;22094:9;:36::i;:::-;22141:127;22164:6;22185:12;:10;:12::i;:::-;-1:-1:-1;;;;;22212:19:0;;;;;;-1:-1:-1;22212:19:0;;;;;:45;;22250:6;;22212:19;22232:12;:10;:12::i;:::-;-1:-1:-1;;;;;22212:33:0;;;;;;;;;;;;-1:-1:-1;22212:33:0;;;:37;:45::i;:::-;22141:8;:127::i;:::-;-1:-1:-1;22286:4:0;21937:361;;;;;:::o;19966:92::-;20041:9;;;;19966:92;:::o;18780:171::-;18471:16;;;;;-1:-1:-1;;;;;18471:16:0;18457:10;:30;18435:126;;;;-1:-1:-1;;;18435:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18906:21:0;;;::::1;;::::0;;;:13:::1;:21;::::0;;;;:37;;-1:-1:-1;;18906:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18780:171::o;22707:300::-;22822:4;22844:133;22867:12;:10;:12::i;:::-;22894:7;22916:50;22955:10;22916:11;:25;22928:12;:10;:12::i;:::-;-1:-1:-1;;;;;22916:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22916:25:0;;;:34;;;;;;;;;;;:38;:50::i;20286:119::-;-1:-1:-1;;;;;20379:18:0;20352:7;20379:18;;;;;;;;;;;;20286:119::o;19232:96::-;19313:7;19306:14;;;;;;;;;;;;;-1:-1:-1;;19306:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;19280:13;;19306:14;;19313:7;;19306:14;;;19313:7;19306:14;;;;;;;;;;;;;;;;;;;;;;;;23510:310;23630:4;23652:138;23675:12;:10;:12::i;:::-;23702:7;23724:55;23763:15;23724:11;:25;23736:12;:10;:12::i;:::-;-1:-1:-1;;;;;23724:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23724:25:0;;;:34;;;;;;;;;;;:38;:55::i;20618:216::-;20740:4;20762:42;20772:12;:10;:12::i;:::-;20786:9;20797:6;20762:9;:42::i;17633:45::-;;;;;;;;;;;;;;;:::o;17595:31::-;;;;;;-1:-1:-1;;;;;17595:31:0;;:::o;18589:183::-;18471:16;;;;;-1:-1:-1;;;;;18471:16:0;18457:10;:30;18435:126;;;;-1:-1:-1;;;18435:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18721:27:0;;;::::1;;::::0;;;:16:::1;:27;::::0;;;;:43;;-1:-1:-1;;18721:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18589:183::o;20897:201::-;-1:-1:-1;;;;;21063:18:0;;;21031:7;21063:18;;;-1:-1:-1;21063:18:0;;;;;;;;:27;;;;;;;;;;;;;20897:201::o;716:106::-;804:10;716:106;:::o;26858:380::-;-1:-1:-1;;;;;26994:19:0;;26986:68;;;;-1:-1:-1;;;26986:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27073:21:0;;27065:68;;;;-1:-1:-1;;;27065:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27146:18:0;;;;;;;-1:-1:-1;27146:18:0;;;;;;;;:27;;;;;;;;;;;;;:36;;;27198:32;;;;;;;;;;;;;;;;;26858:380;;;:::o;24310:737::-;-1:-1:-1;;;;;24450:20:0;;24442:70;;;;-1:-1:-1;;;24442:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24531:23:0;;24523:71;;;;-1:-1:-1;;;24523:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24614:21:0;;;;;;:13;:21;;;;;;;;24613:22;24605:69;;;;-1:-1:-1;;;24605:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24708:27:0;;;;;;:16;:27;;;;;;;;24707:28;24685:115;;;;-1:-1:-1;;;24685:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24813:47;24834:6;24842:9;24853:6;24813:20;:47::i;:::-;-1:-1:-1;;;;;24893:17:0;;:9;:17;;;;;;;;;;;:29;;24915:6;24893:21;:29::i;:::-;-1:-1:-1;;;;;24873:17:0;;;:9;:17;;;;;;;;;;;:49;;;;24956:20;;;;;;;:32;;24981:6;24956:24;:32::i;:::-;-1:-1:-1;;;;;24933:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;25004:35;;;;;;;24933:20;;25004:35;;;;;;;;;;;;;24310:737;;;:::o;1454:138::-;1547:5;;;1542:16;;;;1534:50;;;;;-1:-1:-1;;;1534:50:0;;;;;;;;;;;;-1:-1:-1;;;1534:50:0;;;;;;;;;;;;;;1309:137;1402:5;;;1397:16;;;;1389:49;;;;;-1:-1:-1;;;1389:49:0;;;;;;;;;;;;-1:-1:-1;;;1389:49:0;;;;;;;;;;;;;;28263:125;;;;:::o
Swarm Source
ipfs://d2b870f91fd44e3f50ec1c066bb5c49d0d511a6698f5fedd70717d78a3708976
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.