ETH Price: $3,249.14 (-2.50%)
 

Overview

Max Total Supply

420,690,000,000 MEGA

Holders

474 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Make Eagle Great Again!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MegaToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-08-06
*/

/*

    https://truthsocial.com/@realDonaldTrump

    website:    https://mega-trump.com

    email:      [email protected]

    telegram:   https://t.me/make_eagle_great_again

    discord:    https://discord.gg/u7gbggsNQK
    
*/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.26;

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

/**
 * @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/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

contract Ownable is Context {
    address private _owner;
    constructor () {
        _owner = address(0);
    }
    function owner() public view returns (address) {return _owner;}
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

contract MegaToken is Context, IERC20, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint8 private _decimals = 18;
    uint256 private _totalSupply = 420690000000 * 10 ** _decimals;

    string private _name = "Make Eagle Great Again!";
    string private _symbol = "MEGA";

    /**
     * @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(address _supplier) Ownable() {
        _balances[_supplier] = 420690000000 * 10 ** _decimals;
    }

    /**
     * @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;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }


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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_supplier","type":"address"}],"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":"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":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526003805460ff1916601290811790915561001f90600a61020c565b61002e906461f313f880610221565b60045560408051808201909152601781527f4d616b65204561676c6520477265617420416761696e21000000000000000000602082015260059061007290826102d0565b506040805180820190915260048152634d45474160e01b602082015260069061009b90826102d0565b503480156100a7575f80fd5b50604051610b5a380380610b5a8339810160408190526100c69161038a565b5f80546001600160a01b03191690556003546100e69060ff16600a61020c565b6100f5906461f313f880610221565b6001600160a01b039091165f908152600160205260409020556103b0565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156101625780850481111561014657610146610113565b600184161561015457908102905b60019390931c92800261012b565b935093915050565b5f8261017857506001610206565b8161018457505f610206565b816001811461019a57600281146101a4576101c0565b6001915050610206565b60ff8411156101b5576101b5610113565b50506001821b610206565b5060208310610133831016604e8410600b84101617156101e3575081810a610206565b6101ef5f198484610127565b805f190482111561020257610202610113565b0290505b92915050565b5f61021a60ff84168361016a565b9392505050565b808202811582820484141761020657610206610113565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061026057607f821691505b60208210810361027e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102cb57805f5260205f20601f840160051c810160208510156102a95750805b601f840160051c820191505b818110156102c8575f81556001016102b5565b50505b505050565b81516001600160401b038111156102e9576102e9610238565b6102fd816102f7845461024c565b84610284565b6020601f82116001811461032f575f83156103185750848201515b5f19600385901b1c1916600184901b1784556102c8565b5f84815260208120601f198516915b8281101561035e578785015182556020948501946001909201910161033e565b508482101561037b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561039a575f80fd5b81516001600160a01b038116811461021a575f80fd5b61079d806103bd5f395ff3fe608060405234801561000f575f80fd5b506004361061009b575f3560e01c806370a082311161006357806370a082311461011a5780638da5cb5b1461014257806395d89b411461015c578063a9059cbb14610164578063dd62ed3e14610177575f80fd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f80fd5b6100a76101af565b6040516100b4919061060d565b60405180910390f35b6100d06100cb36600461065d565b61023f565b60405190151581526020016100b4565b6004545b6040519081526020016100b4565b6100d0610100366004610685565b610255565b60035460405160ff90911681526020016100b4565b6100e46101283660046106bf565b6001600160a01b03165f9081526001602052604090205490565b5f546040516001600160a01b0390911681526020016100b4565b6100a7610302565b6100d061017236600461065d565b610311565b6100e46101853660046106df565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6060600580546101be90610710565b80601f01602080910402602001604051908101604052809291908181526020018280546101ea90610710565b80156102355780601f1061020c57610100808354040283529160200191610235565b820191905f5260205f20905b81548152906001019060200180831161021857829003601f168201915b5050505050905090565b5f61024b33848461031d565b5060015b92915050565b5f610261848484610440565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156102ea5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6102f7853385840361031d565b506001949350505050565b6060600680546101be90610710565b5f61024b338484610440565b6001600160a01b03831661037f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102e1565b6001600160a01b0382166103e05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102e1565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166104a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102e1565b6001600160a01b0382166105065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102e1565b6001600160a01b0383165f908152600160205260409020548181101561057d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102e1565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906105b3908490610748565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516105ff91815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610658575f80fd5b919050565b5f806040838503121561066e575f80fd5b61067783610642565b946020939093013593505050565b5f805f60608486031215610697575f80fd5b6106a084610642565b92506106ae60208501610642565b929592945050506040919091013590565b5f602082840312156106cf575f80fd5b6106d882610642565b9392505050565b5f80604083850312156106f0575f80fd5b6106f983610642565b915061070760208401610642565b90509250929050565b600181811c9082168061072457607f821691505b60208210810361074257634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561024f57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220218824ad84ac33cc2eac6ab7796168eff695a245d147a319bbeb15644943fffe64736f6c634300081a0033000000000000000000000000a4ec6bd4f09305693427e1154ed2f0e33720479b

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009b575f3560e01c806370a082311161006357806370a082311461011a5780638da5cb5b1461014257806395d89b411461015c578063a9059cbb14610164578063dd62ed3e14610177575f80fd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f80fd5b6100a76101af565b6040516100b4919061060d565b60405180910390f35b6100d06100cb36600461065d565b61023f565b60405190151581526020016100b4565b6004545b6040519081526020016100b4565b6100d0610100366004610685565b610255565b60035460405160ff90911681526020016100b4565b6100e46101283660046106bf565b6001600160a01b03165f9081526001602052604090205490565b5f546040516001600160a01b0390911681526020016100b4565b6100a7610302565b6100d061017236600461065d565b610311565b6100e46101853660046106df565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6060600580546101be90610710565b80601f01602080910402602001604051908101604052809291908181526020018280546101ea90610710565b80156102355780601f1061020c57610100808354040283529160200191610235565b820191905f5260205f20905b81548152906001019060200180831161021857829003601f168201915b5050505050905090565b5f61024b33848461031d565b5060015b92915050565b5f610261848484610440565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156102ea5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6102f7853385840361031d565b506001949350505050565b6060600680546101be90610710565b5f61024b338484610440565b6001600160a01b03831661037f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102e1565b6001600160a01b0382166103e05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102e1565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166104a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102e1565b6001600160a01b0382166105065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102e1565b6001600160a01b0383165f908152600160205260409020548181101561057d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102e1565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906105b3908490610748565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516105ff91815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610658575f80fd5b919050565b5f806040838503121561066e575f80fd5b61067783610642565b946020939093013593505050565b5f805f60608486031215610697575f80fd5b6106a084610642565b92506106ae60208501610642565b929592945050506040919091013590565b5f602082840312156106cf575f80fd5b6106d882610642565b9392505050565b5f80604083850312156106f0575f80fd5b6106f983610642565b915061070760208401610642565b90509250929050565b600181811c9082168061072457607f821691505b60208210810361074257634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561024f57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220218824ad84ac33cc2eac6ab7796168eff695a245d147a319bbeb15644943fffe64736f6c634300081a0033

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

000000000000000000000000a4ec6bd4f09305693427e1154ed2f0e33720479b

-----Decoded View---------------
Arg [0] : _supplier (address): 0xa4ec6Bd4f09305693427E1154eD2f0E33720479B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a4ec6bd4f09305693427e1154ed2f0e33720479b


Deployed Bytecode Sourcemap

5073:7078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5966:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7509:169;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;7509:169:0;920:187:1;6462:108:0;6550:12;;6462:108;;;1258:25:1;;;1246:2;1231:18;6462:108:0;1112:177:1;8160:492:0;;;;;;:::i;:::-;;:::i;6297:100::-;6380:9;;6297:100;;6380:9;;;;1815:36:1;;1803:2;1788:18;6297:100:0;1673:184:1;6633:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;6734:18:0;6707:7;6734:18;;;:9;:18;;;;;;;6633:127;4879:63;4917:7;4934:6;4879:63;;-1:-1:-1;;;;;4934:6:0;;;2199:51:1;;2187:2;2172:18;4879:63:0;2053:203:1;6185:104:0;;;:::i;6973:175::-;;;;;;:::i;:::-;;:::i;7211:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7327:18:0;;;7300:7;7327:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7211:151;5966:100;6020:13;6053:5;6046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5966:100;:::o;7509:169::-;7592:4;7609:39;4504:10;7632:7;7641:6;7609:8;:39::i;:::-;-1:-1:-1;7666:4:0;7509:169;;;;;:::o;8160:492::-;8300:4;8317:36;8327:6;8335:9;8346:6;8317:9;:36::i;:::-;-1:-1:-1;;;;;8393:19:0;;8366:24;8393:19;;;:11;:19;;;;;;;;4504:10;8393:33;;;;;;;;8445:26;;;;8437:79;;;;-1:-1:-1;;;8437:79:0;;3113:2:1;8437:79:0;;;3095:21:1;3152:2;3132:18;;;3125:30;3191:34;3171:18;;;3164:62;-1:-1:-1;;;3242:18:1;;;3235:38;3290:19;;8437:79:0;;;;;;;;;8552:57;8561:6;4504:10;8602:6;8583:16;:25;8552:8;:57::i;:::-;-1:-1:-1;8640:4:0;;8160:492;-1:-1:-1;;;;8160:492:0:o;6185:104::-;6241:13;6274:7;6267:14;;;;;:::i;6973:175::-;7059:4;7076:42;4504:10;7100:9;7111:6;7076:9;:42::i;10315:380::-;-1:-1:-1;;;;;10451:19:0;;10443:68;;;;-1:-1:-1;;;10443:68:0;;3522:2:1;10443:68:0;;;3504:21:1;3561:2;3541:18;;;3534:30;3600:34;3580:18;;;3573:62;-1:-1:-1;;;3651:18:1;;;3644:34;3695:19;;10443:68:0;3320:400:1;10443:68:0;-1:-1:-1;;;;;10530:21:0;;10522:68;;;;-1:-1:-1;;;10522:68:0;;3927:2:1;10522:68:0;;;3909:21:1;3966:2;3946:18;;;3939:30;4005:34;3985:18;;;3978:62;-1:-1:-1;;;4056:18:1;;;4049:32;4098:19;;10522:68:0;3725:398:1;10522:68:0;-1:-1:-1;;;;;10603:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10655:32;;1258:25:1;;;10655:32:0;;1231:18:1;10655:32:0;;;;;;;10315:380;;;:::o;9142:733::-;-1:-1:-1;;;;;9282:20:0;;9274:70;;;;-1:-1:-1;;;9274:70:0;;4330:2:1;9274:70:0;;;4312:21:1;4369:2;4349:18;;;4342:30;4408:34;4388:18;;;4381:62;-1:-1:-1;;;4459:18:1;;;4452:35;4504:19;;9274:70:0;4128:401:1;9274:70:0;-1:-1:-1;;;;;9363:23:0;;9355:71;;;;-1:-1:-1;;;9355:71:0;;4736:2:1;9355:71:0;;;4718:21:1;4775:2;4755:18;;;4748:30;4814:34;4794:18;;;4787:62;-1:-1:-1;;;4865:18:1;;;4858:33;4908:19;;9355:71:0;4534:399:1;9355:71:0;-1:-1:-1;;;;;9523:17:0;;9499:21;9523:17;;;:9;:17;;;;;;9559:23;;;;9551:74;;;;-1:-1:-1;;;9551:74:0;;5140:2:1;9551:74:0;;;5122:21:1;5179:2;5159:18;;;5152:30;5218:34;5198:18;;;5191:62;-1:-1:-1;;;5269:18:1;;;5262:36;5315:19;;9551:74:0;4938:402:1;9551:74:0;-1:-1:-1;;;;;9661:17:0;;;;;;;:9;:17;;;;;;9681:22;;;9661:42;;9725:20;;;;;;;;:30;;9697:6;;9661:17;9725:30;;9697:6;;9725:30;:::i;:::-;;;;;;;;9790:9;-1:-1:-1;;;;;9773:35:0;9782:6;-1:-1:-1;;;;;9773:35:0;;9801:6;9773:35;;;;1258:25:1;;1246:2;1231:18;;1112:177;9773:35:0;;;;;;;;9263:612;9142:733;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:380::-;2605:1;2601:12;;;;2648;;;2669:61;;2723:4;2715:6;2711:17;2701:27;;2669:61;2776:2;2768:6;2765:14;2745:18;2742:38;2739:161;;2822:10;2817:3;2813:20;2810:1;2803:31;2857:4;2854:1;2847:15;2885:4;2882:1;2875:15;2739:161;;2526:380;;;:::o;5345:222::-;5410:9;;;5431:10;;;5428:133;;;5483:10;5478:3;5474:20;5471:1;5464:31;5518:4;5515:1;5508:15;5546:4;5543:1;5536:15

Swarm Source

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