ETH Price: $2,615.34 (+1.66%)

Token

Bor3d Coin ($BORD)
 

Overview

Max Total Supply

1,000,000,000.000000000999264 $BORD

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
120,000 $BORD

Value
$0.00
0x229b0d70e904229f5fe776fb006b2e63d82799c9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bor3dToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-01
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: Newest Bor3d Coin.sol


pragma solidity ^0.8.0;





contract Bor3dToken is ERC20, Ownable, Pausable, ReentrancyGuard {
    uint256 private constant INITIAL_SUPPLY = 1000000000 * 10**18;
    uint256 public tokenSaleHardCap = 500000000 * 10**18;
    uint256 public salePrice = 200000 * 10**18; // Number of $BORD tokens per 1 Ether
    uint256 public tokensSold = 0;

    event TokensBought(address indexed buyer, uint256 amount);
    event TokensMinted(address indexed to, uint256 amount);

    constructor() ERC20("Bor3d Coin", "$BORD") {
        _mint(0xF4d4a200bFAbfE136E639f344FB0402F4316Eed1, INITIAL_SUPPLY);
        transferOwnership(0xF4d4a200bFAbfE136E639f344FB0402F4316Eed1);
    }

    function mint(address to, uint256 amount) public onlyOwner {
        require(amount > 0, "Amount must be greater than 0");
        _mint(to, amount);
        emit TokensMinted(to, amount);
    }

    function buyTokens() public payable whenNotPaused nonReentrant {
        require(salePrice > 0, "Token sale is not active");
        uint256 tokensToBuy = (msg.value * salePrice) / 10**18;
        require(tokensSold + tokensToBuy <= tokenSaleHardCap, "Exceeds token sale hard cap");
        require(balanceOf(owner()) >= tokensToBuy, "Not enough tokens available for sale");

        _transfer(owner(), msg.sender, tokensToBuy);
        tokensSold += tokensToBuy;

        emit TokensBought(msg.sender, tokensToBuy);
    }

    function setSalePrice(uint256 newSalePrice) public onlyOwner {
        salePrice = newSalePrice * 10**18;
    }

    function setTokenSaleHardCap(uint256 newTokenSaleHardCap) public onlyOwner {
        tokenSaleHardCap = newTokenSaleHardCap;
    }

    function withdrawEther() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawTokens(address to, uint256 amount) public onlyOwner {
        require(amount > 0, "Amount must be greater than 0");
        require(balanceOf(address(this)) >= amount, "Not enough tokens available for withdrawal");
        _transfer(address(this), to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensMinted","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSalePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenSaleHardCap","type":"uint256"}],"name":"setTokenSaleHardCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSaleHardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b019d971e4fe8401e74000000600755692a5a058fc295ed00000060085560006009553480156200003457600080fd5b506040518060400160405280600a8152602001692137b919b21021b7b4b760b11b81525060405180604001604052806005815260200164091093d49160da1b8152508160039081620000879190620003b9565b506004620000968282620003b9565b505050620000b3620000ad6200011660201b60201c565b6200011a565b6005805460ff60a01b191690556001600655620000f173f4d4a200bfabfe136e639f344fb0402f4316eed16b033b2e3c9fd0803ce80000006200016c565b6200011073f4d4a200bfabfe136e639f344fb0402f4316eed162000233565b620004ad565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001c85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620001dc919062000485565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200023d620002b7565b6001600160a01b038116620002a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620001bf565b620002af816200011a565b50565b505050565b6005546001600160a01b03163314620003135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001bf565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034057607f821691505b6020821081036200036157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b257600081815260208120601f850160051c81016020861015620003905750805b601f850160051c820191505b81811015620003b1578281556001016200039c565b505050505050565b81516001600160401b03811115620003d557620003d562000315565b620003ed81620003e684546200032b565b8462000367565b602080601f8311600181146200042557600084156200040c5750858301515b600019600386901b1c1916600185901b178555620003b1565b600085815260208120601f198616915b82811015620004565788860151825594840194600190910190840162000435565b5085821015620004755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004a757634e487b7160e01b600052601160045260246000fd5b92915050565b61118080620004bd6000396000f3fe60806040526004361061014b5760003560e01c80635c975abb116100b6578063a457c2d71161006f578063a457c2d714610390578063a9059cbb146103b0578063d0febe4c146103d0578063dd62ed3e146103d8578063f2fde38b146103f8578063f51f96dd1461041857600080fd5b80635c975abb146102d457806370a08231146102f3578063715018a6146103295780637362377b1461033e5780638da5cb5b1461035357806395d89b411461037b57600080fd5b806328dc88601161010857806328dc88601461022c578063313ce56714610242578063395093511461025e57806340c10f191461027e57806340e407651461029e578063518ab2a8146102be57600080fd5b806306b091f91461015057806306fdde0314610172578063095ea7b31461019d57806318160ddd146101cd5780631919fed7146101ec57806323b872dd1461020c575b600080fd5b34801561015c57600080fd5b5061017061016b366004610f8c565b61042e565b005b34801561017e57600080fd5b5061018761050c565b6040516101949190610fb6565b60405180910390f35b3480156101a957600080fd5b506101bd6101b8366004610f8c565b61059e565b6040519015158152602001610194565b3480156101d957600080fd5b506002545b604051908152602001610194565b3480156101f857600080fd5b50610170610207366004611004565b6105b8565b34801561021857600080fd5b506101bd61022736600461101d565b6105d8565b34801561023857600080fd5b506101de60075481565b34801561024e57600080fd5b5060405160128152602001610194565b34801561026a57600080fd5b506101bd610279366004610f8c565b6105fc565b34801561028a57600080fd5b50610170610299366004610f8c565b61061e565b3480156102aa57600080fd5b506101706102b9366004611004565b6106c7565b3480156102ca57600080fd5b506101de60095481565b3480156102e057600080fd5b50600554600160a01b900460ff166101bd565b3480156102ff57600080fd5b506101de61030e366004611059565b6001600160a01b031660009081526020819052604090205490565b34801561033557600080fd5b506101706106d4565b34801561034a57600080fd5b506101706106e8565b34801561035f57600080fd5b506005546040516001600160a01b039091168152602001610194565b34801561038757600080fd5b5061018761071f565b34801561039c57600080fd5b506101bd6103ab366004610f8c565b61072e565b3480156103bc57600080fd5b506101bd6103cb366004610f8c565b6107a9565b6101706107b7565b3480156103e457600080fd5b506101de6103f336600461107b565b610980565b34801561040457600080fd5b50610170610413366004611059565b6109ab565b34801561042457600080fd5b506101de60085481565b610436610a21565b6000811161048b5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064015b60405180910390fd5b306000908152602081905260409020548111156104fd5760405162461bcd60e51b815260206004820152602a60248201527f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f72206044820152691dda5d1a191c985dd85b60b21b6064820152608401610482565b610508308383610a7b565b5050565b60606003805461051b906110ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610547906110ae565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b6000336105ac818585610c21565b60019150505b92915050565b6105c0610a21565b6105d281670de0b6b3a76400006110fe565b60085550565b6000336105e6858285610d45565b6105f1858585610a7b565b506001949350505050565b6000336105ac81858561060f8383610980565b6106199190611115565b610c21565b610626610a21565b600081116106765760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610482565b6106808282610db9565b816001600160a01b03167f3f2c9d57c068687834f0de942a9babb9e5acab57d516d3480a3c16ee165a4273826040516106bb91815260200190565b60405180910390a25050565b6106cf610a21565b600755565b6106dc610a21565b6106e66000610e78565b565b6106f0610a21565b60405133904780156108fc02916000818181858888f1935050505015801561071c573d6000803e3d6000fd5b50565b60606004805461051b906110ae565b6000338161073c8286610980565b90508381101561079c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610482565b6105f18286868403610c21565b6000336105ac818585610a7b565b6107bf610eca565b6107c7610f17565b6000600854116108195760405162461bcd60e51b815260206004820152601860248201527f546f6b656e2073616c65206973206e6f742061637469766500000000000000006044820152606401610482565b6000670de0b6b3a76400006008543461083291906110fe565b61083c9190611128565b90506007548160095461084f9190611115565b111561089d5760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746f6b656e2073616c6520686172642063617000000000006044820152606401610482565b806108b361030e6005546001600160a01b031690565b101561090d5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f722060448201526373616c6560e01b6064820152608401610482565b6109296109226005546001600160a01b031690565b3383610a7b565b806009600082825461093b9190611115565b909155505060405181815233907f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a9060200160405180910390a2506106e66001600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109b3610a21565b6001600160a01b038116610a185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610482565b61071c81610e78565b6005546001600160a01b031633146106e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b6001600160a01b038316610adf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610482565b6001600160a01b038216610b415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610482565b6001600160a01b03831660009081526020819052604090205481811015610bb95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610482565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6001600160a01b038316610c835760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610482565b6001600160a01b038216610ce45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610482565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d518484610980565b90506000198114610c1b5781811015610dac5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610482565b610c1b8484848403610c21565b6001600160a01b038216610e0f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610482565b8060026000828254610e219190611115565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff16156106e65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610482565b600260065403610f695760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610482565b6002600655565b80356001600160a01b0381168114610f8757600080fd5b919050565b60008060408385031215610f9f57600080fd5b610fa883610f70565b946020939093013593505050565b600060208083528351808285015260005b81811015610fe357858101830151858201604001528201610fc7565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561101657600080fd5b5035919050565b60008060006060848603121561103257600080fd5b61103b84610f70565b925061104960208501610f70565b9150604084013590509250925092565b60006020828403121561106b57600080fd5b61107482610f70565b9392505050565b6000806040838503121561108e57600080fd5b61109783610f70565b91506110a560208401610f70565b90509250929050565b600181811c908216806110c257607f821691505b6020821081036110e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105b2576105b26110e8565b808201808211156105b2576105b26110e8565b60008261114557634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220c2280fad7799c64dce8be760cc4540293817b3894a9fa99f6480a6ddd212fd6764736f6c63430008120033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80635c975abb116100b6578063a457c2d71161006f578063a457c2d714610390578063a9059cbb146103b0578063d0febe4c146103d0578063dd62ed3e146103d8578063f2fde38b146103f8578063f51f96dd1461041857600080fd5b80635c975abb146102d457806370a08231146102f3578063715018a6146103295780637362377b1461033e5780638da5cb5b1461035357806395d89b411461037b57600080fd5b806328dc88601161010857806328dc88601461022c578063313ce56714610242578063395093511461025e57806340c10f191461027e57806340e407651461029e578063518ab2a8146102be57600080fd5b806306b091f91461015057806306fdde0314610172578063095ea7b31461019d57806318160ddd146101cd5780631919fed7146101ec57806323b872dd1461020c575b600080fd5b34801561015c57600080fd5b5061017061016b366004610f8c565b61042e565b005b34801561017e57600080fd5b5061018761050c565b6040516101949190610fb6565b60405180910390f35b3480156101a957600080fd5b506101bd6101b8366004610f8c565b61059e565b6040519015158152602001610194565b3480156101d957600080fd5b506002545b604051908152602001610194565b3480156101f857600080fd5b50610170610207366004611004565b6105b8565b34801561021857600080fd5b506101bd61022736600461101d565b6105d8565b34801561023857600080fd5b506101de60075481565b34801561024e57600080fd5b5060405160128152602001610194565b34801561026a57600080fd5b506101bd610279366004610f8c565b6105fc565b34801561028a57600080fd5b50610170610299366004610f8c565b61061e565b3480156102aa57600080fd5b506101706102b9366004611004565b6106c7565b3480156102ca57600080fd5b506101de60095481565b3480156102e057600080fd5b50600554600160a01b900460ff166101bd565b3480156102ff57600080fd5b506101de61030e366004611059565b6001600160a01b031660009081526020819052604090205490565b34801561033557600080fd5b506101706106d4565b34801561034a57600080fd5b506101706106e8565b34801561035f57600080fd5b506005546040516001600160a01b039091168152602001610194565b34801561038757600080fd5b5061018761071f565b34801561039c57600080fd5b506101bd6103ab366004610f8c565b61072e565b3480156103bc57600080fd5b506101bd6103cb366004610f8c565b6107a9565b6101706107b7565b3480156103e457600080fd5b506101de6103f336600461107b565b610980565b34801561040457600080fd5b50610170610413366004611059565b6109ab565b34801561042457600080fd5b506101de60085481565b610436610a21565b6000811161048b5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064015b60405180910390fd5b306000908152602081905260409020548111156104fd5760405162461bcd60e51b815260206004820152602a60248201527f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f72206044820152691dda5d1a191c985dd85b60b21b6064820152608401610482565b610508308383610a7b565b5050565b60606003805461051b906110ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610547906110ae565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b6000336105ac818585610c21565b60019150505b92915050565b6105c0610a21565b6105d281670de0b6b3a76400006110fe565b60085550565b6000336105e6858285610d45565b6105f1858585610a7b565b506001949350505050565b6000336105ac81858561060f8383610980565b6106199190611115565b610c21565b610626610a21565b600081116106765760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610482565b6106808282610db9565b816001600160a01b03167f3f2c9d57c068687834f0de942a9babb9e5acab57d516d3480a3c16ee165a4273826040516106bb91815260200190565b60405180910390a25050565b6106cf610a21565b600755565b6106dc610a21565b6106e66000610e78565b565b6106f0610a21565b60405133904780156108fc02916000818181858888f1935050505015801561071c573d6000803e3d6000fd5b50565b60606004805461051b906110ae565b6000338161073c8286610980565b90508381101561079c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610482565b6105f18286868403610c21565b6000336105ac818585610a7b565b6107bf610eca565b6107c7610f17565b6000600854116108195760405162461bcd60e51b815260206004820152601860248201527f546f6b656e2073616c65206973206e6f742061637469766500000000000000006044820152606401610482565b6000670de0b6b3a76400006008543461083291906110fe565b61083c9190611128565b90506007548160095461084f9190611115565b111561089d5760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746f6b656e2073616c6520686172642063617000000000006044820152606401610482565b806108b361030e6005546001600160a01b031690565b101561090d5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f722060448201526373616c6560e01b6064820152608401610482565b6109296109226005546001600160a01b031690565b3383610a7b565b806009600082825461093b9190611115565b909155505060405181815233907f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a9060200160405180910390a2506106e66001600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109b3610a21565b6001600160a01b038116610a185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610482565b61071c81610e78565b6005546001600160a01b031633146106e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b6001600160a01b038316610adf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610482565b6001600160a01b038216610b415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610482565b6001600160a01b03831660009081526020819052604090205481811015610bb95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610482565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6001600160a01b038316610c835760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610482565b6001600160a01b038216610ce45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610482565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d518484610980565b90506000198114610c1b5781811015610dac5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610482565b610c1b8484848403610c21565b6001600160a01b038216610e0f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610482565b8060026000828254610e219190611115565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff16156106e65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610482565b600260065403610f695760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610482565b6002600655565b80356001600160a01b0381168114610f8757600080fd5b919050565b60008060408385031215610f9f57600080fd5b610fa883610f70565b946020939093013593505050565b600060208083528351808285015260005b81811015610fe357858101830151858201604001528201610fc7565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561101657600080fd5b5035919050565b60008060006060848603121561103257600080fd5b61103b84610f70565b925061104960208501610f70565b9150604084013590509250925092565b60006020828403121561106b57600080fd5b61107482610f70565b9392505050565b6000806040838503121561108e57600080fd5b61109783610f70565b91506110a560208401610f70565b90509250929050565b600181811c908216806110c257607f821691505b6020821081036110e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105b2576105b26110e8565b808201808211156105b2576105b26110e8565b60008261114557634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220c2280fad7799c64dce8be760cc4540293817b3894a9fa99f6480a6ddd212fd6764736f6c63430008120033

Deployed Bytecode Sourcemap

26211:2075:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27996:287;;;;;;;;;;-1:-1:-1;27996:287:0;;;;;:::i;:::-;;:::i;:::-;;14952:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17303:201;;;;;;;;;;-1:-1:-1;17303:201:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;17303:201:0;1004:187:1;16072:108:0;;;;;;;;;;-1:-1:-1;16160:12:0;;16072:108;;;1342:25:1;;;1330:2;1315:18;16072:108:0;1196:177:1;27615:113:0;;;;;;;;;;-1:-1:-1;27615:113:0;;;;;:::i;:::-;;:::i;18084:295::-;;;;;;;;;;-1:-1:-1;18084:295:0;;;;;:::i;:::-;;:::i;26351:52::-;;;;;;;;;;;;;;;;15914:93;;;;;;;;;;-1:-1:-1;15914:93:0;;15997:2;2038:36:1;;2026:2;2011:18;15914:93:0;1896:184:1;18788:238:0;;;;;;;;;;-1:-1:-1;18788:238:0;;;;;:::i;:::-;;:::i;26869:198::-;;;;;;;;;;-1:-1:-1;26869:198:0;;;;;:::i;:::-;;:::i;27736:132::-;;;;;;;;;;-1:-1:-1;27736:132:0;;;;;:::i;:::-;;:::i;26497:29::-;;;;;;;;;;;;;;;;5512:86;;;;;;;;;;-1:-1:-1;5583:7:0;;-1:-1:-1;;;5583:7:0;;;;5512:86;;16243:127;;;;;;;;;;-1:-1:-1;16243:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;16344:18:0;16317:7;16344:18;;;;;;;;;;;;16243:127;8377:103;;;;;;;;;;;;;:::i;27876:112::-;;;;;;;;;;;;;:::i;7729:87::-;;;;;;;;;;-1:-1:-1;7802:6:0;;7729:87;;-1:-1:-1;;;;;7802:6:0;;;2422:51:1;;2410:2;2395:18;7729:87:0;2276:203:1;15171:104:0;;;;;;;;;;;;;:::i;19529:436::-;;;;;;;;;;-1:-1:-1;19529:436:0;;;;;:::i;:::-;;:::i;16576:193::-;;;;;;;;;;-1:-1:-1;16576:193:0;;;;;:::i;:::-;;:::i;27075:532::-;;;:::i;16832:151::-;;;;;;;;;;-1:-1:-1;16832:151:0;;;;;:::i;:::-;;:::i;8635:201::-;;;;;;;;;;-1:-1:-1;8635:201:0;;;;;:::i;:::-;;:::i;26410:42::-;;;;;;;;;;;;;;;;27996:287;7615:13;:11;:13::i;:::-;28093:1:::1;28084:6;:10;28076:52;;;::::0;-1:-1:-1;;;28076:52:0;;2951:2:1;28076:52:0::1;::::0;::::1;2933:21:1::0;2990:2;2970:18;;;2963:30;3029:31;3009:18;;;3002:59;3078:18;;28076:52:0::1;;;;;;;;;28165:4;16317:7:::0;16344:18;;;;;;;;;;;28175:6;-1:-1:-1;28147:34:0::1;28139:89;;;::::0;-1:-1:-1;;;28139:89:0;;3309:2:1;28139:89:0::1;::::0;::::1;3291:21:1::0;3348:2;3328:18;;;3321:30;3387:34;3367:18;;;3360:62;-1:-1:-1;;;3438:18:1;;;3431:40;3488:19;;28139:89:0::1;3107:406:1::0;28139:89:0::1;28239:36;28257:4;28264:2;28268:6;28239:9;:36::i;:::-;27996:287:::0;;:::o;14952:100::-;15006:13;15039:5;15032:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14952:100;:::o;17303:201::-;17386:4;3705:10;17442:32;3705:10;17458:7;17467:6;17442:8;:32::i;:::-;17492:4;17485:11;;;17303:201;;;;;:::o;27615:113::-;7615:13;:11;:13::i;:::-;27699:21:::1;:12:::0;27714:6:::1;27699:21;:::i;:::-;27687:9;:33:::0;-1:-1:-1;27615:113:0:o;18084:295::-;18215:4;3705:10;18273:38;18289:4;3705:10;18304:6;18273:15;:38::i;:::-;18322:27;18332:4;18338:2;18342:6;18322:9;:27::i;:::-;-1:-1:-1;18367:4:0;;18084:295;-1:-1:-1;;;;18084:295:0:o;18788:238::-;18876:4;3705:10;18932:64;3705:10;18948:7;18985:10;18957:25;3705:10;18948:7;18957:9;:25::i;:::-;:38;;;;:::i;:::-;18932:8;:64::i;26869:198::-;7615:13;:11;:13::i;:::-;26956:1:::1;26947:6;:10;26939:52;;;::::0;-1:-1:-1;;;26939:52:0;;2951:2:1;26939:52:0::1;::::0;::::1;2933:21:1::0;2990:2;2970:18;;;2963:30;3029:31;3009:18;;;3002:59;3078:18;;26939:52:0::1;2749:353:1::0;26939:52:0::1;27002:17;27008:2;27012:6;27002:5;:17::i;:::-;27048:2;-1:-1:-1::0;;;;;27035:24:0::1;;27052:6;27035:24;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;27035:24:0::1;;;;;;;;26869:198:::0;;:::o;27736:132::-;7615:13;:11;:13::i;:::-;27822:16:::1;:38:::0;27736:132::o;8377:103::-;7615:13;:11;:13::i;:::-;8442:30:::1;8469:1;8442:18;:30::i;:::-;8377:103::o:0;27876:112::-;7615:13;:11;:13::i;:::-;27929:51:::1;::::0;27937:10:::1;::::0;27958:21:::1;27929:51:::0;::::1;;;::::0;::::1;::::0;;;27958:21;27937:10;27929:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27876:112::o:0;15171:104::-;15227:13;15260:7;15253:14;;;;;:::i;19529:436::-;19622:4;3705:10;19622:4;19705:25;3705:10;19722:7;19705:9;:25::i;:::-;19678:52;;19769:15;19749:16;:35;;19741:85;;;;-1:-1:-1;;;19741:85:0;;4540:2:1;19741:85:0;;;4522:21:1;4579:2;4559:18;;;4552:30;4618:34;4598:18;;;4591:62;-1:-1:-1;;;4669:18:1;;;4662:35;4714:19;;19741:85:0;4338:401:1;19741:85:0;19862:60;19871:5;19878:7;19906:15;19887:16;:34;19862:8;:60::i;16576:193::-;16655:4;3705:10;16711:28;3705:10;16728:2;16732:6;16711:9;:28::i;27075:532::-;5117:19;:17;:19::i;:::-;2345:21:::1;:19;:21::i;:::-;27169:1:::2;27157:9;;:13;27149:50;;;::::0;-1:-1:-1;;;27149:50:0;;4946:2:1;27149:50:0::2;::::0;::::2;4928:21:1::0;4985:2;4965:18;;;4958:30;5024:26;5004:18;;;4997:54;5068:18;;27149:50:0::2;4744:348:1::0;27149:50:0::2;27210:19;27258:6;27245:9;;27233;:21;;;;:::i;:::-;27232:32;;;;:::i;:::-;27210:54;;27311:16;;27296:11;27283:10;;:24;;;;:::i;:::-;:44;;27275:84;;;::::0;-1:-1:-1;;;27275:84:0;;5521:2:1;27275:84:0::2;::::0;::::2;5503:21:1::0;5560:2;5540:18;;;5533:30;5599:29;5579:18;;;5572:57;5646:18;;27275:84:0::2;5319:351:1::0;27275:84:0::2;27400:11;27378:18;27388:7;7802:6:::0;;-1:-1:-1;;;;;7802:6:0;;7729:87;27378:18:::2;:33;;27370:82;;;::::0;-1:-1:-1;;;27370:82:0;;5877:2:1;27370:82:0::2;::::0;::::2;5859:21:1::0;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:1;;;5999:34;6050:19;;27370:82:0::2;5675:400:1::0;27370:82:0::2;27465:43;27475:7;7802:6:::0;;-1:-1:-1;;;;;7802:6:0;;7729:87;27475:7:::2;27484:10;27496:11;27465:9;:43::i;:::-;27533:11;27519:10;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;27562:37:0::2;::::0;1342:25:1;;;27575:10:0::2;::::0;27562:37:::2;::::0;1330:2:1;1315:18;27562:37:0::2;;;;;;;27138:469;2389:20:::1;1783:1:::0;2909:7;:22;2726:213;16832:151;-1:-1:-1;;;;;16948:18:0;;;16921:7;16948:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16832:151::o;8635:201::-;7615:13;:11;:13::i;:::-;-1:-1:-1;;;;;8724:22:0;::::1;8716:73;;;::::0;-1:-1:-1;;;8716:73:0;;6282:2:1;8716:73:0::1;::::0;::::1;6264:21:1::0;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:36;6457:19;;8716:73:0::1;6080:402:1::0;8716:73:0::1;8800:28;8819:8;8800:18;:28::i;7894:132::-:0;7802:6;;-1:-1:-1;;;;;7802:6:0;3705:10;7958:23;7950:68;;;;-1:-1:-1;;;7950:68:0;;6689:2:1;7950:68:0;;;6671:21:1;;;6708:18;;;6701:30;6767:34;6747:18;;;6740:62;6819:18;;7950:68:0;6487:356:1;20435:840:0;-1:-1:-1;;;;;20566:18:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;7050:2:1;20558:68:0;;;7032:21:1;7089:2;7069:18;;;7062:30;7128:34;7108:18;;;7101:62;-1:-1:-1;;;7179:18:1;;;7172:35;7224:19;;20558:68:0;6848:401:1;20558:68:0;-1:-1:-1;;;;;20645:16:0;;20637:64;;;;-1:-1:-1;;;20637:64:0;;7456:2:1;20637:64:0;;;7438:21:1;7495:2;7475:18;;;7468:30;7534:34;7514:18;;;7507:62;-1:-1:-1;;;7585:18:1;;;7578:33;7628:19;;20637:64:0;7254:399:1;20637:64:0;-1:-1:-1;;;;;20787:15:0;;20765:19;20787:15;;;;;;;;;;;20821:21;;;;20813:72;;;;-1:-1:-1;;;20813:72:0;;7860:2:1;20813:72:0;;;7842:21:1;7899:2;7879:18;;;7872:30;7938:34;7918:18;;;7911:62;-1:-1:-1;;;7989:18:1;;;7982:36;8035:19;;20813:72:0;7658:402:1;20813:72:0;-1:-1:-1;;;;;20921:15:0;;;:9;:15;;;;;;;;;;;20939:20;;;20921:38;;21139:13;;;;;;;;;;:23;;;;;;21191:26;;1342:25:1;;;21139:13:0;;21191:26;;1315:18:1;21191:26:0;;;;;;;21230:37;20547:728;20435:840;;;:::o;23556:380::-;-1:-1:-1;;;;;23692:19:0;;23684:68;;;;-1:-1:-1;;;23684:68:0;;8267:2:1;23684:68:0;;;8249:21:1;8306:2;8286:18;;;8279:30;8345:34;8325:18;;;8318:62;-1:-1:-1;;;8396:18:1;;;8389:34;8440:19;;23684:68:0;8065:400:1;23684:68:0;-1:-1:-1;;;;;23771:21:0;;23763:68;;;;-1:-1:-1;;;23763:68:0;;8672:2:1;23763:68:0;;;8654:21:1;8711:2;8691:18;;;8684:30;8750:34;8730:18;;;8723:62;-1:-1:-1;;;8801:18:1;;;8794:32;8843:19;;23763:68:0;8470:398:1;23763:68:0;-1:-1:-1;;;;;23844:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23896:32;;1342:25:1;;;23896:32:0;;1315:18:1;23896:32:0;;;;;;;23556:380;;;:::o;24227:453::-;24362:24;24389:25;24399:5;24406:7;24389:9;:25::i;:::-;24362:52;;-1:-1:-1;;24429:16:0;:37;24425:248;;24511:6;24491:16;:26;;24483:68;;;;-1:-1:-1;;;24483:68:0;;9075:2:1;24483:68:0;;;9057:21:1;9114:2;9094:18;;;9087:30;9153:31;9133:18;;;9126:59;9202:18;;24483:68:0;8873:353:1;24483:68:0;24595:51;24604:5;24611:7;24639:6;24620:16;:25;24595:8;:51::i;21562:548::-;-1:-1:-1;;;;;21646:21:0;;21638:65;;;;-1:-1:-1;;;21638:65:0;;9433:2:1;21638:65:0;;;9415:21:1;9472:2;9452:18;;;9445:30;9511:33;9491:18;;;9484:61;9562:18;;21638:65:0;9231:355:1;21638:65:0;21794:6;21778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21949:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;22004:37;1342:25:1;;;22004:37:0;;1315:18:1;22004:37:0;;;;;;;27996:287;;:::o;8996:191::-;9089:6;;;-1:-1:-1;;;;;9106:17:0;;;-1:-1:-1;;;;;;9106:17:0;;;;;;;9139:40;;9089:6;;;9106:17;9089:6;;9139:40;;9070:16;;9139:40;9059:128;8996:191;:::o;5671:108::-;5583:7;;-1:-1:-1;;;5583:7:0;;;;5741:9;5733:38;;;;-1:-1:-1;;;5733:38:0;;9793:2:1;5733:38:0;;;9775:21:1;9832:2;9812:18;;;9805:30;-1:-1:-1;;;9851:18:1;;;9844:46;9907:18;;5733:38:0;9591:340:1;2425:293:0;1827:1;2559:7;;:19;2551:63;;;;-1:-1:-1;;;2551:63:0;;10138:2:1;2551:63:0;;;10120:21:1;10177:2;10157:18;;;10150:30;10216:33;10196:18;;;10189:61;10267:18;;2551:63:0;9936:355:1;2551:63:0;1827:1;2692:7;:18;2425:293::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;451:548::-;563:4;592:2;621;610:9;603:21;653:6;647:13;696:6;691:2;680:9;676:18;669:34;721:1;731:140;745:6;742:1;739:13;731:140;;;840:14;;;836:23;;830:30;806:17;;;825:2;802:26;795:66;760:10;;731:140;;;735:3;920:1;915:2;906:6;895:9;891:22;887:31;880:42;990:2;983;979:7;974:2;966:6;962:15;958:29;947:9;943:45;939:54;931:62;;;;451:548;;;;:::o;1378:180::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;-1:-1:-1;1529:23:1;;1378:180;-1:-1:-1;1378:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;3518:380::-;3597:1;3593:12;;;;3640;;;3661:61;;3715:4;3707:6;3703:17;3693:27;;3661:61;3768:2;3760:6;3757:14;3737:18;3734:38;3731:161;;3814:10;3809:3;3805:20;3802:1;3795:31;3849:4;3846:1;3839:15;3877:4;3874:1;3867:15;3731:161;;3518:380;;;:::o;3903:127::-;3964:10;3959:3;3955:20;3952:1;3945:31;3995:4;3992:1;3985:15;4019:4;4016:1;4009:15;4035:168;4108:9;;;4139;;4156:15;;;4150:22;;4136:37;4126:71;;4177:18;;:::i;4208:125::-;4273:9;;;4294:10;;;4291:36;;;4307:18;;:::i;5097:217::-;5137:1;5163;5153:132;;5207:10;5202:3;5198:20;5195:1;5188:31;5242:4;5239:1;5232:15;5270:4;5267:1;5260:15;5153:132;-1:-1:-1;5299:9:1;;5097:217::o

Swarm Source

ipfs://c2280fad7799c64dce8be760cc4540293817b3894a9fa99f6480a6ddd212fd67
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.