ETH Price: $3,102.32 (-0.43%)
 

Overview

Max Total Supply

1,000,000,000 MWAR

Holders

7

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
MWARToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity 0.8.20;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev 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).
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

contract MWARToken is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private s_balances;

    mapping(address account => mapping(address spender => uint256)) private s_allowances;

    uint256 private s_totalSupply;

    uint8 private constant DECIMALS = 18;
    uint256 public constant presaleReserve = 150_000_000 * (10 ** DECIMALS);
    uint256 public constant stakingReserve = 150_000_000 * (10 ** DECIMALS);
    uint256 public constant ecosystemReserve = 400_000_000 * (10 ** DECIMALS);
    uint256 public constant liquidityReserve = 100_000_000 * (10 ** DECIMALS);
    uint256 public constant marketingReserve = 100_000_000 * (10 ** DECIMALS);
    uint256 public constant teamReserve = 100_000_000 * (10 ** DECIMALS);

    string private constant NAME = "Meta War Token";
    string private constant SYMBOL = "MWAR";

    /**
     * @dev Mints the total supply to the specified `recipient` address.
     *
     * The total supply is immutable and assigned once during construction.
     *
     * Emits a {Transfer} event from the zero address to `recipient`.
     */
    constructor() {
      _mint(0x55748d6C78Fe7B17f2b2bcB2a4CdbC88FA107912, presaleReserve);
      _mint(0xb10334a3609eff78E2Ca16F77f11e8fdc0e16A6c, stakingReserve);
      _mint(0xa0d30f7BCA9Ab4979694097b92D772127d6767D8, ecosystemReserve);
      _mint(0x0Aa886a1812E3Aa301aF7caa3791437297Ff785B, liquidityReserve);
      _mint(0x9cC28039D0dE8111015AFD7CDB835E8F4380A39A, marketingReserve);        
      _mint(0xe10cf56CBce5bD53E19Fd73445Fd35306949932d, teamReserve);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public pure returns (string memory) {
        return NAME;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public pure 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.
     */
    function decimals() public pure returns (uint8) {
        return DECIMALS;
    }

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal {
        if (from != address(0)) {
            uint256 fromBalance = s_balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Underflow not possible: already checked that fromBalance >= value.
                // Since total supply is fixed and balances are capped by it, this is safe.
                s_balances[from] = fromBalance - value;
            }
        }

        unchecked {
            // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
            s_balances[to] += value;
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        s_totalSupply += value;
        _update(address(0), account, value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        s_allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 value
    ) internal {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(
                    spender,
                    currentAllowance,
                    value
                );
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"ecosystemReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"teamReserve","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506200004f7355748d6c78fe7b17f2b2bcb2a4cdbc88fa107912620000396012600a62000388565b62000049906308f0d180620003a0565b62000138565b6200007673b10334a3609eff78e2ca16f77f11e8fdc0e16a6c620000396012600a62000388565b620000ad73a0d30f7bca9ab4979694097b92d772127d6767d86200009d6012600a62000388565b62000049906317d78400620003a0565b620000e4730aa886a1812e3aa301af7caa3791437297ff785b620000d46012600a62000388565b62000049906305f5e100620003a0565b6200010b739cc28039d0de8111015afd7cdb835e8f4380a39a620000d46012600a62000388565b6200013273e10cf56cbce5bd53e19fd73445fd35306949932d620000d46012600a62000388565b620003d0565b6001600160a01b038216620001685760405163ec442f0560e01b8152600060048201526024015b60405180910390fd5b80600260008282546200017c9190620003ba565b909155506200019090506000838362000194565b5050565b6001600160a01b0383161562000218576001600160a01b03831660009081526020819052604090205481811015620001f95760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200015f565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382811660008181526020818152604091829020805486019055905184815291928616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002ca578160001904821115620002ae57620002ae62000273565b80851615620002bc57918102915b93841c93908002906200028e565b509250929050565b600082620002e35750600162000382565b81620002f25750600062000382565b81600181146200030b5760028114620003165762000336565b600191505062000382565b60ff8411156200032a576200032a62000273565b50506001821b62000382565b5060208310610133831016604e8410600b84101617156200035b575081810a62000382565b62000367838362000289565b80600019048211156200037e576200037e62000273565b0290505b92915050565b60006200039960ff841683620002d2565b9392505050565b808202811582820484141762000382576200038262000273565b8082018082111562000382576200038262000273565b6107fc80620003e06000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80634287f14a11610097578063a9059cbb11610066578063a9059cbb146101f2578063b61d43b114610159578063b753bfe914610199578063dd62ed3e1461020557600080fd5b80634287f14a146101995780636071eb5c146101a157806370a08231146101a957806395d89b41146101d257600080fd5b806318160ddd116100d357806318160ddd1461016f57806323b872dd14610177578063313ce5671461018a5780633e85713d1461019957600080fd5b806306fdde03146100fa578063095ea7b3146101365780630c900e9014610159575b600080fd5b60408051808201909152600e81526d26b2ba30902bb0b9102a37b5b2b760911b60208201525b60405161012d9190610581565b60405180910390f35b6101496101443660046105eb565b61023e565b604051901515815260200161012d565b610161610258565b60405190815260200161012d565b600254610161565b610149610185366004610615565b610275565b6040516012815260200161012d565b610161610299565b6101616102b3565b6101616101b7366004610651565b6001600160a01b031660009081526020819052604090205490565b60408051808201909152600481526326aba0a960e11b6020820152610120565b6101496102003660046105eb565b6102cd565b610161610213366004610673565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60003361024c8185856102db565b60019150505b92915050565b6102646012600a6107a0565b610272906308f0d1806107af565b81565b6000336102838582856102ed565b61028e858585610371565b506001949350505050565b6102a56012600a6107a0565b610272906305f5e1006107af565b6102bf6012600a6107a0565b610272906317d784006107af565b60003361024c818585610371565b6102e883838360016103d0565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561036b578181101561035c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61036b848484840360006103d0565b50505050565b6001600160a01b03831661039b57604051634b637e8f60e11b815260006004820152602401610353565b6001600160a01b0382166103c55760405163ec442f0560e01b815260006004820152602401610353565b6102e88383836104a5565b6001600160a01b0384166103fa5760405163e602df0560e01b815260006004820152602401610353565b6001600160a01b03831661042457604051634a1406b160e11b815260006004820152602401610353565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561036b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161049791815260200190565b60405180910390a350505050565b6001600160a01b03831615610526576001600160a01b038316600090815260208190526040902054818110156105075760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610353565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382811660008181526020818152604091829020805486019055905184815291928616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b818110156105ae57858101830151858201604001528201610592565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146105e657600080fd5b919050565b600080604083850312156105fe57600080fd5b610607836105cf565b946020939093013593505050565b60008060006060848603121561062a57600080fd5b610633846105cf565b9250610641602085016105cf565b9150604084013590509250925092565b60006020828403121561066357600080fd5b61066c826105cf565b9392505050565b6000806040838503121561068657600080fd5b61068f836105cf565b915061069d602084016105cf565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156106f75781600019048211156106dd576106dd6106a6565b808516156106ea57918102915b93841c93908002906106c1565b509250929050565b60008261070e57506001610252565b8161071b57506000610252565b8160018114610731576002811461073b57610757565b6001915050610252565b60ff84111561074c5761074c6106a6565b50506001821b610252565b5060208310610133831016604e8410600b841016171561077a575081810a610252565b61078483836106bc565b8060001904821115610798576107986106a6565b029392505050565b600061066c60ff8416836106ff565b8082028115828204841417610252576102526106a656fea264697066735822122081c19571b1cc6e3083a950240766287e2a70f6b819d5ab9e7a0dc4b4a3a335bf64736f6c63430008140033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80634287f14a11610097578063a9059cbb11610066578063a9059cbb146101f2578063b61d43b114610159578063b753bfe914610199578063dd62ed3e1461020557600080fd5b80634287f14a146101995780636071eb5c146101a157806370a08231146101a957806395d89b41146101d257600080fd5b806318160ddd116100d357806318160ddd1461016f57806323b872dd14610177578063313ce5671461018a5780633e85713d1461019957600080fd5b806306fdde03146100fa578063095ea7b3146101365780630c900e9014610159575b600080fd5b60408051808201909152600e81526d26b2ba30902bb0b9102a37b5b2b760911b60208201525b60405161012d9190610581565b60405180910390f35b6101496101443660046105eb565b61023e565b604051901515815260200161012d565b610161610258565b60405190815260200161012d565b600254610161565b610149610185366004610615565b610275565b6040516012815260200161012d565b610161610299565b6101616102b3565b6101616101b7366004610651565b6001600160a01b031660009081526020819052604090205490565b60408051808201909152600481526326aba0a960e11b6020820152610120565b6101496102003660046105eb565b6102cd565b610161610213366004610673565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60003361024c8185856102db565b60019150505b92915050565b6102646012600a6107a0565b610272906308f0d1806107af565b81565b6000336102838582856102ed565b61028e858585610371565b506001949350505050565b6102a56012600a6107a0565b610272906305f5e1006107af565b6102bf6012600a6107a0565b610272906317d784006107af565b60003361024c818585610371565b6102e883838360016103d0565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561036b578181101561035c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61036b848484840360006103d0565b50505050565b6001600160a01b03831661039b57604051634b637e8f60e11b815260006004820152602401610353565b6001600160a01b0382166103c55760405163ec442f0560e01b815260006004820152602401610353565b6102e88383836104a5565b6001600160a01b0384166103fa5760405163e602df0560e01b815260006004820152602401610353565b6001600160a01b03831661042457604051634a1406b160e11b815260006004820152602401610353565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561036b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161049791815260200190565b60405180910390a350505050565b6001600160a01b03831615610526576001600160a01b038316600090815260208190526040902054818110156105075760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610353565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382811660008181526020818152604091829020805486019055905184815291928616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b818110156105ae57858101830151858201604001528201610592565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146105e657600080fd5b919050565b600080604083850312156105fe57600080fd5b610607836105cf565b946020939093013593505050565b60008060006060848603121561062a57600080fd5b610633846105cf565b9250610641602085016105cf565b9150604084013590509250925092565b60006020828403121561066357600080fd5b61066c826105cf565b9392505050565b6000806040838503121561068657600080fd5b61068f836105cf565b915061069d602084016105cf565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156106f75781600019048211156106dd576106dd6106a6565b808516156106ea57918102915b93841c93908002906106c1565b509250929050565b60008261070e57506001610252565b8161071b57506000610252565b8160018114610731576002811461073b57610757565b6001915050610252565b60ff84111561074c5761074c6106a6565b50506001821b610252565b5060208310610133831016604e8410600b841016171561077a575081810a610252565b61078483836106bc565b8060001904821115610798576107986106a6565b029392505050565b600061066c60ff8416836106ff565b8082028115828204841417610252576102526106a656fea264697066735822122081c19571b1cc6e3083a950240766287e2a70f6b819d5ab9e7a0dc4b4a3a335bf64736f6c63430008140033

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.