Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
6,000 PSI/acc
Holders
244
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10.764381104534199087 PSI/accValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TokenERC20
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.24; /* /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ /\ ____ ____ ___ __ /\ \/| _ \/ ___|_ _| / /_ _ ___ ___ \/ /\| |_) \___ \| | / / _` |/ __/ __|/\ \/| __/ ___) | | / / (_| | (_| (__ \/ /\|_| |____/___/_/ \__,_|\___\___|/\ \/ \/ /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ https://psi-acc.box/ https://twitter.com/acc_psi https://t.me/PSIacc */ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import {ITokenERC20} from "./ITokenERC20.sol"; contract TokenERC20 is ITokenERC20, ERC20, AccessControl { uint256 public buyFeePercentage; uint256 public sellFeePercentage; bytes32 public constant MANAGEMENT_ROLE = keccak256("MANAGEMENT_ROLE"); mapping(address => bool) private whitelist; address payable public managerContract; constructor() ERC20("PsiGate", "PSI/acc") { buyFeePercentage = 5; sellFeePercentage = 5; _mint(msg.sender, 6000 * 10 ** decimals()); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); } modifier onlyAdmin() { super._checkRole(DEFAULT_ADMIN_ROLE, _msgSender()); _; } modifier onlyManager() { super._checkRole(MANAGEMENT_ROLE, _msgSender()); _; } function isWhitelisted(address _account) public view returns (bool) { return whitelist[_account]; } function setManager(address payable _management) external onlyAdmin { if (managerContract != address(0)) { _revokeRole(MANAGEMENT_ROLE, managerContract); } managerContract = _management; _grantRole(MANAGEMENT_ROLE, _management); emit ManagerChanged(_management); } function renounceOwnership() external onlyAdmin { _revokeRole(DEFAULT_ADMIN_ROLE, msg.sender); } function addToWhitelist(address _account) external onlyManager { whitelist[_account] = true; emit Whitelisted(_account); } function removeFromWhitelist(address _account) external onlyManager { whitelist[_account] = false; emit RemovedFromWhitelist(_account); } function setBuyFeePercentage(uint256 _newBuyFeePercentage) external onlyManager { require(_newBuyFeePercentage <= 45, "Fee percentage too high"); uint256 oldBuyFee = buyFeePercentage; buyFeePercentage = _newBuyFeePercentage; emit BuyFeePercentageChanged(oldBuyFee, _newBuyFeePercentage); } function setSellFeePercentage(uint256 _newSellFeePercentage) external onlyManager { require(_newSellFeePercentage <= 45, "Fee percentage too high"); uint256 oldSellFee = sellFeePercentage; sellFeePercentage = _newSellFeePercentage; emit SellFeePercentageChanged(oldSellFee, _newSellFeePercentage); } function _transferFee(address _sender, uint256 _amount) internal { if (_amount > 0) { if (managerContract == address(0)) { _burn(_sender, _amount); } else { super._transfer(_sender, managerContract, _amount); } } } function transfer(address _to, uint256 _value) public override returns (bool) { address sender = msg.sender; if (!whitelist[sender] && !whitelist[_to]) { // if sender OR _to is in whitelist dont apply fees uint256 fee = (_value * buyFeePercentage) / 100; uint256 amountAfterFee = _value - fee; super._transfer(sender, _to, amountAfterFee); _transferFee(sender, fee); } else { super._transfer(sender, _to, _value); } return true; } function transferFrom(address _from, address _to, uint256 _value) public override returns (bool) { _spendAllowance(_from, msg.sender, _value); if (!whitelist[_from] && !whitelist[_to]) { // if sender OR _to is in whitelist dont apply fees uint256 fee = (_value * sellFeePercentage) / 100; uint256 amountAfterFee = _value - fee; super._transfer(_from, _to, amountAfterFee); _transferFee(_from, fee); } else { super._transfer(_from, _to, _value); } return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * 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}: * * ```solidity * 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. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ 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 returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @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 returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual 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 `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @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. */ 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 `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.24; interface ITokenERC20 { event ManagerChanged(address indexed _manager); event BuyFeePercentageChanged(uint256 _previousBuyFee, uint256 _newBuyFee); event SellFeePercentageChanged(uint256 _previousSellFee, uint256 _newSellFee); event Whitelisted(address indexed _account); event RemovedFromWhitelist(address indexed _account); function isWhitelisted(address _account) external view returns (bool); function setManager(address payable _management) external; function renounceOwnership() external; function addToWhitelist(address _account) external; function removeFromWhitelist(address _account) external; function setBuyFeePercentage(uint256 _newBuyFeePercentage) external; function setSellFeePercentage(uint256 _newSellFeePercentage) external; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_previousBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newBuyFee","type":"uint256"}],"name":"BuyFeePercentageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_manager","type":"address"}],"name":"ManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"RemovedFromWhitelist","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":false,"internalType":"uint256","name":"_previousSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"SellFeePercentageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"Whitelisted","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGEMENT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addToWhitelist","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":"value","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":"buyFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"_account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerContract","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyFeePercentage","type":"uint256"}],"name":"setBuyFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_management","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellFeePercentage","type":"uint256"}],"name":"setSellFeePercentage","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":"_value","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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600781526020017f50736947617465000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5053492f6163630000000000000000000000000000000000000000000000000081525081600390816200008f9190620007c5565b508060049081620000a19190620007c5565b50505060056006819055506005600781905550620000f233620000c96200010e60201b60201c565b600a620000d7919062000a3c565b611770620000e6919062000a8d565b6200011760201b60201c565b620001076000801b33620001a460201b60201c565b5062000be0565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200018c5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000183919062000b1d565b60405180910390fd5b620001a060008383620002a860201b60201c565b5050565b6000620001b88383620004d860201b60201c565b6200029d5760016005600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002396200054360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050620002a2565b600090505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002fe578060026000828254620002f1919062000b3a565b92505081905550620003d4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200038d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003849392919062000b86565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200041f57806002600082825403925050819055506200046c565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004cb919062000bc3565b60405180910390a3505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005cd57607f821691505b602082108103620005e357620005e262000585565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200064d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200060e565b6200065986836200060e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006a6620006a06200069a8462000671565b6200067b565b62000671565b9050919050565b6000819050919050565b620006c28362000685565b620006da620006d182620006ad565b8484546200061b565b825550505050565b600090565b620006f1620006e2565b620006fe818484620006b7565b505050565b5b8181101562000726576200071a600082620006e7565b60018101905062000704565b5050565b601f82111562000775576200073f81620005e9565b6200074a84620005fe565b810160208510156200075a578190505b620007726200076985620005fe565b83018262000703565b50505b505050565b600082821c905092915050565b60006200079a600019846008026200077a565b1980831691505092915050565b6000620007b5838362000787565b9150826002028217905092915050565b620007d0826200054b565b67ffffffffffffffff811115620007ec57620007eb62000556565b5b620007f88254620005b4565b620008058282856200072a565b600060209050601f8311600181146200083d576000841562000828578287015190505b620008348582620007a7565b865550620008a4565b601f1984166200084d86620005e9565b60005b82811015620008775784890151825560018201915060208501945060208101905062000850565b8683101562000897578489015162000893601f89168262000787565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200093a57808604811115620009125762000911620008ac565b5b6001851615620009225780820291505b80810290506200093285620008db565b9450620008f2565b94509492505050565b60008262000955576001905062000a28565b8162000965576000905062000a28565b81600181146200097e57600281146200098957620009bf565b600191505062000a28565b60ff8411156200099e576200099d620008ac565b5b8360020a915084821115620009b857620009b7620008ac565b5b5062000a28565b5060208310610133831016604e8410600b8410161715620009f95782820a905083811115620009f357620009f2620008ac565b5b62000a28565b62000a088484846001620008e8565b9250905081840481111562000a225762000a21620008ac565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a498262000671565b915062000a568362000a2f565b925062000a857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000943565b905092915050565b600062000a9a8262000671565b915062000aa78362000671565b925082820262000ab78162000671565b9150828204841483151762000ad15762000ad0620008ac565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b058262000ad8565b9050919050565b62000b178162000af8565b82525050565b600060208201905062000b34600083018462000b0c565b92915050565b600062000b478262000671565b915062000b548362000671565b925082820190508082111562000b6f5762000b6e620008ac565b5b92915050565b62000b808162000671565b82525050565b600060608201905062000b9d600083018662000b0c565b62000bac602083018562000b75565b62000bbb604083018462000b75565b949350505050565b600060208201905062000bda600083018462000b75565b92915050565b6122228062000bf06000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638ab1d681116100f9578063d0ebdbe711610097578063dd62ed3e11610071578063dd62ed3e146104d0578063e208a93914610500578063e43252d71461051e578063f63f98a61461053a576101a9565b8063d0ebdbe71461047a578063d44545e714610496578063d547741f146104b4576101a9565b8063a217fddf116100d3578063a217fddf146103f2578063a9059cbb14610410578063c1fc3d8114610440578063cda5f89f1461045c576101a9565b80638ab1d6811461038857806391d14854146103a457806395d89b41146103d4576101a9565b80632710ac801161016657806336568abe1161014057806336568abe146103025780633af32abf1461031e57806370a082311461034e578063715018a61461037e576101a9565b80632710ac80146102aa5780632f2ff15d146102c8578063313ce567146102e4576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806318160ddd1461022c57806323b872dd1461024a578063248a9ca31461027a575b600080fd5b6101c860048036038101906101c39190611a9b565b610556565b6040516101d59190611ae3565b60405180910390f35b6101e66105d0565b6040516101f39190611b8e565b60405180910390f35b61021660048036038101906102119190611c44565b610662565b6040516102239190611ae3565b60405180910390f35b610234610685565b6040516102419190611c93565b60405180910390f35b610264600480360381019061025f9190611cae565b61068f565b6040516102719190611ae3565b60405180910390f35b610294600480360381019061028f9190611d37565b6107a6565b6040516102a19190611d73565b60405180910390f35b6102b26107c6565b6040516102bf9190611daf565b60405180910390f35b6102e260048036038101906102dd9190611dca565b6107ec565b005b6102ec61080e565b6040516102f99190611e26565b60405180910390f35b61031c60048036038101906103179190611dca565b610817565b005b61033860048036038101906103339190611e41565b610892565b6040516103459190611ae3565b60405180910390f35b61036860048036038101906103639190611e41565b6108e8565b6040516103759190611c93565b60405180910390f35b610386610930565b005b6103a2600480360381019061039d9190611e41565b610954565b005b6103be60048036038101906103b99190611dca565b610a23565b6040516103cb9190611ae3565b60405180910390f35b6103dc610a8e565b6040516103e99190611b8e565b60405180910390f35b6103fa610b20565b6040516104079190611d73565b60405180910390f35b61042a60048036038101906104259190611c44565b610b27565b6040516104379190611ae3565b60405180910390f35b61045a60048036038101906104559190611e6e565b610c37565b005b610464610cf7565b6040516104719190611d73565b60405180910390f35b610494600480360381019061048f9190611ec7565b610d1b565b005b61049e610e85565b6040516104ab9190611c93565b60405180910390f35b6104ce60048036038101906104c99190611dca565b610e8b565b005b6104ea60048036038101906104e59190611ef4565b610ead565b6040516104f79190611c93565b60405180910390f35b610508610f34565b6040516105159190611c93565b60405180910390f35b61053860048036038101906105339190611e41565b610f3a565b005b610554600480360381019061054f9190611e6e565b611009565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c957506105c8826110c9565b5b9050919050565b6060600380546105df90611f63565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90611f63565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b60008061066d611133565b905061067a81858561113b565b600191505092915050565b6000600254905090565b600061069c84338461114d565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156107405750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561078f5760006064600754846107579190611fc3565b6107619190612034565b9050600081846107719190612065565b905061077e8686836111e1565b61078886836112d5565b505061079b565b61079a8484846111e1565b5b600190509392505050565b600060056000838152602001908152602001600020600101549050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107f5826107a6565b6107fe81611376565b610808838361138a565b50505050565b60006012905090565b61081f611133565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610883576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61088d828261147c565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109446000801b61093f611133565b61156f565b6109516000801b3361147c565b50565b6109857fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8610980611133565b61156f565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcdd2e9b91a56913d370075169cefa1602ba36be5301664f752192bb1709df75760405160405180910390a250565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a9d90611f63565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac990611f63565b8015610b165780601f10610aeb57610100808354040283529160200191610b16565b820191906000526020600020905b815481529060010190602001808311610af957829003601f168201915b5050505050905090565b6000801b81565b600080339050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610bd15750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610c20576000606460065485610be89190611fc3565b610bf29190612034565b905060008185610c029190612065565b9050610c0f8387836111e1565b610c1983836112d5565b5050610c2c565b610c2b8185856111e1565b5b600191505092915050565b610c687fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8610c63611133565b61156f565b602d811115610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906120e5565b60405180910390fd5b60006006549050816006819055507f438fcf6d33e270a2ca086eeb6b45d51230f8fd11af183e8e17f8d773aa5a791b8183604051610ceb929190612105565b60405180910390a15050565b7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f881565b610d2f6000801b610d2a611133565b61156f565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dd357610dd17fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661147c565b505b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610e3e7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f88261138a565b508073ffffffffffffffffffffffffffffffffffffffff167f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b60405160405180910390a250565b60065481565b610e94826107a6565b610e9d81611376565b610ea7838361147c565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610f6b7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8610f66611133565b61156f565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faab7954e9d246b167ef88aeddad35209ca2489d95a8aeb59e288d9b19fae5a5460405160405180910390a250565b61103a7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8611035611133565b61156f565b602d81111561107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906120e5565b60405180910390fd5b60006007549050816007819055507fef8dde522e5e1ad034965334ce0f6159f1e9fe4a756bf569952da3b960a6592a81836040516110bd929190612105565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61114883838360016115c0565b505050565b60006111598484610ead565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111db57818110156111cb578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111c29392919061213d565b60405180910390fd5b6111da848484840360006115c0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112535760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161124a9190612174565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c55760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112bc9190612174565b60405180910390fd5b6112d0838383611797565b505050565b600081111561137257600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113435761133e82826119bc565b611371565b61137082600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836111e1565b5b5b5050565b61138781611382611133565b61156f565b50565b60006113968383610a23565b6114715760016005600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061140e611133565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611476565b600090505b92915050565b60006114888383610a23565b156115645760006005600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611501611133565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050611569565b600090505b92915050565b6115798282610a23565b6115bc5780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016115b392919061218f565b60405180910390fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116325760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016116299190612174565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a45760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161169b9190612174565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611791578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117889190611c93565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e95780600260008282546117dd91906121b8565b925050819055506118bc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611875578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161186c9392919061213d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119055780600260008282540392505081905550611952565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119af9190611c93565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a2e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611a259190612174565b60405180910390fd5b611a3a82600083611797565b5050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a7881611a43565b8114611a8357600080fd5b50565b600081359050611a9581611a6f565b92915050565b600060208284031215611ab157611ab0611a3e565b5b6000611abf84828501611a86565b91505092915050565b60008115159050919050565b611add81611ac8565b82525050565b6000602082019050611af86000830184611ad4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b38578082015181840152602081019050611b1d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b6082611afe565b611b6a8185611b09565b9350611b7a818560208601611b1a565b611b8381611b44565b840191505092915050565b60006020820190508181036000830152611ba88184611b55565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611bdb82611bb0565b9050919050565b611beb81611bd0565b8114611bf657600080fd5b50565b600081359050611c0881611be2565b92915050565b6000819050919050565b611c2181611c0e565b8114611c2c57600080fd5b50565b600081359050611c3e81611c18565b92915050565b60008060408385031215611c5b57611c5a611a3e565b5b6000611c6985828601611bf9565b9250506020611c7a85828601611c2f565b9150509250929050565b611c8d81611c0e565b82525050565b6000602082019050611ca86000830184611c84565b92915050565b600080600060608486031215611cc757611cc6611a3e565b5b6000611cd586828701611bf9565b9350506020611ce686828701611bf9565b9250506040611cf786828701611c2f565b9150509250925092565b6000819050919050565b611d1481611d01565b8114611d1f57600080fd5b50565b600081359050611d3181611d0b565b92915050565b600060208284031215611d4d57611d4c611a3e565b5b6000611d5b84828501611d22565b91505092915050565b611d6d81611d01565b82525050565b6000602082019050611d886000830184611d64565b92915050565b6000611d9982611bb0565b9050919050565b611da981611d8e565b82525050565b6000602082019050611dc46000830184611da0565b92915050565b60008060408385031215611de157611de0611a3e565b5b6000611def85828601611d22565b9250506020611e0085828601611bf9565b9150509250929050565b600060ff82169050919050565b611e2081611e0a565b82525050565b6000602082019050611e3b6000830184611e17565b92915050565b600060208284031215611e5757611e56611a3e565b5b6000611e6584828501611bf9565b91505092915050565b600060208284031215611e8457611e83611a3e565b5b6000611e9284828501611c2f565b91505092915050565b611ea481611d8e565b8114611eaf57600080fd5b50565b600081359050611ec181611e9b565b92915050565b600060208284031215611edd57611edc611a3e565b5b6000611eeb84828501611eb2565b91505092915050565b60008060408385031215611f0b57611f0a611a3e565b5b6000611f1985828601611bf9565b9250506020611f2a85828601611bf9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f7b57607f821691505b602082108103611f8e57611f8d611f34565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fce82611c0e565b9150611fd983611c0e565b9250828202611fe781611c0e565b91508282048414831517611ffe57611ffd611f94565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061203f82611c0e565b915061204a83611c0e565b92508261205a57612059612005565b5b828204905092915050565b600061207082611c0e565b915061207b83611c0e565b925082820390508181111561209357612092611f94565b5b92915050565b7f4665652070657263656e7461676520746f6f2068696768000000000000000000600082015250565b60006120cf601783611b09565b91506120da82612099565b602082019050919050565b600060208201905081810360008301526120fe816120c2565b9050919050565b600060408201905061211a6000830185611c84565b6121276020830184611c84565b9392505050565b61213781611bd0565b82525050565b6000606082019050612152600083018661212e565b61215f6020830185611c84565b61216c6040830184611c84565b949350505050565b6000602082019050612189600083018461212e565b92915050565b60006040820190506121a4600083018561212e565b6121b16020830184611d64565b9392505050565b60006121c382611c0e565b91506121ce83611c0e565b92508282019050808211156121e6576121e5611f94565b5b9291505056fea2646970667358221220496286ca4b208436d293795e93fa148330c6dbe7a1785a89f2dc69a0f733e41e64736f6c63430008180033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638ab1d681116100f9578063d0ebdbe711610097578063dd62ed3e11610071578063dd62ed3e146104d0578063e208a93914610500578063e43252d71461051e578063f63f98a61461053a576101a9565b8063d0ebdbe71461047a578063d44545e714610496578063d547741f146104b4576101a9565b8063a217fddf116100d3578063a217fddf146103f2578063a9059cbb14610410578063c1fc3d8114610440578063cda5f89f1461045c576101a9565b80638ab1d6811461038857806391d14854146103a457806395d89b41146103d4576101a9565b80632710ac801161016657806336568abe1161014057806336568abe146103025780633af32abf1461031e57806370a082311461034e578063715018a61461037e576101a9565b80632710ac80146102aa5780632f2ff15d146102c8578063313ce567146102e4576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806318160ddd1461022c57806323b872dd1461024a578063248a9ca31461027a575b600080fd5b6101c860048036038101906101c39190611a9b565b610556565b6040516101d59190611ae3565b60405180910390f35b6101e66105d0565b6040516101f39190611b8e565b60405180910390f35b61021660048036038101906102119190611c44565b610662565b6040516102239190611ae3565b60405180910390f35b610234610685565b6040516102419190611c93565b60405180910390f35b610264600480360381019061025f9190611cae565b61068f565b6040516102719190611ae3565b60405180910390f35b610294600480360381019061028f9190611d37565b6107a6565b6040516102a19190611d73565b60405180910390f35b6102b26107c6565b6040516102bf9190611daf565b60405180910390f35b6102e260048036038101906102dd9190611dca565b6107ec565b005b6102ec61080e565b6040516102f99190611e26565b60405180910390f35b61031c60048036038101906103179190611dca565b610817565b005b61033860048036038101906103339190611e41565b610892565b6040516103459190611ae3565b60405180910390f35b61036860048036038101906103639190611e41565b6108e8565b6040516103759190611c93565b60405180910390f35b610386610930565b005b6103a2600480360381019061039d9190611e41565b610954565b005b6103be60048036038101906103b99190611dca565b610a23565b6040516103cb9190611ae3565b60405180910390f35b6103dc610a8e565b6040516103e99190611b8e565b60405180910390f35b6103fa610b20565b6040516104079190611d73565b60405180910390f35b61042a60048036038101906104259190611c44565b610b27565b6040516104379190611ae3565b60405180910390f35b61045a60048036038101906104559190611e6e565b610c37565b005b610464610cf7565b6040516104719190611d73565b60405180910390f35b610494600480360381019061048f9190611ec7565b610d1b565b005b61049e610e85565b6040516104ab9190611c93565b60405180910390f35b6104ce60048036038101906104c99190611dca565b610e8b565b005b6104ea60048036038101906104e59190611ef4565b610ead565b6040516104f79190611c93565b60405180910390f35b610508610f34565b6040516105159190611c93565b60405180910390f35b61053860048036038101906105339190611e41565b610f3a565b005b610554600480360381019061054f9190611e6e565b611009565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c957506105c8826110c9565b5b9050919050565b6060600380546105df90611f63565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90611f63565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b60008061066d611133565b905061067a81858561113b565b600191505092915050565b6000600254905090565b600061069c84338461114d565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156107405750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561078f5760006064600754846107579190611fc3565b6107619190612034565b9050600081846107719190612065565b905061077e8686836111e1565b61078886836112d5565b505061079b565b61079a8484846111e1565b5b600190509392505050565b600060056000838152602001908152602001600020600101549050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107f5826107a6565b6107fe81611376565b610808838361138a565b50505050565b60006012905090565b61081f611133565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610883576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61088d828261147c565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109446000801b61093f611133565b61156f565b6109516000801b3361147c565b50565b6109857fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8610980611133565b61156f565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcdd2e9b91a56913d370075169cefa1602ba36be5301664f752192bb1709df75760405160405180910390a250565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a9d90611f63565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac990611f63565b8015610b165780601f10610aeb57610100808354040283529160200191610b16565b820191906000526020600020905b815481529060010190602001808311610af957829003601f168201915b5050505050905090565b6000801b81565b600080339050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610bd15750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610c20576000606460065485610be89190611fc3565b610bf29190612034565b905060008185610c029190612065565b9050610c0f8387836111e1565b610c1983836112d5565b5050610c2c565b610c2b8185856111e1565b5b600191505092915050565b610c687fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8610c63611133565b61156f565b602d811115610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906120e5565b60405180910390fd5b60006006549050816006819055507f438fcf6d33e270a2ca086eeb6b45d51230f8fd11af183e8e17f8d773aa5a791b8183604051610ceb929190612105565b60405180910390a15050565b7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f881565b610d2f6000801b610d2a611133565b61156f565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dd357610dd17fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661147c565b505b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610e3e7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f88261138a565b508073ffffffffffffffffffffffffffffffffffffffff167f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b60405160405180910390a250565b60065481565b610e94826107a6565b610e9d81611376565b610ea7838361147c565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610f6b7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8610f66611133565b61156f565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faab7954e9d246b167ef88aeddad35209ca2489d95a8aeb59e288d9b19fae5a5460405160405180910390a250565b61103a7fe9d79fac2bc639bd3a1e64ca9878bc920831c257999966c9d4ad8dda2ba055f8611035611133565b61156f565b602d81111561107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906120e5565b60405180910390fd5b60006007549050816007819055507fef8dde522e5e1ad034965334ce0f6159f1e9fe4a756bf569952da3b960a6592a81836040516110bd929190612105565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61114883838360016115c0565b505050565b60006111598484610ead565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111db57818110156111cb578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111c29392919061213d565b60405180910390fd5b6111da848484840360006115c0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112535760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161124a9190612174565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c55760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112bc9190612174565b60405180910390fd5b6112d0838383611797565b505050565b600081111561137257600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113435761133e82826119bc565b611371565b61137082600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836111e1565b5b5b5050565b61138781611382611133565b61156f565b50565b60006113968383610a23565b6114715760016005600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061140e611133565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611476565b600090505b92915050565b60006114888383610a23565b156115645760006005600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611501611133565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050611569565b600090505b92915050565b6115798282610a23565b6115bc5780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016115b392919061218f565b60405180910390fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116325760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016116299190612174565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a45760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161169b9190612174565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611791578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117889190611c93565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e95780600260008282546117dd91906121b8565b925050819055506118bc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611875578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161186c9392919061213d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119055780600260008282540392505081905550611952565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119af9190611c93565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a2e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611a259190612174565b60405180910390fd5b611a3a82600083611797565b5050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a7881611a43565b8114611a8357600080fd5b50565b600081359050611a9581611a6f565b92915050565b600060208284031215611ab157611ab0611a3e565b5b6000611abf84828501611a86565b91505092915050565b60008115159050919050565b611add81611ac8565b82525050565b6000602082019050611af86000830184611ad4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b38578082015181840152602081019050611b1d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b6082611afe565b611b6a8185611b09565b9350611b7a818560208601611b1a565b611b8381611b44565b840191505092915050565b60006020820190508181036000830152611ba88184611b55565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611bdb82611bb0565b9050919050565b611beb81611bd0565b8114611bf657600080fd5b50565b600081359050611c0881611be2565b92915050565b6000819050919050565b611c2181611c0e565b8114611c2c57600080fd5b50565b600081359050611c3e81611c18565b92915050565b60008060408385031215611c5b57611c5a611a3e565b5b6000611c6985828601611bf9565b9250506020611c7a85828601611c2f565b9150509250929050565b611c8d81611c0e565b82525050565b6000602082019050611ca86000830184611c84565b92915050565b600080600060608486031215611cc757611cc6611a3e565b5b6000611cd586828701611bf9565b9350506020611ce686828701611bf9565b9250506040611cf786828701611c2f565b9150509250925092565b6000819050919050565b611d1481611d01565b8114611d1f57600080fd5b50565b600081359050611d3181611d0b565b92915050565b600060208284031215611d4d57611d4c611a3e565b5b6000611d5b84828501611d22565b91505092915050565b611d6d81611d01565b82525050565b6000602082019050611d886000830184611d64565b92915050565b6000611d9982611bb0565b9050919050565b611da981611d8e565b82525050565b6000602082019050611dc46000830184611da0565b92915050565b60008060408385031215611de157611de0611a3e565b5b6000611def85828601611d22565b9250506020611e0085828601611bf9565b9150509250929050565b600060ff82169050919050565b611e2081611e0a565b82525050565b6000602082019050611e3b6000830184611e17565b92915050565b600060208284031215611e5757611e56611a3e565b5b6000611e6584828501611bf9565b91505092915050565b600060208284031215611e8457611e83611a3e565b5b6000611e9284828501611c2f565b91505092915050565b611ea481611d8e565b8114611eaf57600080fd5b50565b600081359050611ec181611e9b565b92915050565b600060208284031215611edd57611edc611a3e565b5b6000611eeb84828501611eb2565b91505092915050565b60008060408385031215611f0b57611f0a611a3e565b5b6000611f1985828601611bf9565b9250506020611f2a85828601611bf9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f7b57607f821691505b602082108103611f8e57611f8d611f34565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fce82611c0e565b9150611fd983611c0e565b9250828202611fe781611c0e565b91508282048414831517611ffe57611ffd611f94565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061203f82611c0e565b915061204a83611c0e565b92508261205a57612059612005565b5b828204905092915050565b600061207082611c0e565b915061207b83611c0e565b925082820390508181111561209357612092611f94565b5b92915050565b7f4665652070657263656e7461676520746f6f2068696768000000000000000000600082015250565b60006120cf601783611b09565b91506120da82612099565b602082019050919050565b600060208201905081810360008301526120fe816120c2565b9050919050565b600060408201905061211a6000830185611c84565b6121276020830184611c84565b9392505050565b61213781611bd0565b82525050565b6000606082019050612152600083018661212e565b61215f6020830185611c84565b61216c6040830184611c84565b949350505050565b6000602082019050612189600083018461212e565b92915050565b60006040820190506121a4600083018561212e565b6121b16020830184611d64565b9392505050565b60006121c382611c0e565b91506121ce83611c0e565b92508282019050808211156121e6576121e5611f94565b5b9291505056fea2646970667358221220496286ca4b208436d293795e93fa148330c6dbe7a1785a89f2dc69a0f733e41e64736f6c63430008180033
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.