Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 13 from a total of 13 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22276955 | 37 days ago | IN | 0.03134746 ETH | 0.00002991 | ||||
Transfer | 22276408 | 37 days ago | IN | 0.0310773 ETH | 0.0000351 | ||||
Transfer | 22205127 | 47 days ago | IN | 0.02795411 ETH | 0.00003062 | ||||
Transfer | 22204847 | 47 days ago | IN | 0.02789342 ETH | 0.00002953 | ||||
Transfer | 22200383 | 48 days ago | IN | 0.02756676 ETH | 0.00003018 | ||||
Transfer | 22200068 | 48 days ago | IN | 0.04134043 ETH | 0.00003163 | ||||
Transfer | 22199931 | 48 days ago | IN | 0.04407504 ETH | 0.00003012 | ||||
Transfer | 22199907 | 48 days ago | IN | 0.04131299 ETH | 0.00003006 | ||||
Transfer | 22199888 | 48 days ago | IN | 0.04406349 ETH | 0.00002969 | ||||
Transfer | 22199863 | 48 days ago | IN | 0.02750903 ETH | 0.00002974 | ||||
Transfer | 22199833 | 48 days ago | IN | 0.02748189 ETH | 0.00003064 | ||||
Transfer | 22199818 | 48 days ago | IN | 0.02750459 ETH | 0.00003041 | ||||
Transfer | 22199786 | 48 days ago | IN | 0.02755158 ETH | 0.00003056 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FXGuys
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-05 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require( account == _msgSender(), "AccessControl: can only renounce roles for self" ); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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" ); (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"); (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"); (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.4._ */ 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.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } contract FXGuys is ERC20, ERC20Burnable, AccessControl { /// @notice Precision for mathematical calculations with percents. 100% === 10000 uint256 private constant PRECISION = 100_00; /// @notice pair mapping, if true the pair is added and fees are charged, /// if false, no fees are charged mapping(address => bool) public pairs; /// ================================ Errors ================================ /// /// @dev - address is not a contract; error IsNotContract(); ///@dev returned if passed zero address error ZeroAddress(); ///@dev returned if passed zero amount error ZeroAmount(); ///@dev returned if the set percentage is equal to or greater than PRECISION error HighValue(); ///@dev returned if the pair address already exists error ExistsAddress(); ///@dev returned if the value already assigned error ExistsValue(); ///@dev returned if the pair address has not been added error NotFoundAddress(); ///@dev returned if the caller doesn't have access to the function error AccessIsDenied(); /// ================================ Events ================================ /// /// @dev emitted when owner adds a new pair event AddPair(address indexed addressPair, bool enabled); /// @dev emitted when owner disables pair address event RemovePair(address indexed addressPair, bool disable); constructor( address _admin, /// contract owner uint256 _initialSupply /// total supply of tokens ) payable ERC20("FXGuys", "FXG") { // constructor marked as payable _mint(_admin, _initialSupply); _grantRole(DEFAULT_ADMIN_ROLE, _admin); } /** * @notice The function adds a new pair from which commissions will be charged * for the purchase and sale of our token. Only the owner can call. * @param addressPair - pair address */ function addPair(address addressPair) external onlyRole(DEFAULT_ADMIN_ROLE) { if (addressPair == address(0)) { revert ZeroAddress(); } if (pairs[addressPair]) { revert ExistsAddress(); } pairs[addressPair] = true; emit AddPair(addressPair, true); // Removed block.timestamp } /** * @notice The function performs disabling pool. * Only the owner can call. * @param addressPair - pair address */ function removePair(address addressPair) external onlyRole(DEFAULT_ADMIN_ROLE) { if (addressPair == address(0)) { revert ZeroAddress(); } pairs[addressPair] = false; emit RemovePair(addressPair, false); // Removed block.timestamp } // Optimizations per audit suggestions: /// @dev Optimized function to compare values before writing to state to avoid re-storing values function updatePairStatus(address addressPair, bool status) external onlyRole(DEFAULT_ADMIN_ROLE) { if (pairs[addressPair] != status) { pairs[addressPair] = status; if (status) { emit AddPair(addressPair, true); } else { emit RemovePair(addressPair, false); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"AccessIsDenied","type":"error"},{"inputs":[],"name":"ExistsAddress","type":"error"},{"inputs":[],"name":"ExistsValue","type":"error"},{"inputs":[],"name":"HighValue","type":"error"},{"inputs":[],"name":"IsNotContract","type":"error"},{"inputs":[],"name":"NotFoundAddress","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroAmount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addressPair","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"AddPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addressPair","type":"address"},{"indexed":false,"internalType":"bool","name":"disable","type":"bool"}],"name":"RemovePair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressPair","type":"address"}],"name":"removePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressPair","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updatePairStatus","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405161170338038061170383398101604081905261002291610234565b6040518060400160405280600681526020016546584775797360d01b8152506040518060400160405280600381526020016246584760e81b815250816003908161006c9190610302565b5060046100798282610302565b50505061008c828261009d60201b60201c565b6100965f8361017e565b50506103db565b6001600160a01b0382166100f75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825461010891906103bc565b90915550506001600160a01b0382165f90815260208190526040812080548392906101349084906103bc565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b6101888282610208565b61017a575f8281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556101bf3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b505050565b5f8281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b5f8060408385031215610245575f80fd5b82516001600160a01b038116811461025b575f80fd5b6020939093015192949293505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061029357607f821691505b6020821081036102b157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561020357805f5260205f20601f840160051c810160208510156102dc5750805b601f840160051c820191505b818110156102fb575f81556001016102e8565b5050505050565b81516001600160401b0381111561031b5761031b61026b565b61032f81610329845461027f565b846102b7565b6020601f821160018114610361575f831561034a5750848201515b5f19600385901b1c1916600184901b1784556102fb565b5f84815260208120601f198516915b828110156103905787850151825560209485019460019092019101610370565b50848210156103ad57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561022e57634e487b7160e01b5f52601160045260245ffd5b61131b806103e85f395ff3fe608060405234801561000f575f80fd5b5060043610610153575f3560e01c806377e58a31116100bf578063a9059cbb11610079578063a9059cbb146102ce578063af6c9c1d146102e1578063c2b7bbb6146102f4578063d547741f14610307578063dd62ed3e1461031a578063fe33b3021461032d575f80fd5b806377e58a311461027357806379cc67901461028657806391d148541461029957806395d89b41146102ac578063a217fddf146102b4578063a457c2d7146102bb575f80fd5b80632f2ff15d116101105780632f2ff15d146101ee578063313ce5671461020357806336568abe14610212578063395093511461022557806342966c681461023857806370a082311461024b575f80fd5b806301ffc9a71461015757806306fdde031461017f578063095ea7b31461019457806318160ddd146101a757806323b872dd146101b9578063248a9ca3146101cc575b5f80fd5b61016a610165366004611016565b61034f565b60405190151581526020015b60405180910390f35b610187610385565b604051610176919061103d565b61016a6101a236600461108d565b610415565b6002545b604051908152602001610176565b61016a6101c73660046110b5565b61042c565b6101ab6101da3660046110ef565b5f9081526005602052604090206001015490565b6102016101fc366004611106565b61044f565b005b60405160128152602001610176565b610201610220366004611106565b610478565b61016a61023336600461108d565b6104fb565b6102016102463660046110ef565b61051c565b6101ab610259366004611130565b6001600160a01b03165f9081526020819052604090205490565b610201610281366004611149565b610529565b61020161029436600461108d565b610604565b61016a6102a7366004611106565b610619565b610187610643565b6101ab5f81565b61016a6102c936600461108d565b610652565b61016a6102dc36600461108d565b6106cc565b6102016102ef366004611130565b6106d9565b610201610302366004611130565b610760565b610201610315366004611106565b610820565b6101ab610328366004611182565b610844565b61016a61033b366004611130565b60066020525f908152604090205460ff1681565b5f6001600160e01b03198216637965db0b60e01b148061037f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610394906111aa565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906111aa565b801561040b5780601f106103e25761010080835404028352916020019161040b565b820191905f5260205f20905b8154815290600101906020018083116103ee57829003601f168201915b5050505050905090565b5f3361042281858561086e565b5060019392505050565b5f33610439858285610991565b610444858585610a09565b506001949350505050565b5f8281526005602052604090206001015461046981610bd5565b6104738383610bdf565b505050565b6001600160a01b03811633146104ed5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104f78282610c64565b5050565b5f3361042281858561050d8383610844565b61051791906111f6565b61086e565b6105263382610cca565b50565b5f61053381610bd5565b6001600160a01b0383165f9081526006602052604090205460ff16151582151514610473576001600160a01b0383165f908152600660205260409020805460ff191683158015919091179091556105c957604051600181526001600160a01b038416907fba2b46271c40ea0ebf6cc70a9c973dcee3b5e25e142f8297dbe4aaf6ac9da673906020015b60405180910390a2505050565b6040515f81526001600160a01b038416907f5404915daf2eec6184e65df7b5ea8768e46d156807740a75d7bcdc01235f41b6906020016105bc565b61060f823383610991565b6104f78282610cca565b5f9182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610394906111aa565b5f338161065f8286610844565b9050838110156106bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e4565b610444828686840361086e565b5f33610422818585610a09565b5f6106e381610bd5565b6001600160a01b03821661070a5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f818152600660209081526040808320805460ff19169055519182527f5404915daf2eec6184e65df7b5ea8768e46d156807740a75d7bcdc01235f41b691015b60405180910390a25050565b5f61076a81610bd5565b6001600160a01b0382166107915760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f9081526006602052604090205460ff16156107ca57604051631120653360e21b815260040160405180910390fd5b6001600160a01b0382165f81815260066020908152604091829020805460ff1916600190811790915591519182527fba2b46271c40ea0ebf6cc70a9c973dcee3b5e25e142f8297dbe4aaf6ac9da6739101610754565b5f8281526005602052604090206001015461083a81610bd5565b6104738383610c64565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166108d05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e4565b6001600160a01b0382166109315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61099c8484610844565b90505f198114610a0357818110156109f65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e4565b610a03848484840361086e565b50505050565b6001600160a01b038316610a6d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e4565b6001600160a01b038216610acf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e4565b6001600160a01b0383165f9081526020819052604090205481811015610b465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610b7c9084906111f6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc891815260200190565b60405180910390a3610a03565b6105268133610e15565b610be98282610619565b6104f7575f8281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610c203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c6e8282610619565b156104f7575f8281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610d2a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e4565b6001600160a01b0382165f9081526020819052604090205481811015610d9d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e4565b6001600160a01b0383165f908152602081905260408120838303905560028054849290610dcb908490611209565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b610e1f8282610619565b6104f757610e37816001600160a01b03166014610e79565b610e42836020610e79565b604051602001610e53929190611233565b60408051601f198184030181529082905262461bcd60e51b82526104e49160040161103d565b60605f610e87836002611291565b610e929060026111f6565b67ffffffffffffffff811115610eaa57610eaa6112a8565b6040519080825280601f01601f191660200182016040528015610ed4576020820181803683370190505b509050600360fc1b815f81518110610eee57610eee6112bc565b60200101906001600160f81b03191690815f1a905350600f60fb1b81600181518110610f1c57610f1c6112bc565b60200101906001600160f81b03191690815f1a9053505f610f3e846002611291565b610f499060016111f6565b90505b6001811115610fc0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f7d57610f7d6112bc565b1a60f81b828281518110610f9357610f936112bc565b60200101906001600160f81b03191690815f1a90535060049490941c93610fb9816112d0565b9050610f4c565b50831561100f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104e4565b9392505050565b5f60208284031215611026575f80fd5b81356001600160e01b03198116811461100f575f80fd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114611088575f80fd5b919050565b5f806040838503121561109e575f80fd5b6110a783611072565b946020939093013593505050565b5f805f606084860312156110c7575f80fd5b6110d084611072565b92506110de60208501611072565b929592945050506040919091013590565b5f602082840312156110ff575f80fd5b5035919050565b5f8060408385031215611117575f80fd5b8235915061112760208401611072565b90509250929050565b5f60208284031215611140575f80fd5b61100f82611072565b5f806040838503121561115a575f80fd5b61116383611072565b915060208301358015158114611177575f80fd5b809150509250929050565b5f8060408385031215611193575f80fd5b61119c83611072565b915061112760208401611072565b600181811c908216806111be57607f821691505b6020821081036111dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561037f5761037f6111e2565b8181038181111561037f5761037f6111e2565b5f81518060208401855e5f93019283525090919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081525f611264601783018561121c565b7001034b99036b4b9b9b4b733903937b6329607d1b8152611288601182018561121c565b95945050505050565b808202811582820484141761037f5761037f6111e2565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f816112de576112de6111e2565b505f19019056fea2646970667358221220ef15f06f7223639cb6787a1791806b676560c891a880df8445e24857b740a1e964736f6c634300081a003300000000000000000000000067ed58fae4003275174b437861874aebfa297766000000000000000000000000000000000000000002b2b220b3866b1423000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610153575f3560e01c806377e58a31116100bf578063a9059cbb11610079578063a9059cbb146102ce578063af6c9c1d146102e1578063c2b7bbb6146102f4578063d547741f14610307578063dd62ed3e1461031a578063fe33b3021461032d575f80fd5b806377e58a311461027357806379cc67901461028657806391d148541461029957806395d89b41146102ac578063a217fddf146102b4578063a457c2d7146102bb575f80fd5b80632f2ff15d116101105780632f2ff15d146101ee578063313ce5671461020357806336568abe14610212578063395093511461022557806342966c681461023857806370a082311461024b575f80fd5b806301ffc9a71461015757806306fdde031461017f578063095ea7b31461019457806318160ddd146101a757806323b872dd146101b9578063248a9ca3146101cc575b5f80fd5b61016a610165366004611016565b61034f565b60405190151581526020015b60405180910390f35b610187610385565b604051610176919061103d565b61016a6101a236600461108d565b610415565b6002545b604051908152602001610176565b61016a6101c73660046110b5565b61042c565b6101ab6101da3660046110ef565b5f9081526005602052604090206001015490565b6102016101fc366004611106565b61044f565b005b60405160128152602001610176565b610201610220366004611106565b610478565b61016a61023336600461108d565b6104fb565b6102016102463660046110ef565b61051c565b6101ab610259366004611130565b6001600160a01b03165f9081526020819052604090205490565b610201610281366004611149565b610529565b61020161029436600461108d565b610604565b61016a6102a7366004611106565b610619565b610187610643565b6101ab5f81565b61016a6102c936600461108d565b610652565b61016a6102dc36600461108d565b6106cc565b6102016102ef366004611130565b6106d9565b610201610302366004611130565b610760565b610201610315366004611106565b610820565b6101ab610328366004611182565b610844565b61016a61033b366004611130565b60066020525f908152604090205460ff1681565b5f6001600160e01b03198216637965db0b60e01b148061037f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610394906111aa565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906111aa565b801561040b5780601f106103e25761010080835404028352916020019161040b565b820191905f5260205f20905b8154815290600101906020018083116103ee57829003601f168201915b5050505050905090565b5f3361042281858561086e565b5060019392505050565b5f33610439858285610991565b610444858585610a09565b506001949350505050565b5f8281526005602052604090206001015461046981610bd5565b6104738383610bdf565b505050565b6001600160a01b03811633146104ed5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104f78282610c64565b5050565b5f3361042281858561050d8383610844565b61051791906111f6565b61086e565b6105263382610cca565b50565b5f61053381610bd5565b6001600160a01b0383165f9081526006602052604090205460ff16151582151514610473576001600160a01b0383165f908152600660205260409020805460ff191683158015919091179091556105c957604051600181526001600160a01b038416907fba2b46271c40ea0ebf6cc70a9c973dcee3b5e25e142f8297dbe4aaf6ac9da673906020015b60405180910390a2505050565b6040515f81526001600160a01b038416907f5404915daf2eec6184e65df7b5ea8768e46d156807740a75d7bcdc01235f41b6906020016105bc565b61060f823383610991565b6104f78282610cca565b5f9182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610394906111aa565b5f338161065f8286610844565b9050838110156106bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e4565b610444828686840361086e565b5f33610422818585610a09565b5f6106e381610bd5565b6001600160a01b03821661070a5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f818152600660209081526040808320805460ff19169055519182527f5404915daf2eec6184e65df7b5ea8768e46d156807740a75d7bcdc01235f41b691015b60405180910390a25050565b5f61076a81610bd5565b6001600160a01b0382166107915760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f9081526006602052604090205460ff16156107ca57604051631120653360e21b815260040160405180910390fd5b6001600160a01b0382165f81815260066020908152604091829020805460ff1916600190811790915591519182527fba2b46271c40ea0ebf6cc70a9c973dcee3b5e25e142f8297dbe4aaf6ac9da6739101610754565b5f8281526005602052604090206001015461083a81610bd5565b6104738383610c64565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166108d05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e4565b6001600160a01b0382166109315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61099c8484610844565b90505f198114610a0357818110156109f65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e4565b610a03848484840361086e565b50505050565b6001600160a01b038316610a6d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e4565b6001600160a01b038216610acf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e4565b6001600160a01b0383165f9081526020819052604090205481811015610b465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610b7c9084906111f6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc891815260200190565b60405180910390a3610a03565b6105268133610e15565b610be98282610619565b6104f7575f8281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610c203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c6e8282610619565b156104f7575f8281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610d2a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e4565b6001600160a01b0382165f9081526020819052604090205481811015610d9d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e4565b6001600160a01b0383165f908152602081905260408120838303905560028054849290610dcb908490611209565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b610e1f8282610619565b6104f757610e37816001600160a01b03166014610e79565b610e42836020610e79565b604051602001610e53929190611233565b60408051601f198184030181529082905262461bcd60e51b82526104e49160040161103d565b60605f610e87836002611291565b610e929060026111f6565b67ffffffffffffffff811115610eaa57610eaa6112a8565b6040519080825280601f01601f191660200182016040528015610ed4576020820181803683370190505b509050600360fc1b815f81518110610eee57610eee6112bc565b60200101906001600160f81b03191690815f1a905350600f60fb1b81600181518110610f1c57610f1c6112bc565b60200101906001600160f81b03191690815f1a9053505f610f3e846002611291565b610f499060016111f6565b90505b6001811115610fc0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f7d57610f7d6112bc565b1a60f81b828281518110610f9357610f936112bc565b60200101906001600160f81b03191690815f1a90535060049490941c93610fb9816112d0565b9050610f4c565b50831561100f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104e4565b9392505050565b5f60208284031215611026575f80fd5b81356001600160e01b03198116811461100f575f80fd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114611088575f80fd5b919050565b5f806040838503121561109e575f80fd5b6110a783611072565b946020939093013593505050565b5f805f606084860312156110c7575f80fd5b6110d084611072565b92506110de60208501611072565b929592945050506040919091013590565b5f602082840312156110ff575f80fd5b5035919050565b5f8060408385031215611117575f80fd5b8235915061112760208401611072565b90509250929050565b5f60208284031215611140575f80fd5b61100f82611072565b5f806040838503121561115a575f80fd5b61116383611072565b915060208301358015158114611177575f80fd5b809150509250929050565b5f8060408385031215611193575f80fd5b61119c83611072565b915061112760208401611072565b600181811c908216806111be57607f821691505b6020821081036111dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561037f5761037f6111e2565b8181038181111561037f5761037f6111e2565b5f81518060208401855e5f93019283525090919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081525f611264601783018561121c565b7001034b99036b4b9b9b4b733903937b6329607d1b8152611288601182018561121c565b95945050505050565b808202811582820484141761037f5761037f6111e2565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f816112de576112de6111e2565b505f19019056fea2646970667358221220ef15f06f7223639cb6787a1791806b676560c891a880df8445e24857b740a1e964736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000067ed58fae4003275174b437861874aebfa297766000000000000000000000000000000000000000002b2b220b3866b1423000000
-----Decoded View---------------
Arg [0] : _admin (address): 0x67Ed58FAE4003275174B437861874AeBFA297766
Arg [1] : _initialSupply (uint256): 835000000000000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000067ed58fae4003275174b437861874aebfa297766
Arg [1] : 000000000000000000000000000000000000000002b2b220b3866b1423000000
Deployed Bytecode Sourcemap
41872:3377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9911:280;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;9911:280:0;;;;;;;;20932:100;;;:::i;:::-;;;;;;;:::i;23424:242::-;;;;;;:::i;:::-;;:::i;22052:108::-;22140:12;;22052:108;;;1549:25:1;;;1537:2;1522:18;22052:108:0;1403:177:1;24246:295:0;;;;;;:::i;:::-;;:::i;11873:181::-;;;;;;:::i;:::-;11992:7;12024:12;;;:6;:12;;;;;:22;;;;11873:181;12316:188;;;;;;:::i;:::-;;:::i;:::-;;21894:93;;;21977:2;2824:36:1;;2812:2;2797:18;21894:93:0;2682:184:1;13446:287:0;;;;;;:::i;:::-;;:::i;24950:270::-;;;;;;:::i;:::-;;:::i;32475:91::-;;;;;;:::i;:::-;;:::i;22223:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;22374:18:0;22342:7;22374:18;;;;;;;;;;;;22223:177;44851:395;;;;;;:::i;:::-;;:::i;32885:164::-;;;;;;:::i;:::-;;:::i;10283:197::-;;;;;;:::i;:::-;;:::i;21151:104::-;;;:::i;9312:49::-;;9357:4;9312:49;;25723:505;;;;;;:::i;:::-;;:::i;22606:234::-;;;;;;:::i;:::-;;:::i;44384:310::-;;;;;;:::i;:::-;;:::i;43842:387::-;;;;;;:::i;:::-;;:::i;12749:190::-;;;;;;:::i;:::-;;:::i;22903:201::-;;;;;;:::i;:::-;;:::i;42191:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9911:280;10041:4;-1:-1:-1;;;;;;10083:47:0;;-1:-1:-1;;;10083:47:0;;:100;;-1:-1:-1;;;;;;;;;;1669:40:0;;;10147:36;10063:120;9911:280;-1:-1:-1;;9911:280:0:o;20932:100::-;20986:13;21019:5;21012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20932:100;:::o;23424:242::-;23543:4;7376:10;23604:32;7376:10;23620:7;23629:6;23604:8;:32::i;:::-;-1:-1:-1;23654:4:0;;23424:242;-1:-1:-1;;;23424:242:0:o;24246:295::-;24377:4;7376:10;24435:38;24451:4;7376:10;24466:6;24435:15;:38::i;:::-;24484:27;24494:4;24500:2;24504:6;24484:9;:27::i;:::-;-1:-1:-1;24529:4:0;;24246:295;-1:-1:-1;;;;24246:295:0:o;12316:188::-;11992:7;12024:12;;;:6;:12;;;;;:22;;;9803:16;9814:4;9803:10;:16::i;:::-;12471:25:::1;12482:4;12488:7;12471:10;:25::i;:::-;12316:188:::0;;;:::o;13446:287::-;-1:-1:-1;;;;;13588:23:0;;7376:10;13588:23;13566:120;;;;-1:-1:-1;;;13566:120:0;;4497:2:1;13566:120:0;;;4479:21:1;4536:2;4516:18;;;4509:30;4575:34;4555:18;;;4548:62;-1:-1:-1;;;4626:18:1;;;4619:45;4681:19;;13566:120:0;;;;;;;;;13699:26;13711:4;13717:7;13699:11;:26::i;:::-;13446:287;;:::o;24950:270::-;25065:4;7376:10;25126:64;7376:10;25142:7;25179:10;25151:25;7376:10;25142:7;25151:9;:25::i;:::-;:38;;;;:::i;:::-;25126:8;:64::i;32475:91::-;32531:27;7376:10;32551:6;32531:5;:27::i;:::-;32475:91;:::o;44851:395::-;9357:4;9803:16;9357:4;9803:10;:16::i;:::-;-1:-1:-1;;;;;44987:18:0;::::1;;::::0;;;:5:::1;:18;::::0;;;;;::::1;;:28;;::::0;::::1;;;44983:256;;-1:-1:-1::0;;;;;45032:18:0;::::1;;::::0;;;:5:::1;:18;::::0;;;;:27;;-1:-1:-1;;45032:27:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;45074:154:::1;;45110:26;::::0;45131:4:::1;445:41:1::0;;-1:-1:-1;;;;;45110:26:0;::::1;::::0;::::1;::::0;433:2:1;418:18;45110:26:0::1;;;;;;;;12316:188:::0;;;:::o;45074:154::-:1;45182:30;::::0;45206:5:::1;445:41:1::0;;-1:-1:-1;;;;;45182:30:0;::::1;::::0;::::1;::::0;433:2:1;418:18;45182:30:0::1;305:187:1::0;32885:164:0;32962:46;32978:7;7376:10;33001:6;32962:15;:46::i;:::-;33019:22;33025:7;33034:6;33019:5;:22::i;10283:197::-;10414:4;10443:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;10443:29:0;;;;;;;;;;;;;;;10283:197::o;21151:104::-;21207:13;21240:7;21233:14;;;;;:::i;25723:505::-;25843:4;7376:10;25843:4;25931:25;7376:10;25948:7;25931:9;:25::i;:::-;25904:52;;26009:15;25989:16;:35;;25967:122;;;;-1:-1:-1;;;25967:122:0;;5175:2:1;25967:122:0;;;5157:21:1;5214:2;5194:18;;;5187:30;5253:34;5233:18;;;5226:62;-1:-1:-1;;;5304:18:1;;;5297:35;5349:19;;25967:122:0;4973:401:1;25967:122:0;26125:60;26134:5;26141:7;26169:15;26150:16;:34;26125:8;:60::i;22606:234::-;22721:4;7376:10;22782:28;7376:10;22799:2;22803:6;22782:9;:28::i;44384:310::-;9357:4;9803:16;9357:4;9803:10;:16::i;:::-;-1:-1:-1;;;;;44501:25:0;::::1;44497:78;;44550:13;;-1:-1:-1::0;;;44550:13:0::1;;;;;;;;;;;44497:78;-1:-1:-1::0;;;;;44587:18:0;::::1;44608:5;44587:18:::0;;;:5:::1;:18;::::0;;;;;;;:26;;-1:-1:-1;;44587:26:0::1;::::0;;44629:30;445:41:1;;;44629:30:0::1;::::0;418:18:1;44629:30:0::1;;;;;;;;44384:310:::0;;:::o;43842:387::-;9357:4;9803:16;9357:4;9803:10;:16::i;:::-;-1:-1:-1;;;;;43956:25:0;::::1;43952:78;;44005:13;;-1:-1:-1::0;;;44005:13:0::1;;;;;;;;;;;43952:78;-1:-1:-1::0;;;;;44046:18:0;::::1;;::::0;;;:5:::1;:18;::::0;;;;;::::1;;44042:73;;;44088:15;;-1:-1:-1::0;;;44088:15:0::1;;;;;;;;;;;44042:73;-1:-1:-1::0;;;;;44127:18:0;::::1;;::::0;;;:5:::1;:18;::::0;;;;;;;;:25;;-1:-1:-1;;44127:25:0::1;44148:4;44127:25:::0;;::::1;::::0;;;44168:26;;445:41:1;;;44168:26:0::1;::::0;418:18:1;44168:26:0::1;305:187:1::0;12749:190:0;11992:7;12024:12;;;:6;:12;;;;;:22;;;9803:16;9814:4;9803:10;:16::i;:::-;12905:26:::1;12917:4;12923:7;12905:11;:26::i;22903:201::-:0;-1:-1:-1;;;;;23069:18:0;;;23037:7;23069:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22903:201::o;29463:380::-;-1:-1:-1;;;;;29599:19:0;;29591:68;;;;-1:-1:-1;;;29591:68:0;;5581:2:1;29591:68:0;;;5563:21:1;5620:2;5600:18;;;5593:30;5659:34;5639:18;;;5632:62;-1:-1:-1;;;5710:18:1;;;5703:34;5754:19;;29591:68:0;5379:400:1;29591:68:0;-1:-1:-1;;;;;29678:21:0;;29670:68;;;;-1:-1:-1;;;29670:68:0;;5986:2:1;29670:68:0;;;5968:21:1;6025:2;6005:18;;;5998:30;6064:34;6044:18;;;6037:62;-1:-1:-1;;;6115:18:1;;;6108:32;6157:19;;29670:68:0;5784:398:1;29670:68:0;-1:-1:-1;;;;;29751:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29803:32;;1549:25:1;;;29803:32:0;;1522:18:1;29803:32:0;;;;;;;29463:380;;;:::o;30134:502::-;30269:24;30296:25;30306:5;30313:7;30296:9;:25::i;:::-;30269:52;;-1:-1:-1;;30336:16:0;:37;30332:297;;30436:6;30416:16;:26;;30390:117;;;;-1:-1:-1;;;30390:117:0;;6389:2:1;30390:117:0;;;6371:21:1;6428:2;6408:18;;;6401:30;6467:31;6447:18;;;6440:59;6516:18;;30390:117:0;6187:353:1;30390:117:0;30551:51;30560:5;30567:7;30595:6;30576:16;:25;30551:8;:51::i;:::-;30258:378;30134:502;;;:::o;26707:708::-;-1:-1:-1;;;;;26838:18:0;;26830:68;;;;-1:-1:-1;;;26830:68:0;;6747:2:1;26830:68:0;;;6729:21:1;6786:2;6766:18;;;6759:30;6825:34;6805:18;;;6798:62;-1:-1:-1;;;6876:18:1;;;6869:35;6921:19;;26830:68:0;6545:401:1;26830:68:0;-1:-1:-1;;;;;26917:16:0;;26909:64;;;;-1:-1:-1;;;26909:64:0;;7153:2:1;26909:64:0;;;7135:21:1;7192:2;7172:18;;;7165:30;7231:34;7211:18;;;7204:62;-1:-1:-1;;;7282:18:1;;;7275:33;7325:19;;26909:64:0;6951:399:1;26909:64:0;-1:-1:-1;;;;;27059:15:0;;27037:19;27059:15;;;;;;;;;;;27107:21;;;;27085:109;;;;-1:-1:-1;;;27085:109:0;;7557:2:1;27085:109:0;;;7539:21:1;7596:2;7576:18;;;7569:30;7635:34;7615:18;;;7608:62;-1:-1:-1;;;7686:18:1;;;7679:36;7732:19;;27085:109:0;7355:402:1;27085:109:0;-1:-1:-1;;;;;27230:15:0;;;:9;:15;;;;;;;;;;;27248:20;;;27230:38;;27290:13;;;;;;;;:23;;27262:6;;27230:9;27290:23;;27262:6;;27290:23;:::i;:::-;;;;;;;;27346:2;-1:-1:-1;;;;;27331:26:0;27340:4;-1:-1:-1;;;;;27331:26:0;;27350:6;27331:26;;;;1549:25:1;;1537:2;1522:18;;1403:177;27331:26:0;;;;;;;;27370:37;12316:188;10784:105;10851:30;10862:4;7376:10;10851;:30::i;15016:238::-;15100:22;15108:4;15114:7;15100;:22::i;:::-;15095:152;;15139:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15139:29:0;;;;;;;;;:36;;-1:-1:-1;;15139:36:0;15171:4;15139:36;;;15222:12;7376:10;;7296:98;15222:12;-1:-1:-1;;;;;15195:40:0;15213:7;-1:-1:-1;;;;;15195:40:0;15207:4;15195:40;;;;;;;;;;15016:238;;:::o;15386:239::-;15470:22;15478:4;15484:7;15470;:22::i;:::-;15466:152;;;15541:5;15509:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15509:29:0;;;;;;;;;;:37;;-1:-1:-1;;15509:37:0;;;15566:40;7376:10;;15509:12;;15566:40;;15541:5;15566:40;15386:239;;:::o;28434:591::-;-1:-1:-1;;;;;28518:21:0;;28510:67;;;;-1:-1:-1;;;28510:67:0;;7964:2:1;28510:67:0;;;7946:21:1;8003:2;7983:18;;;7976:30;8042:34;8022:18;;;8015:62;-1:-1:-1;;;8093:18:1;;;8086:31;8134:19;;28510:67:0;7762:397:1;28510:67:0;-1:-1:-1;;;;;28677:18:0;;28652:22;28677:18;;;;;;;;;;;28714:24;;;;28706:71;;;;-1:-1:-1;;;28706:71:0;;8366:2:1;28706:71:0;;;8348:21:1;8405:2;8385:18;;;8378:30;8444:34;8424:18;;;8417:62;-1:-1:-1;;;8495:18:1;;;8488:32;8537:19;;28706:71:0;8164:398:1;28706:71:0;-1:-1:-1;;;;;28813:18:0;;:9;:18;;;;;;;;;;28834:23;;;28813:44;;28879:12;:22;;28851:6;;28813:9;28879:22;;28851:6;;28879:22;:::i;:::-;;;;-1:-1:-1;;28919:37:0;;1549:25:1;;;28945:1:0;;-1:-1:-1;;;;;28919:37:0;;;;;1537:2:1;1522:18;28919:37:0;;;;;;;12316:188;;;:::o;11179:505::-;11268:22;11276:4;11282:7;11268;:22::i;:::-;11263:414;;11456:41;11484:7;-1:-1:-1;;;;;11456:41:0;11494:2;11456:19;:41::i;:::-;11570:38;11598:4;11605:2;11570:19;:38::i;:::-;11361:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11361:270:0;;;;;;;;;;-1:-1:-1;;;11307:358:0;;;;;;;:::i;3251:483::-;3353:13;3384:19;3416:10;3420:6;3416:1;:10;:::i;:::-;:14;;3429:1;3416:14;:::i;:::-;3406:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3406:25:0;;3384:47;;-1:-1:-1;;;3442:6:0;3449:1;3442:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3442:15:0;;;;;;;;;-1:-1:-1;;;3468:6:0;3475:1;3468:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3468:15:0;;;;;;;;-1:-1:-1;3499:9:0;3511:10;3515:6;3511:1;:10;:::i;:::-;:14;;3524:1;3511:14;:::i;:::-;3499:26;;3494:135;3531:1;3527;:5;3494:135;;;-1:-1:-1;;;3579:5:0;3587:3;3579:11;3566:25;;;;;;;:::i;:::-;;;;3554:6;3561:1;3554:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;3554:37:0;;;;;;;;-1:-1:-1;3616:1:0;3606:11;;;;;3534:3;;;:::i;:::-;;;3494:135;;;-1:-1:-1;3647:10:0;;3639:55;;;;-1:-1:-1;;;3639:55:0;;10297:2:1;3639:55:0;;;10279:21:1;;;10316:18;;;10309:30;10375:34;10355:18;;;10348:62;10427:18;;3639:55:0;10095:356:1;3639:55:0;3719:6;3251:483;-1:-1:-1;;;3251:483:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:418;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:173::-;988:20;;-1:-1:-1;;;;;1037:31:1;;1027:42;;1017:70;;1083:1;1080;1073:12;1017:70;920:173;;;:::o;1098:300::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1266:29;1285:9;1266:29;:::i;:::-;1256:39;1364:2;1349:18;;;;1336:32;;-1:-1:-1;;;1098:300:1:o;1585:374::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:52;;;1747:1;1744;1737:12;1699:52;1770:29;1789:9;1770:29;:::i;:::-;1760:39;;1818:38;1852:2;1841:9;1837:18;1818:38;:::i;:::-;1585:374;;1808:48;;-1:-1:-1;;;1925:2:1;1910:18;;;;1897:32;;1585:374::o;1964:226::-;2023:6;2076:2;2064:9;2055:7;2051:23;2047:32;2044:52;;;2092:1;2089;2082:12;2044:52;-1:-1:-1;2137:23:1;;1964:226;-1:-1:-1;1964:226:1:o;2377:300::-;2445:6;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2567:23;;;-1:-1:-1;2633:38:1;2667:2;2652:18;;2633:38;:::i;:::-;2623:48;;2377:300;;;;;:::o;3102:186::-;3161:6;3214:2;3202:9;3193:7;3189:23;3185:32;3182:52;;;3230:1;3227;3220:12;3182:52;3253:29;3272:9;3253:29;:::i;3293:347::-;3358:6;3366;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3458:29;3477:9;3458:29;:::i;:::-;3448:39;;3537:2;3526:9;3522:18;3509:32;3584:5;3577:13;3570:21;3563:5;3560:32;3550:60;;3606:1;3603;3596:12;3550:60;3629:5;3619:15;;;3293:347;;;;;:::o;3645:260::-;3713:6;3721;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:29;3832:9;3813:29;:::i;:::-;3803:39;;3861:38;3895:2;3884:9;3880:18;3861:38;:::i;3910:380::-;3989:1;3985:12;;;;4032;;;4053:61;;4107:4;4099:6;4095:17;4085:27;;4053:61;4160:2;4152:6;4149:14;4129:18;4126:38;4123:161;;4206:10;4201:3;4197:20;4194:1;4187:31;4241:4;4238:1;4231:15;4269:4;4266:1;4259:15;4123:161;;3910:380;;;:::o;4711:127::-;4772:10;4767:3;4763:20;4760:1;4753:31;4803:4;4800:1;4793:15;4827:4;4824:1;4817:15;4843:125;4908:9;;;4929:10;;;4926:36;;;4942:18;;:::i;8567:128::-;8634:9;;;8655:11;;;8652:37;;;8669:18;;:::i;8700:212::-;8742:3;8780:5;8774:12;8824:6;8817:4;8810:5;8806:16;8801:3;8795:36;8886:1;8850:16;;8875:13;;;-1:-1:-1;8850:16:1;;8700:212;-1:-1:-1;8700:212:1:o;8917:595::-;9328:25;9323:3;9316:38;9298:3;9373:39;9408:2;9403:3;9399:12;9391:6;9373:39;:::i;:::-;-1:-1:-1;;;9428:2:1;9421:31;9468:38;9502:2;9498;9494:11;9486:6;9468:38;:::i;:::-;9461:45;8917:595;-1:-1:-1;;;;;8917:595:1:o;9517:168::-;9590:9;;;9621;;9638:15;;;9632:22;;9618:37;9608:71;;9659:18;;:::i;9690:127::-;9751:10;9746:3;9742:20;9739:1;9732:31;9782:4;9779:1;9772:15;9806:4;9803:1;9796:15;9822:127;9883:10;9878:3;9874:20;9871:1;9864:31;9914:4;9911:1;9904:15;9938:4;9935:1;9928:15;9954:136;9993:3;10021:5;10011:39;;10030:18;;:::i;:::-;-1:-1:-1;;;10066:18:1;;9954:136::o
Swarm Source
ipfs://ef15f06f7223639cb6787a1791806b676560c891a880df8445e24857b740a1e9
Loading...
Loading
Loading...
Loading
OVERVIEW
FXGuys is a decentralized broker and prop trading firm that provides access to real trading capital and multiple assets including crypto, FX, Indices & commodities.Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.