ETH Price: $3,307.49 (+0.01%)
Gas: 4.14 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

TPRO (TPRO) (@$0.0049)
Transaction Hash
Method
Block
From
To
Transfer217090822025-01-26 13:47:2312 mins ago1737899243IN
Tokenomia.pro: TPRO Token
0 ETH0.0003608610.53003066
Transfer217090622025-01-26 13:43:2316 mins ago1737899003IN
Tokenomia.pro: TPRO Token
0 ETH0.000249164.43590742
Transfer217089312025-01-26 13:17:1142 mins ago1737897431IN
Tokenomia.pro: TPRO Token
0 ETH0.0003571210.41374599
Transfer217088872025-01-26 13:08:2351 mins ago1737896903IN
Tokenomia.pro: TPRO Token
0 ETH0.000242364.71589001
Approve217041562025-01-25 21:17:2316 hrs ago1737839843IN
Tokenomia.pro: TPRO Token
0 ETH0.000284946.11151335
Transfer217003012025-01-25 8:23:1129 hrs ago1737793391IN
Tokenomia.pro: TPRO Token
0 ETH0.000260155.0619041
Approve216939802025-01-24 11:11:352 days ago1737717095IN
Tokenomia.pro: TPRO Token
0 ETH0.0004490118.44692532
Approve216939212025-01-24 10:59:472 days ago1737716387IN
Tokenomia.pro: TPRO Token
0 ETH0.0004060516.68178464
Approve216891732025-01-23 19:05:592 days ago1737659159IN
Tokenomia.pro: TPRO Token
0 ETH0.0003218513.22284653
Approve216861102025-01-23 8:51:233 days ago1737622283IN
Tokenomia.pro: TPRO Token
0 ETH0.00019576.64191884
Approve216852092025-01-23 5:50:113 days ago1737611411IN
Tokenomia.pro: TPRO Token
0 ETH0.000244315.24810589
Approve216811692025-01-22 16:16:593 days ago1737562619IN
Tokenomia.pro: TPRO Token
0 ETH0.0006080413.05802515
Transfer216810482025-01-22 15:52:353 days ago1737561155IN
Tokenomia.pro: TPRO Token
0 ETH0.0006717419.58768432
Transfer216810212025-01-22 15:47:113 days ago1737560831IN
Tokenomia.pro: TPRO Token
0 ETH0.0008750615.57214097
Approve216769132025-01-22 2:02:234 days ago1737511343IN
Tokenomia.pro: TPRO Token
0 ETH0.0003930313.44296067
Transfer216756332025-01-21 21:44:474 days ago1737495887IN
Tokenomia.pro: TPRO Token
0 ETH0.0006707319.57199833
Transfer216755992025-01-21 21:37:594 days ago1737495479IN
Tokenomia.pro: TPRO Token
0 ETH0.0008653715.40630001
Approve216713792025-01-21 7:29:475 days ago1737444587IN
Tokenomia.pro: TPRO Token
0 ETH0.0004720910.13833106
Approve216674842025-01-20 18:26:115 days ago1737397571IN
Tokenomia.pro: TPRO Token
0 ETH0.0018798440.37028796
Approve216666162025-01-20 15:31:475 days ago1737387107IN
Tokenomia.pro: TPRO Token
0 ETH0.0017692237.99468134
Transfer216666092025-01-20 15:30:235 days ago1737387023IN
Tokenomia.pro: TPRO Token
0 ETH0.0019723338.36785385
Approve216664902025-01-20 15:06:355 days ago1737385595IN
Tokenomia.pro: TPRO Token
0 ETH0.0016858336.20391253
Increase Allowan...216663892025-01-20 14:46:235 days ago1737384383IN
Tokenomia.pro: TPRO Token
0 ETH0.0008254428.0249007
Increase Allowan...216648902025-01-20 9:44:356 days ago1737366275IN
Tokenomia.pro: TPRO Token
0 ETH0.000857529.1372207
Approve216628652025-01-20 2:58:236 days ago1737341903IN
Tokenomia.pro: TPRO Token
0 ETH0.0015876134.05063814
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

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

pragma solidity =0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "./ITokenDelegate.sol";
import "./AntiBot.sol";

/**
 * @title Token
 * @dev BEP20 compatible token.
 */
contract Token is Ownable, ERC20Burnable, AntiBot {

    uint8 private _decimals;
    ITokenDelegate public delegate;
    event DelegateAddressChanged(address indexed addr);

    /**
     * @dev Mints all tokens to deployer
     * @param amount Initial supply
     * @param name Token name.
     * @param symbol Token symbol.
     */
    constructor(uint256 amount, string memory name, string memory symbol, uint8 dec) ERC20(name, symbol) {
        _decimals = dec;
        _mint(_msgSender(), amount);
    }

    function setDelegateAddress(ITokenDelegate _delegate) public onlyOwner {
        require(address(_delegate) != address(0), 'Token: delegate address needs to be different than zero!');
        delegate = _delegate;
        emit DelegateAddressChanged(address(delegate));
    }

    /**
     * @dev Returns the address of the current owner.
     *
     * IMPORTANT: This method is required to be able to transfer tokens directly between their Binance Chain
     * and Binance Smart Chain. More on this issue can be found in:
     * https://github.com/binance-chain/BEPs/blob/master/BEP20.md#5116-getowner
     */
    function getOwner() external view returns (address) {
        return owner();
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     */
    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    function _transfer(address sender, address recipient, uint256 amount)
    internal virtual override transferThrottler(sender, recipient, amount)
    {
        super._transfer(sender, recipient, amount);
    }

    /**
     * @dev Inform external contract about tokens being moved
     */
    function _afterTokenTransfer(address from, address to, uint256 amount)
    internal virtual override
    {
        super._afterTokenTransfer(from, to, amount);
        _moveSpendingPower(from, to, amount);
    }

    /**
     * @dev Inform external contract about tokens being moved
     */
    function _moveSpendingPower(address src, address dst, uint256 amount) internal {
        if (src != dst && amount > 0 && address(delegate) != address(0)) {
            delegate.moveSpendingPower(src, dst, amount);
        }
    }
}

File 2 of 9 : ITokenDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.6;

interface ITokenDelegate {

    function moveSpendingPower(address src, address dst, uint256 amount) external;
}

File 3 of 9 : AntiBot.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";

contract AntiBot is Ownable {

    bool private initialized;
    bool private restrictionActive;

    uint256 public startTimestamp;
    uint256 public transferMaxValue;
    uint256 public transferMinDelay;

    mapping(address => bool) internal _isWhitelisted;
    mapping(address => bool) internal _isUnthrottled;
    mapping(address => uint256) internal _lastTimestamp;

    event StartTimestampChanged(uint256 timestamp);
    event RestrictionActiveChanged(bool active);
    event TransferMaxValueChanged(uint256 maxValue);
    event TransferMinDelayChanged(uint256 minDelay);
    event MarkedWhitelisted(address indexed account, bool isWhitelisted);
    event MarkedUnthrottled(address indexed account, bool isUnthrottled);

    function initAntibot(uint256 tradingStart, uint256 maxValue, uint256 minDelay) public onlyOwner() {
        require(!initialized, "Antibot: Already initialized");
        initialized = true;
        whitelistAccount(owner(), true);
        setStartTimestamp(tradingStart);
        setTransferMaxValue(maxValue);
        setTransferMinDelay(minDelay);
        setRestrictionActive(true);
    }

    function setStartTimestamp(uint256 _time) public onlyOwner() {
        require(startTimestamp == 0 || startTimestamp > block.timestamp, "Antibot: Too late");
        startTimestamp = _time;
        emit StartTimestampChanged(startTimestamp);
    }

    function setTransferMaxValue(uint256 _value) public onlyOwner() {
        transferMaxValue = _value;
        emit TransferMaxValueChanged(transferMaxValue);
    }

    function setTransferMinDelay(uint256 _delay) public onlyOwner() {
        transferMinDelay = _delay;
        emit TransferMinDelayChanged(transferMinDelay);
    }

    function setRestrictionActive(bool _active) public onlyOwner() {
        restrictionActive = _active;
        emit RestrictionActiveChanged(restrictionActive);
    }

    function unthrottleAccount(address _account, bool _unthrottled) public onlyOwner() {
        require(_account != address(0), "Zero address");
        _isUnthrottled[_account] = _unthrottled;
        emit MarkedUnthrottled(_account, _unthrottled);
    }

    function isUnthrottled(address account) public view returns (bool) {
        return _isUnthrottled[account];
    }

    function whitelistAccount(address _account, bool _whitelisted) public onlyOwner() {
        require(_account != address(0), "Zero address");
        _isWhitelisted[_account] = _whitelisted;
        emit MarkedWhitelisted(_account, _whitelisted);
    }

    function isWhitelisted(address account) public view returns (bool) {
        return _isWhitelisted[account];
    }

    modifier transferThrottler(address sender, address target, uint256 amount) {
        if (restrictionActive && !_isWhitelisted[target] && !_isWhitelisted[sender]) {
            require(block.timestamp >= startTimestamp, "Antibot: Transfers disabled");
            
            if (transferMaxValue > 0) {
                require(amount <= transferMaxValue, "Antibot: Limit exceeded");
            }

            if (!_isUnthrottled[target]) {
                require(_lastTimestamp[target] + transferMinDelay <= block.timestamp, "Antibot: too many transactions, try in a moment!");
                _lastTimestamp[target] = block.timestamp;
            }

            if (!_isUnthrottled[sender]) {
                require(_lastTimestamp[sender] + transferMinDelay <= block.timestamp, "Antibot: too many transactions, try in a moment!");
                _lastTimestamp[sender] = block.timestamp;
            }
        }
        _;
    }
}

File 4 of 9 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 5 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

File 7 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 8 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 9 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"dec","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"DelegateAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isUnthrottled","type":"bool"}],"name":"MarkedUnthrottled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"MarkedWhitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"RestrictionActiveChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"StartTimestampChanged","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":false,"internalType":"uint256","name":"maxValue","type":"uint256"}],"name":"TransferMaxValueChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minDelay","type":"uint256"}],"name":"TransferMinDelayChanged","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"delegate","outputs":[{"internalType":"contract ITokenDelegate","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tradingStart","type":"uint256"},{"internalType":"uint256","name":"maxValue","type":"uint256"},{"internalType":"uint256","name":"minDelay","type":"uint256"}],"name":"initAntibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isUnthrottled","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITokenDelegate","name":"_delegate","type":"address"}],"name":"setDelegateAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setRestrictionActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTransferMaxValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_delay","type":"uint256"}],"name":"setTransferMinDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferMaxValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferMinDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_unthrottled","type":"bool"}],"name":"unthrottleAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"whitelistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001db638038062001db6833981016040819052620000349162000439565b8251839083906200004d906003906020850190620002dc565b50805162000063906004906020840190620002dc565b505050620000806200007a620000ac60201b60201c565b620000b0565b600c805460ff191660ff8316179055620000a26200009b3390565b8562000102565b5050505062000541565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200015d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001719190620004c7565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a0908490620004c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620001f460008383620001fd565b5050565b505050565b62000215838383620001f860201b62000a021760201c565b620001f8838383816001600160a01b0316836001600160a01b0316141580156200023f5750600081115b80156200025b5750600c5461010090046001600160a01b031615155b15620001f857600c5460405163011bda5960e31b81526001600160a01b038581166004830152848116602483015260448201849052610100909204909116906308ded2c890606401600060405180830381600087803b158015620002be57600080fd5b505af1158015620002d3573d6000803e3d6000fd5b50505050505050565b828054620002ea90620004ee565b90600052602060002090601f0160209004810192826200030e576000855562000359565b82601f106200032957805160ff191683800117855562000359565b8280016001018555821562000359579182015b82811115620003595782518255916020019190600101906200033c565b50620003679291506200036b565b5090565b5b808211156200036757600081556001016200036c565b600082601f8301126200039457600080fd5b81516001600160401b0380821115620003b157620003b16200052b565b604051601f8301601f19908116603f01168101908282118183101715620003dc57620003dc6200052b565b81604052838152602092508683858801011115620003f957600080fd5b600091505b838210156200041d5785820183015181830184015290820190620003fe565b838211156200042f5760008385830101525b9695505050505050565b600080600080608085870312156200045057600080fd5b845160208601519094506001600160401b03808211156200047057600080fd5b6200047e8883890162000382565b945060408701519150808211156200049557600080fd5b50620004a48782880162000382565b925050606085015160ff81168114620004bc57600080fd5b939692955090935050565b60008219821115620004e957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200050357607f821691505b602082108114156200052557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61186580620005516000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806375b00a0f1161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610437578063e6fd48bc14610470578063f2fde38b14610479578063fd7eb8301461048c57600080fd5b8063a9059cbb146103cd578063c44bef75146103e0578063c89e4361146103f3578063dc4aa0591461040b57600080fd5b80638da5cb5b116100de5780638da5cb5b1461038e57806395d89b411461039f57806399c8df18146103a7578063a457c2d7146103ba57600080fd5b806375b00a0f1461033f57806375b138751461034857806379cc67901461035b578063893d20e81461036e57600080fd5b806339509351116101875780634af640d1116101565780634af640d1146102e85780635e91d4a3146102fb57806370a082311461030e578063715018a61461033757600080fd5b8063395093511461028d5780633a699b24146102a05780633af32abf146102a957806342966c68146102d557600080fd5b80630c8d9d7b116101c35780630c8d9d7b1461024057806318160ddd1461025357806323b872dd14610265578063313ce5671461027857600080fd5b80630505b206146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f836600461167b565b61049f565b005b61020761050e565b60405161021491906116c0565b60405180910390f35b61023061022b366004611634565b6105a0565b6040519015158152602001610214565b6101fd61024e3660046115ff565b6105b6565b6002545b604051908152602001610214565b6102306102733660046115be565b610685565b600c5460405160ff9091168152602001610214565b61023061029b366004611634565b61072f565b61025760075481565b6102306102b7366004611561565b6001600160a01b031660009081526009602052604090205460ff1690565b6101fd6102e336600461167b565b61076b565b6101fd6102f6366004611660565b610778565b6101fd610309366004611561565b6107f7565b61025761031c366004611561565b6001600160a01b031660009081526020819052604090205490565b6101fd6108f4565b61025760085481565b6101fd610356366004611694565b61092a565b6101fd610369366004611634565b610a07565b610376610a88565b6040516001600160a01b039091168152602001610214565b6005546001600160a01b0316610376565b610207610aa1565b6101fd6103b53660046115ff565b610ab0565b6102306103c8366004611634565b610b77565b6102306103db366004611634565b610c10565b6101fd6103ee36600461167b565b610c1d565b600c546103769061010090046001600160a01b031681565b610230610419366004611561565b6001600160a01b03166000908152600a602052604090205460ff1690565b610257610445366004611585565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61025760065481565b6101fd610487366004611561565b610ccc565b6101fd61049a36600461167b565b610d64565b6005546001600160a01b031633146104d25760405162461bcd60e51b81526004016104c990611715565b60405180910390fd5b60078190556040518181527f1e9a58e8711ba607223859ab9c646c4627583ddd11f8db91acdcd228ee6403ac906020015b60405180910390a150565b60606003805461051d906117c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610549906117c9565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ad338484610dc3565b50600192915050565b6005546001600160a01b031633146105e05760405162461bcd60e51b81526004016104c990611715565b6001600160a01b0382166106255760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016104c9565b6001600160a01b0382166000818152600a6020908152604091829020805460ff191685151590811790915591519182527f032b60b621d5620ebed4224d2af054acf250833415d69a1a90b9c0de47c951f191015b60405180910390a25050565b6000610692848484610ee7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107175760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104c9565b6107248533858403610dc3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ad91859061076690869061179a565b610dc3565b610775338261110a565b50565b6005546001600160a01b031633146107a25760405162461bcd60e51b81526004016104c990611715565b6005805460ff60a81b1916600160a81b8315158102919091179182905560405160ff9190920416151581527ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa90602001610503565b6005546001600160a01b031633146108215760405162461bcd60e51b81526004016104c990611715565b6001600160a01b03811661089d5760405162461bcd60e51b815260206004820152603860248201527f546f6b656e3a2064656c65676174652061646472657373206e6565647320746f60448201527f20626520646966666572656e74207468616e207a65726f21000000000000000060648201526084016104c9565b600c8054610100600160a81b0319166101006001600160a01b0384811682029290921792839055604051920416907f69a4107abdc2802c71a34a194ad1d45e227763f036400dde83dd23862242990490600090a250565b6005546001600160a01b0316331461091e5760405162461bcd60e51b81526004016104c990611715565b610928600061125f565b565b6005546001600160a01b031633146109545760405162461bcd60e51b81526004016104c990611715565b600554600160a01b900460ff16156109ae5760405162461bcd60e51b815260206004820152601c60248201527f416e7469626f743a20416c726561647920696e697469616c697a65640000000060448201526064016104c9565b6005805460ff60a01b1916600160a01b1790556109dd6109d66005546001600160a01b031690565b6001610ab0565b6109e683610c1d565b6109ef8261049f565b6109f881610d64565b610a026001610778565b505050565b6000610a138333610445565b905081811015610a715760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104c9565b610a7e8333848403610dc3565b610a02838361110a565b6000610a9c6005546001600160a01b031690565b905090565b60606004805461051d906117c9565b6005546001600160a01b03163314610ada5760405162461bcd60e51b81526004016104c990611715565b6001600160a01b038216610b1f5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016104c9565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527fc1f37bd5d85be2239236c010011c8837e596c2c28d94d45893872fb5064e75ce9101610679565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bf95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c9565b610c063385858403610dc3565b5060019392505050565b60006105ad338484610ee7565b6005546001600160a01b03163314610c475760405162461bcd60e51b81526004016104c990611715565b6006541580610c57575042600654115b610c975760405162461bcd60e51b8152602060048201526011602482015270416e7469626f743a20546f6f206c61746560781b60448201526064016104c9565b60068190556040518181527faf8fc8a4c9a55a9a29c3e99cd1797d43062c696f192896c79cbebd7da3286d8290602001610503565b6005546001600160a01b03163314610cf65760405162461bcd60e51b81526004016104c990611715565b6001600160a01b038116610d5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c9565b6107758161125f565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016104c990611715565b60088190556040518181527f81861b0171b9eedc164c44fe7103d395392819343cdaddff52948aec1b3ba44090602001610503565b6001600160a01b038316610e255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c9565b6001600160a01b038216610e865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b828282600560159054906101000a900460ff168015610f1f57506001600160a01b03821660009081526009602052604090205460ff16155b8015610f4457506001600160a01b03831660009081526009602052604090205460ff16155b156110f757600654421015610f9b5760405162461bcd60e51b815260206004820152601b60248201527f416e7469626f743a205472616e73666572732064697361626c6564000000000060448201526064016104c9565b60075415610ff557600754811115610ff55760405162461bcd60e51b815260206004820152601760248201527f416e7469626f743a204c696d697420657863656564656400000000000000000060448201526064016104c9565b6001600160a01b0382166000908152600a602052604090205460ff16611076576008546001600160a01b0383166000908152600b6020526040902054429161103c9161179a565b111561105a5760405162461bcd60e51b81526004016104c99061174a565b6001600160a01b0382166000908152600b602052604090204290555b6001600160a01b0383166000908152600a602052604090205460ff166110f7576008546001600160a01b0384166000908152600b602052604090205442916110bd9161179a565b11156110db5760405162461bcd60e51b81526004016104c99061174a565b6001600160a01b0383166000908152600b602052604090204290555b6111028686866112b1565b505050505050565b6001600160a01b03821661116a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c9565b6001600160a01b038216600090815260208190526040902054818110156111de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c9565b6001600160a01b038316600090815260208190526040812083830390556002805484929061120d9084906117b2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610a028360008461148b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113155760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c9565b6001600160a01b0382166113775760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c9565b6001600160a01b038316600090815260208190526040902054818110156113ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c9565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061142690849061179a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147291815260200190565b60405180910390a361148584848461148b565b50505050565b610a02838383816001600160a01b0316836001600160a01b0316141580156114b35750600081115b80156114ce5750600c5461010090046001600160a01b031615155b15610a0257600c5460405163011bda5960e31b81526001600160a01b038581166004830152848116602483015260448201849052610100909204909116906308ded2c890606401600060405180830381600087803b15801561152f57600080fd5b505af1158015611543573d6000803e3d6000fd5b50505050505050565b8035801515811461155c57600080fd5b919050565b60006020828403121561157357600080fd5b813561157e8161181a565b9392505050565b6000806040838503121561159857600080fd5b82356115a38161181a565b915060208301356115b38161181a565b809150509250929050565b6000806000606084860312156115d357600080fd5b83356115de8161181a565b925060208401356115ee8161181a565b929592945050506040919091013590565b6000806040838503121561161257600080fd5b823561161d8161181a565b915061162b6020840161154c565b90509250929050565b6000806040838503121561164757600080fd5b82356116528161181a565b946020939093013593505050565b60006020828403121561167257600080fd5b61157e8261154c565b60006020828403121561168d57600080fd5b5035919050565b6000806000606084860312156116a957600080fd5b505081359360208301359350604090920135919050565b600060208083528351808285015260005b818110156116ed578581018301518582016040015282016116d1565b818111156116ff576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526030908201527f416e7469626f743a20746f6f206d616e79207472616e73616374696f6e732c2060408201526f74727920696e2061206d6f6d656e742160801b606082015260800190565b600082198211156117ad576117ad611804565b500190565b6000828210156117c4576117c4611804565b500390565b600181811c908216806117dd57607f821691505b602082108114156117fe57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461077557600080fdfea2646970667358221220f67d5942e2ded868b40da7a64b4887a75c7f215e477fc01cceb693a91ea0674a64736f6c63430008060033000000000000000000000000000000000000000003b9354af0fb781c35120000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000045450524f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045450524f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806375b00a0f1161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610437578063e6fd48bc14610470578063f2fde38b14610479578063fd7eb8301461048c57600080fd5b8063a9059cbb146103cd578063c44bef75146103e0578063c89e4361146103f3578063dc4aa0591461040b57600080fd5b80638da5cb5b116100de5780638da5cb5b1461038e57806395d89b411461039f57806399c8df18146103a7578063a457c2d7146103ba57600080fd5b806375b00a0f1461033f57806375b138751461034857806379cc67901461035b578063893d20e81461036e57600080fd5b806339509351116101875780634af640d1116101565780634af640d1146102e85780635e91d4a3146102fb57806370a082311461030e578063715018a61461033757600080fd5b8063395093511461028d5780633a699b24146102a05780633af32abf146102a957806342966c68146102d557600080fd5b80630c8d9d7b116101c35780630c8d9d7b1461024057806318160ddd1461025357806323b872dd14610265578063313ce5671461027857600080fd5b80630505b206146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f836600461167b565b61049f565b005b61020761050e565b60405161021491906116c0565b60405180910390f35b61023061022b366004611634565b6105a0565b6040519015158152602001610214565b6101fd61024e3660046115ff565b6105b6565b6002545b604051908152602001610214565b6102306102733660046115be565b610685565b600c5460405160ff9091168152602001610214565b61023061029b366004611634565b61072f565b61025760075481565b6102306102b7366004611561565b6001600160a01b031660009081526009602052604090205460ff1690565b6101fd6102e336600461167b565b61076b565b6101fd6102f6366004611660565b610778565b6101fd610309366004611561565b6107f7565b61025761031c366004611561565b6001600160a01b031660009081526020819052604090205490565b6101fd6108f4565b61025760085481565b6101fd610356366004611694565b61092a565b6101fd610369366004611634565b610a07565b610376610a88565b6040516001600160a01b039091168152602001610214565b6005546001600160a01b0316610376565b610207610aa1565b6101fd6103b53660046115ff565b610ab0565b6102306103c8366004611634565b610b77565b6102306103db366004611634565b610c10565b6101fd6103ee36600461167b565b610c1d565b600c546103769061010090046001600160a01b031681565b610230610419366004611561565b6001600160a01b03166000908152600a602052604090205460ff1690565b610257610445366004611585565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61025760065481565b6101fd610487366004611561565b610ccc565b6101fd61049a36600461167b565b610d64565b6005546001600160a01b031633146104d25760405162461bcd60e51b81526004016104c990611715565b60405180910390fd5b60078190556040518181527f1e9a58e8711ba607223859ab9c646c4627583ddd11f8db91acdcd228ee6403ac906020015b60405180910390a150565b60606003805461051d906117c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610549906117c9565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ad338484610dc3565b50600192915050565b6005546001600160a01b031633146105e05760405162461bcd60e51b81526004016104c990611715565b6001600160a01b0382166106255760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016104c9565b6001600160a01b0382166000818152600a6020908152604091829020805460ff191685151590811790915591519182527f032b60b621d5620ebed4224d2af054acf250833415d69a1a90b9c0de47c951f191015b60405180910390a25050565b6000610692848484610ee7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107175760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104c9565b6107248533858403610dc3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ad91859061076690869061179a565b610dc3565b610775338261110a565b50565b6005546001600160a01b031633146107a25760405162461bcd60e51b81526004016104c990611715565b6005805460ff60a81b1916600160a81b8315158102919091179182905560405160ff9190920416151581527ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa90602001610503565b6005546001600160a01b031633146108215760405162461bcd60e51b81526004016104c990611715565b6001600160a01b03811661089d5760405162461bcd60e51b815260206004820152603860248201527f546f6b656e3a2064656c65676174652061646472657373206e6565647320746f60448201527f20626520646966666572656e74207468616e207a65726f21000000000000000060648201526084016104c9565b600c8054610100600160a81b0319166101006001600160a01b0384811682029290921792839055604051920416907f69a4107abdc2802c71a34a194ad1d45e227763f036400dde83dd23862242990490600090a250565b6005546001600160a01b0316331461091e5760405162461bcd60e51b81526004016104c990611715565b610928600061125f565b565b6005546001600160a01b031633146109545760405162461bcd60e51b81526004016104c990611715565b600554600160a01b900460ff16156109ae5760405162461bcd60e51b815260206004820152601c60248201527f416e7469626f743a20416c726561647920696e697469616c697a65640000000060448201526064016104c9565b6005805460ff60a01b1916600160a01b1790556109dd6109d66005546001600160a01b031690565b6001610ab0565b6109e683610c1d565b6109ef8261049f565b6109f881610d64565b610a026001610778565b505050565b6000610a138333610445565b905081811015610a715760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104c9565b610a7e8333848403610dc3565b610a02838361110a565b6000610a9c6005546001600160a01b031690565b905090565b60606004805461051d906117c9565b6005546001600160a01b03163314610ada5760405162461bcd60e51b81526004016104c990611715565b6001600160a01b038216610b1f5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016104c9565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527fc1f37bd5d85be2239236c010011c8837e596c2c28d94d45893872fb5064e75ce9101610679565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bf95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c9565b610c063385858403610dc3565b5060019392505050565b60006105ad338484610ee7565b6005546001600160a01b03163314610c475760405162461bcd60e51b81526004016104c990611715565b6006541580610c57575042600654115b610c975760405162461bcd60e51b8152602060048201526011602482015270416e7469626f743a20546f6f206c61746560781b60448201526064016104c9565b60068190556040518181527faf8fc8a4c9a55a9a29c3e99cd1797d43062c696f192896c79cbebd7da3286d8290602001610503565b6005546001600160a01b03163314610cf65760405162461bcd60e51b81526004016104c990611715565b6001600160a01b038116610d5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c9565b6107758161125f565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016104c990611715565b60088190556040518181527f81861b0171b9eedc164c44fe7103d395392819343cdaddff52948aec1b3ba44090602001610503565b6001600160a01b038316610e255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c9565b6001600160a01b038216610e865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b828282600560159054906101000a900460ff168015610f1f57506001600160a01b03821660009081526009602052604090205460ff16155b8015610f4457506001600160a01b03831660009081526009602052604090205460ff16155b156110f757600654421015610f9b5760405162461bcd60e51b815260206004820152601b60248201527f416e7469626f743a205472616e73666572732064697361626c6564000000000060448201526064016104c9565b60075415610ff557600754811115610ff55760405162461bcd60e51b815260206004820152601760248201527f416e7469626f743a204c696d697420657863656564656400000000000000000060448201526064016104c9565b6001600160a01b0382166000908152600a602052604090205460ff16611076576008546001600160a01b0383166000908152600b6020526040902054429161103c9161179a565b111561105a5760405162461bcd60e51b81526004016104c99061174a565b6001600160a01b0382166000908152600b602052604090204290555b6001600160a01b0383166000908152600a602052604090205460ff166110f7576008546001600160a01b0384166000908152600b602052604090205442916110bd9161179a565b11156110db5760405162461bcd60e51b81526004016104c99061174a565b6001600160a01b0383166000908152600b602052604090204290555b6111028686866112b1565b505050505050565b6001600160a01b03821661116a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c9565b6001600160a01b038216600090815260208190526040902054818110156111de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c9565b6001600160a01b038316600090815260208190526040812083830390556002805484929061120d9084906117b2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610a028360008461148b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113155760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c9565b6001600160a01b0382166113775760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c9565b6001600160a01b038316600090815260208190526040902054818110156113ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c9565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061142690849061179a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147291815260200190565b60405180910390a361148584848461148b565b50505050565b610a02838383816001600160a01b0316836001600160a01b0316141580156114b35750600081115b80156114ce5750600c5461010090046001600160a01b031615155b15610a0257600c5460405163011bda5960e31b81526001600160a01b038581166004830152848116602483015260448201849052610100909204909116906308ded2c890606401600060405180830381600087803b15801561152f57600080fd5b505af1158015611543573d6000803e3d6000fd5b50505050505050565b8035801515811461155c57600080fd5b919050565b60006020828403121561157357600080fd5b813561157e8161181a565b9392505050565b6000806040838503121561159857600080fd5b82356115a38161181a565b915060208301356115b38161181a565b809150509250929050565b6000806000606084860312156115d357600080fd5b83356115de8161181a565b925060208401356115ee8161181a565b929592945050506040919091013590565b6000806040838503121561161257600080fd5b823561161d8161181a565b915061162b6020840161154c565b90509250929050565b6000806040838503121561164757600080fd5b82356116528161181a565b946020939093013593505050565b60006020828403121561167257600080fd5b61157e8261154c565b60006020828403121561168d57600080fd5b5035919050565b6000806000606084860312156116a957600080fd5b505081359360208301359350604090920135919050565b600060208083528351808285015260005b818110156116ed578581018301518582016040015282016116d1565b818111156116ff576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526030908201527f416e7469626f743a20746f6f206d616e79207472616e73616374696f6e732c2060408201526f74727920696e2061206d6f6d656e742160801b606082015260800190565b600082198211156117ad576117ad611804565b500190565b6000828210156117c4576117c4611804565b500390565b600181811c908216806117dd57607f821691505b602082108114156117fe57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461077557600080fdfea2646970667358221220f67d5942e2ded868b40da7a64b4887a75c7f215e477fc01cceb693a91ea0674a64736f6c63430008060033

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

000000000000000000000000000000000000000003b9354af0fb781c35120000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000045450524f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045450524f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : amount (uint256): 1152357973940000000000000000
Arg [1] : name (string): TPRO
Arg [2] : symbol (string): TPRO
Arg [3] : dec (uint8): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000003b9354af0fb781c35120000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5450524f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5450524f00000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Tokenomia.pro is an all-in-one web3 consulting & software development service company with an experienced team from the European tech companies. Specializing in web3, blockchain services, and token economics.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.